From 7dc7dde9628849c384ac095f02e0ac1035d81770 Mon Sep 17 00:00:00 2001 From: morethanwords Date: Tue, 25 May 2021 13:45:35 +0300 Subject: [PATCH] Emoji 13.0 Emoji autocomplete helper Fix parsing gender emoji Fix loading first comment Fix selecting emoji in ESG Deactivate parallel tabs Fix bubble reply containers width Reset pinned dialogs order --- src/components/appNavigationController.ts | 10 +- src/components/chat/autocompleteHelper.ts | 66 +- src/components/chat/contextMenu.ts | 2 +- src/components/chat/emojiHelper.ts | 37 +- src/components/chat/input.ts | 60 +- src/components/chat/stickersHelper.ts | 39 +- src/components/emoticonsDropdown/index.ts | 23 +- .../emoticonsDropdown/tabs/emoji.ts | 83 +- src/config/app.ts | 4 +- src/emoji_test.js | 36 + src/helpers/blur.ts | 90 +- src/helpers/dom/attachListNavigation.ts | 25 +- src/helpers/dom/getRichElementValue.ts | 54 +- src/helpers/dom/getRichValueWithCaret.ts | 4 +- src/helpers/dom/setRichFocus.ts | 46 + src/lang.ts | 6 + src/layer.d.ts | 9 +- src/lib/appManagers/appDialogsManager.ts | 23 +- src/lib/appManagers/appEmojiManager.ts | 60 +- src/lib/appManagers/appImManager.ts | 36 +- src/lib/appManagers/appMessagesManager.ts | 24 +- src/lib/appManagers/appPhotosManager.ts | 1 + src/lib/appManagers/appStateManager.ts | 33 +- src/lib/config.ts | 6 +- src/lib/mtproto/apiManager.ts | 10 +- src/lib/mtproto/mtproto.service.ts | 8 +- src/lib/mtproto/mtproto.worker.ts | 7 + src/lib/mtproto/mtprotoworker.ts | 11 + src/lib/mtproto/networker.ts | 63 +- src/lib/mtproto/networkerFactory.ts | 11 +- src/lib/mtproto/singleInstance.ts | 56 +- src/lib/mtproto/transports/tcpObfuscated.ts | 11 +- src/lib/richtextprocessor.ts | 21 +- src/lib/rootScope.ts | 2 + src/lib/searchIndex.ts | 10 +- src/lib/storage.ts | 4 +- src/lib/storages/dialogs.ts | 4 + src/scripts/format_jsons.js | 9 +- src/scripts/in/emoji_pretty.json | 20820 +++++++++------- src/scripts/in/schema_additional_params.json | 7 + src/scripts/out/countries.json | 2 +- src/scripts/out/emoji.json | 2 +- src/scss/partials/_chatBubble.scss | 5 +- src/scss/partials/_chatEmojiHelper.scss | 12 +- src/scss/partials/_chatlist.scss | 6 +- .../partials/popups/_instanceDeactivated.scss | 22 + src/scss/style.scss | 29 + src/types.d.ts | 3 +- src/vendor/emoji/regex.ts | 19 +- 49 files changed, 13277 insertions(+), 8654 deletions(-) create mode 100644 src/emoji_test.js create mode 100644 src/helpers/dom/setRichFocus.ts create mode 100644 src/scss/partials/popups/_instanceDeactivated.scss diff --git a/src/components/appNavigationController.ts b/src/components/appNavigationController.ts index 88822c0d..3fdd7f75 100644 --- a/src/components/appNavigationController.ts +++ b/src/components/appNavigationController.ts @@ -12,10 +12,12 @@ import blurActiveElement from "../helpers/dom/blurActiveElement"; import { cancelEvent } from "../helpers/dom/cancelEvent"; export type NavigationItem = { - type: 'left' | 'right' | 'im' | 'chat' | 'popup' | 'media' | 'menu' | 'esg' | 'multiselect' | 'input-helper' | 'markup' | 'global-search', + type: 'left' | 'right' | 'im' | 'chat' | 'popup' | 'media' | 'menu' | + 'esg' | 'multiselect' | 'input-helper' | 'autocomplete-helper' | 'markup' | 'global-search', onPop: (canAnimate: boolean) => boolean | void, onEscape?: () => boolean, noHistory?: boolean, + noBlurOnPop?: boolean, }; export class AppNavigationController { @@ -61,9 +63,9 @@ export class AppNavigationController { if(!item) return; if(e.key === 'Escape' && (item.onEscape ? item.onEscape() : true)) { cancelEvent(e); - this.back(); + this.back(item.type); } - }, {capture: true}); + }, {capture: true, passive: false}); if(isMobileSafari) { const options = {passive: true}; @@ -117,7 +119,7 @@ export class AppNavigationController { this.debug && this.log('popstate, navigation:', item, this.navigations); if(good === false) { this.pushItem(item); - } else { + } else if(!item.noBlurOnPop) { blurActiveElement(); // no better place for it } diff --git a/src/components/chat/autocompleteHelper.ts b/src/components/chat/autocompleteHelper.ts index bd50305f..e1018e3f 100644 --- a/src/components/chat/autocompleteHelper.ts +++ b/src/components/chat/autocompleteHelper.ts @@ -4,29 +4,89 @@ * https://github.com/morethanwords/tweb/blob/master/LICENSE */ +import attachListNavigation from "../../helpers/dom/attachlistNavigation"; import EventListenerBase from "../../helpers/eventListenerBase"; +import { isMobile } from "../../helpers/userAgent"; import rootScope from "../../lib/rootScope"; +import appNavigationController, { NavigationItem } from "../appNavigationController"; import SetTransition from "../singleTransition"; export default class AutocompleteHelper extends EventListenerBase<{ hidden: () => void, visible: () => void, }> { + protected hidden = true; protected container: HTMLElement; + protected list: HTMLElement; + protected resetTarget: () => void; - constructor(appendTo: HTMLElement) { + constructor(appendTo: HTMLElement, + private listType: 'xy' | 'x' | 'y', + private onSelect: (target: Element) => boolean | void, + private waitForKey?: string + ) { super(false); this.container = document.createElement('div'); this.container.classList.add('autocomplete-helper', 'z-depth-1'); appendTo.append(this.container); + + this.attachNavigation(); + } + + protected onVisible = () => { + const list = this.list; + const {detach, resetTarget} = attachListNavigation({ + list, + type: this.listType, + onSelect: this.onSelect, + once: true, + waitForKey: this.waitForKey + }); + + this.resetTarget = resetTarget; + let navigationItem: NavigationItem; + if(!isMobile) { + navigationItem = { + type: 'autocomplete-helper', + onPop: () => this.toggle(true), + noBlurOnPop: true + }; + + appNavigationController.pushItem(navigationItem); + } + + this.addEventListener('hidden', () => { + this.resetTarget = undefined; + list.innerHTML = ''; + detach(); + + if(navigationItem) { + appNavigationController.removeItem(navigationItem); + } + }, true); + }; + + protected attachNavigation() { + this.addEventListener('visible', this.onVisible); } public toggle(hide?: boolean) { - hide = hide === undefined ? this.container.classList.contains('is-visible') : hide; + hide = hide === undefined ? this.container.classList.contains('is-visible') && !this.container.classList.contains('backwards') : hide; + + if(this.hidden === hide) { + if(!hide && this.resetTarget) { + this.resetTarget(); + } + + return; + } + + this.hidden = hide; + !this.hidden && this.dispatchEvent('visible'); // fire it before so target will be set SetTransition(this.container, 'is-visible', !hide, rootScope.settings.animationsEnabled ? 200 : 0, () => { - this.dispatchEvent(hide ? 'hidden' : 'visible'); + this.hidden && this.dispatchEvent('hidden'); }); } } diff --git a/src/components/chat/contextMenu.ts b/src/components/chat/contextMenu.ts index 6f3ff16a..05320407 100644 --- a/src/components/chat/contextMenu.ts +++ b/src/components/chat/contextMenu.ts @@ -340,7 +340,7 @@ export default class ChatContextMenu { private onCopyClick = () => { if(isSelectionEmpty()) { - const mids = this.chat.selection.isSelecting ? [...this.chat.selection.selectedMids] : [this.mid]; + const mids = this.chat.selection.isSelecting ? [...this.chat.selection.selectedMids].sort((a, b) => a - b) : [this.mid]; const str = mids.reduce((acc, mid) => { const message = this.chat.getMessage(mid); return acc + (message?.message ? message.message + '\n' : ''); diff --git a/src/components/chat/emojiHelper.ts b/src/components/chat/emojiHelper.ts index f821c921..9c3c5cc0 100644 --- a/src/components/chat/emojiHelper.ts +++ b/src/components/chat/emojiHelper.ts @@ -1,41 +1,24 @@ import type ChatInput from "./input"; -import attachListNavigation from "../../helpers/dom/attachlistNavigation"; import { appendEmoji, getEmojiFromElement } from "../emoticonsDropdown/tabs/emoji"; import { ScrollableX } from "../scrollable"; import AutocompleteHelper from "./autocompleteHelper"; export default class EmojiHelper extends AutocompleteHelper { - private emojisContainer: HTMLDivElement; private scrollable: ScrollableX; constructor(appendTo: HTMLElement, private chatInput: ChatInput) { - super(appendTo); + super(appendTo, 'x', (target) => { + this.chatInput.onEmojiSelected(getEmojiFromElement(target as any), true); + }); this.container.classList.add('emoji-helper'); - - this.addEventListener('visible', () => { - const list = this.emojisContainer; - const {detach} = attachListNavigation({ - list, - type: 'x', - onSelect: (target) => { - this.chatInput.onEmojiSelected(getEmojiFromElement(target as any), true); - }, - once: true - }); - - this.addEventListener('hidden', () => { - list.innerHTML = ''; - detach(); - }, true); - }); } private init() { - this.emojisContainer = document.createElement('div'); - this.emojisContainer.classList.add('emoji-helper-emojis', 'super-emojis'); + this.list = document.createElement('div'); + this.list.classList.add('emoji-helper-emojis', 'super-emojis'); - this.container.append(this.emojisContainer); + this.container.append(this.list); this.scrollable = new ScrollableX(this.container); } @@ -47,12 +30,16 @@ export default class EmojiHelper extends AutocompleteHelper { } if(emojis.length) { - this.emojisContainer.innerHTML = ''; + this.list.innerHTML = ''; emojis.forEach(emoji => { - appendEmoji(emoji, this.emojisContainer); + appendEmoji(emoji, this.list, false, true); }); } + if(!this.hidden) { + this.scrollable.container.scrollLeft = 0; + } + this.toggle(!emojis.length); } } diff --git a/src/components/chat/input.ts b/src/components/chat/input.ts index c8c40247..edca3af9 100644 --- a/src/components/chat/input.ts +++ b/src/components/chat/input.ts @@ -58,8 +58,9 @@ import isSendShortcutPressed from '../../helpers/dom/isSendShortcutPressed'; import placeCaretAtEnd from '../../helpers/dom/placeCaretAtEnd'; import { MarkdownType, markdownTags } from '../../helpers/dom/getRichElementValue'; import getRichValueWithCaret from '../../helpers/dom/getRichValueWithCaret'; -import cleanSearchText from '../../helpers/cleanSearchText'; import EmojiHelper from './emojiHelper'; +import setRichFocus from '../../helpers/dom/setRichFocus'; +import { toCodePoints } from '../../vendor/emoji'; const RECORD_MIN_TIME = 500; const POSTING_MEDIA_NOT_ALLOWED = 'Posting media content isn\'t allowed in this group.'; @@ -974,6 +975,7 @@ export default class ChatInput { } private handleMarkdownShortcut = (e: KeyboardEvent) => { + // console.log('handleMarkdownShortcut', e); const formatKeys: {[key: string]: MarkdownType} = { 'B': 'bold', 'I': 'italic', @@ -1145,14 +1147,55 @@ export default class ChatInput { public onEmojiSelected = (emoji: string, autocomplete: boolean) => { if(autocomplete) { - const {value: fullValue, caretPos} = getRichValueWithCaret(this.messageInput); + const {value: fullValue, caretPos, entities} = getRichValueWithCaret(this.messageInput); const pos = caretPos >= 0 ? caretPos : fullValue.length; - const suffix = fullValue.substr(pos); const prefix = fullValue.substr(0, pos); + const suffix = fullValue.substr(pos); + const matches = prefix.match(ChatInput.AUTO_COMPLETE_REG_EXP); - console.log(matches); - const idx = matches.index + matches[1].length; + const matchIndex = matches.index + (matches[0].length - matches[2].length); + const newPrefix = prefix.slice(0, matchIndex); + const newValue = newPrefix + emoji + suffix; + + // merge emojis + const hadEntities = RichTextProcessor.parseEntities(fullValue); + RichTextProcessor.mergeEntities(entities, hadEntities); + + const emojiEntity: MessageEntity.messageEntityEmoji = { + _: 'messageEntityEmoji', + offset: 0, + length: emoji.length, + unicode: toCodePoints(emoji).join('-') + }; + const addEntities: MessageEntity[] = [emojiEntity]; + emojiEntity.offset = matchIndex; + addEntities.push({ + _: 'messageEntityCaret', + length: 0, + offset: emojiEntity.offset + emojiEntity.length + }); + + // add offset to entities next to emoji + const diff = emojiEntity.length - matches[2].length; + entities.forEach(entity => { + if(entity.offset >= emojiEntity.offset) { + entity.offset += diff; + } + }); + + RichTextProcessor.mergeEntities(entities, addEntities); + + //const saveExecuted = this.prepareDocumentExecute(); + this.messageInputField.value = RichTextProcessor.wrapDraftText(newValue, {entities}); + + const caret = this.messageInput.querySelector('.composer-sel'); + setRichFocus(this.messageInput, caret); + caret.remove(); + + //saveExecuted(); + + //document.execCommand('insertHTML', true, RichTextProcessor.wrapEmojiText(emoji)); //const str = @@ -1176,8 +1219,8 @@ export default class ChatInput { }; private checkAutocomplete(value?: string, caretPos?: number) { - return; - + //return; + if(value === undefined) { const r = getRichValueWithCaret(this.messageInputField.input, false); value = r.value; @@ -1260,7 +1303,8 @@ export default class ChatInput { } this.appEmojiManager.getBothEmojiKeywords().then(() => { - const emojis = this.appEmojiManager.searchEmojis(matches[2]); + const q = matches[2].replace(/^:/, ''); + const emojis = this.appEmojiManager.searchEmojis(q); this.emojiHelper.renderEmojis(emojis); //console.log(emojis); }); diff --git a/src/components/chat/stickersHelper.ts b/src/components/chat/stickersHelper.ts index af56f701..da346415 100644 --- a/src/components/chat/stickersHelper.ts +++ b/src/components/chat/stickersHelper.ts @@ -4,7 +4,6 @@ * https://github.com/morethanwords/tweb/blob/master/LICENSE */ -import attachListNavigation from "../../helpers/dom/attachlistNavigation"; import { MyDocument } from "../../lib/appManagers/appDocsManager"; import { CHAT_ANIMATION_GROUP } from "../../lib/appManagers/appImManager"; import appStickersManager from "../../lib/appManagers/appStickersManager"; @@ -15,33 +14,17 @@ import Scrollable from "../scrollable"; import AutocompleteHelper from "./autocompleteHelper"; export default class StickersHelper extends AutocompleteHelper { - private stickersContainer: HTMLElement; private scrollable: Scrollable; private superStickerRenderer: SuperStickerRenderer; private lazyLoadQueue: LazyLoadQueue; private lastEmoticon = ''; constructor(appendTo: HTMLElement) { - super(appendTo); + super(appendTo, 'xy', (target) => { + EmoticonsDropdown.onMediaClick({target}, true); + }, 'ArrowUp'); this.container.classList.add('stickers-helper'); - - this.addEventListener('visible', () => { - const list = this.stickersContainer; - const {detach} = attachListNavigation({ - list, - type: 'xy', - onSelect: (target) => { - EmoticonsDropdown.onMediaClick({target}, true); - }, - once: true - }); - - this.addEventListener('hidden', () => { - list.innerHTML = ''; - detach(); - }, true); - }); } public checkEmoticon(emoticon: string) { @@ -73,7 +56,7 @@ export default class StickersHelper extends AutocompleteHelper { this.init = null; } - const container = this.stickersContainer.cloneNode() as HTMLElement; + const container = this.list.cloneNode() as HTMLElement; let ready: Promise; @@ -92,8 +75,12 @@ export default class StickersHelper extends AutocompleteHelper { } ready.then(() => { - this.stickersContainer.replaceWith(container); - this.stickersContainer = container; + if(!this.hidden) { + this.scrollable.container.scrollTop = 0; + } + + this.list.replaceWith(container); + this.list = container; this.toggle(!stickers.length); this.scrollable.scrollTop = 0; @@ -102,10 +89,10 @@ export default class StickersHelper extends AutocompleteHelper { } private init() { - this.stickersContainer = document.createElement('div'); - this.stickersContainer.classList.add('stickers-helper-stickers', 'super-stickers'); + this.list = document.createElement('div'); + this.list.classList.add('stickers-helper-stickers', 'super-stickers'); - this.container.append(this.stickersContainer); + this.container.append(this.list); this.scrollable = new Scrollable(this.container); this.lazyLoadQueue = new LazyLoadQueue(); diff --git a/src/components/emoticonsDropdown/index.ts b/src/components/emoticonsDropdown/index.ts index db2af217..414fc2d2 100644 --- a/src/components/emoticonsDropdown/index.ts +++ b/src/components/emoticonsDropdown/index.ts @@ -43,9 +43,9 @@ export class EmoticonsDropdown { public static lazyLoadQueue = new LazyLoadQueue(); private element: HTMLElement; - public emojiTab: EmojiTab; + private emojiTab: EmojiTab; public stickersTab: StickersTab; - public gifsTab: GifsTab; + private gifsTab: GifsTab; private container: HTMLElement; private tabsEl: HTMLElement; @@ -53,8 +53,8 @@ export class EmoticonsDropdown { private tabs: {[id: number]: EmoticonsTab}; - public searchButton: HTMLElement; - public deleteBtn: HTMLElement; + private searchButton: HTMLElement; + private deleteBtn: HTMLElement; private displayTimeout: number; @@ -73,6 +73,8 @@ export class EmoticonsDropdown { private selectTab: ReturnType; private forceClose = false; + private savedRange: Range; + constructor() { this.element = document.getElementById('emoji-dropdown') as HTMLDivElement; } @@ -206,7 +208,7 @@ export class EmoticonsDropdown { this.deleteBtn.classList.toggle('hide', this.tabId !== 0); }; - public checkRights = () => { + private checkRights = () => { const peerId = appImManager.chat.peerId; const children = this.tabsEl.children; const tabsElements = Array.from(children) as HTMLElement[]; @@ -251,6 +253,11 @@ export class EmoticonsDropdown { if((this.element.style.display && enable === undefined) || enable) { this.events.onOpen.forEach(cb => cb()); + const sel = document.getSelection(); + if(!sel.isCollapsed) { + this.savedRange = sel.getRangeAt(0); + } + EmoticonsDropdown.lazyLoadQueue.lock(); //EmoticonsDropdown.lazyLoadQueue.unlock(); animationIntersector.lockIntersectionGroup(EMOTICONSSTICKERGROUP); @@ -306,6 +313,8 @@ export class EmoticonsDropdown { this.container.classList.remove('disable-hover'); this.events.onCloseAfter.forEach(cb => cb()); + + this.savedRange = undefined; }, isTouchSupported ? 0 : ANIMATION_DURATION); /* if(isTouchSupported) { @@ -435,6 +444,10 @@ export class EmoticonsDropdown { lazyLoadQueue.unlockAndRefresh(); }); } + + public getSavedRange() { + return this.savedRange; + } } const emoticonsDropdown = new EmoticonsDropdown(); diff --git a/src/components/emoticonsDropdown/tabs/emoji.ts b/src/components/emoticonsDropdown/tabs/emoji.ts index 030b3144..2ae332ab 100644 --- a/src/components/emoticonsDropdown/tabs/emoji.ts +++ b/src/components/emoticonsDropdown/tabs/emoji.ts @@ -4,21 +4,22 @@ * https://github.com/morethanwords/tweb/blob/master/LICENSE */ -import { EmoticonsDropdown, EmoticonsTab } from ".."; +import emoticonsDropdown, { EmoticonsDropdown, EmoticonsTab } from ".."; import findUpClassName from "../../../helpers/dom/findUpClassName"; -import { fastRaf } from "../../../helpers/schedulers"; +import { fastRaf, pause } from "../../../helpers/schedulers"; +import appEmojiManager from "../../../lib/appManagers/appEmojiManager"; import appImManager from "../../../lib/appManagers/appImManager"; -import appStateManager from "../../../lib/appManagers/appStateManager"; import Config from "../../../lib/config"; import { i18n, LangPackKey } from "../../../lib/langPack"; import { RichTextProcessor } from "../../../lib/richtextprocessor"; import rootScope from "../../../lib/rootScope"; +import { toCodePoints } from "../../../vendor/emoji"; import { putPreloader } from "../../misc"; import Scrollable from "../../scrollable"; import StickyIntersector from "../../stickyIntersector"; const loadedURLs: Set = new Set(); -export function appendEmoji(emoji: string, container: HTMLElement, prepend = false/* , unified = false */) { +export function appendEmoji(emoji: string, container: HTMLElement, prepend = false, unify = false) { //const emoji = details.unified; //const emoji = (details.unified as string).split('-') //.reduce((prev, curr) => prev + String.fromCodePoint(parseInt(curr, 16)), ''); @@ -27,18 +28,18 @@ export function appendEmoji(emoji: string, container: HTMLElement, prepend = fal spanEmoji.classList.add('super-emoji'); let kek: string; - /* if(unified) { - kek = RichTextProcessor.wrapRichText('_', { + if(unify) { + kek = RichTextProcessor.wrapRichText(emoji, { entities: [{ _: 'messageEntityEmoji', offset: 0, - length: emoji.split('-').length, - unicode: emoji + length: emoji.length, + unicode: toCodePoints(emoji).join('-') }] }); - } else { */ + } else { kek = RichTextProcessor.wrapEmojiText(emoji); - //} + } /* if(!kek.includes('emoji')) { console.log(emoji, kek, spanEmoji, emoji.length, new TextEncoder().encode(emoji), emojiUnicode(emoji)); @@ -104,7 +105,6 @@ export function getEmojiFromElement(element: HTMLElement) { export default class EmojiTab implements EmoticonsTab { private content: HTMLElement; - private recent: string[] = []; private recentItemsDiv: HTMLElement; private scroll: Scrollable; @@ -170,12 +170,27 @@ export default class EmojiTab implements EmoticonsTab { div.append(titleDiv, itemsDiv); - emojis.forEach(emoji => { + emojis.forEach(unified => { /* if(emojiUnicode(emoji) === '1f481-200d-2642') { console.log('append emoji', emoji, emojiUnicode(emoji)); } */ - emoji = emoji.split('-').reduce((prev, curr) => prev + String.fromCodePoint(parseInt(curr, 16)), ''); + let emoji = unified.split('-').reduce((prev, curr) => prev + String.fromCodePoint(parseInt(curr, 16)), ''); + //if(emoji.includes('🕵')) { + //console.log('toCodePoints', toCodePoints(emoji)); + //emoji = emoji.replace(/(\u200d[\u2640\u2642\u2695])(?!\ufe0f)/, '\ufe0f$1'); + // const zwjIndex = emoji.indexOf('\u200d'); + // if(zwjIndex !== -1 && !emoji.includes('\ufe0f')) { + // /* if(zwjIndex !== (emoji.length - 1)) { + // emoji = emoji.replace(/(\u200d)/g, '\ufe0f$1'); + // } */ + + // emoji += '\ufe0f'; + // //emoji += '\ufe0f'; + // } + + //debugger; + //} appendEmoji(emoji/* .replace(/[\ufe0f\u2640\u2642\u2695]/g, '') */, itemsDiv, false/* , false */); @@ -197,22 +212,17 @@ export default class EmojiTab implements EmoticonsTab { const preloader = putPreloader(this.content, true); Promise.all([ - new Promise((resolve) => setTimeout(resolve, 200)), - - appStateManager.getState().then(state => { - if(Array.isArray(state.recentEmoji)) { - this.recent = state.recentEmoji; - } - }) - ]).then(() => { + pause(200), + appEmojiManager.getRecentEmojis() + ]).then(([_, recent]) => { preloader.remove(); this.recentItemsDiv = divs['Emoji.Recent'].querySelector('.super-emojis'); - for(const emoji of this.recent) { + for(const emoji of recent) { appendEmoji(emoji, this.recentItemsDiv); } - this.recentItemsDiv.parentElement.classList.toggle('hide', !this.recent.length); + this.recentItemsDiv.parentElement.classList.toggle('hide', !this.recentItemsDiv.childElementCount); categories.unshift('Emoji.Recent'); categories.map(category => { @@ -246,11 +256,21 @@ export default class EmojiTab implements EmoticonsTab { target = target.firstChild as HTMLElement; } else if(target.tagName === 'DIV') return; - //console.log('contentEmoji div', target); - appImManager.chat.input.messageInput.innerHTML += RichTextProcessor.emojiSupported ? + // set selection range + const savedRange = emoticonsDropdown.getSavedRange(); + if(savedRange) { + const sel = document.getSelection(); + sel.removeAllRanges(); + sel.addRange(savedRange); + } + + const html = RichTextProcessor.emojiSupported ? (target.nodeType === 3 ? target.nodeValue : target.innerHTML) : target.outerHTML; + // insert emoji in input + document.execCommand('insertHTML', true, html); + // Recent const emoji = getEmojiFromElement(target); (Array.from(this.recentItemsDiv.children) as HTMLElement[]).forEach((el, idx) => { @@ -259,18 +279,11 @@ export default class EmojiTab implements EmoticonsTab { el.remove(); } }); - //const scrollHeight = this.recentItemsDiv.scrollHeight; + appendEmoji(emoji, this.recentItemsDiv, true); - this.recent.findAndSplice(e => e === emoji); - this.recent.unshift(emoji); - if(this.recent.length > 36) { - this.recent.length = 36; - } - - this.recentItemsDiv.parentElement.classList.toggle('hide', !this.recent.length); - - appStateManager.pushToState('recentEmoji', this.recent); + appEmojiManager.pushRecentEmoji(emoji); + this.recentItemsDiv.parentElement.classList.remove('hide'); // Append to input const event = new Event('input', {bubbles: true, cancelable: true}); diff --git a/src/config/app.ts b/src/config/app.ts index 12b16efa..6e751eb8 100644 --- a/src/config/app.ts +++ b/src/config/app.ts @@ -12,8 +12,8 @@ const App = { id: 1025907, hash: '452b0359b988148995f22ff0f4229750', - version: '0.5.3', - langPackVersion: '0.1.8', + version: '0.5.4', + langPackVersion: '0.1.9', langPack: 'macos', langPackCode: 'en', domains: [] as string[], diff --git a/src/emoji_test.js b/src/emoji_test.js new file mode 100644 index 00000000..5156b765 --- /dev/null +++ b/src/emoji_test.js @@ -0,0 +1,36 @@ +function toCodePoints(unicodeSurrogates) { + const points = []; + let char = 0; + let previous = 0; + let i = 0; + while(i < unicodeSurrogates.length) { + char = unicodeSurrogates.charCodeAt(i++); + if(previous) { + points.push((0x10000 + ((previous - 0xd800) << 10) + (char - 0xdc00)).toString(16)); + previous = 0; + } else if (char > 0xd800 && char <= 0xdbff) { + previous = char; + } else { + points.push(char.toString(16)); + } + } + + if(points.length && points[0].length === 2) { + points[0] = '00' + points[0]; + } + + return points; +} + +var eye = "👁‍🗨"; +toCodePoints(eye) + +function ccc(str) { + return str.split('').map(c => c.charCodeAt(0).toString(16)); +} + +ccc("🏳️‍🌈") +ccc("🏋️‍♀️"); +"🏌‍♀"; + +var regexp = new RegExp("(?:👨🏻‍🤝‍👨�[�-�]|👨🏼‍🤝‍👨�[��-�]|👨🏽‍🤝‍👨�[����]|👨🏾‍🤝‍👨�[�-��]|👨🏿‍🤝‍👨�[�-�]|👩🏻‍🤝‍👨�[�-�]|👩🏻‍🤝‍👩�[�-�]|👩🏼‍🤝‍👨�[��-�]|👩🏼‍🤝‍👩�[��-�]|👩🏽‍🤝‍👨�[����]|👩🏽‍🤝‍👩�[����]|👩🏾‍🤝‍👨�[�-��]|👩🏾‍🤝‍👩�[�-��]|👩🏿‍🤝‍👨�[�-�]|👩🏿‍🤝‍👩�[�-�]|🧑🏻‍🤝‍🧑�[�-�]|🧑🏼‍🤝‍🧑�[�-�]|🧑🏽‍🤝‍🧑�[�-�]|🧑🏾‍🤝‍🧑�[�-�]|🧑🏿‍🤝‍🧑�[�-�]|🧑‍🤝‍🧑|👫�[�-�]|👬�[�-�]|👭�[�-�]|�[�-�])|(?:�[��]|🧑)(?:�[�-�])?‍(?:⚕|⚖|✈|�[���������]|�[������]|�[�-���])|(?:�[��]|�[��]|⛹)((?:�[�-�])‍[♀♂])|(?:�[���]|�[����������-������-�]|�[���-������-��-�])(?:�[�-�])?‍[♀♂]|(?:👨‍❤️‍💋‍👨|👨‍👨‍👦‍👦|👨‍👨‍👧‍�[��]|👨‍👩‍👦‍👦|👨‍👩‍👧‍�[��]|👩‍❤️‍💋‍�[��]|👩‍👩‍👦‍👦|👩‍👩‍👧‍�[��]|👨‍❤️‍👨|👨‍👦‍👦|👨‍👧‍�[��]|👨‍👨‍�[��]|👨‍👩‍�[��]|👩‍❤️‍�[��]|👩‍👦‍👦|👩‍👧‍�[��]|👩‍👩‍�[��]|🏳️‍⚧|🏳️‍🌈|🏴‍☠|🐕‍🦺|🐻‍❄|👁‍🗨|👨‍�[��]|👩‍�[��]|👯‍♀|👯‍♂|🤼‍♀|🤼‍♂|🧞‍♀|🧞‍♂|🧟‍♀|🧟‍♂|🐈‍⬛)|[#*0-9]️?⃣|(?:[©®™♟])|(?:�[�����������-������-������-����]|�[���������-���-�������-��-��-���������-��-����]|[‼⁉ℹ↔-↙↩↪⌚⌛⌨⏏⏭-⏯⏱⏲⏸-⏺Ⓜ▪▫▶◀◻-◾☀-☄☎☑☔☕☘☠☢☣☦☪☮☯☸-☺♀♂♈-♓♠♣♥♦♨♻♿⚒-⚗⚙⚛⚜⚠⚡⚧⚪⚫⚰⚱⚽⚾⛄⛅⛈⛏⛑⛓⛔⛩⛪⛰-⛵⛸⛺⛽✂✈✉✏✒✔✖✝✡✳✴❄❇❗❣❤➡⤴⤵⬅-⬇⬛⬜⭐⭕〰〽㊗㊙])(?:(?!︎))|(?:(?:�[��]|�[���]|[☝⛷⛹✌✍])(?:(?!︎))|(?:�[��-���]|�[���-��-���-���-��-������-��-���-���]|�[���-�����-����������-��-�]|[✊✋]))(?:�[�-�])?|(?:🏴󠁧󠁢󠁥󠁮󠁧󠁿|🏴󠁧󠁢󠁳󠁣󠁴󠁿|🏴󠁧󠁢󠁷󠁬󠁳󠁿|🇦�[�-������-����]|🇧�[���-��-��-�����]|🇨�[����-��-���-�]|🇩�[�������]|🇪�[������-�]|🇫�[�-����]|🇬�[���-��-��-���]|🇭�[������]|🇮�[�-��-��-�]|🇯�[����]|🇰�[��-��������]|🇱�[�-����-��]|🇲�[��-��-�]|🇳�[���-��������]|🇴🇲|🇵�[��-��-��-���]|🇶🇦|🇷�[�����]|🇸�[�-��-��-���-�]|🇹�[����-��-������]|🇺�[�������]|🇻�[�������]|🇼�[��]|🇽🇰|🇾�[��]|🇿�[���]|�[���-��-���-��-����-��-��-��-��-��-������-��-���-�]|�[�-�����-����-��-���-��-��-��-��-���-��-��-��-��-��-��-��-����-��-�]|�[���-���-��-����-��-���-����-���-��-��-��-��-��-��-��-�]|[⏩-⏬⏰⏳♾⛎✅✨❌❎❓-❕➕-➗➰➿])|️") \ No newline at end of file diff --git a/src/helpers/blur.ts b/src/helpers/blur.ts index 69e809e0..bd91f0ad 100644 --- a/src/helpers/blur.ts +++ b/src/helpers/blur.ts @@ -4,50 +4,50 @@ * https://github.com/morethanwords/tweb/blob/master/LICENSE */ -import _DEBUG from '../config/debug'; -import fastBlur from '../vendor/fastBlur'; +import type fastBlur from '../vendor/fastBlur'; import addHeavyTask from './heavyQueue'; const RADIUS = 2; const ITERATIONS = 2; -const DEBUG = _DEBUG && true; +const isFilterAvailable = 'filter' in (document.createElement('canvas').getContext('2d') || {}); +let requireBlurPromise: Promise; +let fastBlurFunc: typeof fastBlur; +if(!isFilterAvailable) { + requireBlurPromise = import('../vendor/fastBlur').then(m => { + fastBlurFunc = m.default; + }); +} else { + requireBlurPromise = Promise.resolve(); +} -function processBlur(dataUri: string, radius: number, iterations: number) { +function processBlurNext(img: HTMLImageElement, radius: number, iterations: number) { return new Promise((resolve) => { - const img = new Image(); + const canvas = document.createElement('canvas'); + canvas.width = img.width; + canvas.height = img.height; - const perf = performance.now(); - if(DEBUG) { - console.log('[blur] start'); + const ctx = canvas.getContext('2d', {alpha: false}); + if(isFilterAvailable) { + ctx.filter = `blur(${radius}px)`; + ctx.drawImage(img, -radius * 2, -radius * 2, canvas.width + radius * 4, canvas.height + radius * 4); + } else { + ctx.drawImage(img, 0, 0); + fastBlurFunc(ctx, 0, 0, canvas.width, canvas.height, radius, iterations); } - img.onload = () => { - const canvas = document.createElement('canvas'); - canvas.width = img.width; - canvas.height = img.height; - - const ctx = canvas.getContext('2d')!; - - //ctx.filter = 'blur(2px)'; - ctx.drawImage(img, 0, 0); - fastBlur(ctx, 0, 0, canvas.width, canvas.height, radius, iterations); + resolve(canvas.toDataURL()); + /* if(DEBUG) { + console.log(`[blur] end, radius: ${radius}, iterations: ${iterations}, time: ${performance.now() - perf}`); + } */ + + /* canvas.toBlob(blob => { + resolve(URL.createObjectURL(blob)); - resolve(canvas.toDataURL()); if(DEBUG) { console.log(`[blur] end, radius: ${radius}, iterations: ${iterations}, time: ${performance.now() - perf}`); } - - /* canvas.toBlob(blob => { - resolve(URL.createObjectURL(blob)); - - if(DEBUG) { - console.log(`[blur] end, radius: ${radius}, iterations: ${iterations}, time: ${performance.now() - perf}`); - } - }); */ - }; - - img.src = dataUri; + }); */ }); } @@ -67,12 +67,30 @@ export default function blur(dataUri: string, radius: number = RADIUS, iteration if(blurPromises.has(dataUri)) return blurPromises.get(dataUri); const promise = new Promise((resolve) => { //return resolve(dataUri); - addHeavyTask({ - items: [[dataUri, radius, iterations]], - context: null, - process: processBlur - }, 'unshift').then(results => { - resolve(results[0]); + requireBlurPromise.then(() => { + const img = new Image(); + img.onload = () => { + if(isFilterAvailable) { + processBlurNext(img, radius, iterations).then(resolve); + } else { + addHeavyTask({ + items: [[img, radius, iterations]], + context: null, + process: processBlurNext + }, 'unshift').then(results => { + resolve(results[0]); + }); + } + }; + img.src = dataUri; + + /* addHeavyTask({ + items: [[dataUri, radius, iterations]], + context: null, + process: processBlur + }, 'unshift').then(results => { + resolve(results[0]); + }); */ }); }); diff --git a/src/helpers/dom/attachListNavigation.ts b/src/helpers/dom/attachListNavigation.ts index 2c613fc0..b154c905 100644 --- a/src/helpers/dom/attachListNavigation.ts +++ b/src/helpers/dom/attachListNavigation.ts @@ -14,11 +14,12 @@ type ArrowKey = 'ArrowUp' | 'ArrowDown' | 'ArrowLeft' | 'ArrowRight'; const HANDLE_EVENT = 'keydown'; const ACTIVE_CLASS_NAME = 'active'; -export default function attachListNavigation({list, type, onSelect, once}: { +export default function attachListNavigation({list, type, onSelect, once, waitForKey}: { list: HTMLElement, type: 'xy' | 'x' | 'y', onSelect: (target: Element) => void | boolean, once: boolean, + waitForKey?: string }) { const keyNames: Set = new Set(['ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight']); @@ -82,7 +83,7 @@ export default function attachListNavigation({list, type, onSelect, once}: { handleArrowKey = (currentTarget, key) => getNextTargetX(currentTarget, key === 'ArrowRight' || key === 'ArrowDown'); } - const onKeyDown = (e: KeyboardEvent) => { + let onKeyDown = (e: KeyboardEvent) => { if(!keyNames.has(e.key as any)) { if(e.key === 'Enter') { cancelEvent(e); @@ -99,8 +100,6 @@ export default function attachListNavigation({list, type, onSelect, once}: { currentTarget = handleArrowKey(currentTarget, e.key as any); setCurrentTarget(currentTarget, true); } - - return false; }; const scrollable = findUpClassName(list, 'scrollable'); @@ -142,10 +141,26 @@ export default function attachListNavigation({list, type, onSelect, once}: { }; const resetTarget = () => { + if(waitForKey) return; setCurrentTarget(list.firstElementChild, false); }; - resetTarget(); + if(waitForKey) { + const _onKeyDown = onKeyDown; + onKeyDown = (e) => { + if(e.key === waitForKey) { + cancelEvent(e); + + document.removeEventListener(HANDLE_EVENT, onKeyDown, {capture: true}); + onKeyDown = _onKeyDown; + document.addEventListener(HANDLE_EVENT, onKeyDown, {capture: true, passive: false}); + + resetTarget(); + } + }; + } else { + resetTarget(); + } // const input = document.activeElement as HTMLElement; // input.addEventListener(HANDLE_EVENT, onKeyDown, {capture: true, passive: false}); diff --git a/src/helpers/dom/getRichElementValue.ts b/src/helpers/dom/getRichElementValue.ts index 1b69c945..09b4bf50 100644 --- a/src/helpers/dom/getRichElementValue.ts +++ b/src/helpers/dom/getRichElementValue.ts @@ -45,43 +45,43 @@ export const markdownTags: {[type in MarkdownType]: MarkdownTag} = { export default function getRichElementValue(node: HTMLElement, lines: string[], line: string[], selNode?: Node, selOffset?: number, entities?: MessageEntity[], offset = {offset: 0}) { if(node.nodeType === 3) { // TEXT + const nodeValue = node.nodeValue; + if(selNode === node) { - const value = node.nodeValue; - line.push(value.substr(0, selOffset) + '\x01' + value.substr(selOffset)); + line.push(nodeValue.substr(0, selOffset) + '\x01' + nodeValue.substr(selOffset)); } else { - const nodeValue = node.nodeValue; line.push(nodeValue); + } - if(entities && nodeValue.trim()) { - if(node.parentNode) { - const parentElement = node.parentElement; - - for(const type in markdownTags) { - const tag = markdownTags[type as MarkdownType]; - const closest = parentElement.closest(tag.match + ', [contenteditable]'); - if(closest && closest.getAttribute('contenteditable') === null) { - if(tag.entityName === 'messageEntityTextUrl') { - entities.push({ - _: tag.entityName as any, - url: (parentElement as HTMLAnchorElement).href, - offset: offset.offset, - length: nodeValue.length - }); - } else { - entities.push({ - _: tag.entityName as any, - offset: offset.offset, - length: nodeValue.length - }); - } + if(entities && nodeValue.trim()) { + if(node.parentNode) { + const parentElement = node.parentElement; + + for(const type in markdownTags) { + const tag = markdownTags[type as MarkdownType]; + const closest = parentElement.closest(tag.match + ', [contenteditable]'); + if(closest && closest.getAttribute('contenteditable') === null) { + if(tag.entityName === 'messageEntityTextUrl') { + entities.push({ + _: tag.entityName as any, + url: (parentElement as HTMLAnchorElement).href, + offset: offset.offset, + length: nodeValue.length + }); + } else { + entities.push({ + _: tag.entityName as any, + offset: offset.offset, + length: nodeValue.length + }); } } } } - - offset.offset += nodeValue.length; } + offset.offset += nodeValue.length; + return; } diff --git a/src/helpers/dom/getRichValueWithCaret.ts b/src/helpers/dom/getRichValueWithCaret.ts index 55ee1219..30697116 100644 --- a/src/helpers/dom/getRichValueWithCaret.ts +++ b/src/helpers/dom/getRichValueWithCaret.ts @@ -18,8 +18,8 @@ export default function getRichValueWithCaret(field: HTMLElement, withEntities = const line: string[] = []; const sel = window.getSelection(); - var selNode - var selOffset + let selNode: Node; + let selOffset: number; if(sel && sel.rangeCount) { const range = sel.getRangeAt(0); if(range.startContainer && diff --git a/src/helpers/dom/setRichFocus.ts b/src/helpers/dom/setRichFocus.ts new file mode 100644 index 00000000..5421608d --- /dev/null +++ b/src/helpers/dom/setRichFocus.ts @@ -0,0 +1,46 @@ +/* + * https://github.com/morethanwords/tweb + * Copyright (C) 2019-2021 Eduard Kuzmenko + * https://github.com/morethanwords/tweb/blob/master/LICENSE + * + * Originally from: + * https://github.com/zhukov/webogram + * Copyright (C) 2014 Igor Zhukov + * https://github.com/zhukov/webogram/blob/master/LICENSE + */ + +export default function setRichFocus(field: HTMLElement, selectNode: Node, noCollapse?: boolean) { + field.focus(); + if(selectNode && + selectNode.parentNode == field && + !selectNode.nextSibling && + !noCollapse) { + field.removeChild(selectNode); + selectNode = null; + } + + if(window.getSelection && document.createRange) { + const range = document.createRange(); + if(selectNode) { + range.selectNode(selectNode); + } else { + range.selectNodeContents(field); + } + + if(!noCollapse) { + range.collapse(false); + } + + const sel = window.getSelection(); + sel.removeAllRanges(); + sel.addRange(range); + } + /* else if (document.body.createTextRange !== undefined) { + var textRange = document.body.createTextRange() + textRange.moveToElementText(selectNode || field) + if (!noCollapse) { + textRange.collapse(false) + } + textRange.select() + } */ +} diff --git a/src/lang.ts b/src/lang.ts index af7d01c9..fed0c0e4 100644 --- a/src/lang.ts +++ b/src/lang.ts @@ -43,6 +43,11 @@ const lang = { }, "Chat.Search.NoMessagesFound": "No messages found", "Chat.Search.PrivateSearch": "Private Search", + "ConnectionStatus.ReconnectIn": "Reconnect in %ds, %s", + "ConnectionStatus.Reconnect": "reconnect", + "ConnectionStatus.Waiting": "Waiting for network...", + "Deactivated.Title": "Too many tabs...", + "Deactivated.Subtitle": "Telegram supports only one active tab with the app.\nClick anywhere to continue using this tab.", //"Saved": "Saved", "General.Keyboard": "Keyboard", "General.SendShortcut.Enter": "Send by Enter", @@ -430,6 +435,7 @@ const lang = { "Recent": "Recent", "Of": "%1$d of %2$d", "NoResult": "No results", + "Updating": "Updating...", // * macos "AccountSettings.Filters": "Chat Folders", diff --git a/src/layer.d.ts b/src/layer.d.ts index 067e7307..b4b5a5f5 100644 --- a/src/layer.d.ts +++ b/src/layer.d.ts @@ -4025,7 +4025,7 @@ export namespace ReplyMarkup { /** * @link https://core.telegram.org/type/MessageEntity */ -export type MessageEntity = MessageEntity.messageEntityUnknown | MessageEntity.messageEntityMention | MessageEntity.messageEntityHashtag | MessageEntity.messageEntityBotCommand | MessageEntity.messageEntityUrl | MessageEntity.messageEntityEmail | MessageEntity.messageEntityBold | MessageEntity.messageEntityItalic | MessageEntity.messageEntityCode | MessageEntity.messageEntityPre | MessageEntity.messageEntityTextUrl | MessageEntity.messageEntityMentionName | MessageEntity.inputMessageEntityMentionName | MessageEntity.messageEntityPhone | MessageEntity.messageEntityCashtag | MessageEntity.messageEntityUnderline | MessageEntity.messageEntityStrike | MessageEntity.messageEntityBlockquote | MessageEntity.messageEntityBankCard | MessageEntity.messageEntityEmoji | MessageEntity.messageEntityHighlight | MessageEntity.messageEntityLinebreak; +export type MessageEntity = MessageEntity.messageEntityUnknown | MessageEntity.messageEntityMention | MessageEntity.messageEntityHashtag | MessageEntity.messageEntityBotCommand | MessageEntity.messageEntityUrl | MessageEntity.messageEntityEmail | MessageEntity.messageEntityBold | MessageEntity.messageEntityItalic | MessageEntity.messageEntityCode | MessageEntity.messageEntityPre | MessageEntity.messageEntityTextUrl | MessageEntity.messageEntityMentionName | MessageEntity.inputMessageEntityMentionName | MessageEntity.messageEntityPhone | MessageEntity.messageEntityCashtag | MessageEntity.messageEntityUnderline | MessageEntity.messageEntityStrike | MessageEntity.messageEntityBlockquote | MessageEntity.messageEntityBankCard | MessageEntity.messageEntityEmoji | MessageEntity.messageEntityHighlight | MessageEntity.messageEntityLinebreak | MessageEntity.messageEntityCaret; export namespace MessageEntity { export type messageEntityUnknown = { @@ -4164,6 +4164,12 @@ export namespace MessageEntity { offset?: number, length?: number }; + + export type messageEntityCaret = { + _: 'messageEntityCaret', + offset?: number, + length?: number + }; } /** @@ -9649,6 +9655,7 @@ export interface ConstructorDeclMap { 'messageEntityEmoji': MessageEntity.messageEntityEmoji, 'messageEntityHighlight': MessageEntity.messageEntityHighlight, 'messageEntityLinebreak': MessageEntity.messageEntityLinebreak, + 'messageEntityCaret': MessageEntity.messageEntityCaret, 'messageActionChatLeave': MessageAction.messageActionChatLeave, 'messageActionChannelDeletePhoto': MessageAction.messageActionChannelDeletePhoto, 'messageActionChannelEditTitle': MessageAction.messageActionChannelEditTitle, diff --git a/src/lib/appManagers/appDialogsManager.ts b/src/lib/appManagers/appDialogsManager.ts index 289dbd51..86ff674a 100644 --- a/src/lib/appManagers/appDialogsManager.ts +++ b/src/lib/appManagers/appDialogsManager.ts @@ -32,7 +32,7 @@ import App from "../../config/app"; import DEBUG, { MOUNT_CLASS_TO } from "../../config/debug"; import appNotificationsManager from "./appNotificationsManager"; import PeerTitle from "../../components/peerTitle"; -import { i18n, _i18n } from "../langPack"; +import { i18n, LangPackKey, _i18n } from "../langPack"; import findUpTag from "../../helpers/dom/findUpTag"; import { LazyLoadQueueIntersector } from "../../components/lazyLoadQueue"; import lottieLoader from "../lottieLoader"; @@ -67,8 +67,9 @@ class ConnectionStatusComponent { private statusEl: HTMLElement; private statusPreloader: ProgressivePreloader; - private currentText = ''; + private currentLangPackKey = ''; + private connectingTimeout: number; private connecting = false; private updating = false; @@ -151,23 +152,29 @@ class ConnectionStatusComponent { } this.connecting = !online; + this.connectingTimeout = status && status.timeout; DEBUG && this.log('connecting', this.connecting); this.setState(); }); }; - private setStatusText = (text: string) => { - if(this.currentText === text) return; - this.statusEl.innerText = this.currentText = text; + private setStatusText = (langPackKey: LangPackKey) => { + if(this.currentLangPackKey === langPackKey) return; + this.currentLangPackKey = langPackKey; + replaceContent(this.statusEl, i18n(langPackKey)); this.statusPreloader.attach(this.statusEl); }; private setState = () => { const timeout = ConnectionStatusComponent.CHANGE_STATE_DELAY; if(this.connecting) { - this.setStatusText('Waiting for network...'); + // if(this.connectingTimeout) { + // this.setStatusText('ConnectionStatus.Reconnect'); + // } else { + this.setStatusText('ConnectionStatus.Waiting'); + // } } else if(this.updating) { - this.setStatusText('Updating...'); + this.setStatusText('Updating'); } DEBUG && this.log('setState', this.connecting || this.updating); @@ -908,7 +915,7 @@ export class AppDialogsManager { const offsetTop = this.folders.container.offsetTop; const firstY = rectContainer.y + offsetTop; - const lastY = rectContainer.y - 8; // 8px - .chatlist padding-bottom + const lastY = rectContainer.y/* - 8 */; // 8px - .chatlist padding-bottom const firstElement = findUpTag(document.elementFromPoint(Math.ceil(rectTarget.x), Math.ceil(firstY + 1)), firstElementChild.tagName) as HTMLElement; const lastElement = findUpTag(document.elementFromPoint(Math.ceil(rectTarget.x), Math.floor(lastY + rectContainer.height - 1)), firstElementChild.tagName) as HTMLElement; diff --git a/src/lib/appManagers/appEmojiManager.ts b/src/lib/appManagers/appEmojiManager.ts index 64c9430b..6db5f143 100644 --- a/src/lib/appManagers/appEmojiManager.ts +++ b/src/lib/appManagers/appEmojiManager.ts @@ -1,3 +1,9 @@ +/* + * https://github.com/morethanwords/tweb + * Copyright (C) 2019-2021 Eduard Kuzmenko + * https://github.com/morethanwords/tweb/blob/master/LICENSE + */ + import App from "../../config/app"; import { MOUNT_CLASS_TO } from "../../config/debug"; import { validateInitObject } from "../../helpers/object"; @@ -6,6 +12,7 @@ import { isObject } from "../mtproto/bin_utils"; import apiManager from "../mtproto/mtprotoworker"; import SearchIndex from "../searchIndex"; import sessionStorage from "../sessionStorage"; +import appStateManager from "./appStateManager"; type EmojiLangPack = { keywords: { @@ -21,7 +28,10 @@ const EMOJI_LANG_PACK: EmojiLangPack = { langCode: App.langPackCode }; +const RECENT_MAX_LENGTH = 36; + export class AppEmojiManager { + private static POPULAR_EMOJI = ["😂", "😘", "❤️", "😍", "😊", "😁", "👍", "☺️", "😔", "😄", "😭", "💋", "😒", "😳", "😜", "🙈", "😉", "😃", "😢", "😝", "😱", "😡", "😏", "😞", "😅", "😚", "🙊", "😌", "😀", "😋", "😆", "👌", "😐", "😕"]; private keywordLangPacks: { [langCode: string]: EmojiLangPack } = {}; @@ -31,6 +41,9 @@ export class AppEmojiManager { private getKeywordsPromises: {[langCode: string]: Promise} = {}; + private recent: string[]; + private getRecentEmojisPromise: Promise; + /* public getPopularEmoji() { return sessionStorage.get('emojis_popular').then(popEmojis => { var result = [] @@ -134,7 +147,7 @@ export class AppEmojiManager { } public getBothEmojiKeywords() { - const promises: ReturnType[] = [ + const promises: Promise[] = [ this.getEmojiKeywords() ]; @@ -142,12 +155,16 @@ export class AppEmojiManager { promises.push(this.getEmojiKeywords(I18n.lastRequestedLangCode)); } + if(!this.recent) { + promises.push(this.getRecentEmojis()); + } + return Promise.all(promises); } public indexEmojis() { if(!this.index) { - this.index = new SearchIndex(); + this.index = new SearchIndex(false, false); } for(const langCode in this.keywordLangPacks) { @@ -169,15 +186,48 @@ export class AppEmojiManager { public searchEmojis(q: string) { this.indexEmojis(); + + q = q.toLowerCase().replace(/_/g, ' '); //const perf = performance.now(); - const set = this.index.search(q); - const flattened = Array.from(set).reduce((acc, v) => acc.concat(v), []); - const emojis = Array.from(new Set(flattened)); + let emojis: Array; + if(q.trim()) { + const set = this.index.search(q); + emojis = Array.from(set).reduce((acc, v) => acc.concat(v), []); + } else { + emojis = this.recent.concat(AppEmojiManager.POPULAR_EMOJI).slice(0, RECENT_MAX_LENGTH); + } + + emojis = Array.from(new Set(emojis)); //console.log('searchEmojis', q, 'time', performance.now() - perf); + /* for(let i = 0, length = emojis.length; i < length; ++i) { + if(emojis[i].includes(zeroWidthJoiner) && !emojis[i].includes('\ufe0f')) { + emojis[i] += '\ufe0f'; + } + } */ + return emojis; } + + public getRecentEmojis() { + if(this.getRecentEmojisPromise) return this.getRecentEmojisPromise; + return this.getRecentEmojisPromise = appStateManager.getState().then(state => { + return this.recent = Array.isArray(state.recentEmoji) ? state.recentEmoji : []; + }); + } + + public pushRecentEmoji(emoji: string) { + this.getRecentEmojis().then(recent => { + recent.findAndSplice(e => e === emoji); + recent.unshift(emoji); + if(recent.length > RECENT_MAX_LENGTH) { + recent.length = RECENT_MAX_LENGTH; + } + + appStateManager.pushToState('recentEmoji', recent); + }); + } } const appEmojiManager = new AppEmojiManager(); diff --git a/src/lib/appManagers/appImManager.ts b/src/lib/appManagers/appImManager.ts index 1c6dd525..1926bb67 100644 --- a/src/lib/appManagers/appImManager.ts +++ b/src/lib/appManagers/appImManager.ts @@ -57,6 +57,8 @@ import placeCaretAtEnd from '../../helpers/dom/placeCaretAtEnd'; import replaceContent from '../../helpers/dom/replaceContent'; import whichChild from '../../helpers/dom/whichChild'; import appEmojiManager from './appEmojiManager'; +import PopupElement from '../../components/popups'; +import singleInstance from '../mtproto/singleInstance'; //console.log('appImManager included33!'); @@ -181,6 +183,38 @@ export class AppImManager { this.applyCurrentTheme(); }); + rootScope.on('instance_deactivated', () => { + const popup = new PopupElement('popup-instance-deactivated', undefined, {overlayClosable: true}); + const c = document.createElement('div'); + c.classList.add('instance-deactivated-container'); + (popup as any).container.replaceWith(c); + + const header = document.createElement('div'); + header.classList.add('header'); + header.append(i18n('Deactivated.Title')); + + const subtitle = document.createElement('div'); + subtitle.classList.add('subtitle'); + subtitle.append(i18n('Deactivated.Subtitle')); + + c.append(header, subtitle); + + document.body.classList.add('deactivated'); + + (popup as any).onClose = () => { + document.body.classList.add('deactivated-backwards'); + + singleInstance.reset(); + singleInstance.checkInstance(false); + + setTimeout(() => { + document.body.classList.remove('deactivated', 'deactivated-backwards'); + }, 333); + }; + + popup.show(); + }); + sessionStorage.get('chatPositions').then((c) => { sessionStorage.setToCache('chatPositions', c || {}); }); @@ -723,7 +757,7 @@ export class AppImManager { if(!this.myId) return Promise.resolve(); appUsersManager.setUserStatus(this.myId, this.offline); - return apiManager.invokeApi('account.updateStatus', {offline: this.offline}); + return apiManager.invokeApiSingle('account.updateStatus', {offline: this.offline}); } private createNewChat() { diff --git a/src/lib/appManagers/appMessagesManager.ts b/src/lib/appManagers/appMessagesManager.ts index e5ab0e78..ae62f4ad 100644 --- a/src/lib/appManagers/appMessagesManager.ts +++ b/src/lib/appManagers/appMessagesManager.ts @@ -1654,6 +1654,11 @@ export class AppMessagesManager { telegramMeWebService.setAuthorized(true); } */ + // can reset here pinned order + if(!offsetId && !offsetDate && !offsetPeerId) { + this.dialogsStorage.resetPinnedOrder(folderId); + } + appUsersManager.saveApiUsers(dialogsResult.users); appChatsManager.saveApiChats(dialogsResult.chats); this.saveMessages(dialogsResult.messages); @@ -1666,6 +1671,12 @@ export class AppMessagesManager { // ! нужно передавать folderId, так как по папке !== 0 нет свойства folder_id this.dialogsStorage.saveDialog(dialog, dialog.folder_id ?? folderId); + if(!maxSeenIdIncremented && + !appPeersManager.isChannel(appPeersManager.getPeerId(dialog.peer))) { + this.incrementMaxSeenId(dialog.top_message); + maxSeenIdIncremented = true; + } + if(dialog.peerId === undefined) { return; } @@ -1690,12 +1701,6 @@ export class AppMessagesManager { this.log.error('lun bot', folderId); } */ } - - if(!maxSeenIdIncremented && - !appPeersManager.isChannel(appPeersManager.getPeerId(dialog.peer))) { - this.incrementMaxSeenId(dialog.top_message); - maxSeenIdIncremented = true; - } }); if(Object.keys(noIdsDialogs).length) { @@ -1712,8 +1717,8 @@ export class AppMessagesManager { const count = (dialogsResult as MessagesDialogs.messagesDialogsSlice).count; - if(!dialogsResult.dialogs.length || - !count || + if(limit > dialogsResult.dialogs.length || + !count || dialogs.length >= count) { this.dialogsStorage.setDialogsLoaded(folderId, true); } @@ -4540,7 +4545,8 @@ export class AppMessagesManager { delete historyStorage.maxId; slice.unsetEnd(SliceEnd.Bottom); - let historyResult = this.getHistory(peerId, slice[0], 0, 50, threadId); + // if there is no id - then request by first id because cannot request by id 0 with backLimit + let historyResult = this.getHistory(peerId, slice[0] ?? 1, 0, 50, threadId); if(historyResult instanceof Promise) { historyResult = await historyResult; } diff --git a/src/lib/appManagers/appPhotosManager.ts b/src/lib/appManagers/appPhotosManager.ts index 7940ed93..28909a66 100644 --- a/src/lib/appManagers/appPhotosManager.ts +++ b/src/lib/appManagers/appPhotosManager.ts @@ -240,6 +240,7 @@ export class AppPhotosManager { if(message && (message.message || + message.reply_to_mid || message.media.webpage || (message.replies && message.replies.pFlags.comments && message.replies.channel_id !== 777) ) diff --git a/src/lib/appManagers/appStateManager.ts b/src/lib/appManagers/appStateManager.ts index 10f4f5c8..68f325eb 100644 --- a/src/lib/appManagers/appStateManager.ts +++ b/src/lib/appManagers/appStateManager.ts @@ -22,6 +22,7 @@ import { Chat } from '../../layer'; import { isMobile } from '../../helpers/userAgent'; const REFRESH_EVERY = 24 * 60 * 60 * 1000; // 1 day +const REFRESH_EVERY_WEEK = 24 * 60 * 60 * 1000 * 7; // 7 days const STATE_VERSION = App.version; export type Background = { @@ -145,8 +146,10 @@ export const STATE_INIT: State = { const ALL_KEYS = Object.keys(STATE_INIT) as any as Array; -const REFRESH_KEYS = ['dialogs', 'allDialogsLoaded', 'messages', 'contactsList', 'stateCreatedTime', - 'updates', 'maxSeenMsgId', 'filters', 'topPeers', 'pinnedOrders'] as any as Array; +const REFRESH_KEYS = ['contactsList', 'stateCreatedTime', + 'maxSeenMsgId', 'filters', 'topPeers'] as any as Array; + +const REFRESH_KEYS_WEEK = ['dialogs', 'allDialogsLoaded', 'updates', 'pinnedOrders'] as any as Array; export class AppStateManager extends EventListenerBase<{ save: (state: State) => Promise, @@ -265,16 +268,28 @@ export class AppStateManager extends EventListenerBase<{ if(DEBUG) { this.log('will refresh state', state.stateCreatedTime, time); } + + const r = (keys: typeof REFRESH_KEYS) => { + keys.forEach(key => { + this.pushToState(key, copy(STATE_INIT[key])); + + // @ts-ignore + const s = this.storagesResults[key]; + if(s && s.length) { + s.length = 0; + } + }); + }; - REFRESH_KEYS.forEach(key => { - this.pushToState(key, copy(STATE_INIT[key])); + r(REFRESH_KEYS); - // @ts-ignore - const s = this.storagesResults[key]; - if(s && s.length) { - s.length = 0; + if((state.stateCreatedTime + REFRESH_EVERY_WEEK) < time) { + if(DEBUG) { + this.log('will refresh updates'); } - }); + + r(REFRESH_KEYS_WEEK); + } } //state = this.state = new Proxy(state, getHandler()); diff --git a/src/lib/config.ts b/src/lib/config.ts index 4548d41a..b01c8d36 100644 --- a/src/lib/config.ts +++ b/src/lib/config.ts @@ -13,11 +13,11 @@ import { MOUNT_CLASS_TO } from '../config/debug'; import mediaSizes from '../helpers/mediaSizes'; // !WARNING, ТУТ СЛОЖНО! по-хорошему, надо бы это переделать без fe0f, но они здесь необходимы чтобы отрендерить панель, и ниже дописаны 3 элемента которые не воспроизводятся без fe0f -export const Emoji: {[emoji: string]: number} = {"2049":6356,"2122":6364,"2139":6389,"2194":6269,"2195":6268,"2196":6267,"2197":6261,"2198":6263,"2199":6265,"2328":680,"2600":4177,"2601":4185,"2602":4200,"2603":4205,"2604":4207,"2611":6341,"2614":4201,"2615":3101,"2618":2123,"2620":194,"2622":6258,"2623":6259,"2626":6288,"2638":6285,"2639":166,"2648":6293,"2649":6294,"2650":6301,"2651":6302,"2652":6303,"2653":6304,"2660":567,"2663":570,"2665":568,"2666":569,"2668":457,"2692":6184,"2693":4110,"2694":6187,"2696":6195,"2697":6201,"2699":6193,"2702":6171,"2705":6340,"2708":4118,"2709":6132,"2712":6146,"2714":6342,"2716":6343,"2721":6284,"2728":56,"2733":6352,"2734":6353,"2744":4204,"2747":6354,"2753":6357,"2754":6358,"2755":6359,"2757":6360,"2763":1125,"2764":1127,"2795":6346,"2796":6347,"2797":6348,"2934":6272,"2935":6273,"3030":6361,"3297":6413,"3299":6414,"0023-20e3":6365,"002a-20e3":6366,"0030-20e3":6367,"0031-20e3":6368,"0032-20e3":6369,"0033-20e3":6370,"0034-20e3":6371,"0035-20e3":6372,"0036-20e3":6373,"0037-20e3":6374,"0038-20e3":6375,"0039-20e3":6376,"00a9":6362,"00ae":6363,"1f004":573,"1f0cf":572,"1f170":6383,"1f171":6385,"1f17e":6394,"1f17f":6396,"1f18e":6384,"1f191":6386,"1f192":6387,"1f193":6388,"1f194":6390,"1f195":6392,"1f196":6393,"1f197":6395,"1f198":6397,"1f199":6398,"1f19a":6399,"1f1e6-1f1e8":78,"1f1e6-1f1e9":79,"1f1e6-1f1ea":710,"1f1e6-1f1eb":711,"1f1e6-1f1ec":712,"1f1e6-1f1ee":713,"1f1e6-1f1f1":714,"1f1e6-1f1f2":715,"1f1e6-1f1f4":716,"1f1e6-1f1f6":717,"1f1e6-1f1f7":718,"1f1e6-1f1f8":719,"1f1e6-1f1f9":720,"1f1e6-1f1fa":721,"1f1e6-1f1fc":722,"1f1e6-1f1fd":723,"1f1e6-1f1ff":724,"1f1e7-1f1e6":725,"1f1e7-1f1e7":726,"1f1e7-1f1e9":727,"1f1e7-1f1ea":728,"1f1e7-1f1eb":729,"1f1e7-1f1ec":730,"1f1e7-1f1ed":731,"1f1e7-1f1ee":732,"1f1e7-1f1ef":733,"1f1e7-1f1f1":734,"1f1e7-1f1f2":735,"1f1e7-1f1f3":736,"1f1e7-1f1f4":737,"1f1e7-1f1f6":738,"1f1e7-1f1f7":739,"1f1e7-1f1f8":740,"1f1e7-1f1f9":741,"1f1e7-1f1fb":742,"1f1e7-1f1fc":743,"1f1e7-1f1fe":744,"1f1e7-1f1ff":745,"1f1e8-1f1e6":746,"1f1e8-1f1e8":747,"1f1e8-1f1e9":748,"1f1e8-1f1eb":749,"1f1e8-1f1ec":750,"1f1e8-1f1ed":751,"1f1e8-1f1ee":752,"1f1e8-1f1f0":753,"1f1e8-1f1f1":754,"1f1e8-1f1f2":755,"1f1e8-1f1f3":756,"1f1e8-1f1f4":757,"1f1e8-1f1f5":758,"1f1e8-1f1f7":759,"1f1e8-1f1fa":760,"1f1e8-1f1fb":761,"1f1e8-1f1fc":762,"1f1e8-1f1fd":763,"1f1e8-1f1fe":764,"1f1e8-1f1ff":765,"1f1e9-1f1ea":766,"1f1e9-1f1ec":767,"1f1e9-1f1ef":768,"1f1e9-1f1f0":769,"1f1e9-1f1f2":770,"1f1e9-1f1f4":771,"1f1e9-1f1ff":772,"1f1ea-1f1e6":773,"1f1ea-1f1e8":774,"1f1ea-1f1ea":775,"1f1ea-1f1ec":776,"1f1ea-1f1ed":777,"1f1ea-1f1f7":778,"1f1ea-1f1f8":779,"1f1ea-1f1f9":780,"1f1ea-1f1fa":781,"1f1eb-1f1ee":782,"1f1eb-1f1ef":783,"1f1eb-1f1f0":784,"1f1eb-1f1f2":785,"1f1eb-1f1f4":786,"1f1eb-1f1f7":787,"1f1ec-1f1e6":788,"1f1ec-1f1e7":789,"1f1ec-1f1e9":790,"1f1ec-1f1ea":791,"1f1ec-1f1eb":792,"1f1ec-1f1ec":793,"1f1ec-1f1ed":794,"1f1ec-1f1ee":795,"1f1ec-1f1f1":796,"1f1ec-1f1f2":797,"1f1ec-1f1f3":798,"1f1ec-1f1f5":799,"1f1ec-1f1f6":7100,"1f1ec-1f1f7":7101,"1f1ec-1f1f8":7102,"1f1ec-1f1f9":7103,"1f1ec-1f1fa":7104,"1f1ec-1f1fc":7105,"1f1ec-1f1fe":7106,"1f1ed-1f1f0":7107,"1f1ed-1f1f2":7108,"1f1ed-1f1f3":7109,"1f1ed-1f1f7":7110,"1f1ed-1f1f9":7111,"1f1ed-1f1fa":7112,"1f1ee-1f1e8":7113,"1f1ee-1f1e9":7114,"1f1ee-1f1ea":7115,"1f1ee-1f1f1":7116,"1f1ee-1f1f2":7117,"1f1ee-1f1f3":7118,"1f1ee-1f1f4":7119,"1f1ee-1f1f6":7120,"1f1ee-1f1f7":7121,"1f1ee-1f1f8":7122,"1f1ee-1f1f9":7123,"1f1ef-1f1ea":7124,"1f1ef-1f1f2":7125,"1f1ef-1f1f4":7126,"1f1ef-1f1f5":7127,"1f1f0-1f1ea":7128,"1f1f0-1f1ec":7129,"1f1f0-1f1ed":7130,"1f1f0-1f1ee":7131,"1f1f0-1f1f2":7132,"1f1f0-1f1f3":7133,"1f1f0-1f1f5":7134,"1f1f0-1f1f7":7135,"1f1f0-1f1fc":7136,"1f1f0-1f1fe":7137,"1f1f0-1f1ff":7138,"1f1f1-1f1e6":7139,"1f1f1-1f1e7":7140,"1f1f1-1f1e8":7141,"1f1f1-1f1ee":7142,"1f1f1-1f1f0":7143,"1f1f1-1f1f7":7144,"1f1f1-1f1f8":7145,"1f1f1-1f1f9":7146,"1f1f1-1f1fa":7147,"1f1f1-1f1fb":7148,"1f1f1-1f1fe":7149,"1f1f2-1f1e6":7150,"1f1f2-1f1e8":7151,"1f1f2-1f1e9":7152,"1f1f2-1f1ea":7153,"1f1f2-1f1eb":7154,"1f1f2-1f1ec":7155,"1f1f2-1f1ed":7156,"1f1f2-1f1f0":7157,"1f1f2-1f1f1":7158,"1f1f2-1f1f2":7159,"1f1f2-1f1f3":7160,"1f1f2-1f1f4":7161,"1f1f2-1f1f5":7162,"1f1f2-1f1f6":7163,"1f1f2-1f1f7":7164,"1f1f2-1f1f8":7165,"1f1f2-1f1f9":7166,"1f1f2-1f1fa":7167,"1f1f2-1f1fb":7168,"1f1f2-1f1fc":7169,"1f1f2-1f1fd":7170,"1f1f2-1f1fe":7171,"1f1f2-1f1ff":7172,"1f1f3-1f1e6":7173,"1f1f3-1f1e8":7174,"1f1f3-1f1ea":7175,"1f1f3-1f1eb":7176,"1f1f3-1f1ec":7177,"1f1f3-1f1ee":7178,"1f1f3-1f1f1":7179,"1f1f3-1f1f4":7180,"1f1f3-1f1f5":7181,"1f1f3-1f1f7":7182,"1f1f3-1f1fa":7183,"1f1f3-1f1ff":7184,"1f1f4-1f1f2":7185,"1f1f5-1f1e6":7186,"1f1f5-1f1ea":7187,"1f1f5-1f1eb":7188,"1f1f5-1f1ec":7189,"1f1f5-1f1ed":7190,"1f1f5-1f1f0":7191,"1f1f5-1f1f1":7192,"1f1f5-1f1f2":7193,"1f1f5-1f1f3":7194,"1f1f5-1f1f7":7195,"1f1f5-1f1f8":7196,"1f1f5-1f1f9":7197,"1f1f5-1f1fc":7198,"1f1f5-1f1fe":7199,"1f1f6-1f1e6":7200,"1f1f7-1f1ea":7201,"1f1f7-1f1f4":7202,"1f1f7-1f1f8":7203,"1f1f7-1f1fa":7204,"1f1f7-1f1fc":7205,"1f1f8-1f1e6":7206,"1f1f8-1f1e7":7207,"1f1f8-1f1e8":7208,"1f1f8-1f1e9":7209,"1f1f8-1f1ea":7210,"1f1f8-1f1ec":7211,"1f1f8-1f1ed":7212,"1f1f8-1f1ee":7213,"1f1f8-1f1ef":7214,"1f1f8-1f1f0":7215,"1f1f8-1f1f1":7216,"1f1f8-1f1f2":7217,"1f1f8-1f1f3":7218,"1f1f8-1f1f4":7219,"1f1f8-1f1f7":7220,"1f1f8-1f1f8":7221,"1f1f8-1f1f9":7222,"1f1f8-1f1fb":7223,"1f1f8-1f1fd":7224,"1f1f8-1f1fe":7225,"1f1f8-1f1ff":7226,"1f1f9-1f1e6":7227,"1f1f9-1f1e8":7228,"1f1f9-1f1e9":7229,"1f1f9-1f1eb":7230,"1f1f9-1f1ec":7231,"1f1f9-1f1ed":7232,"1f1f9-1f1ef":7233,"1f1f9-1f1f0":7234,"1f1f9-1f1f1":7235,"1f1f9-1f1f2":7236,"1f1f9-1f1f3":7237,"1f1f9-1f1f4":7238,"1f1f9-1f1f7":7239,"1f1f9-1f1f9":7240,"1f1f9-1f1fb":7241,"1f1f9-1f1fc":7242,"1f1f9-1f1ff":7243,"1f1fa-1f1e6":7244,"1f1fa-1f1ec":7245,"1f1fa-1f1f2":7246,"1f1fa-1f1f3":7247,"1f1fa-1f1f8":7248,"1f1fa-1f1fe":7249,"1f1fa-1f1ff":7250,"1f1fb-1f1e6":7251,"1f1fb-1f1e8":7252,"1f1fb-1f1ea":7253,"1f1fb-1f1ec":7254,"1f1fb-1f1ee":7255,"1f1fb-1f1f3":7256,"1f1fb-1f1fa":7257,"1f1fc-1f1eb":7258,"1f1fc-1f1f8":7259,"1f1fd-1f1f0":7260,"1f1fe-1f1ea":7261,"1f1fe-1f1f9":7262,"1f1ff-1f1e6":7263,"1f1ff-1f1f2":7264,"1f1ff-1f1fc":7265,"1f201":6400,"1f202":6401,"1f21a":6407,"1f22f":6404,"1f232":6408,"1f233":6412,"1f234":6411,"1f235":6416,"1f236":6403,"1f237":6402,"1f238":6410,"1f239":6406,"1f23a":6415,"1f250":6405,"1f251":6409,"1f300":4197,"1f301":449,"1f302":4199,"1f303":450,"1f304":452,"1f305":453,"1f306":454,"1f307":455,"1f308":4198,"1f309":456,"1f30a":4210,"1f30b":410,"1f30c":4184,"1f30d":41,"1f30e":42,"1f30f":43,"1f310":44,"1f311":4164,"1f312":4165,"1f313":4166,"1f314":4167,"1f315":4168,"1f316":4169,"1f317":4170,"1f318":4171,"1f319":4172,"1f31a":4173,"1f31b":4174,"1f31c":4175,"1f31d":4178,"1f31e":4179,"1f31f":4182,"1f320":4183,"1f321":4176,"1f324":4188,"1f325":4189,"1f326":4190,"1f327":4191,"1f328":4192,"1f329":4193,"1f32a":4194,"1f32b":4195,"1f32c":4196,"1f32d":347,"1f32e":349,"1f32f":350,"1f330":331,"1f331":2116,"1f332":2117,"1f333":2118,"1f334":2119,"1f335":2120,"1f336":323,"1f337":2115,"1f338":2107,"1f339":2110,"1f33a":2112,"1f33b":2113,"1f33c":2114,"1f33d":322,"1f33e":2121,"1f33f":2122,"1f340":2124,"1f341":2125,"1f342":2126,"1f343":2127,"1f344":329,"1f345":316,"1f346":319,"1f347":31,"1f348":32,"1f349":33,"1f34a":34,"1f34b":35,"1f34c":36,"1f34d":37,"1f34e":39,"1f34f":310,"1f350":311,"1f351":312,"1f352":313,"1f353":314,"1f354":344,"1f355":346,"1f356":340,"1f357":341,"1f358":364,"1f359":365,"1f35a":366,"1f35b":367,"1f35c":368,"1f35d":369,"1f35e":332,"1f35f":345,"1f360":370,"1f361":376,"1f362":371,"1f363":372,"1f364":373,"1f365":374,"1f366":385,"1f367":386,"1f368":387,"1f369":388,"1f36a":389,"1f36b":394,"1f36c":395,"1f36d":396,"1f36e":397,"1f36f":398,"1f370":391,"1f371":363,"1f372":356,"1f373":354,"1f374":3118,"1f375":3102,"1f376":3103,"1f377":3105,"1f378":3106,"1f379":3107,"1f37a":3108,"1f37b":3109,"1f37c":399,"1f37d":3117,"1f37e":3104,"1f37f":359,"1f380":517,"1f381":518,"1f382":390,"1f383":51,"1f384":52,"1f385":1326,"1f386":53,"1f387":54,"1f388":57,"1f389":58,"1f38a":59,"1f38b":510,"1f38c":73,"1f38d":511,"1f38e":512,"1f38f":513,"1f390":514,"1f391":515,"1f392":625,"1f393":637,"1f396":522,"1f397":519,"1f399":656,"1f39a":657,"1f39b":658,"1f39e":689,"1f39f":520,"1f3a0":458,"1f3a1":459,"1f3a2":460,"1f3a3":549,"1f3a4":659,"1f3a5":688,"1f3a6":6324,"1f3a7":660,"1f3a8":577,"1f3a9":636,"1f3aa":462,"1f3ab":521,"1f3ac":691,"1f3ad":575,"1f3ae":561,"1f3af":555,"1f3b0":563,"1f3b1":558,"1f3b2":564,"1f3b3":537,"1f3b4":574,"1f3b5":654,"1f3b6":655,"1f3b7":662,"1f3b8":663,"1f3b9":664,"1f3ba":665,"1f3bb":666,"1f3bc":653,"1f3bd":551,"1f3be":535,"1f3bf":552,"1f3c0":531,"1f3c1":71,"1f3c2":1397,"1f3c3-200d-2640-fe0f":1381,"1f3c3-200d-2642-fe0f":1380,"1f3c3":1379,"1f3c4-200d-2640-fe0f":1403,"1f3c4-200d-2642-fe0f":1402,"1f3c4":1401,"1f3c5":524,"1f3c6":523,"1f3c7":1395,"1f3c8":533,"1f3c9":534,"1f3ca-200d-2640-fe0f":1409,"1f3ca-200d-2642-fe0f":1408,"1f3ca":1407,"1f3cb-fe0f-200d-2640-fe0f":1415,"1f3cb-fe0f-200d-2642-fe0f":1414,"1f3cb":1413,"1f3cc-fe0f-200d-2640-fe0f":1400,"1f3cc-fe0f-200d-2642-fe0f":1399,"1f3cc":1398,"1f3cd":492,"1f3ce":491,"1f3cf":538,"1f3d0":532,"1f3d1":539,"1f3d2":540,"1f3d3":542,"1f3d4":48,"1f3d5":412,"1f3d6":413,"1f3d7":419,"1f3d8":421,"1f3d9":451,"1f3da":422,"1f3db":418,"1f3dc":414,"1f3dd":415,"1f3de":416,"1f3df":417,"1f3e0":423,"1f3e1":424,"1f3e2":425,"1f3e3":426,"1f3e4":427,"1f3e5":428,"1f3e6":429,"1f3e7":6234,"1f3e8":430,"1f3e9":431,"1f3ea":432,"1f3eb":433,"1f3ec":434,"1f3ed":435,"1f3ee":6102,"1f3ef":436,"1f3f0":437,"1f3f3-fe0f-200d-1f308":76,"1f3f3":75,"1f3f4-200d-2620-fe0f":77,"1f3f4-e0067-e0062-e0065-e006e-e0067-e007f":7266,"1f3f4-e0067-e0062-e0073-e0063-e0074-e007f":7267,"1f3f4-e0067-e0062-e0077-e006c-e0073-e007f":7268,"1f3f4":74,"1f3f5":2109,"1f3f7":6120,"1f3f8":543,"1f3f9":6189,"1f3fa":3121,"1f3fb":81,"1f3fc":82,"1f3fd":83,"1f3fe":84,"1f3ff":85,"1f400":244,"1f401":243,"1f402":225,"1f403":226,"1f404":227,"1f405":217,"1f406":218,"1f407":247,"1f408":214,"1f409":282,"1f40a":277,"1f40b":286,"1f40c":294,"1f40d":280,"1f40e":220,"1f40f":232,"1f410":234,"1f411":233,"1f412":22,"1f413":262,"1f414":261,"1f415-200d-1f9ba":28,"1f415":26,"1f416":229,"1f417":230,"1f418":239,"1f419":292,"1f41a":293,"1f41b":296,"1f41c":297,"1f41d":298,"1f41e":299,"1f41f":288,"1f420":289,"1f421":290,"1f422":278,"1f423":263,"1f424":264,"1f425":265,"1f426":266,"1f427":267,"1f428":252,"1f429":29,"1f42a":235,"1f42b":236,"1f42c":287,"1f42d":242,"1f42e":224,"1f42f":216,"1f430":246,"1f431":213,"1f432":281,"1f433":285,"1f434":219,"1f435":21,"1f436":25,"1f437":228,"1f438":276,"1f439":245,"1f43a":210,"1f43b":251,"1f43c":253,"1f43d":231,"1f43e":259,"1f43f":248,"1f440":1194,"1f441-fe0f-200d-1f5e8-fe0f":1145,"1f441":1195,"1f442":1188,"1f443":1190,"1f444":1197,"1f445":1196,"1f446":1164,"1f447":1166,"1f448":1162,"1f449":1163,"1f44a":1171,"1f44b":1150,"1f44c":1155,"1f44d":1168,"1f44e":1169,"1f44f":1174,"1f450":1176,"1f451":634,"1f452":635,"1f453":61,"1f454":66,"1f455":67,"1f456":68,"1f457":613,"1f458":614,"1f459":619,"1f45a":620,"1f45b":621,"1f45c":622,"1f45d":623,"1f45e":626,"1f45f":627,"1f460":630,"1f461":631,"1f462":633,"1f463":1483,"1f464":1481,"1f465":1482,"1f466":1200,"1f467":1201,"1f468-200d-1f33e":1267,"1f468-200d-1f373":1270,"1f468-200d-1f393":1258,"1f468-200d-1f3a4":1288,"1f468-200d-1f3a8":1291,"1f468-200d-1f3eb":1261,"1f468-200d-1f3ed":1276,"1f468-200d-1f466-200d-1f466":1471,"1f468-200d-1f466":1470,"1f468-200d-1f467-200d-1f466":1473,"1f468-200d-1f467-200d-1f467":1474,"1f468-200d-1f467":1472,"1f468-200d-1f468-200d-1f466":1460,"1f468-200d-1f468-200d-1f466-200d-1f466":1463,"1f468-200d-1f468-200d-1f467":1461,"1f468-200d-1f468-200d-1f467-200d-1f466":1462,"1f468-200d-1f468-200d-1f467-200d-1f467":1464,"1f468-200d-1f469-200d-1f466":1455,"1f468-200d-1f469-200d-1f466-200d-1f466":1458,"1f468-200d-1f469-200d-1f467":1456,"1f468-200d-1f469-200d-1f467-200d-1f466":1457,"1f468-200d-1f469-200d-1f467-200d-1f467":1459,"1f468-200d-1f4bb":1285,"1f468-200d-1f4bc":1279,"1f468-200d-1f527":1273,"1f468-200d-1f52c":1282,"1f468-200d-1f680":1297,"1f468-200d-1f692":1300,"1f468-200d-1f9af":1371,"1f468-200d-1f9b0":1206,"1f468-200d-1f9b1":1207,"1f468-200d-1f9b2":1209,"1f468-200d-1f9b3":1208,"1f468-200d-1f9bc":1374,"1f468-200d-1f9bd":1377,"1f468-200d-2695-fe0f":1255,"1f468-200d-2696-fe0f":1264,"1f468-200d-2708-fe0f":1294,"1f468-200d-2764-fe0f-200d-1f468":1452,"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468":1448,"1f468":1204,"1f469-200d-1f33e":1268,"1f469-200d-1f373":1271,"1f469-200d-1f393":1259,"1f469-200d-1f3a4":1289,"1f469-200d-1f3a8":1292,"1f469-200d-1f3eb":1262,"1f469-200d-1f3ed":1277,"1f469-200d-1f466-200d-1f466":1476,"1f469-200d-1f466":1475,"1f469-200d-1f467-200d-1f466":1478,"1f469-200d-1f467-200d-1f467":1479,"1f469-200d-1f467":1477,"1f469-200d-1f469-200d-1f466":1465,"1f469-200d-1f469-200d-1f466-200d-1f466":1468,"1f469-200d-1f469-200d-1f467":1466,"1f469-200d-1f469-200d-1f467-200d-1f466":1467,"1f469-200d-1f469-200d-1f467-200d-1f467":1469,"1f469-200d-1f4bb":1286,"1f469-200d-1f4bc":1280,"1f469-200d-1f527":1274,"1f469-200d-1f52c":1283,"1f469-200d-1f680":1298,"1f469-200d-1f692":1301,"1f469-200d-1f9af":1372,"1f469-200d-1f9b0":1211,"1f469-200d-1f9b1":1213,"1f469-200d-1f9b2":1217,"1f469-200d-1f9b3":1215,"1f469-200d-1f9bc":1375,"1f469-200d-1f9bd":1378,"1f469-200d-2695-fe0f":1256,"1f469-200d-2696-fe0f":1265,"1f469-200d-2708-fe0f":1295,"1f469-200d-2764-fe0f-200d-1f468":1451,"1f469-200d-2764-fe0f-200d-1f469":1453,"1f469-200d-2764-fe0f-200d-1f48b-200d-1f468":1447,"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469":1449,"1f469":1210,"1f46a":1454,"1f46b":1444,"1f46c":1445,"1f46d":1443,"1f46e-200d-2640-fe0f":1304,"1f46e-200d-2642-fe0f":1303,"1f46e":1302,"1f46f-200d-2640-fe0f":1387,"1f46f-200d-2642-fe0f":1386,"1f46f":1385,"1f470":1322,"1f471-200d-2640-fe0f":1219,"1f471-200d-2642-fe0f":1220,"1f471":1203,"1f472":1319,"1f473-200d-2640-fe0f":1318,"1f473-200d-2642-fe0f":1317,"1f473":1316,"1f474":1222,"1f475":1223,"1f476":1198,"1f477-200d-2640-fe0f":1313,"1f477-200d-2642-fe0f":1312,"1f477":1311,"1f478":1315,"1f479":197,"1f47a":198,"1f47b":199,"1f47c":1325,"1f47d":1100,"1f47e":1101,"1f47f":192,"1f480":193,"1f481-200d-2640-fe0f":1238,"1f481-200d-2642-fe0f":1237,"1f481":1236,"1f482-200d-2640-fe0f":1310,"1f482-200d-2642-fe0f":1309,"1f482":1308,"1f483":1382,"1f484":641,"1f485":1181,"1f486-200d-2640-fe0f":1357,"1f486-200d-2642-fe0f":1356,"1f486":1355,"1f487-200d-2640-fe0f":1360,"1f487-200d-2642-fe0f":1359,"1f487":1358,"1f488":461,"1f489":6208,"1f48a":6210,"1f48b":1115,"1f48c":1116,"1f48d":642,"1f48e":643,"1f48f":1446,"1f490":2106,"1f491":1450,"1f492":438,"1f493":1121,"1f494":1126,"1f495":1123,"1f496":1119,"1f497":1120,"1f498":1117,"1f499":1131,"1f49a":1130,"1f49b":1129,"1f49c":1132,"1f49d":1118,"1f49e":1122,"1f49f":1124,"1f4a0":6447,"1f4a1":6100,"1f4a2":1137,"1f4a3":1143,"1f4a4":1149,"1f4a5":1138,"1f4a6":1140,"1f4a7":4209,"1f4a8":1141,"1f4a9":195,"1f4aa":1183,"1f4ab":1139,"1f4ac":1144,"1f4ad":1148,"1f4ae":2108,"1f4af":1136,"1f4b0":6121,"1f4b1":6130,"1f4b2":6131,"1f4b3":6127,"1f4b4":6122,"1f4b5":6123,"1f4b6":6124,"1f4b7":6125,"1f4b8":6126,"1f4b9":6129,"1f4ba":4123,"1f4bb":677,"1f4bc":6152,"1f4bd":683,"1f4be":684,"1f4bf":685,"1f4c0":686,"1f4c1":6153,"1f4c2":6154,"1f4c3":6113,"1f4c4":6115,"1f4c5":6156,"1f4c6":6157,"1f4c7":6160,"1f4c8":6161,"1f4c9":6162,"1f4ca":6163,"1f4cb":6164,"1f4cc":6165,"1f4cd":6166,"1f4ce":6167,"1f4cf":6169,"1f4d0":6170,"1f4d1":6118,"1f4d2":6112,"1f4d3":6111,"1f4d4":6104,"1f4d5":6105,"1f4d6":6106,"1f4d7":6107,"1f4d8":6108,"1f4d9":6109,"1f4da":6110,"1f4db":6337,"1f4dc":6114,"1f4dd":6151,"1f4de":672,"1f4df":673,"1f4e0":674,"1f4e1":6207,"1f4e2":648,"1f4e3":649,"1f4e4":6136,"1f4e5":6137,"1f4e6":6138,"1f4e7":6133,"1f4e8":6134,"1f4e9":6135,"1f4ea":6140,"1f4eb":6139,"1f4ec":6141,"1f4ed":6142,"1f4ee":6143,"1f4ef":650,"1f4f0":6116,"1f4f1":669,"1f4f2":670,"1f4f3":6328,"1f4f4":6329,"1f4f5":6256,"1f4f6":6327,"1f4f7":693,"1f4f8":694,"1f4f9":695,"1f4fa":692,"1f4fb":661,"1f4fc":696,"1f4fd":690,"1f4ff":640,"1f500":6306,"1f501":6307,"1f502":6308,"1f503":6274,"1f504":6275,"1f505":6325,"1f506":6326,"1f507":644,"1f508":645,"1f509":646,"1f50a":647,"1f50b":675,"1f50c":676,"1f50d":697,"1f50e":698,"1f50f":6177,"1f510":6178,"1f511":6179,"1f512":6175,"1f513":6176,"1f514":651,"1f515":652,"1f516":6119,"1f517":6197,"1f518":6448,"1f519":6276,"1f51a":6277,"1f51b":6278,"1f51c":6279,"1f51d":6280,"1f51e":6257,"1f51f":6377,"1f520":6378,"1f521":6379,"1f522":6380,"1f523":6381,"1f524":6382,"1f525":4208,"1f526":6101,"1f527":6191,"1f528":6181,"1f529":6192,"1f52a":3120,"1f52b":6188,"1f52c":6205,"1f52d":6206,"1f52e":559,"1f52f":6292,"1f530":6338,"1f531":6336,"1f532":6450,"1f533":6449,"1f534":6417,"1f535":6421,"1f536":6441,"1f537":6442,"1f538":6443,"1f539":6444,"1f53a":6445,"1f53b":6446,"1f53c":6316,"1f53d":6318,"1f549":6283,"1f54a":268,"1f54b":446,"1f54c":442,"1f54d":444,"1f54e":6291,"1f550":4142,"1f551":4144,"1f552":4146,"1f553":4148,"1f554":4150,"1f555":4152,"1f556":4154,"1f557":4156,"1f558":4158,"1f559":4160,"1f55a":4162,"1f55b":4140,"1f55c":4143,"1f55d":4145,"1f55e":4147,"1f55f":4149,"1f560":4151,"1f561":4153,"1f562":4155,"1f563":4157,"1f564":4159,"1f565":4161,"1f566":4163,"1f567":4141,"1f56f":699,"1f570":4139,"1f573":1142,"1f574":1384,"1f575-fe0f-200d-2640-fe0f":1307,"1f575-fe0f-200d-2642-fe0f":1306,"1f575":1305,"1f576":62,"1f577":2101,"1f578":2102,"1f579":562,"1f57a":1383,"1f587":6168,"1f58a":6148,"1f58b":6147,"1f58c":6149,"1f58d":6150,"1f590":1152,"1f595":1165,"1f596":1154,"1f5a4":1134,"1f5a5":678,"1f5a8":679,"1f5b1":681,"1f5b2":682,"1f5bc":576,"1f5c2":6155,"1f5c3":6172,"1f5c4":6173,"1f5d1":6174,"1f5d2":6158,"1f5d3":6159,"1f5dc":6194,"1f5dd":6180,"1f5de":6117,"1f5e1":6186,"1f5e3":1480,"1f5e8":1146,"1f5ef":1147,"1f5f3":6144,"1f5fa":45,"1f5fb":411,"1f5fc":439,"1f5fd":440,"1f5fe":46,"1f5ff":6233,"1f600":11,"1f601":14,"1f602":18,"1f603":12,"1f604":13,"1f605":16,"1f606":15,"1f607":113,"1f608":191,"1f609":111,"1f60a":112,"1f60b":122,"1f60c":142,"1f60d":115,"1f60e":160,"1f60f":137,"1f610":134,"1f611":135,"1f612":138,"1f613":183,"1f614":143,"1f615":163,"1f616":180,"1f617":118,"1f618":117,"1f619":121,"1f61a":120,"1f61b":123,"1f61c":124,"1f61d":126,"1f61e":182,"1f61f":164,"1f620":189,"1f621":188,"1f622":177,"1f623":181,"1f624":187,"1f625":176,"1f626":172,"1f627":173,"1f628":174,"1f629":184,"1f62a":144,"1f62b":185,"1f62c":140,"1f62d":178,"1f62e":167,"1f62f":168,"1f630":175,"1f631":179,"1f632":169,"1f633":170,"1f634":146,"1f635":156,"1f636":136,"1f637":147,"1f638":1104,"1f639":1105,"1f63a":1103,"1f63b":1106,"1f63c":1107,"1f63d":1108,"1f63e":1111,"1f63f":1110,"1f640":1109,"1f641":165,"1f642":19,"1f643":110,"1f644":139,"1f645-200d-2640-fe0f":1232,"1f645-200d-2642-fe0f":1231,"1f645":1230,"1f646-200d-2640-fe0f":1235,"1f646-200d-2642-fe0f":1234,"1f646":1233,"1f647-200d-2640-fe0f":1247,"1f647-200d-2642-fe0f":1246,"1f647":1245,"1f648":1112,"1f649":1113,"1f64a":1114,"1f64b-200d-2640-fe0f":1241,"1f64b-200d-2642-fe0f":1240,"1f64b":1239,"1f64c":1175,"1f64d-200d-2640-fe0f":1226,"1f64d-200d-2642-fe0f":1225,"1f64d":1224,"1f64e-200d-2640-fe0f":1229,"1f64e-200d-2642-fe0f":1228,"1f64e":1227,"1f64f":1179,"1f680":4129,"1f681":4124,"1f682":463,"1f683":464,"1f684":465,"1f685":466,"1f686":467,"1f687":468,"1f688":469,"1f689":470,"1f68a":471,"1f68b":474,"1f68c":475,"1f68d":476,"1f68e":477,"1f68f":4100,"1f690":478,"1f691":479,"1f692":480,"1f693":481,"1f694":482,"1f695":483,"1f696":484,"1f697":485,"1f698":486,"1f699":487,"1f69a":488,"1f69b":489,"1f69c":490,"1f69d":472,"1f69e":473,"1f69f":4125,"1f6a0":4126,"1f6a1":4127,"1f6a2":4117,"1f6a3-200d-2640-fe0f":1406,"1f6a3-200d-2642-fe0f":1405,"1f6a3":1404,"1f6a4":4113,"1f6a5":4106,"1f6a6":4107,"1f6a7":4109,"1f6a8":4105,"1f6a9":72,"1f6aa":6213,"1f6ab":6250,"1f6ac":6230,"1f6ad":6252,"1f6ae":6235,"1f6af":6253,"1f6b0":6236,"1f6b1":6254,"1f6b2":497,"1f6b3":6251,"1f6b4-200d-2640-fe0f":1418,"1f6b4-200d-2642-fe0f":1417,"1f6b4":1416,"1f6b5-200d-2640-fe0f":1421,"1f6b5-200d-2642-fe0f":1420,"1f6b5":1419,"1f6b6-200d-2640-fe0f":1363,"1f6b6-200d-2642-fe0f":1362,"1f6b6":1361,"1f6b7":6255,"1f6b8":6248,"1f6b9":6238,"1f6ba":6239,"1f6bb":6240,"1f6bc":6241,"1f6bd":6217,"1f6be":6242,"1f6bf":6218,"1f6c0":1440,"1f6c1":6219,"1f6c2":6243,"1f6c3":6244,"1f6c4":6245,"1f6c5":6246,"1f6cb":6215,"1f6cc":1441,"1f6cd":624,"1f6ce":4131,"1f6cf":6214,"1f6d0":6281,"1f6d1":4108,"1f6d2":6229,"1f6d5":443,"1f6e0":6185,"1f6e1":6190,"1f6e2":4103,"1f6e3":4101,"1f6e4":4102,"1f6e5":4116,"1f6e9":4119,"1f6eb":4120,"1f6ec":4121,"1f6f0":4128,"1f6f3":4114,"1f6f4":498,"1f6f5":493,"1f6f6":4112,"1f6f7":553,"1f6f8":4130,"1f6f9":499,"1f6fa":496,"1f7e0":6418,"1f7e1":6419,"1f7e2":6420,"1f7e3":6422,"1f7e4":6423,"1f7e5":6426,"1f7e6":6430,"1f7e7":6427,"1f7e8":6428,"1f7e9":6429,"1f7ea":6431,"1f7eb":6432,"1f90d":1135,"1f90e":1133,"1f90f":1156,"1f910":132,"1f911":127,"1f912":148,"1f913":161,"1f914":131,"1f915":149,"1f916":1102,"1f917":128,"1f918":1160,"1f919":1161,"1f91a":1151,"1f91b":1172,"1f91c":1173,"1f91d":1178,"1f91e":1158,"1f91f":1159,"1f920":158,"1f921":196,"1f922":150,"1f923":17,"1f924":145,"1f925":141,"1f926-200d-2640-fe0f":1250,"1f926-200d-2642-fe0f":1249,"1f926":1248,"1f927":152,"1f928":133,"1f929":116,"1f92a":125,"1f92b":130,"1f92c":190,"1f92d":129,"1f92e":151,"1f92f":157,"1f930":1323,"1f931":1324,"1f932":1177,"1f933":1182,"1f934":1314,"1f935":1321,"1f936":1327,"1f937-200d-2640-fe0f":1253,"1f937-200d-2642-fe0f":1252,"1f937":1251,"1f938-200d-2640-fe0f":1424,"1f938-200d-2642-fe0f":1423,"1f938":1422,"1f939-200d-2640-fe0f":1436,"1f939-200d-2642-fe0f":1435,"1f939":1434,"1f93a":1394,"1f93c-200d-2640-fe0f":1427,"1f93c-200d-2642-fe0f":1426,"1f93c":1425,"1f93d-200d-2640-fe0f":1430,"1f93d-200d-2642-fe0f":1429,"1f93d":1428,"1f93e-200d-2640-fe0f":1433,"1f93e-200d-2642-fe0f":1432,"1f93e":1431,"1f93f":550,"1f940":2111,"1f941":668,"1f942":3110,"1f943":3111,"1f944":3119,"1f945":546,"1f947":525,"1f948":526,"1f949":527,"1f94a":544,"1f94b":545,"1f94c":554,"1f94d":541,"1f94e":530,"1f94f":536,"1f950":333,"1f951":318,"1f952":324,"1f953":343,"1f954":320,"1f955":321,"1f956":334,"1f957":358,"1f958":355,"1f959":351,"1f95a":353,"1f95b":3100,"1f95c":330,"1f95d":315,"1f95e":337,"1f95f":377,"1f960":378,"1f961":379,"1f962":3116,"1f963":357,"1f964":3112,"1f965":317,"1f966":326,"1f967":393,"1f968":335,"1f969":342,"1f96a":348,"1f96b":362,"1f96c":325,"1f96d":38,"1f96e":375,"1f96f":336,"1f970":114,"1f971":186,"1f973":159,"1f974":155,"1f975":153,"1f976":154,"1f97a":171,"1f97b":615,"1f97c":64,"1f97d":63,"1f97e":628,"1f97f":629,"1f980":380,"1f981":215,"1f982":2103,"1f983":260,"1f984":221,"1f985":269,"1f986":270,"1f987":250,"1f988":291,"1f989":272,"1f98a":211,"1f98b":295,"1f98c":223,"1f98d":23,"1f98e":279,"1f98f":240,"1f990":382,"1f991":383,"1f992":238,"1f993":222,"1f994":249,"1f995":283,"1f996":284,"1f997":2100,"1f998":257,"1f999":237,"1f99a":274,"1f99b":241,"1f99c":275,"1f99d":212,"1f99e":381,"1f99f":2104,"1f9a0":2105,"1f9a1":258,"1f9a2":271,"1f9a5":254,"1f9a6":255,"1f9a7":24,"1f9a8":256,"1f9a9":273,"1f9aa":384,"1f9ae":27,"1f9af":6196,"1f9b4":1193,"1f9b5":1186,"1f9b6":1187,"1f9b7":1192,"1f9b8-200d-2640-fe0f":1330,"1f9b8-200d-2642-fe0f":1329,"1f9b8":1328,"1f9b9-200d-2640-fe0f":1333,"1f9b9-200d-2642-fe0f":1332,"1f9b9":1331,"1f9ba":65,"1f9bb":1189,"1f9bc":495,"1f9bd":494,"1f9be":1184,"1f9bf":1185,"1f9c0":339,"1f9c1":392,"1f9c2":361,"1f9c3":3113,"1f9c4":327,"1f9c5":328,"1f9c6":352,"1f9c7":338,"1f9c8":360,"1f9c9":3114,"1f9ca":3115,"1f9cd-200d-2640-fe0f":1366,"1f9cd-200d-2642-fe0f":1365,"1f9cd":1364,"1f9ce-200d-2640-fe0f":1369,"1f9ce-200d-2642-fe0f":1368,"1f9ce":1367,"1f9cf-200d-2640-fe0f":1244,"1f9cf-200d-2642-fe0f":1243,"1f9cf":1242,"1f9d0":162,"1f9d1-200d-1f33e":1266,"1f9d1-200d-1f373":1269,"1f9d1-200d-1f393":1257,"1f9d1-200d-1f3a4":1287,"1f9d1-200d-1f3a8":1290,"1f9d1-200d-1f3eb":1260,"1f9d1-200d-1f3ed":1275,"1f9d1-200d-1f4bb":1284,"1f9d1-200d-1f4bc":1278,"1f9d1-200d-1f527":1272,"1f9d1-200d-1f52c":1281,"1f9d1-200d-1f680":1296,"1f9d1-200d-1f692":1299,"1f9d1-200d-1f91d-200d-1f9d1":1442,"1f9d1-200d-1f9af":1370,"1f9d1-200d-1f9b0":1212,"1f9d1-200d-1f9b1":1214,"1f9d1-200d-1f9b2":1218,"1f9d1-200d-1f9b3":1216,"1f9d1-200d-1f9bc":1373,"1f9d1-200d-1f9bd":1376,"1f9d1-200d-2695-fe0f":1254,"1f9d1-200d-2696-fe0f":1263,"1f9d1-200d-2708-fe0f":1293,"1f9d1":1202,"1f9d2":1199,"1f9d3":1221,"1f9d4":1205,"1f9d5":1320,"1f9d6-200d-2640-fe0f":1390,"1f9d6-200d-2642-fe0f":1389,"1f9d6":1388,"1f9d7-200d-2640-fe0f":1393,"1f9d7-200d-2642-fe0f":1392,"1f9d7":1391,"1f9d8-200d-2640-fe0f":1439,"1f9d8-200d-2642-fe0f":1438,"1f9d8":1437,"1f9d9-200d-2640-fe0f":1336,"1f9d9-200d-2642-fe0f":1335,"1f9d9":1334,"1f9da-200d-2640-fe0f":1339,"1f9da-200d-2642-fe0f":1338,"1f9da":1337,"1f9db-200d-2640-fe0f":1342,"1f9db-200d-2642-fe0f":1341,"1f9db":1340,"1f9dc-200d-2640-fe0f":1345,"1f9dc-200d-2642-fe0f":1344,"1f9dc":1343,"1f9dd-200d-2640-fe0f":1348,"1f9dd-200d-2642-fe0f":1347,"1f9dd":1346,"1f9de-200d-2640-fe0f":1351,"1f9de-200d-2642-fe0f":1350,"1f9de":1349,"1f9df-200d-2640-fe0f":1354,"1f9df-200d-2642-fe0f":1353,"1f9df":1352,"1f9e0":1191,"1f9e1":1128,"1f9e2":638,"1f9e3":69,"1f9e4":610,"1f9e5":611,"1f9e6":612,"1f9e7":516,"1f9e8":55,"1f9e9":565,"1f9ea":6202,"1f9eb":6203,"1f9ec":6204,"1f9ed":47,"1f9ee":687,"1f9ef":6228,"1f9f0":6199,"1f9f1":420,"1f9f2":6200,"1f9f3":4132,"1f9f4":6221,"1f9f5":578,"1f9f6":579,"1f9f7":6222,"1f9f8":566,"1f9f9":6223,"1f9fa":6224,"1f9fb":6225,"1f9fc":6226,"1f9fd":6227,"1f9fe":6128,"1f9ff":560,"1fa70":632,"1fa71":616,"1fa72":617,"1fa73":618,"1fa78":6209,"1fa79":6211,"1fa7a":6212,"1fa80":556,"1fa81":557,"1fa82":4122,"1fa90":4180,"1fa91":6216,"1fa92":6220,"1fa93":6182,"1fa94":6103,"1fa95":667,"203c":6355,"21a9":6270,"21aa":6271,"231a":4135,"231b":4133,"23cf":6323,"23e9":6310,"23ea":6314,"23eb":6317,"23ec":6319,"23ed":6311,"23ee":6315,"23ef":6312,"23f0":4136,"23f1":4137,"23f2":4138,"23f3":4134,"23f8":6320,"23f9":6321,"23fa":6322,"24c2":6391,"25aa":6439,"25ab":6440,"25b6":6309,"25c0":6313,"25fb":6436,"25fc":6435,"25fd":6438,"25fe":6437,"260e":671,"261d":1167,"262a":6289,"262e":6290,"262f":6286,"263a":119,"264a":6295,"264b":6296,"264c":6297,"264d":6298,"264e":6299,"264f":6300,"265f":571,"267b":6334,"267e":6333,"267f":6237,"269b":6282,"269c":6335,"26a0":6247,"26a1":4203,"26aa":6425,"26ab":6424,"26b0":6231,"26b1":6232,"26bd":528,"26be":529,"26c4":4206,"26c5":4186,"26c8":4187,"26ce":6305,"26cf":6183,"26d1":639,"26d3":6198,"26d4":6249,"26e9":445,"26ea":441,"26f0":49,"26f1":4202,"26f2":447,"26f3":547,"26f4":4115,"26f5":4111,"26f7":1396,"26f8":548,"26f9-fe0f-200d-2640-fe0f":1412,"26f9-fe0f-200d-2642-fe0f":1411,"26f9":1410,"26fa":448,"26fd":4104,"270a":1170,"270b":1153,"270c":1157,"270d":1180,"270f":6145,"271d":6287,"274c":6344,"274e":6345,"27a1":6262,"27b0":6349,"27bf":6350,"2b05":6266,"2b06":6260,"2b07":6264,"2b1b":6433,"2b1c":6434,"2b50":4181,"2b55":6339,"303d":6351,"1f385-1f3fb":0,"1f385-1f3fc":0,"1f385-1f3fd":0,"1f385-1f3fe":0,"1f385-1f3ff":0,"1f3c2-1f3fb":0,"1f3c2-1f3fc":0,"1f3c2-1f3fd":0,"1f3c2-1f3fe":0,"1f3c2-1f3ff":0,"1f3c3-1f3fb-200d-2640-fe0f":0,"1f3c3-1f3fc-200d-2640-fe0f":0,"1f3c3-1f3fd-200d-2640-fe0f":0,"1f3c3-1f3fe-200d-2640-fe0f":0,"1f3c3-1f3ff-200d-2640-fe0f":0,"1f3c3-1f3fb-200d-2642-fe0f":0,"1f3c3-1f3fc-200d-2642-fe0f":0,"1f3c3-1f3fd-200d-2642-fe0f":0,"1f3c3-1f3fe-200d-2642-fe0f":0,"1f3c3-1f3ff-200d-2642-fe0f":0,"1f3c3-1f3fb":0,"1f3c3-1f3fc":0,"1f3c3-1f3fd":0,"1f3c3-1f3fe":0,"1f3c3-1f3ff":0,"1f3c4-1f3fb-200d-2640-fe0f":0,"1f3c4-1f3fc-200d-2640-fe0f":0,"1f3c4-1f3fd-200d-2640-fe0f":0,"1f3c4-1f3fe-200d-2640-fe0f":0,"1f3c4-1f3ff-200d-2640-fe0f":0,"1f3c4-1f3fb-200d-2642-fe0f":0,"1f3c4-1f3fc-200d-2642-fe0f":0,"1f3c4-1f3fd-200d-2642-fe0f":0,"1f3c4-1f3fe-200d-2642-fe0f":0,"1f3c4-1f3ff-200d-2642-fe0f":0,"1f3c4-1f3fb":0,"1f3c4-1f3fc":0,"1f3c4-1f3fd":0,"1f3c4-1f3fe":0,"1f3c4-1f3ff":0,"1f3c7-1f3fb":0,"1f3c7-1f3fc":0,"1f3c7-1f3fd":0,"1f3c7-1f3fe":0,"1f3c7-1f3ff":0,"1f3ca-1f3fb-200d-2640-fe0f":0,"1f3ca-1f3fc-200d-2640-fe0f":0,"1f3ca-1f3fd-200d-2640-fe0f":0,"1f3ca-1f3fe-200d-2640-fe0f":0,"1f3ca-1f3ff-200d-2640-fe0f":0,"1f3ca-1f3fb-200d-2642-fe0f":0,"1f3ca-1f3fc-200d-2642-fe0f":0,"1f3ca-1f3fd-200d-2642-fe0f":0,"1f3ca-1f3fe-200d-2642-fe0f":0,"1f3ca-1f3ff-200d-2642-fe0f":0,"1f3ca-1f3fb":0,"1f3ca-1f3fc":0,"1f3ca-1f3fd":0,"1f3ca-1f3fe":0,"1f3ca-1f3ff":0,"1f3cb-1f3fb-200d-2640-fe0f":0,"1f3cb-1f3fc-200d-2640-fe0f":0,"1f3cb-1f3fd-200d-2640-fe0f":0,"1f3cb-1f3fe-200d-2640-fe0f":0,"1f3cb-1f3ff-200d-2640-fe0f":0,"1f3cb-1f3fb-200d-2642-fe0f":0,"1f3cb-1f3fc-200d-2642-fe0f":0,"1f3cb-1f3fd-200d-2642-fe0f":0,"1f3cb-1f3fe-200d-2642-fe0f":0,"1f3cb-1f3ff-200d-2642-fe0f":0,"1f3cb-1f3fb":0,"1f3cb-1f3fc":0,"1f3cb-1f3fd":0,"1f3cb-1f3fe":0,"1f3cb-1f3ff":0,"1f3cc-1f3fb-200d-2640-fe0f":0,"1f3cc-1f3fc-200d-2640-fe0f":0,"1f3cc-1f3fd-200d-2640-fe0f":0,"1f3cc-1f3fe-200d-2640-fe0f":0,"1f3cc-1f3ff-200d-2640-fe0f":0,"1f3cc-1f3fb-200d-2642-fe0f":0,"1f3cc-1f3fc-200d-2642-fe0f":0,"1f3cc-1f3fd-200d-2642-fe0f":0,"1f3cc-1f3fe-200d-2642-fe0f":0,"1f3cc-1f3ff-200d-2642-fe0f":0,"1f3cc-1f3fb":0,"1f3cc-1f3fc":0,"1f3cc-1f3fd":0,"1f3cc-1f3fe":0,"1f3cc-1f3ff":0,"1f442-1f3fb":0,"1f442-1f3fc":0,"1f442-1f3fd":0,"1f442-1f3fe":0,"1f442-1f3ff":0,"1f443-1f3fb":0,"1f443-1f3fc":0,"1f443-1f3fd":0,"1f443-1f3fe":0,"1f443-1f3ff":0,"1f446-1f3fb":0,"1f446-1f3fc":0,"1f446-1f3fd":0,"1f446-1f3fe":0,"1f446-1f3ff":0,"1f447-1f3fb":0,"1f447-1f3fc":0,"1f447-1f3fd":0,"1f447-1f3fe":0,"1f447-1f3ff":0,"1f448-1f3fb":0,"1f448-1f3fc":0,"1f448-1f3fd":0,"1f448-1f3fe":0,"1f448-1f3ff":0,"1f449-1f3fb":0,"1f449-1f3fc":0,"1f449-1f3fd":0,"1f449-1f3fe":0,"1f449-1f3ff":0,"1f44a-1f3fb":0,"1f44a-1f3fc":0,"1f44a-1f3fd":0,"1f44a-1f3fe":0,"1f44a-1f3ff":0,"1f44b-1f3fb":0,"1f44b-1f3fc":0,"1f44b-1f3fd":0,"1f44b-1f3fe":0,"1f44b-1f3ff":0,"1f44c-1f3fb":0,"1f44c-1f3fc":0,"1f44c-1f3fd":0,"1f44c-1f3fe":0,"1f44c-1f3ff":0,"1f44d-1f3fb":0,"1f44d-1f3fc":0,"1f44d-1f3fd":0,"1f44d-1f3fe":0,"1f44d-1f3ff":0,"1f44e-1f3fb":0,"1f44e-1f3fc":0,"1f44e-1f3fd":0,"1f44e-1f3fe":0,"1f44e-1f3ff":0,"1f44f-1f3fb":0,"1f44f-1f3fc":0,"1f44f-1f3fd":0,"1f44f-1f3fe":0,"1f44f-1f3ff":0,"1f450-1f3fb":0,"1f450-1f3fc":0,"1f450-1f3fd":0,"1f450-1f3fe":0,"1f450-1f3ff":0,"1f466-1f3fb":0,"1f466-1f3fc":0,"1f466-1f3fd":0,"1f466-1f3fe":0,"1f466-1f3ff":0,"1f467-1f3fb":0,"1f467-1f3fc":0,"1f467-1f3fd":0,"1f467-1f3fe":0,"1f467-1f3ff":0,"1f468-1f3fb-200d-1f33e":0,"1f468-1f3fc-200d-1f33e":0,"1f468-1f3fd-200d-1f33e":0,"1f468-1f3fe-200d-1f33e":0,"1f468-1f3ff-200d-1f33e":0,"1f468-1f3fb-200d-1f373":0,"1f468-1f3fc-200d-1f373":0,"1f468-1f3fd-200d-1f373":0,"1f468-1f3fe-200d-1f373":0,"1f468-1f3ff-200d-1f373":0,"1f468-1f3fb-200d-1f393":0,"1f468-1f3fc-200d-1f393":0,"1f468-1f3fd-200d-1f393":0,"1f468-1f3fe-200d-1f393":0,"1f468-1f3ff-200d-1f393":0,"1f468-1f3fb-200d-1f3a4":0,"1f468-1f3fc-200d-1f3a4":0,"1f468-1f3fd-200d-1f3a4":0,"1f468-1f3fe-200d-1f3a4":0,"1f468-1f3ff-200d-1f3a4":0,"1f468-1f3fb-200d-1f3a8":0,"1f468-1f3fc-200d-1f3a8":0,"1f468-1f3fd-200d-1f3a8":0,"1f468-1f3fe-200d-1f3a8":0,"1f468-1f3ff-200d-1f3a8":0,"1f468-1f3fb-200d-1f3eb":0,"1f468-1f3fc-200d-1f3eb":0,"1f468-1f3fd-200d-1f3eb":0,"1f468-1f3fe-200d-1f3eb":0,"1f468-1f3ff-200d-1f3eb":0,"1f468-1f3fb-200d-1f3ed":0,"1f468-1f3fc-200d-1f3ed":0,"1f468-1f3fd-200d-1f3ed":0,"1f468-1f3fe-200d-1f3ed":0,"1f468-1f3ff-200d-1f3ed":0,"1f468-1f3fb-200d-1f4bb":0,"1f468-1f3fc-200d-1f4bb":0,"1f468-1f3fd-200d-1f4bb":0,"1f468-1f3fe-200d-1f4bb":0,"1f468-1f3ff-200d-1f4bb":0,"1f468-1f3fb-200d-1f4bc":0,"1f468-1f3fc-200d-1f4bc":0,"1f468-1f3fd-200d-1f4bc":0,"1f468-1f3fe-200d-1f4bc":0,"1f468-1f3ff-200d-1f4bc":0,"1f468-1f3fb-200d-1f527":0,"1f468-1f3fc-200d-1f527":0,"1f468-1f3fd-200d-1f527":0,"1f468-1f3fe-200d-1f527":0,"1f468-1f3ff-200d-1f527":0,"1f468-1f3fb-200d-1f52c":0,"1f468-1f3fc-200d-1f52c":0,"1f468-1f3fd-200d-1f52c":0,"1f468-1f3fe-200d-1f52c":0,"1f468-1f3ff-200d-1f52c":0,"1f468-1f3fb-200d-1f680":0,"1f468-1f3fc-200d-1f680":0,"1f468-1f3fd-200d-1f680":0,"1f468-1f3fe-200d-1f680":0,"1f468-1f3ff-200d-1f680":0,"1f468-1f3fb-200d-1f692":0,"1f468-1f3fc-200d-1f692":0,"1f468-1f3fd-200d-1f692":0,"1f468-1f3fe-200d-1f692":0,"1f468-1f3ff-200d-1f692":0,"1f468-1f3fb-200d-1f9af":0,"1f468-1f3fc-200d-1f9af":0,"1f468-1f3fd-200d-1f9af":0,"1f468-1f3fe-200d-1f9af":0,"1f468-1f3ff-200d-1f9af":0,"1f468-1f3fb-200d-1f9b0":0,"1f468-1f3fc-200d-1f9b0":0,"1f468-1f3fd-200d-1f9b0":0,"1f468-1f3fe-200d-1f9b0":0,"1f468-1f3ff-200d-1f9b0":0,"1f468-1f3fb-200d-1f9b1":0,"1f468-1f3fc-200d-1f9b1":0,"1f468-1f3fd-200d-1f9b1":0,"1f468-1f3fe-200d-1f9b1":0,"1f468-1f3ff-200d-1f9b1":0,"1f468-1f3fb-200d-1f9b2":0,"1f468-1f3fc-200d-1f9b2":0,"1f468-1f3fd-200d-1f9b2":0,"1f468-1f3fe-200d-1f9b2":0,"1f468-1f3ff-200d-1f9b2":0,"1f468-1f3fb-200d-1f9b3":0,"1f468-1f3fc-200d-1f9b3":0,"1f468-1f3fd-200d-1f9b3":0,"1f468-1f3fe-200d-1f9b3":0,"1f468-1f3ff-200d-1f9b3":0,"1f468-1f3fb-200d-1f9bc":0,"1f468-1f3fc-200d-1f9bc":0,"1f468-1f3fd-200d-1f9bc":0,"1f468-1f3fe-200d-1f9bc":0,"1f468-1f3ff-200d-1f9bc":0,"1f468-1f3fb-200d-1f9bd":0,"1f468-1f3fc-200d-1f9bd":0,"1f468-1f3fd-200d-1f9bd":0,"1f468-1f3fe-200d-1f9bd":0,"1f468-1f3ff-200d-1f9bd":0,"1f468-1f3fb-200d-2695-fe0f":0,"1f468-1f3fc-200d-2695-fe0f":0,"1f468-1f3fd-200d-2695-fe0f":0,"1f468-1f3fe-200d-2695-fe0f":0,"1f468-1f3ff-200d-2695-fe0f":0,"1f468-1f3fb-200d-2696-fe0f":0,"1f468-1f3fc-200d-2696-fe0f":0,"1f468-1f3fd-200d-2696-fe0f":0,"1f468-1f3fe-200d-2696-fe0f":0,"1f468-1f3ff-200d-2696-fe0f":0,"1f468-1f3fb-200d-2708-fe0f":0,"1f468-1f3fc-200d-2708-fe0f":0,"1f468-1f3fd-200d-2708-fe0f":0,"1f468-1f3fe-200d-2708-fe0f":0,"1f468-1f3ff-200d-2708-fe0f":0,"1f468-1f3fb":0,"1f468-1f3fc":0,"1f468-1f3fd":0,"1f468-1f3fe":0,"1f468-1f3ff":0,"1f469-1f3fb-200d-1f33e":0,"1f469-1f3fc-200d-1f33e":0,"1f469-1f3fd-200d-1f33e":0,"1f469-1f3fe-200d-1f33e":0,"1f469-1f3ff-200d-1f33e":0,"1f469-1f3fb-200d-1f373":0,"1f469-1f3fc-200d-1f373":0,"1f469-1f3fd-200d-1f373":0,"1f469-1f3fe-200d-1f373":0,"1f469-1f3ff-200d-1f373":0,"1f469-1f3fb-200d-1f393":0,"1f469-1f3fc-200d-1f393":0,"1f469-1f3fd-200d-1f393":0,"1f469-1f3fe-200d-1f393":0,"1f469-1f3ff-200d-1f393":0,"1f469-1f3fb-200d-1f3a4":0,"1f469-1f3fc-200d-1f3a4":0,"1f469-1f3fd-200d-1f3a4":0,"1f469-1f3fe-200d-1f3a4":0,"1f469-1f3ff-200d-1f3a4":0,"1f469-1f3fb-200d-1f3a8":0,"1f469-1f3fc-200d-1f3a8":0,"1f469-1f3fd-200d-1f3a8":0,"1f469-1f3fe-200d-1f3a8":0,"1f469-1f3ff-200d-1f3a8":0,"1f469-1f3fb-200d-1f3eb":0,"1f469-1f3fc-200d-1f3eb":0,"1f469-1f3fd-200d-1f3eb":0,"1f469-1f3fe-200d-1f3eb":0,"1f469-1f3ff-200d-1f3eb":0,"1f469-1f3fb-200d-1f3ed":0,"1f469-1f3fc-200d-1f3ed":0,"1f469-1f3fd-200d-1f3ed":0,"1f469-1f3fe-200d-1f3ed":0,"1f469-1f3ff-200d-1f3ed":0,"1f469-1f3fb-200d-1f4bb":0,"1f469-1f3fc-200d-1f4bb":0,"1f469-1f3fd-200d-1f4bb":0,"1f469-1f3fe-200d-1f4bb":0,"1f469-1f3ff-200d-1f4bb":0,"1f469-1f3fb-200d-1f4bc":0,"1f469-1f3fc-200d-1f4bc":0,"1f469-1f3fd-200d-1f4bc":0,"1f469-1f3fe-200d-1f4bc":0,"1f469-1f3ff-200d-1f4bc":0,"1f469-1f3fb-200d-1f527":0,"1f469-1f3fc-200d-1f527":0,"1f469-1f3fd-200d-1f527":0,"1f469-1f3fe-200d-1f527":0,"1f469-1f3ff-200d-1f527":0,"1f469-1f3fb-200d-1f52c":0,"1f469-1f3fc-200d-1f52c":0,"1f469-1f3fd-200d-1f52c":0,"1f469-1f3fe-200d-1f52c":0,"1f469-1f3ff-200d-1f52c":0,"1f469-1f3fb-200d-1f680":0,"1f469-1f3fc-200d-1f680":0,"1f469-1f3fd-200d-1f680":0,"1f469-1f3fe-200d-1f680":0,"1f469-1f3ff-200d-1f680":0,"1f469-1f3fb-200d-1f692":0,"1f469-1f3fc-200d-1f692":0,"1f469-1f3fd-200d-1f692":0,"1f469-1f3fe-200d-1f692":0,"1f469-1f3ff-200d-1f692":0,"1f469-1f3fb-200d-1f9af":0,"1f469-1f3fc-200d-1f9af":0,"1f469-1f3fd-200d-1f9af":0,"1f469-1f3fe-200d-1f9af":0,"1f469-1f3ff-200d-1f9af":0,"1f469-1f3fb-200d-1f9b0":0,"1f469-1f3fc-200d-1f9b0":0,"1f469-1f3fd-200d-1f9b0":0,"1f469-1f3fe-200d-1f9b0":0,"1f469-1f3ff-200d-1f9b0":0,"1f469-1f3fb-200d-1f9b1":0,"1f469-1f3fc-200d-1f9b1":0,"1f469-1f3fd-200d-1f9b1":0,"1f469-1f3fe-200d-1f9b1":0,"1f469-1f3ff-200d-1f9b1":0,"1f469-1f3fb-200d-1f9b2":0,"1f469-1f3fc-200d-1f9b2":0,"1f469-1f3fd-200d-1f9b2":0,"1f469-1f3fe-200d-1f9b2":0,"1f469-1f3ff-200d-1f9b2":0,"1f469-1f3fb-200d-1f9b3":0,"1f469-1f3fc-200d-1f9b3":0,"1f469-1f3fd-200d-1f9b3":0,"1f469-1f3fe-200d-1f9b3":0,"1f469-1f3ff-200d-1f9b3":0,"1f469-1f3fb-200d-1f9bc":0,"1f469-1f3fc-200d-1f9bc":0,"1f469-1f3fd-200d-1f9bc":0,"1f469-1f3fe-200d-1f9bc":0,"1f469-1f3ff-200d-1f9bc":0,"1f469-1f3fb-200d-1f9bd":0,"1f469-1f3fc-200d-1f9bd":0,"1f469-1f3fd-200d-1f9bd":0,"1f469-1f3fe-200d-1f9bd":0,"1f469-1f3ff-200d-1f9bd":0,"1f469-1f3fb-200d-2695-fe0f":0,"1f469-1f3fc-200d-2695-fe0f":0,"1f469-1f3fd-200d-2695-fe0f":0,"1f469-1f3fe-200d-2695-fe0f":0,"1f469-1f3ff-200d-2695-fe0f":0,"1f469-1f3fb-200d-2696-fe0f":0,"1f469-1f3fc-200d-2696-fe0f":0,"1f469-1f3fd-200d-2696-fe0f":0,"1f469-1f3fe-200d-2696-fe0f":0,"1f469-1f3ff-200d-2696-fe0f":0,"1f469-1f3fb-200d-2708-fe0f":0,"1f469-1f3fc-200d-2708-fe0f":0,"1f469-1f3fd-200d-2708-fe0f":0,"1f469-1f3fe-200d-2708-fe0f":0,"1f469-1f3ff-200d-2708-fe0f":0,"1f469-1f3fb":0,"1f469-1f3fc":0,"1f469-1f3fd":0,"1f469-1f3fe":0,"1f469-1f3ff":0,"1f46b-1f3fb":0,"1f46b-1f3fc":0,"1f46b-1f3fd":0,"1f46b-1f3fe":0,"1f46b-1f3ff":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe":0,"1f46c-1f3fb":0,"1f46c-1f3fc":0,"1f46c-1f3fd":0,"1f46c-1f3fe":0,"1f46c-1f3ff":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe":0,"1f46d-1f3fb":0,"1f46d-1f3fc":0,"1f46d-1f3fd":0,"1f46d-1f3fe":0,"1f46d-1f3ff":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe":0,"1f46e-1f3fb-200d-2640-fe0f":0,"1f46e-1f3fc-200d-2640-fe0f":0,"1f46e-1f3fd-200d-2640-fe0f":0,"1f46e-1f3fe-200d-2640-fe0f":0,"1f46e-1f3ff-200d-2640-fe0f":0,"1f46e-1f3fb-200d-2642-fe0f":0,"1f46e-1f3fc-200d-2642-fe0f":0,"1f46e-1f3fd-200d-2642-fe0f":0,"1f46e-1f3fe-200d-2642-fe0f":0,"1f46e-1f3ff-200d-2642-fe0f":0,"1f46e-1f3fb":0,"1f46e-1f3fc":0,"1f46e-1f3fd":0,"1f46e-1f3fe":0,"1f46e-1f3ff":0,"1f470-1f3fb":0,"1f470-1f3fc":0,"1f470-1f3fd":0,"1f470-1f3fe":0,"1f470-1f3ff":0,"1f471-1f3fb-200d-2640-fe0f":0,"1f471-1f3fc-200d-2640-fe0f":0,"1f471-1f3fd-200d-2640-fe0f":0,"1f471-1f3fe-200d-2640-fe0f":0,"1f471-1f3ff-200d-2640-fe0f":0,"1f471-1f3fb-200d-2642-fe0f":0,"1f471-1f3fc-200d-2642-fe0f":0,"1f471-1f3fd-200d-2642-fe0f":0,"1f471-1f3fe-200d-2642-fe0f":0,"1f471-1f3ff-200d-2642-fe0f":0,"1f471-1f3fb":0,"1f471-1f3fc":0,"1f471-1f3fd":0,"1f471-1f3fe":0,"1f471-1f3ff":0,"1f472-1f3fb":0,"1f472-1f3fc":0,"1f472-1f3fd":0,"1f472-1f3fe":0,"1f472-1f3ff":0,"1f473-1f3fb-200d-2640-fe0f":0,"1f473-1f3fc-200d-2640-fe0f":0,"1f473-1f3fd-200d-2640-fe0f":0,"1f473-1f3fe-200d-2640-fe0f":0,"1f473-1f3ff-200d-2640-fe0f":0,"1f473-1f3fb-200d-2642-fe0f":0,"1f473-1f3fc-200d-2642-fe0f":0,"1f473-1f3fd-200d-2642-fe0f":0,"1f473-1f3fe-200d-2642-fe0f":0,"1f473-1f3ff-200d-2642-fe0f":0,"1f473-1f3fb":0,"1f473-1f3fc":0,"1f473-1f3fd":0,"1f473-1f3fe":0,"1f473-1f3ff":0,"1f474-1f3fb":0,"1f474-1f3fc":0,"1f474-1f3fd":0,"1f474-1f3fe":0,"1f474-1f3ff":0,"1f475-1f3fb":0,"1f475-1f3fc":0,"1f475-1f3fd":0,"1f475-1f3fe":0,"1f475-1f3ff":0,"1f476-1f3fb":0,"1f476-1f3fc":0,"1f476-1f3fd":0,"1f476-1f3fe":0,"1f476-1f3ff":0,"1f477-1f3fb-200d-2640-fe0f":0,"1f477-1f3fc-200d-2640-fe0f":0,"1f477-1f3fd-200d-2640-fe0f":0,"1f477-1f3fe-200d-2640-fe0f":0,"1f477-1f3ff-200d-2640-fe0f":0,"1f477-1f3fb-200d-2642-fe0f":0,"1f477-1f3fc-200d-2642-fe0f":0,"1f477-1f3fd-200d-2642-fe0f":0,"1f477-1f3fe-200d-2642-fe0f":0,"1f477-1f3ff-200d-2642-fe0f":0,"1f477-1f3fb":0,"1f477-1f3fc":0,"1f477-1f3fd":0,"1f477-1f3fe":0,"1f477-1f3ff":0,"1f478-1f3fb":0,"1f478-1f3fc":0,"1f478-1f3fd":0,"1f478-1f3fe":0,"1f478-1f3ff":0,"1f47c-1f3fb":0,"1f47c-1f3fc":0,"1f47c-1f3fd":0,"1f47c-1f3fe":0,"1f47c-1f3ff":0,"1f481-1f3fb-200d-2640-fe0f":0,"1f481-1f3fc-200d-2640-fe0f":0,"1f481-1f3fd-200d-2640-fe0f":0,"1f481-1f3fe-200d-2640-fe0f":0,"1f481-1f3ff-200d-2640-fe0f":0,"1f481-1f3fb-200d-2642-fe0f":0,"1f481-1f3fc-200d-2642-fe0f":0,"1f481-1f3fd-200d-2642-fe0f":0,"1f481-1f3fe-200d-2642-fe0f":0,"1f481-1f3ff-200d-2642-fe0f":0,"1f481-1f3fb":0,"1f481-1f3fc":0,"1f481-1f3fd":0,"1f481-1f3fe":0,"1f481-1f3ff":0,"1f482-1f3fb-200d-2640-fe0f":0,"1f482-1f3fc-200d-2640-fe0f":0,"1f482-1f3fd-200d-2640-fe0f":0,"1f482-1f3fe-200d-2640-fe0f":0,"1f482-1f3ff-200d-2640-fe0f":0,"1f482-1f3fb-200d-2642-fe0f":0,"1f482-1f3fc-200d-2642-fe0f":0,"1f482-1f3fd-200d-2642-fe0f":0,"1f482-1f3fe-200d-2642-fe0f":0,"1f482-1f3ff-200d-2642-fe0f":0,"1f482-1f3fb":0,"1f482-1f3fc":0,"1f482-1f3fd":0,"1f482-1f3fe":0,"1f482-1f3ff":0,"1f483-1f3fb":0,"1f483-1f3fc":0,"1f483-1f3fd":0,"1f483-1f3fe":0,"1f483-1f3ff":0,"1f485-1f3fb":0,"1f485-1f3fc":0,"1f485-1f3fd":0,"1f485-1f3fe":0,"1f485-1f3ff":0,"1f486-1f3fb-200d-2640-fe0f":0,"1f486-1f3fc-200d-2640-fe0f":0,"1f486-1f3fd-200d-2640-fe0f":0,"1f486-1f3fe-200d-2640-fe0f":0,"1f486-1f3ff-200d-2640-fe0f":0,"1f486-1f3fb-200d-2642-fe0f":0,"1f486-1f3fc-200d-2642-fe0f":0,"1f486-1f3fd-200d-2642-fe0f":0,"1f486-1f3fe-200d-2642-fe0f":0,"1f486-1f3ff-200d-2642-fe0f":0,"1f486-1f3fb":0,"1f486-1f3fc":0,"1f486-1f3fd":0,"1f486-1f3fe":0,"1f486-1f3ff":0,"1f487-1f3fb-200d-2640-fe0f":0,"1f487-1f3fc-200d-2640-fe0f":0,"1f487-1f3fd-200d-2640-fe0f":0,"1f487-1f3fe-200d-2640-fe0f":0,"1f487-1f3ff-200d-2640-fe0f":0,"1f487-1f3fb-200d-2642-fe0f":0,"1f487-1f3fc-200d-2642-fe0f":0,"1f487-1f3fd-200d-2642-fe0f":0,"1f487-1f3fe-200d-2642-fe0f":0,"1f487-1f3ff-200d-2642-fe0f":0,"1f487-1f3fb":0,"1f487-1f3fc":0,"1f487-1f3fd":0,"1f487-1f3fe":0,"1f487-1f3ff":0,"1f4aa-1f3fb":0,"1f4aa-1f3fc":0,"1f4aa-1f3fd":0,"1f4aa-1f3fe":0,"1f4aa-1f3ff":0,"1f574-1f3fb":0,"1f574-1f3fc":0,"1f574-1f3fd":0,"1f574-1f3fe":0,"1f574-1f3ff":0,"1f575-1f3fb-200d-2640-fe0f":0,"1f575-1f3fc-200d-2640-fe0f":0,"1f575-1f3fd-200d-2640-fe0f":0,"1f575-1f3fe-200d-2640-fe0f":0,"1f575-1f3ff-200d-2640-fe0f":0,"1f575-1f3fb-200d-2642-fe0f":0,"1f575-1f3fc-200d-2642-fe0f":0,"1f575-1f3fd-200d-2642-fe0f":0,"1f575-1f3fe-200d-2642-fe0f":0,"1f575-1f3ff-200d-2642-fe0f":0,"1f575-1f3fb":0,"1f575-1f3fc":0,"1f575-1f3fd":0,"1f575-1f3fe":0,"1f575-1f3ff":0,"1f57a-1f3fb":0,"1f57a-1f3fc":0,"1f57a-1f3fd":0,"1f57a-1f3fe":0,"1f57a-1f3ff":0,"1f590-1f3fb":0,"1f590-1f3fc":0,"1f590-1f3fd":0,"1f590-1f3fe":0,"1f590-1f3ff":0,"1f595-1f3fb":0,"1f595-1f3fc":0,"1f595-1f3fd":0,"1f595-1f3fe":0,"1f595-1f3ff":0,"1f596-1f3fb":0,"1f596-1f3fc":0,"1f596-1f3fd":0,"1f596-1f3fe":0,"1f596-1f3ff":0,"1f645-1f3fb-200d-2640-fe0f":0,"1f645-1f3fc-200d-2640-fe0f":0,"1f645-1f3fd-200d-2640-fe0f":0,"1f645-1f3fe-200d-2640-fe0f":0,"1f645-1f3ff-200d-2640-fe0f":0,"1f645-1f3fb-200d-2642-fe0f":0,"1f645-1f3fc-200d-2642-fe0f":0,"1f645-1f3fd-200d-2642-fe0f":0,"1f645-1f3fe-200d-2642-fe0f":0,"1f645-1f3ff-200d-2642-fe0f":0,"1f645-1f3fb":0,"1f645-1f3fc":0,"1f645-1f3fd":0,"1f645-1f3fe":0,"1f645-1f3ff":0,"1f646-1f3fb-200d-2640-fe0f":0,"1f646-1f3fc-200d-2640-fe0f":0,"1f646-1f3fd-200d-2640-fe0f":0,"1f646-1f3fe-200d-2640-fe0f":0,"1f646-1f3ff-200d-2640-fe0f":0,"1f646-1f3fb-200d-2642-fe0f":0,"1f646-1f3fc-200d-2642-fe0f":0,"1f646-1f3fd-200d-2642-fe0f":0,"1f646-1f3fe-200d-2642-fe0f":0,"1f646-1f3ff-200d-2642-fe0f":0,"1f646-1f3fb":0,"1f646-1f3fc":0,"1f646-1f3fd":0,"1f646-1f3fe":0,"1f646-1f3ff":0,"1f647-1f3fb-200d-2640-fe0f":0,"1f647-1f3fc-200d-2640-fe0f":0,"1f647-1f3fd-200d-2640-fe0f":0,"1f647-1f3fe-200d-2640-fe0f":0,"1f647-1f3ff-200d-2640-fe0f":0,"1f647-1f3fb-200d-2642-fe0f":0,"1f647-1f3fc-200d-2642-fe0f":0,"1f647-1f3fd-200d-2642-fe0f":0,"1f647-1f3fe-200d-2642-fe0f":0,"1f647-1f3ff-200d-2642-fe0f":0,"1f647-1f3fb":0,"1f647-1f3fc":0,"1f647-1f3fd":0,"1f647-1f3fe":0,"1f647-1f3ff":0,"1f64b-1f3fb-200d-2640-fe0f":0,"1f64b-1f3fc-200d-2640-fe0f":0,"1f64b-1f3fd-200d-2640-fe0f":0,"1f64b-1f3fe-200d-2640-fe0f":0,"1f64b-1f3ff-200d-2640-fe0f":0,"1f64b-1f3fb-200d-2642-fe0f":0,"1f64b-1f3fc-200d-2642-fe0f":0,"1f64b-1f3fd-200d-2642-fe0f":0,"1f64b-1f3fe-200d-2642-fe0f":0,"1f64b-1f3ff-200d-2642-fe0f":0,"1f64b-1f3fb":0,"1f64b-1f3fc":0,"1f64b-1f3fd":0,"1f64b-1f3fe":0,"1f64b-1f3ff":0,"1f64c-1f3fb":0,"1f64c-1f3fc":0,"1f64c-1f3fd":0,"1f64c-1f3fe":0,"1f64c-1f3ff":0,"1f64d-1f3fb-200d-2640-fe0f":0,"1f64d-1f3fc-200d-2640-fe0f":0,"1f64d-1f3fd-200d-2640-fe0f":0,"1f64d-1f3fe-200d-2640-fe0f":0,"1f64d-1f3ff-200d-2640-fe0f":0,"1f64d-1f3fb-200d-2642-fe0f":0,"1f64d-1f3fc-200d-2642-fe0f":0,"1f64d-1f3fd-200d-2642-fe0f":0,"1f64d-1f3fe-200d-2642-fe0f":0,"1f64d-1f3ff-200d-2642-fe0f":0,"1f64d-1f3fb":0,"1f64d-1f3fc":0,"1f64d-1f3fd":0,"1f64d-1f3fe":0,"1f64d-1f3ff":0,"1f64e-1f3fb-200d-2640-fe0f":0,"1f64e-1f3fc-200d-2640-fe0f":0,"1f64e-1f3fd-200d-2640-fe0f":0,"1f64e-1f3fe-200d-2640-fe0f":0,"1f64e-1f3ff-200d-2640-fe0f":0,"1f64e-1f3fb-200d-2642-fe0f":0,"1f64e-1f3fc-200d-2642-fe0f":0,"1f64e-1f3fd-200d-2642-fe0f":0,"1f64e-1f3fe-200d-2642-fe0f":0,"1f64e-1f3ff-200d-2642-fe0f":0,"1f64e-1f3fb":0,"1f64e-1f3fc":0,"1f64e-1f3fd":0,"1f64e-1f3fe":0,"1f64e-1f3ff":0,"1f64f-1f3fb":0,"1f64f-1f3fc":0,"1f64f-1f3fd":0,"1f64f-1f3fe":0,"1f64f-1f3ff":0,"1f6a3-1f3fb-200d-2640-fe0f":0,"1f6a3-1f3fc-200d-2640-fe0f":0,"1f6a3-1f3fd-200d-2640-fe0f":0,"1f6a3-1f3fe-200d-2640-fe0f":0,"1f6a3-1f3ff-200d-2640-fe0f":0,"1f6a3-1f3fb-200d-2642-fe0f":0,"1f6a3-1f3fc-200d-2642-fe0f":0,"1f6a3-1f3fd-200d-2642-fe0f":0,"1f6a3-1f3fe-200d-2642-fe0f":0,"1f6a3-1f3ff-200d-2642-fe0f":0,"1f6a3-1f3fb":0,"1f6a3-1f3fc":0,"1f6a3-1f3fd":0,"1f6a3-1f3fe":0,"1f6a3-1f3ff":0,"1f6b4-1f3fb-200d-2640-fe0f":0,"1f6b4-1f3fc-200d-2640-fe0f":0,"1f6b4-1f3fd-200d-2640-fe0f":0,"1f6b4-1f3fe-200d-2640-fe0f":0,"1f6b4-1f3ff-200d-2640-fe0f":0,"1f6b4-1f3fb-200d-2642-fe0f":0,"1f6b4-1f3fc-200d-2642-fe0f":0,"1f6b4-1f3fd-200d-2642-fe0f":0,"1f6b4-1f3fe-200d-2642-fe0f":0,"1f6b4-1f3ff-200d-2642-fe0f":0,"1f6b4-1f3fb":0,"1f6b4-1f3fc":0,"1f6b4-1f3fd":0,"1f6b4-1f3fe":0,"1f6b4-1f3ff":0,"1f6b5-1f3fb-200d-2640-fe0f":0,"1f6b5-1f3fc-200d-2640-fe0f":0,"1f6b5-1f3fd-200d-2640-fe0f":0,"1f6b5-1f3fe-200d-2640-fe0f":0,"1f6b5-1f3ff-200d-2640-fe0f":0,"1f6b5-1f3fb-200d-2642-fe0f":0,"1f6b5-1f3fc-200d-2642-fe0f":0,"1f6b5-1f3fd-200d-2642-fe0f":0,"1f6b5-1f3fe-200d-2642-fe0f":0,"1f6b5-1f3ff-200d-2642-fe0f":0,"1f6b5-1f3fb":0,"1f6b5-1f3fc":0,"1f6b5-1f3fd":0,"1f6b5-1f3fe":0,"1f6b5-1f3ff":0,"1f6b6-1f3fb-200d-2640-fe0f":0,"1f6b6-1f3fc-200d-2640-fe0f":0,"1f6b6-1f3fd-200d-2640-fe0f":0,"1f6b6-1f3fe-200d-2640-fe0f":0,"1f6b6-1f3ff-200d-2640-fe0f":0,"1f6b6-1f3fb-200d-2642-fe0f":0,"1f6b6-1f3fc-200d-2642-fe0f":0,"1f6b6-1f3fd-200d-2642-fe0f":0,"1f6b6-1f3fe-200d-2642-fe0f":0,"1f6b6-1f3ff-200d-2642-fe0f":0,"1f6b6-1f3fb":0,"1f6b6-1f3fc":0,"1f6b6-1f3fd":0,"1f6b6-1f3fe":0,"1f6b6-1f3ff":0,"1f6c0-1f3fb":0,"1f6c0-1f3fc":0,"1f6c0-1f3fd":0,"1f6c0-1f3fe":0,"1f6c0-1f3ff":0,"1f6cc-1f3fb":0,"1f6cc-1f3fc":0,"1f6cc-1f3fd":0,"1f6cc-1f3fe":0,"1f6cc-1f3ff":0,"1f90f-1f3fb":0,"1f90f-1f3fc":0,"1f90f-1f3fd":0,"1f90f-1f3fe":0,"1f90f-1f3ff":0,"1f918-1f3fb":0,"1f918-1f3fc":0,"1f918-1f3fd":0,"1f918-1f3fe":0,"1f918-1f3ff":0,"1f919-1f3fb":0,"1f919-1f3fc":0,"1f919-1f3fd":0,"1f919-1f3fe":0,"1f919-1f3ff":0,"1f91a-1f3fb":0,"1f91a-1f3fc":0,"1f91a-1f3fd":0,"1f91a-1f3fe":0,"1f91a-1f3ff":0,"1f91b-1f3fb":0,"1f91b-1f3fc":0,"1f91b-1f3fd":0,"1f91b-1f3fe":0,"1f91b-1f3ff":0,"1f91c-1f3fb":0,"1f91c-1f3fc":0,"1f91c-1f3fd":0,"1f91c-1f3fe":0,"1f91c-1f3ff":0,"1f91e-1f3fb":0,"1f91e-1f3fc":0,"1f91e-1f3fd":0,"1f91e-1f3fe":0,"1f91e-1f3ff":0,"1f91f-1f3fb":0,"1f91f-1f3fc":0,"1f91f-1f3fd":0,"1f91f-1f3fe":0,"1f91f-1f3ff":0,"1f926-1f3fb-200d-2640-fe0f":0,"1f926-1f3fc-200d-2640-fe0f":0,"1f926-1f3fd-200d-2640-fe0f":0,"1f926-1f3fe-200d-2640-fe0f":0,"1f926-1f3ff-200d-2640-fe0f":0,"1f926-1f3fb-200d-2642-fe0f":0,"1f926-1f3fc-200d-2642-fe0f":0,"1f926-1f3fd-200d-2642-fe0f":0,"1f926-1f3fe-200d-2642-fe0f":0,"1f926-1f3ff-200d-2642-fe0f":0,"1f926-1f3fb":0,"1f926-1f3fc":0,"1f926-1f3fd":0,"1f926-1f3fe":0,"1f926-1f3ff":0,"1f930-1f3fb":0,"1f930-1f3fc":0,"1f930-1f3fd":0,"1f930-1f3fe":0,"1f930-1f3ff":0,"1f931-1f3fb":0,"1f931-1f3fc":0,"1f931-1f3fd":0,"1f931-1f3fe":0,"1f931-1f3ff":0,"1f932-1f3fb":0,"1f932-1f3fc":0,"1f932-1f3fd":0,"1f932-1f3fe":0,"1f932-1f3ff":0,"1f933-1f3fb":0,"1f933-1f3fc":0,"1f933-1f3fd":0,"1f933-1f3fe":0,"1f933-1f3ff":0,"1f934-1f3fb":0,"1f934-1f3fc":0,"1f934-1f3fd":0,"1f934-1f3fe":0,"1f934-1f3ff":0,"1f935-1f3fb":0,"1f935-1f3fc":0,"1f935-1f3fd":0,"1f935-1f3fe":0,"1f935-1f3ff":0,"1f936-1f3fb":0,"1f936-1f3fc":0,"1f936-1f3fd":0,"1f936-1f3fe":0,"1f936-1f3ff":0,"1f937-1f3fb-200d-2640-fe0f":0,"1f937-1f3fc-200d-2640-fe0f":0,"1f937-1f3fd-200d-2640-fe0f":0,"1f937-1f3fe-200d-2640-fe0f":0,"1f937-1f3ff-200d-2640-fe0f":0,"1f937-1f3fb-200d-2642-fe0f":0,"1f937-1f3fc-200d-2642-fe0f":0,"1f937-1f3fd-200d-2642-fe0f":0,"1f937-1f3fe-200d-2642-fe0f":0,"1f937-1f3ff-200d-2642-fe0f":0,"1f937-1f3fb":0,"1f937-1f3fc":0,"1f937-1f3fd":0,"1f937-1f3fe":0,"1f937-1f3ff":0,"1f938-1f3fb-200d-2640-fe0f":0,"1f938-1f3fc-200d-2640-fe0f":0,"1f938-1f3fd-200d-2640-fe0f":0,"1f938-1f3fe-200d-2640-fe0f":0,"1f938-1f3ff-200d-2640-fe0f":0,"1f938-1f3fb-200d-2642-fe0f":0,"1f938-1f3fc-200d-2642-fe0f":0,"1f938-1f3fd-200d-2642-fe0f":0,"1f938-1f3fe-200d-2642-fe0f":0,"1f938-1f3ff-200d-2642-fe0f":0,"1f938-1f3fb":0,"1f938-1f3fc":0,"1f938-1f3fd":0,"1f938-1f3fe":0,"1f938-1f3ff":0,"1f939-1f3fb-200d-2640-fe0f":0,"1f939-1f3fc-200d-2640-fe0f":0,"1f939-1f3fd-200d-2640-fe0f":0,"1f939-1f3fe-200d-2640-fe0f":0,"1f939-1f3ff-200d-2640-fe0f":0,"1f939-1f3fb-200d-2642-fe0f":0,"1f939-1f3fc-200d-2642-fe0f":0,"1f939-1f3fd-200d-2642-fe0f":0,"1f939-1f3fe-200d-2642-fe0f":0,"1f939-1f3ff-200d-2642-fe0f":0,"1f939-1f3fb":0,"1f939-1f3fc":0,"1f939-1f3fd":0,"1f939-1f3fe":0,"1f939-1f3ff":0,"1f93d-1f3fb-200d-2640-fe0f":0,"1f93d-1f3fc-200d-2640-fe0f":0,"1f93d-1f3fd-200d-2640-fe0f":0,"1f93d-1f3fe-200d-2640-fe0f":0,"1f93d-1f3ff-200d-2640-fe0f":0,"1f93d-1f3fb-200d-2642-fe0f":0,"1f93d-1f3fc-200d-2642-fe0f":0,"1f93d-1f3fd-200d-2642-fe0f":0,"1f93d-1f3fe-200d-2642-fe0f":0,"1f93d-1f3ff-200d-2642-fe0f":0,"1f93d-1f3fb":0,"1f93d-1f3fc":0,"1f93d-1f3fd":0,"1f93d-1f3fe":0,"1f93d-1f3ff":0,"1f93e-1f3fb-200d-2640-fe0f":0,"1f93e-1f3fc-200d-2640-fe0f":0,"1f93e-1f3fd-200d-2640-fe0f":0,"1f93e-1f3fe-200d-2640-fe0f":0,"1f93e-1f3ff-200d-2640-fe0f":0,"1f93e-1f3fb-200d-2642-fe0f":0,"1f93e-1f3fc-200d-2642-fe0f":0,"1f93e-1f3fd-200d-2642-fe0f":0,"1f93e-1f3fe-200d-2642-fe0f":0,"1f93e-1f3ff-200d-2642-fe0f":0,"1f93e-1f3fb":0,"1f93e-1f3fc":0,"1f93e-1f3fd":0,"1f93e-1f3fe":0,"1f93e-1f3ff":0,"1f9b5-1f3fb":0,"1f9b5-1f3fc":0,"1f9b5-1f3fd":0,"1f9b5-1f3fe":0,"1f9b5-1f3ff":0,"1f9b6-1f3fb":0,"1f9b6-1f3fc":0,"1f9b6-1f3fd":0,"1f9b6-1f3fe":0,"1f9b6-1f3ff":0,"1f9b8-1f3fb-200d-2640-fe0f":0,"1f9b8-1f3fc-200d-2640-fe0f":0,"1f9b8-1f3fd-200d-2640-fe0f":0,"1f9b8-1f3fe-200d-2640-fe0f":0,"1f9b8-1f3ff-200d-2640-fe0f":0,"1f9b8-1f3fb-200d-2642-fe0f":0,"1f9b8-1f3fc-200d-2642-fe0f":0,"1f9b8-1f3fd-200d-2642-fe0f":0,"1f9b8-1f3fe-200d-2642-fe0f":0,"1f9b8-1f3ff-200d-2642-fe0f":0,"1f9b8-1f3fb":0,"1f9b8-1f3fc":0,"1f9b8-1f3fd":0,"1f9b8-1f3fe":0,"1f9b8-1f3ff":0,"1f9b9-1f3fb-200d-2640-fe0f":0,"1f9b9-1f3fc-200d-2640-fe0f":0,"1f9b9-1f3fd-200d-2640-fe0f":0,"1f9b9-1f3fe-200d-2640-fe0f":0,"1f9b9-1f3ff-200d-2640-fe0f":0,"1f9b9-1f3fb-200d-2642-fe0f":0,"1f9b9-1f3fc-200d-2642-fe0f":0,"1f9b9-1f3fd-200d-2642-fe0f":0,"1f9b9-1f3fe-200d-2642-fe0f":0,"1f9b9-1f3ff-200d-2642-fe0f":0,"1f9b9-1f3fb":0,"1f9b9-1f3fc":0,"1f9b9-1f3fd":0,"1f9b9-1f3fe":0,"1f9b9-1f3ff":0,"1f9bb-1f3fb":0,"1f9bb-1f3fc":0,"1f9bb-1f3fd":0,"1f9bb-1f3fe":0,"1f9bb-1f3ff":0,"1f9cd-1f3fb-200d-2640-fe0f":0,"1f9cd-1f3fc-200d-2640-fe0f":0,"1f9cd-1f3fd-200d-2640-fe0f":0,"1f9cd-1f3fe-200d-2640-fe0f":0,"1f9cd-1f3ff-200d-2640-fe0f":0,"1f9cd-1f3fb-200d-2642-fe0f":0,"1f9cd-1f3fc-200d-2642-fe0f":0,"1f9cd-1f3fd-200d-2642-fe0f":0,"1f9cd-1f3fe-200d-2642-fe0f":0,"1f9cd-1f3ff-200d-2642-fe0f":0,"1f9cd-1f3fb":0,"1f9cd-1f3fc":0,"1f9cd-1f3fd":0,"1f9cd-1f3fe":0,"1f9cd-1f3ff":0,"1f9ce-1f3fb-200d-2640-fe0f":0,"1f9ce-1f3fc-200d-2640-fe0f":0,"1f9ce-1f3fd-200d-2640-fe0f":0,"1f9ce-1f3fe-200d-2640-fe0f":0,"1f9ce-1f3ff-200d-2640-fe0f":0,"1f9ce-1f3fb-200d-2642-fe0f":0,"1f9ce-1f3fc-200d-2642-fe0f":0,"1f9ce-1f3fd-200d-2642-fe0f":0,"1f9ce-1f3fe-200d-2642-fe0f":0,"1f9ce-1f3ff-200d-2642-fe0f":0,"1f9ce-1f3fb":0,"1f9ce-1f3fc":0,"1f9ce-1f3fd":0,"1f9ce-1f3fe":0,"1f9ce-1f3ff":0,"1f9cf-1f3fb-200d-2640-fe0f":0,"1f9cf-1f3fc-200d-2640-fe0f":0,"1f9cf-1f3fd-200d-2640-fe0f":0,"1f9cf-1f3fe-200d-2640-fe0f":0,"1f9cf-1f3ff-200d-2640-fe0f":0,"1f9cf-1f3fb-200d-2642-fe0f":0,"1f9cf-1f3fc-200d-2642-fe0f":0,"1f9cf-1f3fd-200d-2642-fe0f":0,"1f9cf-1f3fe-200d-2642-fe0f":0,"1f9cf-1f3ff-200d-2642-fe0f":0,"1f9cf-1f3fb":0,"1f9cf-1f3fc":0,"1f9cf-1f3fd":0,"1f9cf-1f3fe":0,"1f9cf-1f3ff":0,"1f9d1-1f3fb-200d-1f33e":0,"1f9d1-1f3fc-200d-1f33e":0,"1f9d1-1f3fd-200d-1f33e":0,"1f9d1-1f3fe-200d-1f33e":0,"1f9d1-1f3ff-200d-1f33e":0,"1f9d1-1f3fb-200d-1f373":0,"1f9d1-1f3fc-200d-1f373":0,"1f9d1-1f3fd-200d-1f373":0,"1f9d1-1f3fe-200d-1f373":0,"1f9d1-1f3ff-200d-1f373":0,"1f9d1-1f3fb-200d-1f393":0,"1f9d1-1f3fc-200d-1f393":0,"1f9d1-1f3fd-200d-1f393":0,"1f9d1-1f3fe-200d-1f393":0,"1f9d1-1f3ff-200d-1f393":0,"1f9d1-1f3fb-200d-1f3a4":0,"1f9d1-1f3fc-200d-1f3a4":0,"1f9d1-1f3fd-200d-1f3a4":0,"1f9d1-1f3fe-200d-1f3a4":0,"1f9d1-1f3ff-200d-1f3a4":0,"1f9d1-1f3fb-200d-1f3a8":0,"1f9d1-1f3fc-200d-1f3a8":0,"1f9d1-1f3fd-200d-1f3a8":0,"1f9d1-1f3fe-200d-1f3a8":0,"1f9d1-1f3ff-200d-1f3a8":0,"1f9d1-1f3fb-200d-1f3eb":0,"1f9d1-1f3fc-200d-1f3eb":0,"1f9d1-1f3fd-200d-1f3eb":0,"1f9d1-1f3fe-200d-1f3eb":0,"1f9d1-1f3ff-200d-1f3eb":0,"1f9d1-1f3fb-200d-1f3ed":0,"1f9d1-1f3fc-200d-1f3ed":0,"1f9d1-1f3fd-200d-1f3ed":0,"1f9d1-1f3fe-200d-1f3ed":0,"1f9d1-1f3ff-200d-1f3ed":0,"1f9d1-1f3fb-200d-1f4bb":0,"1f9d1-1f3fc-200d-1f4bb":0,"1f9d1-1f3fd-200d-1f4bb":0,"1f9d1-1f3fe-200d-1f4bb":0,"1f9d1-1f3ff-200d-1f4bb":0,"1f9d1-1f3fb-200d-1f4bc":0,"1f9d1-1f3fc-200d-1f4bc":0,"1f9d1-1f3fd-200d-1f4bc":0,"1f9d1-1f3fe-200d-1f4bc":0,"1f9d1-1f3ff-200d-1f4bc":0,"1f9d1-1f3fb-200d-1f527":0,"1f9d1-1f3fc-200d-1f527":0,"1f9d1-1f3fd-200d-1f527":0,"1f9d1-1f3fe-200d-1f527":0,"1f9d1-1f3ff-200d-1f527":0,"1f9d1-1f3fb-200d-1f52c":0,"1f9d1-1f3fc-200d-1f52c":0,"1f9d1-1f3fd-200d-1f52c":0,"1f9d1-1f3fe-200d-1f52c":0,"1f9d1-1f3ff-200d-1f52c":0,"1f9d1-1f3fb-200d-1f680":0,"1f9d1-1f3fc-200d-1f680":0,"1f9d1-1f3fd-200d-1f680":0,"1f9d1-1f3fe-200d-1f680":0,"1f9d1-1f3ff-200d-1f680":0,"1f9d1-1f3fb-200d-1f692":0,"1f9d1-1f3fc-200d-1f692":0,"1f9d1-1f3fd-200d-1f692":0,"1f9d1-1f3fe-200d-1f692":0,"1f9d1-1f3ff-200d-1f692":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fb-200d-1f9af":0,"1f9d1-1f3fc-200d-1f9af":0,"1f9d1-1f3fd-200d-1f9af":0,"1f9d1-1f3fe-200d-1f9af":0,"1f9d1-1f3ff-200d-1f9af":0,"1f9d1-1f3fb-200d-1f9b0":0,"1f9d1-1f3fc-200d-1f9b0":0,"1f9d1-1f3fd-200d-1f9b0":0,"1f9d1-1f3fe-200d-1f9b0":0,"1f9d1-1f3ff-200d-1f9b0":0,"1f9d1-1f3fb-200d-1f9b1":0,"1f9d1-1f3fc-200d-1f9b1":0,"1f9d1-1f3fd-200d-1f9b1":0,"1f9d1-1f3fe-200d-1f9b1":0,"1f9d1-1f3ff-200d-1f9b1":0,"1f9d1-1f3fb-200d-1f9b2":0,"1f9d1-1f3fc-200d-1f9b2":0,"1f9d1-1f3fd-200d-1f9b2":0,"1f9d1-1f3fe-200d-1f9b2":0,"1f9d1-1f3ff-200d-1f9b2":0,"1f9d1-1f3fb-200d-1f9b3":0,"1f9d1-1f3fc-200d-1f9b3":0,"1f9d1-1f3fd-200d-1f9b3":0,"1f9d1-1f3fe-200d-1f9b3":0,"1f9d1-1f3ff-200d-1f9b3":0,"1f9d1-1f3fb-200d-1f9bc":0,"1f9d1-1f3fc-200d-1f9bc":0,"1f9d1-1f3fd-200d-1f9bc":0,"1f9d1-1f3fe-200d-1f9bc":0,"1f9d1-1f3ff-200d-1f9bc":0,"1f9d1-1f3fb-200d-1f9bd":0,"1f9d1-1f3fc-200d-1f9bd":0,"1f9d1-1f3fd-200d-1f9bd":0,"1f9d1-1f3fe-200d-1f9bd":0,"1f9d1-1f3ff-200d-1f9bd":0,"1f9d1-1f3fb-200d-2695-fe0f":0,"1f9d1-1f3fc-200d-2695-fe0f":0,"1f9d1-1f3fd-200d-2695-fe0f":0,"1f9d1-1f3fe-200d-2695-fe0f":0,"1f9d1-1f3ff-200d-2695-fe0f":0,"1f9d1-1f3fb-200d-2696-fe0f":0,"1f9d1-1f3fc-200d-2696-fe0f":0,"1f9d1-1f3fd-200d-2696-fe0f":0,"1f9d1-1f3fe-200d-2696-fe0f":0,"1f9d1-1f3ff-200d-2696-fe0f":0,"1f9d1-1f3fb-200d-2708-fe0f":0,"1f9d1-1f3fc-200d-2708-fe0f":0,"1f9d1-1f3fd-200d-2708-fe0f":0,"1f9d1-1f3fe-200d-2708-fe0f":0,"1f9d1-1f3ff-200d-2708-fe0f":0,"1f9d1-1f3fb":0,"1f9d1-1f3fc":0,"1f9d1-1f3fd":0,"1f9d1-1f3fe":0,"1f9d1-1f3ff":0,"1f9d2-1f3fb":0,"1f9d2-1f3fc":0,"1f9d2-1f3fd":0,"1f9d2-1f3fe":0,"1f9d2-1f3ff":0,"1f9d3-1f3fb":0,"1f9d3-1f3fc":0,"1f9d3-1f3fd":0,"1f9d3-1f3fe":0,"1f9d3-1f3ff":0,"1f9d4-1f3fb":0,"1f9d4-1f3fc":0,"1f9d4-1f3fd":0,"1f9d4-1f3fe":0,"1f9d4-1f3ff":0,"1f9d5-1f3fb":0,"1f9d5-1f3fc":0,"1f9d5-1f3fd":0,"1f9d5-1f3fe":0,"1f9d5-1f3ff":0,"1f9d6-1f3fb-200d-2640-fe0f":0,"1f9d6-1f3fc-200d-2640-fe0f":0,"1f9d6-1f3fd-200d-2640-fe0f":0,"1f9d6-1f3fe-200d-2640-fe0f":0,"1f9d6-1f3ff-200d-2640-fe0f":0,"1f9d6-1f3fb-200d-2642-fe0f":0,"1f9d6-1f3fc-200d-2642-fe0f":0,"1f9d6-1f3fd-200d-2642-fe0f":0,"1f9d6-1f3fe-200d-2642-fe0f":0,"1f9d6-1f3ff-200d-2642-fe0f":0,"1f9d6-1f3fb":0,"1f9d6-1f3fc":0,"1f9d6-1f3fd":0,"1f9d6-1f3fe":0,"1f9d6-1f3ff":0,"1f9d7-1f3fb-200d-2640-fe0f":0,"1f9d7-1f3fc-200d-2640-fe0f":0,"1f9d7-1f3fd-200d-2640-fe0f":0,"1f9d7-1f3fe-200d-2640-fe0f":0,"1f9d7-1f3ff-200d-2640-fe0f":0,"1f9d7-1f3fb-200d-2642-fe0f":0,"1f9d7-1f3fc-200d-2642-fe0f":0,"1f9d7-1f3fd-200d-2642-fe0f":0,"1f9d7-1f3fe-200d-2642-fe0f":0,"1f9d7-1f3ff-200d-2642-fe0f":0,"1f9d7-1f3fb":0,"1f9d7-1f3fc":0,"1f9d7-1f3fd":0,"1f9d7-1f3fe":0,"1f9d7-1f3ff":0,"1f9d8-1f3fb-200d-2640-fe0f":0,"1f9d8-1f3fc-200d-2640-fe0f":0,"1f9d8-1f3fd-200d-2640-fe0f":0,"1f9d8-1f3fe-200d-2640-fe0f":0,"1f9d8-1f3ff-200d-2640-fe0f":0,"1f9d8-1f3fb-200d-2642-fe0f":0,"1f9d8-1f3fc-200d-2642-fe0f":0,"1f9d8-1f3fd-200d-2642-fe0f":0,"1f9d8-1f3fe-200d-2642-fe0f":0,"1f9d8-1f3ff-200d-2642-fe0f":0,"1f9d8-1f3fb":0,"1f9d8-1f3fc":0,"1f9d8-1f3fd":0,"1f9d8-1f3fe":0,"1f9d8-1f3ff":0,"1f9d9-1f3fb-200d-2640-fe0f":0,"1f9d9-1f3fc-200d-2640-fe0f":0,"1f9d9-1f3fd-200d-2640-fe0f":0,"1f9d9-1f3fe-200d-2640-fe0f":0,"1f9d9-1f3ff-200d-2640-fe0f":0,"1f9d9-1f3fb-200d-2642-fe0f":0,"1f9d9-1f3fc-200d-2642-fe0f":0,"1f9d9-1f3fd-200d-2642-fe0f":0,"1f9d9-1f3fe-200d-2642-fe0f":0,"1f9d9-1f3ff-200d-2642-fe0f":0,"1f9d9-1f3fb":0,"1f9d9-1f3fc":0,"1f9d9-1f3fd":0,"1f9d9-1f3fe":0,"1f9d9-1f3ff":0,"1f9da-1f3fb-200d-2640-fe0f":0,"1f9da-1f3fc-200d-2640-fe0f":0,"1f9da-1f3fd-200d-2640-fe0f":0,"1f9da-1f3fe-200d-2640-fe0f":0,"1f9da-1f3ff-200d-2640-fe0f":0,"1f9da-1f3fb-200d-2642-fe0f":0,"1f9da-1f3fc-200d-2642-fe0f":0,"1f9da-1f3fd-200d-2642-fe0f":0,"1f9da-1f3fe-200d-2642-fe0f":0,"1f9da-1f3ff-200d-2642-fe0f":0,"1f9da-1f3fb":0,"1f9da-1f3fc":0,"1f9da-1f3fd":0,"1f9da-1f3fe":0,"1f9da-1f3ff":0,"1f9db-1f3fb-200d-2640-fe0f":0,"1f9db-1f3fc-200d-2640-fe0f":0,"1f9db-1f3fd-200d-2640-fe0f":0,"1f9db-1f3fe-200d-2640-fe0f":0,"1f9db-1f3ff-200d-2640-fe0f":0,"1f9db-1f3fb-200d-2642-fe0f":0,"1f9db-1f3fc-200d-2642-fe0f":0,"1f9db-1f3fd-200d-2642-fe0f":0,"1f9db-1f3fe-200d-2642-fe0f":0,"1f9db-1f3ff-200d-2642-fe0f":0,"1f9db-1f3fb":0,"1f9db-1f3fc":0,"1f9db-1f3fd":0,"1f9db-1f3fe":0,"1f9db-1f3ff":0,"1f9dc-1f3fb-200d-2640-fe0f":0,"1f9dc-1f3fc-200d-2640-fe0f":0,"1f9dc-1f3fd-200d-2640-fe0f":0,"1f9dc-1f3fe-200d-2640-fe0f":0,"1f9dc-1f3ff-200d-2640-fe0f":0,"1f9dc-1f3fb-200d-2642-fe0f":0,"1f9dc-1f3fc-200d-2642-fe0f":0,"1f9dc-1f3fd-200d-2642-fe0f":0,"1f9dc-1f3fe-200d-2642-fe0f":0,"1f9dc-1f3ff-200d-2642-fe0f":0,"1f9dc-1f3fb":0,"1f9dc-1f3fc":0,"1f9dc-1f3fd":0,"1f9dc-1f3fe":0,"1f9dc-1f3ff":0,"1f9dd-1f3fb-200d-2640-fe0f":0,"1f9dd-1f3fc-200d-2640-fe0f":0,"1f9dd-1f3fd-200d-2640-fe0f":0,"1f9dd-1f3fe-200d-2640-fe0f":0,"1f9dd-1f3ff-200d-2640-fe0f":0,"1f9dd-1f3fb-200d-2642-fe0f":0,"1f9dd-1f3fc-200d-2642-fe0f":0,"1f9dd-1f3fd-200d-2642-fe0f":0,"1f9dd-1f3fe-200d-2642-fe0f":0,"1f9dd-1f3ff-200d-2642-fe0f":0,"1f9dd-1f3fb":0,"1f9dd-1f3fc":0,"1f9dd-1f3fd":0,"1f9dd-1f3fe":0,"1f9dd-1f3ff":0,"261d-1f3fb":0,"261d-1f3fc":0,"261d-1f3fd":0,"261d-1f3fe":0,"261d-1f3ff":0,"26f9-1f3fb-200d-2640-fe0f":0,"26f9-1f3fc-200d-2640-fe0f":0,"26f9-1f3fd-200d-2640-fe0f":0,"26f9-1f3fe-200d-2640-fe0f":0,"26f9-1f3ff-200d-2640-fe0f":0,"26f9-1f3fb-200d-2642-fe0f":0,"26f9-1f3fc-200d-2642-fe0f":0,"26f9-1f3fd-200d-2642-fe0f":0,"26f9-1f3fe-200d-2642-fe0f":0,"26f9-1f3ff-200d-2642-fe0f":0,"26f9-1f3fb":0,"26f9-1f3fc":0,"26f9-1f3fd":0,"26f9-1f3fe":0,"26f9-1f3ff":0,"270a-1f3fb":0,"270a-1f3fc":0,"270a-1f3fd":0,"270a-1f3fe":0,"270a-1f3ff":0,"270b-1f3fb":0,"270b-1f3fc":0,"270b-1f3fd":0,"270b-1f3fe":0,"270b-1f3ff":0,"270c-1f3fb":0,"270c-1f3fc":0,"270c-1f3fd":0,"270c-1f3fe":0,"270c-1f3ff":0,"270d-1f3fb":0,"270d-1f3fc":0,"270d-1f3fd":0,"270d-1f3fe":0,"270d-1f3ff":0}; +export const Emoji: {[emoji: string]: number} = {"2049":62748,"2122":62776,"2139":62801,"2194":62678,"2195":62677,"2196":62676,"2197":62670,"2198":62672,"2199":62674,"2328":61155,"2600":4954,"2601":4962,"2602":4977,"2603":4982,"2604":4984,"2611":62764,"2614":4978,"2615":3750,"2618":2639,"2620":196,"2622":62667,"2623":62668,"2626":62697,"2638":62694,"2639":168,"2648":62702,"2649":62703,"2650":62710,"2651":62711,"2652":62712,"2653":62713,"2660":51057,"2663":51060,"2665":51058,"2666":51059,"2668":4832,"2692":61258,"2693":4887,"2694":61261,"2696":61272,"2697":61280,"2699":61270,"2702":61245,"2705":62763,"2708":4895,"2709":61206,"2712":61220,"2714":62765,"2716":62742,"2721":62693,"2728":5993,"2733":62771,"2734":62772,"2744":4981,"2747":62773,"2753":62749,"2754":62750,"2755":62751,"2757":62752,"2763":1127,"2764":1129,"2795":62743,"2796":62744,"2797":62745,"2934":62681,"2935":62682,"3030":62753,"3297":62825,"3299":62826,"0023-20e3":62777,"002a-20e3":62778,"0030-20e3":62779,"0031-20e3":62780,"0032-20e3":62781,"0033-20e3":62782,"0034-20e3":62783,"0035-20e3":62784,"0036-20e3":62785,"0037-20e3":62786,"0038-20e3":62787,"0039-20e3":62788,"00a9":62774,"00ae":62775,"1f004":51063,"1f0cf":51062,"1f170":62795,"1f171":62797,"1f17e":62806,"1f17f":62808,"1f18e":62796,"1f191":62798,"1f192":62799,"1f193":62800,"1f194":62802,"1f195":62804,"1f196":62805,"1f197":62807,"1f198":62809,"1f199":62810,"1f19a":62811,"1f1e6-1f1e8":71550,"1f1e6-1f1e9":71551,"1f1e6-1f1ea":71552,"1f1e6-1f1eb":71553,"1f1e6-1f1ec":71554,"1f1e6-1f1ee":71555,"1f1e6-1f1f1":71556,"1f1e6-1f1f2":71557,"1f1e6-1f1f4":71558,"1f1e6-1f1f6":71559,"1f1e6-1f1f7":71560,"1f1e6-1f1f8":71561,"1f1e6-1f1f9":71562,"1f1e6-1f1fa":71563,"1f1e6-1f1fc":71564,"1f1e6-1f1fd":71565,"1f1e6-1f1ff":71566,"1f1e7-1f1e6":71567,"1f1e7-1f1e7":71568,"1f1e7-1f1e9":71569,"1f1e7-1f1ea":71570,"1f1e7-1f1eb":71571,"1f1e7-1f1ec":71572,"1f1e7-1f1ed":71573,"1f1e7-1f1ee":71574,"1f1e7-1f1ef":71575,"1f1e7-1f1f1":71576,"1f1e7-1f1f2":71577,"1f1e7-1f1f3":71578,"1f1e7-1f1f4":71579,"1f1e7-1f1f6":71580,"1f1e7-1f1f7":71581,"1f1e7-1f1f8":71582,"1f1e7-1f1f9":71583,"1f1e7-1f1fb":71584,"1f1e7-1f1fc":71585,"1f1e7-1f1fe":71586,"1f1e7-1f1ff":71587,"1f1e8-1f1e6":71588,"1f1e8-1f1e8":71589,"1f1e8-1f1e9":71590,"1f1e8-1f1eb":71591,"1f1e8-1f1ec":71592,"1f1e8-1f1ed":71593,"1f1e8-1f1ee":71594,"1f1e8-1f1f0":71595,"1f1e8-1f1f1":71596,"1f1e8-1f1f2":71597,"1f1e8-1f1f3":71598,"1f1e8-1f1f4":71599,"1f1e8-1f1f5":71600,"1f1e8-1f1f7":71601,"1f1e8-1f1fa":71602,"1f1e8-1f1fb":71603,"1f1e8-1f1fc":71604,"1f1e8-1f1fd":71605,"1f1e8-1f1fe":71606,"1f1e8-1f1ff":71607,"1f1e9-1f1ea":71608,"1f1e9-1f1ec":71609,"1f1e9-1f1ef":71610,"1f1e9-1f1f0":71611,"1f1e9-1f1f2":71612,"1f1e9-1f1f4":71613,"1f1e9-1f1ff":71614,"1f1ea-1f1e6":71615,"1f1ea-1f1e8":71616,"1f1ea-1f1ea":71617,"1f1ea-1f1ec":71618,"1f1ea-1f1ed":71619,"1f1ea-1f1f7":71620,"1f1ea-1f1f8":71621,"1f1ea-1f1f9":71622,"1f1ea-1f1fa":71623,"1f1eb-1f1ee":71624,"1f1eb-1f1ef":71625,"1f1eb-1f1f0":71626,"1f1eb-1f1f2":71627,"1f1eb-1f1f4":71628,"1f1eb-1f1f7":71629,"1f1ec-1f1e6":71630,"1f1ec-1f1e7":71631,"1f1ec-1f1e9":71632,"1f1ec-1f1ea":71633,"1f1ec-1f1eb":71634,"1f1ec-1f1ec":71635,"1f1ec-1f1ed":71636,"1f1ec-1f1ee":71637,"1f1ec-1f1f1":71638,"1f1ec-1f1f2":71639,"1f1ec-1f1f3":71640,"1f1ec-1f1f5":71641,"1f1ec-1f1f6":71642,"1f1ec-1f1f7":71643,"1f1ec-1f1f8":71644,"1f1ec-1f1f9":71645,"1f1ec-1f1fa":71646,"1f1ec-1f1fc":71647,"1f1ec-1f1fe":71648,"1f1ed-1f1f0":71649,"1f1ed-1f1f2":71650,"1f1ed-1f1f3":71651,"1f1ed-1f1f7":71652,"1f1ed-1f1f9":71653,"1f1ed-1f1fa":71654,"1f1ee-1f1e8":71655,"1f1ee-1f1e9":71656,"1f1ee-1f1ea":71657,"1f1ee-1f1f1":71658,"1f1ee-1f1f2":71659,"1f1ee-1f1f3":71660,"1f1ee-1f1f4":71661,"1f1ee-1f1f6":71662,"1f1ee-1f1f7":71663,"1f1ee-1f1f8":71664,"1f1ee-1f1f9":71665,"1f1ef-1f1ea":71666,"1f1ef-1f1f2":71667,"1f1ef-1f1f4":71668,"1f1ef-1f1f5":71669,"1f1f0-1f1ea":71670,"1f1f0-1f1ec":71671,"1f1f0-1f1ed":71672,"1f1f0-1f1ee":71673,"1f1f0-1f1f2":71674,"1f1f0-1f1f3":71675,"1f1f0-1f1f5":71676,"1f1f0-1f1f7":71677,"1f1f0-1f1fc":71678,"1f1f0-1f1fe":71679,"1f1f0-1f1ff":71680,"1f1f1-1f1e6":71681,"1f1f1-1f1e7":71682,"1f1f1-1f1e8":71683,"1f1f1-1f1ee":71684,"1f1f1-1f1f0":71685,"1f1f1-1f1f7":71686,"1f1f1-1f1f8":71687,"1f1f1-1f1f9":71688,"1f1f1-1f1fa":71689,"1f1f1-1f1fb":71690,"1f1f1-1f1fe":71691,"1f1f2-1f1e6":71692,"1f1f2-1f1e8":71693,"1f1f2-1f1e9":71694,"1f1f2-1f1ea":71695,"1f1f2-1f1eb":71696,"1f1f2-1f1ec":71697,"1f1f2-1f1ed":71698,"1f1f2-1f1f0":71699,"1f1f2-1f1f1":71700,"1f1f2-1f1f2":71701,"1f1f2-1f1f3":71702,"1f1f2-1f1f4":71703,"1f1f2-1f1f5":71704,"1f1f2-1f1f6":71705,"1f1f2-1f1f7":71706,"1f1f2-1f1f8":71707,"1f1f2-1f1f9":71708,"1f1f2-1f1fa":71709,"1f1f2-1f1fb":71710,"1f1f2-1f1fc":71711,"1f1f2-1f1fd":71712,"1f1f2-1f1fe":71713,"1f1f2-1f1ff":71714,"1f1f3-1f1e6":71715,"1f1f3-1f1e8":71716,"1f1f3-1f1ea":71717,"1f1f3-1f1eb":71718,"1f1f3-1f1ec":71719,"1f1f3-1f1ee":71720,"1f1f3-1f1f1":71721,"1f1f3-1f1f4":71722,"1f1f3-1f1f5":71723,"1f1f3-1f1f7":71724,"1f1f3-1f1fa":71725,"1f1f3-1f1ff":71726,"1f1f4-1f1f2":71727,"1f1f5-1f1e6":71728,"1f1f5-1f1ea":71729,"1f1f5-1f1eb":71730,"1f1f5-1f1ec":71731,"1f1f5-1f1ed":71732,"1f1f5-1f1f0":71733,"1f1f5-1f1f1":71734,"1f1f5-1f1f2":71735,"1f1f5-1f1f3":71736,"1f1f5-1f1f7":71737,"1f1f5-1f1f8":71738,"1f1f5-1f1f9":71739,"1f1f5-1f1fc":71740,"1f1f5-1f1fe":71741,"1f1f6-1f1e6":71742,"1f1f7-1f1ea":71743,"1f1f7-1f1f4":71744,"1f1f7-1f1f8":71745,"1f1f7-1f1fa":71746,"1f1f7-1f1fc":71747,"1f1f8-1f1e6":71748,"1f1f8-1f1e7":71749,"1f1f8-1f1e8":71750,"1f1f8-1f1e9":71751,"1f1f8-1f1ea":71752,"1f1f8-1f1ec":71753,"1f1f8-1f1ed":71754,"1f1f8-1f1ee":71755,"1f1f8-1f1ef":71756,"1f1f8-1f1f0":71757,"1f1f8-1f1f1":71758,"1f1f8-1f1f2":71759,"1f1f8-1f1f3":71760,"1f1f8-1f1f4":71761,"1f1f8-1f1f7":71762,"1f1f8-1f1f8":71763,"1f1f8-1f1f9":71764,"1f1f8-1f1fb":71765,"1f1f8-1f1fd":71766,"1f1f8-1f1fe":71767,"1f1f8-1f1ff":71768,"1f1f9-1f1e6":71769,"1f1f9-1f1e8":71770,"1f1f9-1f1e9":71771,"1f1f9-1f1eb":71772,"1f1f9-1f1ec":71773,"1f1f9-1f1ed":71774,"1f1f9-1f1ef":71775,"1f1f9-1f1f0":71776,"1f1f9-1f1f1":71777,"1f1f9-1f1f2":71778,"1f1f9-1f1f3":71779,"1f1f9-1f1f4":71780,"1f1f9-1f1f7":71781,"1f1f9-1f1f9":71782,"1f1f9-1f1fb":71783,"1f1f9-1f1fc":71784,"1f1f9-1f1ff":71785,"1f1fa-1f1e6":71786,"1f1fa-1f1ec":71787,"1f1fa-1f1f2":71788,"1f1fa-1f1f3":71789,"1f1fa-1f1f8":71790,"1f1fa-1f1fe":71791,"1f1fa-1f1ff":71792,"1f1fb-1f1e6":71793,"1f1fb-1f1e8":71794,"1f1fb-1f1ea":71795,"1f1fb-1f1ec":71796,"1f1fb-1f1ee":71797,"1f1fb-1f1f3":71798,"1f1fb-1f1fa":71799,"1f1fc-1f1eb":71800,"1f1fc-1f1f8":71801,"1f1fd-1f1f0":71802,"1f1fe-1f1ea":71803,"1f1fe-1f1f9":71804,"1f1ff-1f1e6":71805,"1f1ff-1f1f2":71806,"1f1ff-1f1fc":71807,"1f201":62812,"1f202":62813,"1f21a":62819,"1f22f":62816,"1f232":62820,"1f233":62824,"1f234":62823,"1f235":62828,"1f236":62815,"1f237":62814,"1f238":62822,"1f239":62818,"1f23a":62827,"1f250":62817,"1f251":62821,"1f300":4974,"1f301":4824,"1f302":4976,"1f303":4825,"1f304":4827,"1f305":4828,"1f306":4829,"1f307":4830,"1f308":4975,"1f309":4831,"1f30a":4987,"1f30b":4782,"1f30c":4961,"1f30d":4773,"1f30e":4774,"1f30f":4775,"1f310":4776,"1f311":4941,"1f312":4942,"1f313":4943,"1f314":4944,"1f315":4945,"1f316":4946,"1f317":4947,"1f318":4948,"1f319":4949,"1f31a":4950,"1f31b":4951,"1f31c":4952,"1f31d":4955,"1f31e":4956,"1f31f":4959,"1f320":4960,"1f321":4953,"1f324":4965,"1f325":4966,"1f326":4967,"1f327":4968,"1f328":4969,"1f329":4970,"1f32a":4971,"1f32b":4972,"1f32c":4973,"1f32d":3694,"1f32e":3696,"1f32f":3697,"1f330":3677,"1f331":2631,"1f332":2633,"1f333":2634,"1f334":2635,"1f335":2636,"1f336":3668,"1f337":2630,"1f338":2622,"1f339":2625,"1f33a":2627,"1f33b":2628,"1f33c":2629,"1f33d":3667,"1f33e":2637,"1f33f":2638,"1f340":2640,"1f341":2641,"1f342":2642,"1f343":2643,"1f344":3675,"1f345":3660,"1f346":3664,"1f347":3644,"1f348":3645,"1f349":3646,"1f34a":3647,"1f34b":3648,"1f34c":3649,"1f34d":3650,"1f34e":3652,"1f34f":3653,"1f350":3654,"1f351":3655,"1f352":3656,"1f353":3657,"1f354":3691,"1f355":3693,"1f356":3687,"1f357":3688,"1f358":3713,"1f359":3714,"1f35a":3715,"1f35b":3716,"1f35c":3717,"1f35d":3718,"1f35e":3678,"1f35f":3692,"1f360":3719,"1f361":3725,"1f362":3720,"1f363":3721,"1f364":3722,"1f365":3723,"1f366":3734,"1f367":3735,"1f368":3736,"1f369":3737,"1f36a":3738,"1f36b":3743,"1f36c":3744,"1f36d":3745,"1f36e":3746,"1f36f":3747,"1f370":3740,"1f371":3712,"1f372":3704,"1f373":3702,"1f374":3769,"1f375":3752,"1f376":3753,"1f377":3755,"1f378":3756,"1f379":3757,"1f37a":3758,"1f37b":3759,"1f37c":3748,"1f37d":3768,"1f37e":3754,"1f37f":3708,"1f380":51004,"1f381":51005,"1f382":3739,"1f383":5988,"1f384":5989,"1f385":1490,"1f386":5990,"1f387":5991,"1f388":5994,"1f389":5995,"1f38a":5996,"1f38b":5997,"1f38c":71544,"1f38d":5998,"1f38e":5999,"1f38f":51000,"1f390":51001,"1f391":51002,"1f392":61096,"1f393":61109,"1f396":51009,"1f397":51006,"1f399":61129,"1f39a":61130,"1f39b":61131,"1f39e":61164,"1f39f":51007,"1f3a0":4833,"1f3a1":4834,"1f3a2":4835,"1f3a3":51036,"1f3a4":61132,"1f3a5":61163,"1f3a6":62733,"1f3a7":61133,"1f3a8":51067,"1f3a9":61108,"1f3aa":4837,"1f3ab":51008,"1f3ac":61166,"1f3ad":51065,"1f3ae":51049,"1f3af":51042,"1f3b0":51051,"1f3b1":51045,"1f3b2":51052,"1f3b3":51024,"1f3b4":51064,"1f3b5":61127,"1f3b6":61128,"1f3b7":61135,"1f3b8":61137,"1f3b9":61138,"1f3ba":61139,"1f3bb":61140,"1f3bc":61126,"1f3bd":51038,"1f3be":51022,"1f3bf":51039,"1f3c0":51018,"1f3c1":71542,"1f3c2":1562,"1f3c3-200d-2640":1546,"1f3c3-200d-2642":1545,"1f3c3":1544,"1f3c4-200d-2640":1568,"1f3c4-200d-2642":1567,"1f3c4":1566,"1f3c5":51011,"1f3c6":51010,"1f3c7":1560,"1f3c8":51020,"1f3c9":51021,"1f3ca-200d-2640":1574,"1f3ca-200d-2642":1573,"1f3ca":1572,"1f3cb-fe0f-200d-2640":1580,"1f3cb-fe0f-200d-2642":1579,"1f3cb":1578,"1f3cc-fe0f-200d-2640":1565,"1f3cc-fe0f-200d-2642":1564,"1f3cc":1563,"1f3cd":4868,"1f3ce":4867,"1f3cf":51025,"1f3d0":51019,"1f3d1":51026,"1f3d2":51027,"1f3d3":51029,"1f3d4":4780,"1f3d5":4784,"1f3d6":4785,"1f3d7":4791,"1f3d8":4796,"1f3d9":4826,"1f3da":4797,"1f3db":4790,"1f3dc":4786,"1f3dd":4787,"1f3de":4788,"1f3df":4789,"1f3e0":4798,"1f3e1":4799,"1f3e2":4800,"1f3e3":4801,"1f3e4":4802,"1f3e5":4803,"1f3e6":4804,"1f3e7":62643,"1f3e8":4805,"1f3e9":4806,"1f3ea":4807,"1f3eb":4808,"1f3ec":4809,"1f3ed":4810,"1f3ee":61177,"1f3ef":4811,"1f3f0":4812,"1f3f3-fe0f-200d-1f308":71547,"1f3f3-fe0f-200d-26a7":71548,"1f3f3":71546,"1f3f4-200d-2620":71549,"1f3f4-e0067-e0062-e0065-e006e-e0067-e007f":71808,"1f3f4-e0067-e0062-e0073-e0063-e0074-e007f":71809,"1f3f4-e0067-e0062-e0077-e006c-e0073-e007f":71810,"1f3f4":71545,"1f3f5":2624,"1f3f7":61195,"1f3f8":51030,"1f3f9":61264,"1f3fa":3772,"1f3fb":9499,"1f3fc":9500,"1f3fd":9501,"1f3fe":9502,"1f3ff":9503,"1f400":2550,"1f401":2549,"1f402":2530,"1f403":2531,"1f404":2532,"1f405":2521,"1f406":2522,"1f407":2553,"1f408-200d-2b1b":2518,"1f408":2517,"1f409":2592,"1f40a":2587,"1f40b":2596,"1f40c":2605,"1f40d":2590,"1f40e":2524,"1f40f":2537,"1f410":2539,"1f411":2538,"1f412":2505,"1f413":2570,"1f414":2569,"1f415-200d-1f9ba":2511,"1f415":2509,"1f416":2534,"1f417":2535,"1f418":2544,"1f419":2603,"1f41a":2604,"1f41b":2607,"1f41c":2608,"1f41d":2609,"1f41e":2611,"1f41f":2599,"1f420":2600,"1f421":2601,"1f422":2588,"1f423":2571,"1f424":2572,"1f425":2573,"1f426":2574,"1f427":2575,"1f428":2560,"1f429":2512,"1f42a":2540,"1f42b":2541,"1f42c":2597,"1f42d":2548,"1f42e":2529,"1f42f":2520,"1f430":2552,"1f431":2516,"1f432":2591,"1f433":2595,"1f434":2523,"1f435":2504,"1f436":2508,"1f437":2533,"1f438":2586,"1f439":2551,"1f43a":2513,"1f43b-200d-2744":2559,"1f43b":2558,"1f43c":2561,"1f43d":2536,"1f43e":2567,"1f43f":2554,"1f440":1350,"1f441-fe0f-200d-1f5e8":1147,"1f441":1351,"1f442":1342,"1f443":1344,"1f444":1353,"1f445":1352,"1f446":1318,"1f447":1320,"1f448":1316,"1f449":1317,"1f44a":1325,"1f44b":1303,"1f44c":1308,"1f44d":1322,"1f44e":1323,"1f44f":1328,"1f450":1330,"1f451":61106,"1f452":61107,"1f453":61072,"1f454":61077,"1f455":61078,"1f456":61079,"1f457":61084,"1f458":61085,"1f459":61090,"1f45a":61091,"1f45b":61092,"1f45c":61093,"1f45d":61094,"1f45e":61098,"1f45f":61099,"1f460":61102,"1f461":61103,"1f462":61105,"1f463":1649,"1f464":1646,"1f465":1647,"1f466":1356,"1f467":1357,"1f468-200d-1f33e":1423,"1f468-200d-1f373":1426,"1f468-200d-1f37c":1487,"1f468-200d-1f393":1414,"1f468-200d-1f3a4":1444,"1f468-200d-1f3a8":1447,"1f468-200d-1f3eb":1417,"1f468-200d-1f3ed":1432,"1f468-200d-1f466-200d-1f466":1636,"1f468-200d-1f466":1635,"1f468-200d-1f467-200d-1f466":1638,"1f468-200d-1f467-200d-1f467":1639,"1f468-200d-1f467":1637,"1f468-200d-1f468-200d-1f466":1625,"1f468-200d-1f468-200d-1f466-200d-1f466":1628,"1f468-200d-1f468-200d-1f467":1626,"1f468-200d-1f468-200d-1f467-200d-1f466":1627,"1f468-200d-1f468-200d-1f467-200d-1f467":1629,"1f468-200d-1f469-200d-1f466":1620,"1f468-200d-1f469-200d-1f466-200d-1f466":1623,"1f468-200d-1f469-200d-1f467":1621,"1f468-200d-1f469-200d-1f467-200d-1f466":1622,"1f468-200d-1f469-200d-1f467-200d-1f467":1624,"1f468-200d-1f4bb":1441,"1f468-200d-1f4bc":1435,"1f468-200d-1f527":1429,"1f468-200d-1f52c":1438,"1f468-200d-1f680":1453,"1f468-200d-1f692":1456,"1f468-200d-1f9af":1536,"1f468-200d-1f9b0":1362,"1f468-200d-1f9b1":1363,"1f468-200d-1f9b2":1365,"1f468-200d-1f9b3":1364,"1f468-200d-1f9bc":1539,"1f468-200d-1f9bd":1542,"1f468-200d-2695":1411,"1f468-200d-2696":1420,"1f468-200d-2708":1450,"1f468-200d-2764-fe0f-200d-1f468":1617,"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468":1613,"1f468":1360,"1f469-200d-1f33e":1424,"1f469-200d-1f373":1427,"1f469-200d-1f37c":1486,"1f469-200d-1f393":1415,"1f469-200d-1f3a4":1445,"1f469-200d-1f3a8":1448,"1f469-200d-1f3eb":1418,"1f469-200d-1f3ed":1433,"1f469-200d-1f466-200d-1f466":1641,"1f469-200d-1f466":1640,"1f469-200d-1f467-200d-1f466":1643,"1f469-200d-1f467-200d-1f467":1644,"1f469-200d-1f467":1642,"1f469-200d-1f469-200d-1f466":1630,"1f469-200d-1f469-200d-1f466-200d-1f466":1633,"1f469-200d-1f469-200d-1f467":1631,"1f469-200d-1f469-200d-1f467-200d-1f466":1632,"1f469-200d-1f469-200d-1f467-200d-1f467":1634,"1f469-200d-1f4bb":1442,"1f469-200d-1f4bc":1436,"1f469-200d-1f527":1430,"1f469-200d-1f52c":1439,"1f469-200d-1f680":1454,"1f469-200d-1f692":1457,"1f469-200d-1f9af":1537,"1f469-200d-1f9b0":1367,"1f469-200d-1f9b1":1369,"1f469-200d-1f9b2":1373,"1f469-200d-1f9b3":1371,"1f469-200d-1f9bc":1540,"1f469-200d-1f9bd":1543,"1f469-200d-2695":1412,"1f469-200d-2696":1421,"1f469-200d-2708":1451,"1f469-200d-2764-fe0f-200d-1f468":1616,"1f469-200d-2764-fe0f-200d-1f469":1618,"1f469-200d-2764-fe0f-200d-1f48b-200d-1f468":1612,"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469":1614,"1f469":1366,"1f46a":1619,"1f46b":1609,"1f46c":1610,"1f46d":1608,"1f46e-200d-2640":1460,"1f46e-200d-2642":1459,"1f46e":1458,"1f46f-200d-2640":1552,"1f46f-200d-2642":1551,"1f46f":1550,"1f470-200d-2640":1483,"1f470-200d-2642":1482,"1f470":1481,"1f471-200d-2640":1375,"1f471-200d-2642":1376,"1f471":1359,"1f472":1476,"1f473-200d-2640":1475,"1f473-200d-2642":1474,"1f473":1473,"1f474":1378,"1f475":1379,"1f476":1354,"1f477-200d-2640":1470,"1f477-200d-2642":1469,"1f477":1468,"1f478":1472,"1f479":199,"1f47a":1100,"1f47b":1101,"1f47c":1489,"1f47d":1102,"1f47e":1103,"1f47f":194,"1f480":195,"1f481-200d-2640":1394,"1f481-200d-2642":1393,"1f481":1392,"1f482-200d-2640":1466,"1f482-200d-2642":1465,"1f482":1464,"1f483":1547,"1f484":61114,"1f485":1335,"1f486-200d-2640":1522,"1f486-200d-2642":1521,"1f486":1520,"1f487-200d-2640":1525,"1f487-200d-2642":1524,"1f487":1523,"1f488":4836,"1f489":61287,"1f48a":61289,"1f48b":1117,"1f48c":1118,"1f48d":61115,"1f48e":61116,"1f48f":1611,"1f490":2621,"1f491":1615,"1f492":4813,"1f493":1123,"1f494":1128,"1f495":1125,"1f496":1121,"1f497":1122,"1f498":1119,"1f499":1133,"1f49a":1132,"1f49b":1131,"1f49c":1134,"1f49d":1120,"1f49e":1124,"1f49f":1126,"1f4a0":62859,"1f4a1":61175,"1f4a2":1139,"1f4a3":1145,"1f4a4":1151,"1f4a5":1140,"1f4a6":1142,"1f4a7":4986,"1f4a8":1143,"1f4a9":197,"1f4aa":1337,"1f4ab":1141,"1f4ac":1146,"1f4ad":1150,"1f4ae":2623,"1f4af":1138,"1f4b0":61196,"1f4b1":62754,"1f4b2":62755,"1f4b3":61203,"1f4b4":61198,"1f4b5":61199,"1f4b6":61200,"1f4b7":61201,"1f4b8":61202,"1f4b9":61205,"1f4ba":4900,"1f4bb":61152,"1f4bc":61226,"1f4bd":61158,"1f4be":61159,"1f4bf":61160,"1f4c0":61161,"1f4c1":61227,"1f4c2":61228,"1f4c3":61188,"1f4c4":61190,"1f4c5":61230,"1f4c6":61231,"1f4c7":61234,"1f4c8":61235,"1f4c9":61236,"1f4ca":61237,"1f4cb":61238,"1f4cc":61239,"1f4cd":61240,"1f4ce":61241,"1f4cf":61243,"1f4d0":61244,"1f4d1":61193,"1f4d2":61187,"1f4d3":61186,"1f4d4":61179,"1f4d5":61180,"1f4d6":61181,"1f4d7":61182,"1f4d8":61183,"1f4d9":61184,"1f4da":61185,"1f4db":62760,"1f4dc":61189,"1f4dd":61225,"1f4de":61147,"1f4df":61148,"1f4e0":61149,"1f4e1":61286,"1f4e2":61121,"1f4e3":61122,"1f4e4":61210,"1f4e5":61211,"1f4e6":61212,"1f4e7":61207,"1f4e8":61208,"1f4e9":61209,"1f4ea":61214,"1f4eb":61213,"1f4ec":61215,"1f4ed":61216,"1f4ee":61217,"1f4ef":61123,"1f4f0":61191,"1f4f1":61144,"1f4f2":61145,"1f4f3":62737,"1f4f4":62738,"1f4f5":62665,"1f4f6":62736,"1f4f7":61168,"1f4f8":61169,"1f4f9":61170,"1f4fa":61167,"1f4fb":61134,"1f4fc":61171,"1f4fd":61165,"1f4ff":61113,"1f500":62715,"1f501":62716,"1f502":62717,"1f503":62683,"1f504":62684,"1f505":62734,"1f506":62735,"1f507":61117,"1f508":61118,"1f509":61119,"1f50a":61120,"1f50b":61150,"1f50c":61151,"1f50d":61172,"1f50e":61173,"1f50f":61251,"1f510":61252,"1f511":61253,"1f512":61249,"1f513":61250,"1f514":61124,"1f515":61125,"1f516":61194,"1f517":61274,"1f518":62860,"1f519":62685,"1f51a":62686,"1f51b":62687,"1f51c":62688,"1f51d":62689,"1f51e":62666,"1f51f":62789,"1f520":62790,"1f521":62791,"1f522":62792,"1f523":62793,"1f524":62794,"1f525":4985,"1f526":61176,"1f527":61267,"1f528":61255,"1f529":61269,"1f52a":3771,"1f52b":61262,"1f52c":61284,"1f52d":61285,"1f52e":51046,"1f52f":62701,"1f530":62761,"1f531":62759,"1f532":62862,"1f533":62861,"1f534":62829,"1f535":62833,"1f536":62853,"1f537":62854,"1f538":62855,"1f539":62856,"1f53a":62857,"1f53b":62858,"1f53c":62725,"1f53d":62727,"1f549":62692,"1f54a":2576,"1f54b":4821,"1f54c":4817,"1f54d":4819,"1f54e":62700,"1f550":4919,"1f551":4921,"1f552":4923,"1f553":4925,"1f554":4927,"1f555":4929,"1f556":4931,"1f557":4933,"1f558":4935,"1f559":4937,"1f55a":4939,"1f55b":4917,"1f55c":4920,"1f55d":4922,"1f55e":4924,"1f55f":4926,"1f560":4928,"1f561":4930,"1f562":4932,"1f563":4934,"1f564":4936,"1f565":4938,"1f566":4940,"1f567":4918,"1f56f":61174,"1f570":4916,"1f573":1144,"1f574":1549,"1f575-fe0f-200d-2640":1463,"1f575-fe0f-200d-2642":1462,"1f575":1461,"1f576":61073,"1f577":2614,"1f578":2615,"1f579":51050,"1f57a":1548,"1f587":61242,"1f58a":61222,"1f58b":61221,"1f58c":61223,"1f58d":61224,"1f590":1305,"1f595":1319,"1f596":1307,"1f5a4":1136,"1f5a5":61153,"1f5a8":61154,"1f5b1":61156,"1f5b2":61157,"1f5bc":51066,"1f5c2":61229,"1f5c3":61246,"1f5c4":61247,"1f5d1":61248,"1f5d2":61232,"1f5d3":61233,"1f5dc":61271,"1f5dd":61254,"1f5de":61192,"1f5e1":61260,"1f5e3":1645,"1f5e8":1148,"1f5ef":1149,"1f5f3":61218,"1f5fa":4777,"1f5fb":4783,"1f5fc":4814,"1f5fd":4815,"1f5fe":4778,"1f5ff":61320,"1f600":11,"1f601":14,"1f602":18,"1f603":12,"1f604":13,"1f605":16,"1f606":15,"1f607":113,"1f608":193,"1f609":111,"1f60a":112,"1f60b":123,"1f60c":143,"1f60d":115,"1f60e":162,"1f60f":138,"1f610":135,"1f611":136,"1f612":139,"1f613":185,"1f614":144,"1f615":165,"1f616":182,"1f617":118,"1f618":117,"1f619":121,"1f61a":120,"1f61b":124,"1f61c":125,"1f61d":127,"1f61e":184,"1f61f":166,"1f620":191,"1f621":190,"1f622":179,"1f623":183,"1f624":189,"1f625":178,"1f626":174,"1f627":175,"1f628":176,"1f629":186,"1f62a":145,"1f62b":187,"1f62c":141,"1f62d":180,"1f62e":169,"1f62f":170,"1f630":177,"1f631":181,"1f632":171,"1f633":172,"1f634":147,"1f635":157,"1f636":137,"1f637":148,"1f638":1106,"1f639":1107,"1f63a":1105,"1f63b":1108,"1f63c":1109,"1f63d":1110,"1f63e":1113,"1f63f":1112,"1f640":1111,"1f641":167,"1f642":19,"1f643":110,"1f644":140,"1f645-200d-2640":1388,"1f645-200d-2642":1387,"1f645":1386,"1f646-200d-2640":1391,"1f646-200d-2642":1390,"1f646":1389,"1f647-200d-2640":1403,"1f647-200d-2642":1402,"1f647":1401,"1f648":1114,"1f649":1115,"1f64a":1116,"1f64b-200d-2640":1397,"1f64b-200d-2642":1396,"1f64b":1395,"1f64c":1329,"1f64d-200d-2640":1382,"1f64d-200d-2642":1381,"1f64d":1380,"1f64e-200d-2640":1385,"1f64e-200d-2642":1384,"1f64e":1383,"1f64f":1333,"1f680":4906,"1f681":4901,"1f682":4838,"1f683":4839,"1f684":4840,"1f685":4841,"1f686":4842,"1f687":4843,"1f688":4844,"1f689":4845,"1f68a":4846,"1f68b":4849,"1f68c":4850,"1f68d":4851,"1f68e":4852,"1f68f":4877,"1f690":4853,"1f691":4854,"1f692":4855,"1f693":4856,"1f694":4857,"1f695":4858,"1f696":4859,"1f697":4860,"1f698":4861,"1f699":4862,"1f69a":4864,"1f69b":4865,"1f69c":4866,"1f69d":4847,"1f69e":4848,"1f69f":4902,"1f6a0":4903,"1f6a1":4904,"1f6a2":4894,"1f6a3-200d-2640":1571,"1f6a3-200d-2642":1570,"1f6a3":1569,"1f6a4":4890,"1f6a5":4883,"1f6a6":4884,"1f6a7":4886,"1f6a8":4882,"1f6a9":71543,"1f6aa":61292,"1f6ab":62659,"1f6ac":61316,"1f6ad":62661,"1f6ae":62644,"1f6af":62662,"1f6b0":62645,"1f6b1":62663,"1f6b2":4873,"1f6b3":62660,"1f6b4-200d-2640":1583,"1f6b4-200d-2642":1582,"1f6b4":1581,"1f6b5-200d-2640":1586,"1f6b5-200d-2642":1585,"1f6b5":1584,"1f6b6-200d-2640":1528,"1f6b6-200d-2642":1527,"1f6b6":1526,"1f6b7":62664,"1f6b8":62657,"1f6b9":62647,"1f6ba":62648,"1f6bb":62649,"1f6bc":62650,"1f6bd":61299,"1f6be":62651,"1f6bf":61301,"1f6c0":1605,"1f6c1":61302,"1f6c2":62652,"1f6c3":62653,"1f6c4":62654,"1f6c5":62655,"1f6cb":61297,"1f6cc":1606,"1f6cd":61095,"1f6ce":4908,"1f6cf":61296,"1f6d0":62690,"1f6d1":4885,"1f6d2":61315,"1f6d5":4818,"1f6d6":4795,"1f6d7":61293,"1f6e0":61259,"1f6e1":61265,"1f6e2":4880,"1f6e3":4878,"1f6e4":4879,"1f6e5":4893,"1f6e9":4896,"1f6eb":4897,"1f6ec":4898,"1f6f0":4905,"1f6f3":4891,"1f6f4":4874,"1f6f5":4869,"1f6f6":4889,"1f6f7":51040,"1f6f8":4907,"1f6f9":4875,"1f6fa":4872,"1f6fb":4863,"1f6fc":4876,"1f7e0":62830,"1f7e1":62831,"1f7e2":62832,"1f7e3":62834,"1f7e4":62835,"1f7e5":62838,"1f7e6":62842,"1f7e7":62839,"1f7e8":62840,"1f7e9":62841,"1f7ea":62843,"1f7eb":62844,"1f90c":1309,"1f90d":1137,"1f90e":1135,"1f90f":1310,"1f910":133,"1f911":128,"1f912":149,"1f913":163,"1f914":132,"1f915":150,"1f916":1104,"1f917":129,"1f918":1314,"1f919":1315,"1f91a":1304,"1f91b":1326,"1f91c":1327,"1f91d":1332,"1f91e":1312,"1f91f":1313,"1f920":159,"1f921":198,"1f922":151,"1f923":17,"1f924":146,"1f925":142,"1f926-200d-2640":1406,"1f926-200d-2642":1405,"1f926":1404,"1f927":153,"1f928":134,"1f929":116,"1f92a":126,"1f92b":131,"1f92c":192,"1f92d":130,"1f92e":152,"1f92f":158,"1f930":1484,"1f931":1485,"1f932":1331,"1f933":1336,"1f934":1471,"1f935-200d-2640":1480,"1f935-200d-2642":1479,"1f935":1478,"1f936":1491,"1f937-200d-2640":1409,"1f937-200d-2642":1408,"1f937":1407,"1f938-200d-2640":1589,"1f938-200d-2642":1588,"1f938":1587,"1f939-200d-2640":1601,"1f939-200d-2642":1600,"1f939":1599,"1f93a":1559,"1f93c-200d-2640":1592,"1f93c-200d-2642":1591,"1f93c":1590,"1f93d-200d-2640":1595,"1f93d-200d-2642":1594,"1f93d":1593,"1f93e-200d-2640":1598,"1f93e-200d-2642":1597,"1f93e":1596,"1f93f":51037,"1f940":2626,"1f941":61142,"1f942":3760,"1f943":3761,"1f944":3770,"1f945":51033,"1f947":51012,"1f948":51013,"1f949":51014,"1f94a":51031,"1f94b":51032,"1f94c":51041,"1f94d":51028,"1f94e":51017,"1f94f":51023,"1f950":3679,"1f951":3663,"1f952":3670,"1f953":3690,"1f954":3665,"1f955":3666,"1f956":3680,"1f957":3707,"1f958":3703,"1f959":3699,"1f95a":3701,"1f95b":3749,"1f95c":3676,"1f95d":3659,"1f95e":3684,"1f95f":3726,"1f960":3727,"1f961":3728,"1f962":3767,"1f963":3706,"1f964":3762,"1f965":3662,"1f966":3672,"1f967":3742,"1f968":3682,"1f969":3689,"1f96a":3695,"1f96b":3711,"1f96c":3671,"1f96d":3651,"1f96e":3724,"1f96f":3683,"1f970":114,"1f971":188,"1f972":122,"1f973":160,"1f974":156,"1f975":154,"1f976":155,"1f977":1467,"1f978":161,"1f97a":173,"1f97b":61086,"1f97c":61075,"1f97d":61074,"1f97e":61100,"1f97f":61101,"1f980":3729,"1f981":2519,"1f982":2616,"1f983":2568,"1f984":2525,"1f985":2577,"1f986":2578,"1f987":2557,"1f988":2602,"1f989":2580,"1f98a":2514,"1f98b":2606,"1f98c":2527,"1f98d":2506,"1f98e":2589,"1f98f":2546,"1f990":3731,"1f991":3732,"1f992":2543,"1f993":2526,"1f994":2556,"1f995":2593,"1f996":2594,"1f997":2612,"1f998":2565,"1f999":2542,"1f99a":2584,"1f99b":2547,"1f99c":2585,"1f99d":2515,"1f99e":3730,"1f99f":2617,"1f9a0":2620,"1f9a1":2566,"1f9a2":2579,"1f9a3":2545,"1f9a4":2581,"1f9a5":2562,"1f9a6":2563,"1f9a7":2507,"1f9a8":2564,"1f9a9":2583,"1f9aa":3733,"1f9ab":2555,"1f9ac":2528,"1f9ad":2598,"1f9ae":2510,"1f9af":61273,"1f9b4":1349,"1f9b5":1340,"1f9b6":1341,"1f9b7":1348,"1f9b8-200d-2640":1495,"1f9b8-200d-2642":1494,"1f9b8":1493,"1f9b9-200d-2640":1498,"1f9b9-200d-2642":1497,"1f9b9":1496,"1f9ba":61076,"1f9bb":1343,"1f9bc":4871,"1f9bd":4870,"1f9be":1338,"1f9bf":1339,"1f9c0":3686,"1f9c1":3741,"1f9c2":3710,"1f9c3":3764,"1f9c4":3673,"1f9c5":3674,"1f9c6":3700,"1f9c7":3685,"1f9c8":3709,"1f9c9":3765,"1f9ca":3766,"1f9cb":3763,"1f9cd-200d-2640":1531,"1f9cd-200d-2642":1530,"1f9cd":1529,"1f9ce-200d-2640":1534,"1f9ce-200d-2642":1533,"1f9ce":1532,"1f9cf-200d-2640":1400,"1f9cf-200d-2642":1399,"1f9cf":1398,"1f9d0":164,"1f9d1-200d-1f33e":1422,"1f9d1-200d-1f373":1425,"1f9d1-200d-1f37c":1488,"1f9d1-200d-1f384":1492,"1f9d1-200d-1f393":1413,"1f9d1-200d-1f3a4":1443,"1f9d1-200d-1f3a8":1446,"1f9d1-200d-1f3eb":1416,"1f9d1-200d-1f3ed":1431,"1f9d1-200d-1f4bb":1440,"1f9d1-200d-1f4bc":1434,"1f9d1-200d-1f527":1428,"1f9d1-200d-1f52c":1437,"1f9d1-200d-1f680":1452,"1f9d1-200d-1f692":1455,"1f9d1-200d-1f91d-200d-1f9d1":1607,"1f9d1-200d-1f9af":1535,"1f9d1-200d-1f9b0":1368,"1f9d1-200d-1f9b1":1370,"1f9d1-200d-1f9b2":1374,"1f9d1-200d-1f9b3":1372,"1f9d1-200d-1f9bc":1538,"1f9d1-200d-1f9bd":1541,"1f9d1-200d-2695":1410,"1f9d1-200d-2696":1419,"1f9d1-200d-2708":1449,"1f9d1":1358,"1f9d2":1355,"1f9d3":1377,"1f9d4":1361,"1f9d5":1477,"1f9d6-200d-2640":1555,"1f9d6-200d-2642":1554,"1f9d6":1553,"1f9d7-200d-2640":1558,"1f9d7-200d-2642":1557,"1f9d7":1556,"1f9d8-200d-2640":1604,"1f9d8-200d-2642":1603,"1f9d8":1602,"1f9d9-200d-2640":1501,"1f9d9-200d-2642":1500,"1f9d9":1499,"1f9da-200d-2640":1504,"1f9da-200d-2642":1503,"1f9da":1502,"1f9db-200d-2640":1507,"1f9db-200d-2642":1506,"1f9db":1505,"1f9dc-200d-2640":1510,"1f9dc-200d-2642":1509,"1f9dc":1508,"1f9dd-200d-2640":1513,"1f9dd-200d-2642":1512,"1f9dd":1511,"1f9de-200d-2640":1516,"1f9de-200d-2642":1515,"1f9de":1514,"1f9df-200d-2640":1519,"1f9df-200d-2642":1518,"1f9df":1517,"1f9e0":1345,"1f9e1":1130,"1f9e2":61110,"1f9e3":61080,"1f9e4":61081,"1f9e5":61082,"1f9e6":61083,"1f9e7":51003,"1f9e8":5992,"1f9e9":51053,"1f9ea":61281,"1f9eb":61282,"1f9ec":61283,"1f9ed":4779,"1f9ee":61162,"1f9ef":61314,"1f9f0":61277,"1f9f1":4792,"1f9f2":61278,"1f9f3":4909,"1f9f4":61305,"1f9f5":51068,"1f9f6":51070,"1f9f7":61306,"1f9f8":51054,"1f9f9":61307,"1f9fa":61308,"1f9fb":61309,"1f9fc":61311,"1f9fd":61313,"1f9fe":61204,"1f9ff":51048,"1fa70":61104,"1fa71":61087,"1fa72":61088,"1fa73":61089,"1fa74":61097,"1fa78":61288,"1fa79":61290,"1fa7a":61291,"1fa80":51043,"1fa81":51044,"1fa82":4899,"1fa83":61263,"1fa84":51047,"1fa85":51055,"1fa86":51056,"1fa90":4957,"1fa91":61298,"1fa92":61304,"1fa93":61256,"1fa94":61178,"1fa95":61141,"1fa96":61111,"1fa97":61136,"1fa98":61143,"1fa99":61197,"1fa9a":61266,"1fa9b":61268,"1fa9c":61279,"1fa9d":61276,"1fa9e":61294,"1fa9f":61295,"1faa0":61300,"1faa1":51069,"1faa2":51071,"1faa3":61310,"1faa4":61303,"1faa5":61312,"1faa6":61318,"1faa7":61321,"1faa8":4793,"1fab0":2618,"1fab1":2619,"1fab2":2610,"1fab3":2613,"1fab4":2632,"1fab5":4794,"1fab6":2582,"1fac0":1346,"1fac1":1347,"1fac2":1648,"1fad0":3658,"1fad1":3669,"1fad2":3661,"1fad3":3681,"1fad4":3698,"1fad5":3705,"1fad6":3751,"203c":62747,"21a9":62679,"21aa":62680,"231a":4912,"231b":4910,"23cf":62732,"23e9":62719,"23ea":62723,"23eb":62726,"23ec":62728,"23ed":62720,"23ee":62724,"23ef":62721,"23f0":4913,"23f1":4914,"23f2":4915,"23f3":4911,"23f8":62729,"23f9":62730,"23fa":62731,"24c2":62803,"25aa":62851,"25ab":62852,"25b6":62718,"25c0":62722,"25fb":62848,"25fc":62847,"25fd":62850,"25fe":62849,"260e":61146,"261d":1321,"262a":62698,"262e":62699,"262f":62695,"263a":119,"264a":62704,"264b":62705,"264c":62706,"264d":62707,"264e":62708,"264f":62709,"265f":51061,"267b":62757,"267e":62746,"267f":62646,"269b":62691,"269c":62758,"26a0":62656,"26a1":4980,"26a7":62741,"26aa":62837,"26ab":62836,"26b0":61317,"26b1":61319,"26bd":51015,"26be":51016,"26c4":4983,"26c5":4963,"26c8":4964,"26ce":62714,"26cf":61257,"26d1":61112,"26d3":61275,"26d4":62658,"26e9":4820,"26ea":4816,"26f0":4781,"26f1":4979,"26f2":4822,"26f3":51034,"26f4":4892,"26f5":4888,"26f7":1561,"26f8":51035,"26f9-fe0f-200d-2640":1577,"26f9-fe0f-200d-2642":1576,"26f9":1575,"26fa":4823,"26fd":4881,"270a":1324,"270b":1306,"270c":1311,"270d":1334,"270f":61219,"271d":62696,"274c":62766,"274e":62767,"27a1":62671,"27b0":62768,"27bf":62769,"2b05":62675,"2b06":62669,"2b07":62673,"2b1b":62845,"2b1c":62846,"2b50":4958,"2b55":62762,"303d":62770,"1f385-1f3fb":0,"1f385-1f3fc":0,"1f385-1f3fd":0,"1f385-1f3fe":0,"1f385-1f3ff":0,"1f3c2-1f3fb":0,"1f3c2-1f3fc":0,"1f3c2-1f3fd":0,"1f3c2-1f3fe":0,"1f3c2-1f3ff":0,"1f3c3-1f3fb-200d-2640":0,"1f3c3-1f3fc-200d-2640":0,"1f3c3-1f3fd-200d-2640":0,"1f3c3-1f3fe-200d-2640":0,"1f3c3-1f3ff-200d-2640":0,"1f3c3-1f3fb-200d-2642":0,"1f3c3-1f3fc-200d-2642":0,"1f3c3-1f3fd-200d-2642":0,"1f3c3-1f3fe-200d-2642":0,"1f3c3-1f3ff-200d-2642":0,"1f3c3-1f3fb":0,"1f3c3-1f3fc":0,"1f3c3-1f3fd":0,"1f3c3-1f3fe":0,"1f3c3-1f3ff":0,"1f3c4-1f3fb-200d-2640":0,"1f3c4-1f3fc-200d-2640":0,"1f3c4-1f3fd-200d-2640":0,"1f3c4-1f3fe-200d-2640":0,"1f3c4-1f3ff-200d-2640":0,"1f3c4-1f3fb-200d-2642":0,"1f3c4-1f3fc-200d-2642":0,"1f3c4-1f3fd-200d-2642":0,"1f3c4-1f3fe-200d-2642":0,"1f3c4-1f3ff-200d-2642":0,"1f3c4-1f3fb":0,"1f3c4-1f3fc":0,"1f3c4-1f3fd":0,"1f3c4-1f3fe":0,"1f3c4-1f3ff":0,"1f3c7-1f3fb":0,"1f3c7-1f3fc":0,"1f3c7-1f3fd":0,"1f3c7-1f3fe":0,"1f3c7-1f3ff":0,"1f3ca-1f3fb-200d-2640":0,"1f3ca-1f3fc-200d-2640":0,"1f3ca-1f3fd-200d-2640":0,"1f3ca-1f3fe-200d-2640":0,"1f3ca-1f3ff-200d-2640":0,"1f3ca-1f3fb-200d-2642":0,"1f3ca-1f3fc-200d-2642":0,"1f3ca-1f3fd-200d-2642":0,"1f3ca-1f3fe-200d-2642":0,"1f3ca-1f3ff-200d-2642":0,"1f3ca-1f3fb":0,"1f3ca-1f3fc":0,"1f3ca-1f3fd":0,"1f3ca-1f3fe":0,"1f3ca-1f3ff":0,"1f3cb-1f3fb-200d-2640":0,"1f3cb-1f3fc-200d-2640":0,"1f3cb-1f3fd-200d-2640":0,"1f3cb-1f3fe-200d-2640":0,"1f3cb-1f3ff-200d-2640":0,"1f3cb-1f3fb-200d-2642":0,"1f3cb-1f3fc-200d-2642":0,"1f3cb-1f3fd-200d-2642":0,"1f3cb-1f3fe-200d-2642":0,"1f3cb-1f3ff-200d-2642":0,"1f3cb-1f3fb":0,"1f3cb-1f3fc":0,"1f3cb-1f3fd":0,"1f3cb-1f3fe":0,"1f3cb-1f3ff":0,"1f3cc-1f3fb-200d-2640":0,"1f3cc-1f3fc-200d-2640":0,"1f3cc-1f3fd-200d-2640":0,"1f3cc-1f3fe-200d-2640":0,"1f3cc-1f3ff-200d-2640":0,"1f3cc-1f3fb-200d-2642":0,"1f3cc-1f3fc-200d-2642":0,"1f3cc-1f3fd-200d-2642":0,"1f3cc-1f3fe-200d-2642":0,"1f3cc-1f3ff-200d-2642":0,"1f3cc-1f3fb":0,"1f3cc-1f3fc":0,"1f3cc-1f3fd":0,"1f3cc-1f3fe":0,"1f3cc-1f3ff":0,"1f442-1f3fb":0,"1f442-1f3fc":0,"1f442-1f3fd":0,"1f442-1f3fe":0,"1f442-1f3ff":0,"1f443-1f3fb":0,"1f443-1f3fc":0,"1f443-1f3fd":0,"1f443-1f3fe":0,"1f443-1f3ff":0,"1f446-1f3fb":0,"1f446-1f3fc":0,"1f446-1f3fd":0,"1f446-1f3fe":0,"1f446-1f3ff":0,"1f447-1f3fb":0,"1f447-1f3fc":0,"1f447-1f3fd":0,"1f447-1f3fe":0,"1f447-1f3ff":0,"1f448-1f3fb":0,"1f448-1f3fc":0,"1f448-1f3fd":0,"1f448-1f3fe":0,"1f448-1f3ff":0,"1f449-1f3fb":0,"1f449-1f3fc":0,"1f449-1f3fd":0,"1f449-1f3fe":0,"1f449-1f3ff":0,"1f44a-1f3fb":0,"1f44a-1f3fc":0,"1f44a-1f3fd":0,"1f44a-1f3fe":0,"1f44a-1f3ff":0,"1f44b-1f3fb":0,"1f44b-1f3fc":0,"1f44b-1f3fd":0,"1f44b-1f3fe":0,"1f44b-1f3ff":0,"1f44c-1f3fb":0,"1f44c-1f3fc":0,"1f44c-1f3fd":0,"1f44c-1f3fe":0,"1f44c-1f3ff":0,"1f44d-1f3fb":0,"1f44d-1f3fc":0,"1f44d-1f3fd":0,"1f44d-1f3fe":0,"1f44d-1f3ff":0,"1f44e-1f3fb":0,"1f44e-1f3fc":0,"1f44e-1f3fd":0,"1f44e-1f3fe":0,"1f44e-1f3ff":0,"1f44f-1f3fb":0,"1f44f-1f3fc":0,"1f44f-1f3fd":0,"1f44f-1f3fe":0,"1f44f-1f3ff":0,"1f450-1f3fb":0,"1f450-1f3fc":0,"1f450-1f3fd":0,"1f450-1f3fe":0,"1f450-1f3ff":0,"1f466-1f3fb":0,"1f466-1f3fc":0,"1f466-1f3fd":0,"1f466-1f3fe":0,"1f466-1f3ff":0,"1f467-1f3fb":0,"1f467-1f3fc":0,"1f467-1f3fd":0,"1f467-1f3fe":0,"1f467-1f3ff":0,"1f468-1f3fb-200d-1f33e":0,"1f468-1f3fc-200d-1f33e":0,"1f468-1f3fd-200d-1f33e":0,"1f468-1f3fe-200d-1f33e":0,"1f468-1f3ff-200d-1f33e":0,"1f468-1f3fb-200d-1f373":0,"1f468-1f3fc-200d-1f373":0,"1f468-1f3fd-200d-1f373":0,"1f468-1f3fe-200d-1f373":0,"1f468-1f3ff-200d-1f373":0,"1f468-1f3fb-200d-1f37c":0,"1f468-1f3fc-200d-1f37c":0,"1f468-1f3fd-200d-1f37c":0,"1f468-1f3fe-200d-1f37c":0,"1f468-1f3ff-200d-1f37c":0,"1f468-1f3fb-200d-1f393":0,"1f468-1f3fc-200d-1f393":0,"1f468-1f3fd-200d-1f393":0,"1f468-1f3fe-200d-1f393":0,"1f468-1f3ff-200d-1f393":0,"1f468-1f3fb-200d-1f3a4":0,"1f468-1f3fc-200d-1f3a4":0,"1f468-1f3fd-200d-1f3a4":0,"1f468-1f3fe-200d-1f3a4":0,"1f468-1f3ff-200d-1f3a4":0,"1f468-1f3fb-200d-1f3a8":0,"1f468-1f3fc-200d-1f3a8":0,"1f468-1f3fd-200d-1f3a8":0,"1f468-1f3fe-200d-1f3a8":0,"1f468-1f3ff-200d-1f3a8":0,"1f468-1f3fb-200d-1f3eb":0,"1f468-1f3fc-200d-1f3eb":0,"1f468-1f3fd-200d-1f3eb":0,"1f468-1f3fe-200d-1f3eb":0,"1f468-1f3ff-200d-1f3eb":0,"1f468-1f3fb-200d-1f3ed":0,"1f468-1f3fc-200d-1f3ed":0,"1f468-1f3fd-200d-1f3ed":0,"1f468-1f3fe-200d-1f3ed":0,"1f468-1f3ff-200d-1f3ed":0,"1f468-1f3fb-200d-1f4bb":0,"1f468-1f3fc-200d-1f4bb":0,"1f468-1f3fd-200d-1f4bb":0,"1f468-1f3fe-200d-1f4bb":0,"1f468-1f3ff-200d-1f4bb":0,"1f468-1f3fb-200d-1f4bc":0,"1f468-1f3fc-200d-1f4bc":0,"1f468-1f3fd-200d-1f4bc":0,"1f468-1f3fe-200d-1f4bc":0,"1f468-1f3ff-200d-1f4bc":0,"1f468-1f3fb-200d-1f527":0,"1f468-1f3fc-200d-1f527":0,"1f468-1f3fd-200d-1f527":0,"1f468-1f3fe-200d-1f527":0,"1f468-1f3ff-200d-1f527":0,"1f468-1f3fb-200d-1f52c":0,"1f468-1f3fc-200d-1f52c":0,"1f468-1f3fd-200d-1f52c":0,"1f468-1f3fe-200d-1f52c":0,"1f468-1f3ff-200d-1f52c":0,"1f468-1f3fb-200d-1f680":0,"1f468-1f3fc-200d-1f680":0,"1f468-1f3fd-200d-1f680":0,"1f468-1f3fe-200d-1f680":0,"1f468-1f3ff-200d-1f680":0,"1f468-1f3fb-200d-1f692":0,"1f468-1f3fc-200d-1f692":0,"1f468-1f3fd-200d-1f692":0,"1f468-1f3fe-200d-1f692":0,"1f468-1f3ff-200d-1f692":0,"1f468-1f3fb-200d-1f9af":0,"1f468-1f3fc-200d-1f9af":0,"1f468-1f3fd-200d-1f9af":0,"1f468-1f3fe-200d-1f9af":0,"1f468-1f3ff-200d-1f9af":0,"1f468-1f3fb-200d-1f9b0":0,"1f468-1f3fc-200d-1f9b0":0,"1f468-1f3fd-200d-1f9b0":0,"1f468-1f3fe-200d-1f9b0":0,"1f468-1f3ff-200d-1f9b0":0,"1f468-1f3fb-200d-1f9b1":0,"1f468-1f3fc-200d-1f9b1":0,"1f468-1f3fd-200d-1f9b1":0,"1f468-1f3fe-200d-1f9b1":0,"1f468-1f3ff-200d-1f9b1":0,"1f468-1f3fb-200d-1f9b2":0,"1f468-1f3fc-200d-1f9b2":0,"1f468-1f3fd-200d-1f9b2":0,"1f468-1f3fe-200d-1f9b2":0,"1f468-1f3ff-200d-1f9b2":0,"1f468-1f3fb-200d-1f9b3":0,"1f468-1f3fc-200d-1f9b3":0,"1f468-1f3fd-200d-1f9b3":0,"1f468-1f3fe-200d-1f9b3":0,"1f468-1f3ff-200d-1f9b3":0,"1f468-1f3fb-200d-1f9bc":0,"1f468-1f3fc-200d-1f9bc":0,"1f468-1f3fd-200d-1f9bc":0,"1f468-1f3fe-200d-1f9bc":0,"1f468-1f3ff-200d-1f9bc":0,"1f468-1f3fb-200d-1f9bd":0,"1f468-1f3fc-200d-1f9bd":0,"1f468-1f3fd-200d-1f9bd":0,"1f468-1f3fe-200d-1f9bd":0,"1f468-1f3ff-200d-1f9bd":0,"1f468-1f3fb-200d-2695":0,"1f468-1f3fc-200d-2695":0,"1f468-1f3fd-200d-2695":0,"1f468-1f3fe-200d-2695":0,"1f468-1f3ff-200d-2695":0,"1f468-1f3fb-200d-2696":0,"1f468-1f3fc-200d-2696":0,"1f468-1f3fd-200d-2696":0,"1f468-1f3fe-200d-2696":0,"1f468-1f3ff-200d-2696":0,"1f468-1f3fb-200d-2708":0,"1f468-1f3fc-200d-2708":0,"1f468-1f3fd-200d-2708":0,"1f468-1f3fe-200d-2708":0,"1f468-1f3ff-200d-2708":0,"1f468-1f3fb":0,"1f468-1f3fc":0,"1f468-1f3fd":0,"1f468-1f3fe":0,"1f468-1f3ff":0,"1f469-1f3fb-200d-1f33e":0,"1f469-1f3fc-200d-1f33e":0,"1f469-1f3fd-200d-1f33e":0,"1f469-1f3fe-200d-1f33e":0,"1f469-1f3ff-200d-1f33e":0,"1f469-1f3fb-200d-1f373":0,"1f469-1f3fc-200d-1f373":0,"1f469-1f3fd-200d-1f373":0,"1f469-1f3fe-200d-1f373":0,"1f469-1f3ff-200d-1f373":0,"1f469-1f3fb-200d-1f37c":0,"1f469-1f3fc-200d-1f37c":0,"1f469-1f3fd-200d-1f37c":0,"1f469-1f3fe-200d-1f37c":0,"1f469-1f3ff-200d-1f37c":0,"1f469-1f3fb-200d-1f393":0,"1f469-1f3fc-200d-1f393":0,"1f469-1f3fd-200d-1f393":0,"1f469-1f3fe-200d-1f393":0,"1f469-1f3ff-200d-1f393":0,"1f469-1f3fb-200d-1f3a4":0,"1f469-1f3fc-200d-1f3a4":0,"1f469-1f3fd-200d-1f3a4":0,"1f469-1f3fe-200d-1f3a4":0,"1f469-1f3ff-200d-1f3a4":0,"1f469-1f3fb-200d-1f3a8":0,"1f469-1f3fc-200d-1f3a8":0,"1f469-1f3fd-200d-1f3a8":0,"1f469-1f3fe-200d-1f3a8":0,"1f469-1f3ff-200d-1f3a8":0,"1f469-1f3fb-200d-1f3eb":0,"1f469-1f3fc-200d-1f3eb":0,"1f469-1f3fd-200d-1f3eb":0,"1f469-1f3fe-200d-1f3eb":0,"1f469-1f3ff-200d-1f3eb":0,"1f469-1f3fb-200d-1f3ed":0,"1f469-1f3fc-200d-1f3ed":0,"1f469-1f3fd-200d-1f3ed":0,"1f469-1f3fe-200d-1f3ed":0,"1f469-1f3ff-200d-1f3ed":0,"1f469-1f3fb-200d-1f4bb":0,"1f469-1f3fc-200d-1f4bb":0,"1f469-1f3fd-200d-1f4bb":0,"1f469-1f3fe-200d-1f4bb":0,"1f469-1f3ff-200d-1f4bb":0,"1f469-1f3fb-200d-1f4bc":0,"1f469-1f3fc-200d-1f4bc":0,"1f469-1f3fd-200d-1f4bc":0,"1f469-1f3fe-200d-1f4bc":0,"1f469-1f3ff-200d-1f4bc":0,"1f469-1f3fb-200d-1f527":0,"1f469-1f3fc-200d-1f527":0,"1f469-1f3fd-200d-1f527":0,"1f469-1f3fe-200d-1f527":0,"1f469-1f3ff-200d-1f527":0,"1f469-1f3fb-200d-1f52c":0,"1f469-1f3fc-200d-1f52c":0,"1f469-1f3fd-200d-1f52c":0,"1f469-1f3fe-200d-1f52c":0,"1f469-1f3ff-200d-1f52c":0,"1f469-1f3fb-200d-1f680":0,"1f469-1f3fc-200d-1f680":0,"1f469-1f3fd-200d-1f680":0,"1f469-1f3fe-200d-1f680":0,"1f469-1f3ff-200d-1f680":0,"1f469-1f3fb-200d-1f692":0,"1f469-1f3fc-200d-1f692":0,"1f469-1f3fd-200d-1f692":0,"1f469-1f3fe-200d-1f692":0,"1f469-1f3ff-200d-1f692":0,"1f469-1f3fb-200d-1f9af":0,"1f469-1f3fc-200d-1f9af":0,"1f469-1f3fd-200d-1f9af":0,"1f469-1f3fe-200d-1f9af":0,"1f469-1f3ff-200d-1f9af":0,"1f469-1f3fb-200d-1f9b0":0,"1f469-1f3fc-200d-1f9b0":0,"1f469-1f3fd-200d-1f9b0":0,"1f469-1f3fe-200d-1f9b0":0,"1f469-1f3ff-200d-1f9b0":0,"1f469-1f3fb-200d-1f9b1":0,"1f469-1f3fc-200d-1f9b1":0,"1f469-1f3fd-200d-1f9b1":0,"1f469-1f3fe-200d-1f9b1":0,"1f469-1f3ff-200d-1f9b1":0,"1f469-1f3fb-200d-1f9b2":0,"1f469-1f3fc-200d-1f9b2":0,"1f469-1f3fd-200d-1f9b2":0,"1f469-1f3fe-200d-1f9b2":0,"1f469-1f3ff-200d-1f9b2":0,"1f469-1f3fb-200d-1f9b3":0,"1f469-1f3fc-200d-1f9b3":0,"1f469-1f3fd-200d-1f9b3":0,"1f469-1f3fe-200d-1f9b3":0,"1f469-1f3ff-200d-1f9b3":0,"1f469-1f3fb-200d-1f9bc":0,"1f469-1f3fc-200d-1f9bc":0,"1f469-1f3fd-200d-1f9bc":0,"1f469-1f3fe-200d-1f9bc":0,"1f469-1f3ff-200d-1f9bc":0,"1f469-1f3fb-200d-1f9bd":0,"1f469-1f3fc-200d-1f9bd":0,"1f469-1f3fd-200d-1f9bd":0,"1f469-1f3fe-200d-1f9bd":0,"1f469-1f3ff-200d-1f9bd":0,"1f469-1f3fb-200d-2695":0,"1f469-1f3fc-200d-2695":0,"1f469-1f3fd-200d-2695":0,"1f469-1f3fe-200d-2695":0,"1f469-1f3ff-200d-2695":0,"1f469-1f3fb-200d-2696":0,"1f469-1f3fc-200d-2696":0,"1f469-1f3fd-200d-2696":0,"1f469-1f3fe-200d-2696":0,"1f469-1f3ff-200d-2696":0,"1f469-1f3fb-200d-2708":0,"1f469-1f3fc-200d-2708":0,"1f469-1f3fd-200d-2708":0,"1f469-1f3fe-200d-2708":0,"1f469-1f3ff-200d-2708":0,"1f469-1f3fb":0,"1f469-1f3fc":0,"1f469-1f3fd":0,"1f469-1f3fe":0,"1f469-1f3ff":0,"1f46b-1f3fb":0,"1f46b-1f3fc":0,"1f46b-1f3fd":0,"1f46b-1f3fe":0,"1f46b-1f3ff":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe":0,"1f46c-1f3fb":0,"1f46c-1f3fc":0,"1f46c-1f3fd":0,"1f46c-1f3fe":0,"1f46c-1f3ff":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe":0,"1f46d-1f3fb":0,"1f46d-1f3fc":0,"1f46d-1f3fd":0,"1f46d-1f3fe":0,"1f46d-1f3ff":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe":0,"1f46e-1f3fb-200d-2640":0,"1f46e-1f3fc-200d-2640":0,"1f46e-1f3fd-200d-2640":0,"1f46e-1f3fe-200d-2640":0,"1f46e-1f3ff-200d-2640":0,"1f46e-1f3fb-200d-2642":0,"1f46e-1f3fc-200d-2642":0,"1f46e-1f3fd-200d-2642":0,"1f46e-1f3fe-200d-2642":0,"1f46e-1f3ff-200d-2642":0,"1f46e-1f3fb":0,"1f46e-1f3fc":0,"1f46e-1f3fd":0,"1f46e-1f3fe":0,"1f46e-1f3ff":0,"1f470-1f3fb-200d-2640":0,"1f470-1f3fc-200d-2640":0,"1f470-1f3fd-200d-2640":0,"1f470-1f3fe-200d-2640":0,"1f470-1f3ff-200d-2640":0,"1f470-1f3fb-200d-2642":0,"1f470-1f3fc-200d-2642":0,"1f470-1f3fd-200d-2642":0,"1f470-1f3fe-200d-2642":0,"1f470-1f3ff-200d-2642":0,"1f470-1f3fb":0,"1f470-1f3fc":0,"1f470-1f3fd":0,"1f470-1f3fe":0,"1f470-1f3ff":0,"1f471-1f3fb-200d-2640":0,"1f471-1f3fc-200d-2640":0,"1f471-1f3fd-200d-2640":0,"1f471-1f3fe-200d-2640":0,"1f471-1f3ff-200d-2640":0,"1f471-1f3fb-200d-2642":0,"1f471-1f3fc-200d-2642":0,"1f471-1f3fd-200d-2642":0,"1f471-1f3fe-200d-2642":0,"1f471-1f3ff-200d-2642":0,"1f471-1f3fb":0,"1f471-1f3fc":0,"1f471-1f3fd":0,"1f471-1f3fe":0,"1f471-1f3ff":0,"1f472-1f3fb":0,"1f472-1f3fc":0,"1f472-1f3fd":0,"1f472-1f3fe":0,"1f472-1f3ff":0,"1f473-1f3fb-200d-2640":0,"1f473-1f3fc-200d-2640":0,"1f473-1f3fd-200d-2640":0,"1f473-1f3fe-200d-2640":0,"1f473-1f3ff-200d-2640":0,"1f473-1f3fb-200d-2642":0,"1f473-1f3fc-200d-2642":0,"1f473-1f3fd-200d-2642":0,"1f473-1f3fe-200d-2642":0,"1f473-1f3ff-200d-2642":0,"1f473-1f3fb":0,"1f473-1f3fc":0,"1f473-1f3fd":0,"1f473-1f3fe":0,"1f473-1f3ff":0,"1f474-1f3fb":0,"1f474-1f3fc":0,"1f474-1f3fd":0,"1f474-1f3fe":0,"1f474-1f3ff":0,"1f475-1f3fb":0,"1f475-1f3fc":0,"1f475-1f3fd":0,"1f475-1f3fe":0,"1f475-1f3ff":0,"1f476-1f3fb":0,"1f476-1f3fc":0,"1f476-1f3fd":0,"1f476-1f3fe":0,"1f476-1f3ff":0,"1f477-1f3fb-200d-2640":0,"1f477-1f3fc-200d-2640":0,"1f477-1f3fd-200d-2640":0,"1f477-1f3fe-200d-2640":0,"1f477-1f3ff-200d-2640":0,"1f477-1f3fb-200d-2642":0,"1f477-1f3fc-200d-2642":0,"1f477-1f3fd-200d-2642":0,"1f477-1f3fe-200d-2642":0,"1f477-1f3ff-200d-2642":0,"1f477-1f3fb":0,"1f477-1f3fc":0,"1f477-1f3fd":0,"1f477-1f3fe":0,"1f477-1f3ff":0,"1f478-1f3fb":0,"1f478-1f3fc":0,"1f478-1f3fd":0,"1f478-1f3fe":0,"1f478-1f3ff":0,"1f47c-1f3fb":0,"1f47c-1f3fc":0,"1f47c-1f3fd":0,"1f47c-1f3fe":0,"1f47c-1f3ff":0,"1f481-1f3fb-200d-2640":0,"1f481-1f3fc-200d-2640":0,"1f481-1f3fd-200d-2640":0,"1f481-1f3fe-200d-2640":0,"1f481-1f3ff-200d-2640":0,"1f481-1f3fb-200d-2642":0,"1f481-1f3fc-200d-2642":0,"1f481-1f3fd-200d-2642":0,"1f481-1f3fe-200d-2642":0,"1f481-1f3ff-200d-2642":0,"1f481-1f3fb":0,"1f481-1f3fc":0,"1f481-1f3fd":0,"1f481-1f3fe":0,"1f481-1f3ff":0,"1f482-1f3fb-200d-2640":0,"1f482-1f3fc-200d-2640":0,"1f482-1f3fd-200d-2640":0,"1f482-1f3fe-200d-2640":0,"1f482-1f3ff-200d-2640":0,"1f482-1f3fb-200d-2642":0,"1f482-1f3fc-200d-2642":0,"1f482-1f3fd-200d-2642":0,"1f482-1f3fe-200d-2642":0,"1f482-1f3ff-200d-2642":0,"1f482-1f3fb":0,"1f482-1f3fc":0,"1f482-1f3fd":0,"1f482-1f3fe":0,"1f482-1f3ff":0,"1f483-1f3fb":0,"1f483-1f3fc":0,"1f483-1f3fd":0,"1f483-1f3fe":0,"1f483-1f3ff":0,"1f485-1f3fb":0,"1f485-1f3fc":0,"1f485-1f3fd":0,"1f485-1f3fe":0,"1f485-1f3ff":0,"1f486-1f3fb-200d-2640":0,"1f486-1f3fc-200d-2640":0,"1f486-1f3fd-200d-2640":0,"1f486-1f3fe-200d-2640":0,"1f486-1f3ff-200d-2640":0,"1f486-1f3fb-200d-2642":0,"1f486-1f3fc-200d-2642":0,"1f486-1f3fd-200d-2642":0,"1f486-1f3fe-200d-2642":0,"1f486-1f3ff-200d-2642":0,"1f486-1f3fb":0,"1f486-1f3fc":0,"1f486-1f3fd":0,"1f486-1f3fe":0,"1f486-1f3ff":0,"1f487-1f3fb-200d-2640":0,"1f487-1f3fc-200d-2640":0,"1f487-1f3fd-200d-2640":0,"1f487-1f3fe-200d-2640":0,"1f487-1f3ff-200d-2640":0,"1f487-1f3fb-200d-2642":0,"1f487-1f3fc-200d-2642":0,"1f487-1f3fd-200d-2642":0,"1f487-1f3fe-200d-2642":0,"1f487-1f3ff-200d-2642":0,"1f487-1f3fb":0,"1f487-1f3fc":0,"1f487-1f3fd":0,"1f487-1f3fe":0,"1f487-1f3ff":0,"1f4aa-1f3fb":0,"1f4aa-1f3fc":0,"1f4aa-1f3fd":0,"1f4aa-1f3fe":0,"1f4aa-1f3ff":0,"1f574-1f3fb":0,"1f574-1f3fc":0,"1f574-1f3fd":0,"1f574-1f3fe":0,"1f574-1f3ff":0,"1f575-1f3fb-200d-2640":0,"1f575-1f3fc-200d-2640":0,"1f575-1f3fd-200d-2640":0,"1f575-1f3fe-200d-2640":0,"1f575-1f3ff-200d-2640":0,"1f575-1f3fb-200d-2642":0,"1f575-1f3fc-200d-2642":0,"1f575-1f3fd-200d-2642":0,"1f575-1f3fe-200d-2642":0,"1f575-1f3ff-200d-2642":0,"1f575-1f3fb":0,"1f575-1f3fc":0,"1f575-1f3fd":0,"1f575-1f3fe":0,"1f575-1f3ff":0,"1f57a-1f3fb":0,"1f57a-1f3fc":0,"1f57a-1f3fd":0,"1f57a-1f3fe":0,"1f57a-1f3ff":0,"1f590-1f3fb":0,"1f590-1f3fc":0,"1f590-1f3fd":0,"1f590-1f3fe":0,"1f590-1f3ff":0,"1f595-1f3fb":0,"1f595-1f3fc":0,"1f595-1f3fd":0,"1f595-1f3fe":0,"1f595-1f3ff":0,"1f596-1f3fb":0,"1f596-1f3fc":0,"1f596-1f3fd":0,"1f596-1f3fe":0,"1f596-1f3ff":0,"1f645-1f3fb-200d-2640":0,"1f645-1f3fc-200d-2640":0,"1f645-1f3fd-200d-2640":0,"1f645-1f3fe-200d-2640":0,"1f645-1f3ff-200d-2640":0,"1f645-1f3fb-200d-2642":0,"1f645-1f3fc-200d-2642":0,"1f645-1f3fd-200d-2642":0,"1f645-1f3fe-200d-2642":0,"1f645-1f3ff-200d-2642":0,"1f645-1f3fb":0,"1f645-1f3fc":0,"1f645-1f3fd":0,"1f645-1f3fe":0,"1f645-1f3ff":0,"1f646-1f3fb-200d-2640":0,"1f646-1f3fc-200d-2640":0,"1f646-1f3fd-200d-2640":0,"1f646-1f3fe-200d-2640":0,"1f646-1f3ff-200d-2640":0,"1f646-1f3fb-200d-2642":0,"1f646-1f3fc-200d-2642":0,"1f646-1f3fd-200d-2642":0,"1f646-1f3fe-200d-2642":0,"1f646-1f3ff-200d-2642":0,"1f646-1f3fb":0,"1f646-1f3fc":0,"1f646-1f3fd":0,"1f646-1f3fe":0,"1f646-1f3ff":0,"1f647-1f3fb-200d-2640":0,"1f647-1f3fc-200d-2640":0,"1f647-1f3fd-200d-2640":0,"1f647-1f3fe-200d-2640":0,"1f647-1f3ff-200d-2640":0,"1f647-1f3fb-200d-2642":0,"1f647-1f3fc-200d-2642":0,"1f647-1f3fd-200d-2642":0,"1f647-1f3fe-200d-2642":0,"1f647-1f3ff-200d-2642":0,"1f647-1f3fb":0,"1f647-1f3fc":0,"1f647-1f3fd":0,"1f647-1f3fe":0,"1f647-1f3ff":0,"1f64b-1f3fb-200d-2640":0,"1f64b-1f3fc-200d-2640":0,"1f64b-1f3fd-200d-2640":0,"1f64b-1f3fe-200d-2640":0,"1f64b-1f3ff-200d-2640":0,"1f64b-1f3fb-200d-2642":0,"1f64b-1f3fc-200d-2642":0,"1f64b-1f3fd-200d-2642":0,"1f64b-1f3fe-200d-2642":0,"1f64b-1f3ff-200d-2642":0,"1f64b-1f3fb":0,"1f64b-1f3fc":0,"1f64b-1f3fd":0,"1f64b-1f3fe":0,"1f64b-1f3ff":0,"1f64c-1f3fb":0,"1f64c-1f3fc":0,"1f64c-1f3fd":0,"1f64c-1f3fe":0,"1f64c-1f3ff":0,"1f64d-1f3fb-200d-2640":0,"1f64d-1f3fc-200d-2640":0,"1f64d-1f3fd-200d-2640":0,"1f64d-1f3fe-200d-2640":0,"1f64d-1f3ff-200d-2640":0,"1f64d-1f3fb-200d-2642":0,"1f64d-1f3fc-200d-2642":0,"1f64d-1f3fd-200d-2642":0,"1f64d-1f3fe-200d-2642":0,"1f64d-1f3ff-200d-2642":0,"1f64d-1f3fb":0,"1f64d-1f3fc":0,"1f64d-1f3fd":0,"1f64d-1f3fe":0,"1f64d-1f3ff":0,"1f64e-1f3fb-200d-2640":0,"1f64e-1f3fc-200d-2640":0,"1f64e-1f3fd-200d-2640":0,"1f64e-1f3fe-200d-2640":0,"1f64e-1f3ff-200d-2640":0,"1f64e-1f3fb-200d-2642":0,"1f64e-1f3fc-200d-2642":0,"1f64e-1f3fd-200d-2642":0,"1f64e-1f3fe-200d-2642":0,"1f64e-1f3ff-200d-2642":0,"1f64e-1f3fb":0,"1f64e-1f3fc":0,"1f64e-1f3fd":0,"1f64e-1f3fe":0,"1f64e-1f3ff":0,"1f64f-1f3fb":0,"1f64f-1f3fc":0,"1f64f-1f3fd":0,"1f64f-1f3fe":0,"1f64f-1f3ff":0,"1f6a3-1f3fb-200d-2640":0,"1f6a3-1f3fc-200d-2640":0,"1f6a3-1f3fd-200d-2640":0,"1f6a3-1f3fe-200d-2640":0,"1f6a3-1f3ff-200d-2640":0,"1f6a3-1f3fb-200d-2642":0,"1f6a3-1f3fc-200d-2642":0,"1f6a3-1f3fd-200d-2642":0,"1f6a3-1f3fe-200d-2642":0,"1f6a3-1f3ff-200d-2642":0,"1f6a3-1f3fb":0,"1f6a3-1f3fc":0,"1f6a3-1f3fd":0,"1f6a3-1f3fe":0,"1f6a3-1f3ff":0,"1f6b4-1f3fb-200d-2640":0,"1f6b4-1f3fc-200d-2640":0,"1f6b4-1f3fd-200d-2640":0,"1f6b4-1f3fe-200d-2640":0,"1f6b4-1f3ff-200d-2640":0,"1f6b4-1f3fb-200d-2642":0,"1f6b4-1f3fc-200d-2642":0,"1f6b4-1f3fd-200d-2642":0,"1f6b4-1f3fe-200d-2642":0,"1f6b4-1f3ff-200d-2642":0,"1f6b4-1f3fb":0,"1f6b4-1f3fc":0,"1f6b4-1f3fd":0,"1f6b4-1f3fe":0,"1f6b4-1f3ff":0,"1f6b5-1f3fb-200d-2640":0,"1f6b5-1f3fc-200d-2640":0,"1f6b5-1f3fd-200d-2640":0,"1f6b5-1f3fe-200d-2640":0,"1f6b5-1f3ff-200d-2640":0,"1f6b5-1f3fb-200d-2642":0,"1f6b5-1f3fc-200d-2642":0,"1f6b5-1f3fd-200d-2642":0,"1f6b5-1f3fe-200d-2642":0,"1f6b5-1f3ff-200d-2642":0,"1f6b5-1f3fb":0,"1f6b5-1f3fc":0,"1f6b5-1f3fd":0,"1f6b5-1f3fe":0,"1f6b5-1f3ff":0,"1f6b6-1f3fb-200d-2640":0,"1f6b6-1f3fc-200d-2640":0,"1f6b6-1f3fd-200d-2640":0,"1f6b6-1f3fe-200d-2640":0,"1f6b6-1f3ff-200d-2640":0,"1f6b6-1f3fb-200d-2642":0,"1f6b6-1f3fc-200d-2642":0,"1f6b6-1f3fd-200d-2642":0,"1f6b6-1f3fe-200d-2642":0,"1f6b6-1f3ff-200d-2642":0,"1f6b6-1f3fb":0,"1f6b6-1f3fc":0,"1f6b6-1f3fd":0,"1f6b6-1f3fe":0,"1f6b6-1f3ff":0,"1f6c0-1f3fb":0,"1f6c0-1f3fc":0,"1f6c0-1f3fd":0,"1f6c0-1f3fe":0,"1f6c0-1f3ff":0,"1f6cc-1f3fb":0,"1f6cc-1f3fc":0,"1f6cc-1f3fd":0,"1f6cc-1f3fe":0,"1f6cc-1f3ff":0,"1f90c-1f3fb":0,"1f90c-1f3fc":0,"1f90c-1f3fd":0,"1f90c-1f3fe":0,"1f90c-1f3ff":0,"1f90f-1f3fb":0,"1f90f-1f3fc":0,"1f90f-1f3fd":0,"1f90f-1f3fe":0,"1f90f-1f3ff":0,"1f918-1f3fb":0,"1f918-1f3fc":0,"1f918-1f3fd":0,"1f918-1f3fe":0,"1f918-1f3ff":0,"1f919-1f3fb":0,"1f919-1f3fc":0,"1f919-1f3fd":0,"1f919-1f3fe":0,"1f919-1f3ff":0,"1f91a-1f3fb":0,"1f91a-1f3fc":0,"1f91a-1f3fd":0,"1f91a-1f3fe":0,"1f91a-1f3ff":0,"1f91b-1f3fb":0,"1f91b-1f3fc":0,"1f91b-1f3fd":0,"1f91b-1f3fe":0,"1f91b-1f3ff":0,"1f91c-1f3fb":0,"1f91c-1f3fc":0,"1f91c-1f3fd":0,"1f91c-1f3fe":0,"1f91c-1f3ff":0,"1f91e-1f3fb":0,"1f91e-1f3fc":0,"1f91e-1f3fd":0,"1f91e-1f3fe":0,"1f91e-1f3ff":0,"1f91f-1f3fb":0,"1f91f-1f3fc":0,"1f91f-1f3fd":0,"1f91f-1f3fe":0,"1f91f-1f3ff":0,"1f926-1f3fb-200d-2640":0,"1f926-1f3fc-200d-2640":0,"1f926-1f3fd-200d-2640":0,"1f926-1f3fe-200d-2640":0,"1f926-1f3ff-200d-2640":0,"1f926-1f3fb-200d-2642":0,"1f926-1f3fc-200d-2642":0,"1f926-1f3fd-200d-2642":0,"1f926-1f3fe-200d-2642":0,"1f926-1f3ff-200d-2642":0,"1f926-1f3fb":0,"1f926-1f3fc":0,"1f926-1f3fd":0,"1f926-1f3fe":0,"1f926-1f3ff":0,"1f930-1f3fb":0,"1f930-1f3fc":0,"1f930-1f3fd":0,"1f930-1f3fe":0,"1f930-1f3ff":0,"1f931-1f3fb":0,"1f931-1f3fc":0,"1f931-1f3fd":0,"1f931-1f3fe":0,"1f931-1f3ff":0,"1f932-1f3fb":0,"1f932-1f3fc":0,"1f932-1f3fd":0,"1f932-1f3fe":0,"1f932-1f3ff":0,"1f933-1f3fb":0,"1f933-1f3fc":0,"1f933-1f3fd":0,"1f933-1f3fe":0,"1f933-1f3ff":0,"1f934-1f3fb":0,"1f934-1f3fc":0,"1f934-1f3fd":0,"1f934-1f3fe":0,"1f934-1f3ff":0,"1f935-1f3fb-200d-2640":0,"1f935-1f3fc-200d-2640":0,"1f935-1f3fd-200d-2640":0,"1f935-1f3fe-200d-2640":0,"1f935-1f3ff-200d-2640":0,"1f935-1f3fb-200d-2642":0,"1f935-1f3fc-200d-2642":0,"1f935-1f3fd-200d-2642":0,"1f935-1f3fe-200d-2642":0,"1f935-1f3ff-200d-2642":0,"1f935-1f3fb":0,"1f935-1f3fc":0,"1f935-1f3fd":0,"1f935-1f3fe":0,"1f935-1f3ff":0,"1f936-1f3fb":0,"1f936-1f3fc":0,"1f936-1f3fd":0,"1f936-1f3fe":0,"1f936-1f3ff":0,"1f937-1f3fb-200d-2640":0,"1f937-1f3fc-200d-2640":0,"1f937-1f3fd-200d-2640":0,"1f937-1f3fe-200d-2640":0,"1f937-1f3ff-200d-2640":0,"1f937-1f3fb-200d-2642":0,"1f937-1f3fc-200d-2642":0,"1f937-1f3fd-200d-2642":0,"1f937-1f3fe-200d-2642":0,"1f937-1f3ff-200d-2642":0,"1f937-1f3fb":0,"1f937-1f3fc":0,"1f937-1f3fd":0,"1f937-1f3fe":0,"1f937-1f3ff":0,"1f938-1f3fb-200d-2640":0,"1f938-1f3fc-200d-2640":0,"1f938-1f3fd-200d-2640":0,"1f938-1f3fe-200d-2640":0,"1f938-1f3ff-200d-2640":0,"1f938-1f3fb-200d-2642":0,"1f938-1f3fc-200d-2642":0,"1f938-1f3fd-200d-2642":0,"1f938-1f3fe-200d-2642":0,"1f938-1f3ff-200d-2642":0,"1f938-1f3fb":0,"1f938-1f3fc":0,"1f938-1f3fd":0,"1f938-1f3fe":0,"1f938-1f3ff":0,"1f939-1f3fb-200d-2640":0,"1f939-1f3fc-200d-2640":0,"1f939-1f3fd-200d-2640":0,"1f939-1f3fe-200d-2640":0,"1f939-1f3ff-200d-2640":0,"1f939-1f3fb-200d-2642":0,"1f939-1f3fc-200d-2642":0,"1f939-1f3fd-200d-2642":0,"1f939-1f3fe-200d-2642":0,"1f939-1f3ff-200d-2642":0,"1f939-1f3fb":0,"1f939-1f3fc":0,"1f939-1f3fd":0,"1f939-1f3fe":0,"1f939-1f3ff":0,"1f93d-1f3fb-200d-2640":0,"1f93d-1f3fc-200d-2640":0,"1f93d-1f3fd-200d-2640":0,"1f93d-1f3fe-200d-2640":0,"1f93d-1f3ff-200d-2640":0,"1f93d-1f3fb-200d-2642":0,"1f93d-1f3fc-200d-2642":0,"1f93d-1f3fd-200d-2642":0,"1f93d-1f3fe-200d-2642":0,"1f93d-1f3ff-200d-2642":0,"1f93d-1f3fb":0,"1f93d-1f3fc":0,"1f93d-1f3fd":0,"1f93d-1f3fe":0,"1f93d-1f3ff":0,"1f93e-1f3fb-200d-2640":0,"1f93e-1f3fc-200d-2640":0,"1f93e-1f3fd-200d-2640":0,"1f93e-1f3fe-200d-2640":0,"1f93e-1f3ff-200d-2640":0,"1f93e-1f3fb-200d-2642":0,"1f93e-1f3fc-200d-2642":0,"1f93e-1f3fd-200d-2642":0,"1f93e-1f3fe-200d-2642":0,"1f93e-1f3ff-200d-2642":0,"1f93e-1f3fb":0,"1f93e-1f3fc":0,"1f93e-1f3fd":0,"1f93e-1f3fe":0,"1f93e-1f3ff":0,"1f977-1f3fb":0,"1f977-1f3fc":0,"1f977-1f3fd":0,"1f977-1f3fe":0,"1f977-1f3ff":0,"1f9b5-1f3fb":0,"1f9b5-1f3fc":0,"1f9b5-1f3fd":0,"1f9b5-1f3fe":0,"1f9b5-1f3ff":0,"1f9b6-1f3fb":0,"1f9b6-1f3fc":0,"1f9b6-1f3fd":0,"1f9b6-1f3fe":0,"1f9b6-1f3ff":0,"1f9b8-1f3fb-200d-2640":0,"1f9b8-1f3fc-200d-2640":0,"1f9b8-1f3fd-200d-2640":0,"1f9b8-1f3fe-200d-2640":0,"1f9b8-1f3ff-200d-2640":0,"1f9b8-1f3fb-200d-2642":0,"1f9b8-1f3fc-200d-2642":0,"1f9b8-1f3fd-200d-2642":0,"1f9b8-1f3fe-200d-2642":0,"1f9b8-1f3ff-200d-2642":0,"1f9b8-1f3fb":0,"1f9b8-1f3fc":0,"1f9b8-1f3fd":0,"1f9b8-1f3fe":0,"1f9b8-1f3ff":0,"1f9b9-1f3fb-200d-2640":0,"1f9b9-1f3fc-200d-2640":0,"1f9b9-1f3fd-200d-2640":0,"1f9b9-1f3fe-200d-2640":0,"1f9b9-1f3ff-200d-2640":0,"1f9b9-1f3fb-200d-2642":0,"1f9b9-1f3fc-200d-2642":0,"1f9b9-1f3fd-200d-2642":0,"1f9b9-1f3fe-200d-2642":0,"1f9b9-1f3ff-200d-2642":0,"1f9b9-1f3fb":0,"1f9b9-1f3fc":0,"1f9b9-1f3fd":0,"1f9b9-1f3fe":0,"1f9b9-1f3ff":0,"1f9bb-1f3fb":0,"1f9bb-1f3fc":0,"1f9bb-1f3fd":0,"1f9bb-1f3fe":0,"1f9bb-1f3ff":0,"1f9cd-1f3fb-200d-2640":0,"1f9cd-1f3fc-200d-2640":0,"1f9cd-1f3fd-200d-2640":0,"1f9cd-1f3fe-200d-2640":0,"1f9cd-1f3ff-200d-2640":0,"1f9cd-1f3fb-200d-2642":0,"1f9cd-1f3fc-200d-2642":0,"1f9cd-1f3fd-200d-2642":0,"1f9cd-1f3fe-200d-2642":0,"1f9cd-1f3ff-200d-2642":0,"1f9cd-1f3fb":0,"1f9cd-1f3fc":0,"1f9cd-1f3fd":0,"1f9cd-1f3fe":0,"1f9cd-1f3ff":0,"1f9ce-1f3fb-200d-2640":0,"1f9ce-1f3fc-200d-2640":0,"1f9ce-1f3fd-200d-2640":0,"1f9ce-1f3fe-200d-2640":0,"1f9ce-1f3ff-200d-2640":0,"1f9ce-1f3fb-200d-2642":0,"1f9ce-1f3fc-200d-2642":0,"1f9ce-1f3fd-200d-2642":0,"1f9ce-1f3fe-200d-2642":0,"1f9ce-1f3ff-200d-2642":0,"1f9ce-1f3fb":0,"1f9ce-1f3fc":0,"1f9ce-1f3fd":0,"1f9ce-1f3fe":0,"1f9ce-1f3ff":0,"1f9cf-1f3fb-200d-2640":0,"1f9cf-1f3fc-200d-2640":0,"1f9cf-1f3fd-200d-2640":0,"1f9cf-1f3fe-200d-2640":0,"1f9cf-1f3ff-200d-2640":0,"1f9cf-1f3fb-200d-2642":0,"1f9cf-1f3fc-200d-2642":0,"1f9cf-1f3fd-200d-2642":0,"1f9cf-1f3fe-200d-2642":0,"1f9cf-1f3ff-200d-2642":0,"1f9cf-1f3fb":0,"1f9cf-1f3fc":0,"1f9cf-1f3fd":0,"1f9cf-1f3fe":0,"1f9cf-1f3ff":0,"1f9d1-1f3fb-200d-1f33e":0,"1f9d1-1f3fc-200d-1f33e":0,"1f9d1-1f3fd-200d-1f33e":0,"1f9d1-1f3fe-200d-1f33e":0,"1f9d1-1f3ff-200d-1f33e":0,"1f9d1-1f3fb-200d-1f373":0,"1f9d1-1f3fc-200d-1f373":0,"1f9d1-1f3fd-200d-1f373":0,"1f9d1-1f3fe-200d-1f373":0,"1f9d1-1f3ff-200d-1f373":0,"1f9d1-1f3fb-200d-1f37c":0,"1f9d1-1f3fc-200d-1f37c":0,"1f9d1-1f3fd-200d-1f37c":0,"1f9d1-1f3fe-200d-1f37c":0,"1f9d1-1f3ff-200d-1f37c":0,"1f9d1-1f3fb-200d-1f384":0,"1f9d1-1f3fc-200d-1f384":0,"1f9d1-1f3fd-200d-1f384":0,"1f9d1-1f3fe-200d-1f384":0,"1f9d1-1f3ff-200d-1f384":0,"1f9d1-1f3fb-200d-1f393":0,"1f9d1-1f3fc-200d-1f393":0,"1f9d1-1f3fd-200d-1f393":0,"1f9d1-1f3fe-200d-1f393":0,"1f9d1-1f3ff-200d-1f393":0,"1f9d1-1f3fb-200d-1f3a4":0,"1f9d1-1f3fc-200d-1f3a4":0,"1f9d1-1f3fd-200d-1f3a4":0,"1f9d1-1f3fe-200d-1f3a4":0,"1f9d1-1f3ff-200d-1f3a4":0,"1f9d1-1f3fb-200d-1f3a8":0,"1f9d1-1f3fc-200d-1f3a8":0,"1f9d1-1f3fd-200d-1f3a8":0,"1f9d1-1f3fe-200d-1f3a8":0,"1f9d1-1f3ff-200d-1f3a8":0,"1f9d1-1f3fb-200d-1f3eb":0,"1f9d1-1f3fc-200d-1f3eb":0,"1f9d1-1f3fd-200d-1f3eb":0,"1f9d1-1f3fe-200d-1f3eb":0,"1f9d1-1f3ff-200d-1f3eb":0,"1f9d1-1f3fb-200d-1f3ed":0,"1f9d1-1f3fc-200d-1f3ed":0,"1f9d1-1f3fd-200d-1f3ed":0,"1f9d1-1f3fe-200d-1f3ed":0,"1f9d1-1f3ff-200d-1f3ed":0,"1f9d1-1f3fb-200d-1f4bb":0,"1f9d1-1f3fc-200d-1f4bb":0,"1f9d1-1f3fd-200d-1f4bb":0,"1f9d1-1f3fe-200d-1f4bb":0,"1f9d1-1f3ff-200d-1f4bb":0,"1f9d1-1f3fb-200d-1f4bc":0,"1f9d1-1f3fc-200d-1f4bc":0,"1f9d1-1f3fd-200d-1f4bc":0,"1f9d1-1f3fe-200d-1f4bc":0,"1f9d1-1f3ff-200d-1f4bc":0,"1f9d1-1f3fb-200d-1f527":0,"1f9d1-1f3fc-200d-1f527":0,"1f9d1-1f3fd-200d-1f527":0,"1f9d1-1f3fe-200d-1f527":0,"1f9d1-1f3ff-200d-1f527":0,"1f9d1-1f3fb-200d-1f52c":0,"1f9d1-1f3fc-200d-1f52c":0,"1f9d1-1f3fd-200d-1f52c":0,"1f9d1-1f3fe-200d-1f52c":0,"1f9d1-1f3ff-200d-1f52c":0,"1f9d1-1f3fb-200d-1f680":0,"1f9d1-1f3fc-200d-1f680":0,"1f9d1-1f3fd-200d-1f680":0,"1f9d1-1f3fe-200d-1f680":0,"1f9d1-1f3ff-200d-1f680":0,"1f9d1-1f3fb-200d-1f692":0,"1f9d1-1f3fc-200d-1f692":0,"1f9d1-1f3fd-200d-1f692":0,"1f9d1-1f3fe-200d-1f692":0,"1f9d1-1f3ff-200d-1f692":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fb-200d-1f9af":0,"1f9d1-1f3fc-200d-1f9af":0,"1f9d1-1f3fd-200d-1f9af":0,"1f9d1-1f3fe-200d-1f9af":0,"1f9d1-1f3ff-200d-1f9af":0,"1f9d1-1f3fb-200d-1f9b0":0,"1f9d1-1f3fc-200d-1f9b0":0,"1f9d1-1f3fd-200d-1f9b0":0,"1f9d1-1f3fe-200d-1f9b0":0,"1f9d1-1f3ff-200d-1f9b0":0,"1f9d1-1f3fb-200d-1f9b1":0,"1f9d1-1f3fc-200d-1f9b1":0,"1f9d1-1f3fd-200d-1f9b1":0,"1f9d1-1f3fe-200d-1f9b1":0,"1f9d1-1f3ff-200d-1f9b1":0,"1f9d1-1f3fb-200d-1f9b2":0,"1f9d1-1f3fc-200d-1f9b2":0,"1f9d1-1f3fd-200d-1f9b2":0,"1f9d1-1f3fe-200d-1f9b2":0,"1f9d1-1f3ff-200d-1f9b2":0,"1f9d1-1f3fb-200d-1f9b3":0,"1f9d1-1f3fc-200d-1f9b3":0,"1f9d1-1f3fd-200d-1f9b3":0,"1f9d1-1f3fe-200d-1f9b3":0,"1f9d1-1f3ff-200d-1f9b3":0,"1f9d1-1f3fb-200d-1f9bc":0,"1f9d1-1f3fc-200d-1f9bc":0,"1f9d1-1f3fd-200d-1f9bc":0,"1f9d1-1f3fe-200d-1f9bc":0,"1f9d1-1f3ff-200d-1f9bc":0,"1f9d1-1f3fb-200d-1f9bd":0,"1f9d1-1f3fc-200d-1f9bd":0,"1f9d1-1f3fd-200d-1f9bd":0,"1f9d1-1f3fe-200d-1f9bd":0,"1f9d1-1f3ff-200d-1f9bd":0,"1f9d1-1f3fb-200d-2695":0,"1f9d1-1f3fc-200d-2695":0,"1f9d1-1f3fd-200d-2695":0,"1f9d1-1f3fe-200d-2695":0,"1f9d1-1f3ff-200d-2695":0,"1f9d1-1f3fb-200d-2696":0,"1f9d1-1f3fc-200d-2696":0,"1f9d1-1f3fd-200d-2696":0,"1f9d1-1f3fe-200d-2696":0,"1f9d1-1f3ff-200d-2696":0,"1f9d1-1f3fb-200d-2708":0,"1f9d1-1f3fc-200d-2708":0,"1f9d1-1f3fd-200d-2708":0,"1f9d1-1f3fe-200d-2708":0,"1f9d1-1f3ff-200d-2708":0,"1f9d1-1f3fb":0,"1f9d1-1f3fc":0,"1f9d1-1f3fd":0,"1f9d1-1f3fe":0,"1f9d1-1f3ff":0,"1f9d2-1f3fb":0,"1f9d2-1f3fc":0,"1f9d2-1f3fd":0,"1f9d2-1f3fe":0,"1f9d2-1f3ff":0,"1f9d3-1f3fb":0,"1f9d3-1f3fc":0,"1f9d3-1f3fd":0,"1f9d3-1f3fe":0,"1f9d3-1f3ff":0,"1f9d4-1f3fb":0,"1f9d4-1f3fc":0,"1f9d4-1f3fd":0,"1f9d4-1f3fe":0,"1f9d4-1f3ff":0,"1f9d5-1f3fb":0,"1f9d5-1f3fc":0,"1f9d5-1f3fd":0,"1f9d5-1f3fe":0,"1f9d5-1f3ff":0,"1f9d6-1f3fb-200d-2640":0,"1f9d6-1f3fc-200d-2640":0,"1f9d6-1f3fd-200d-2640":0,"1f9d6-1f3fe-200d-2640":0,"1f9d6-1f3ff-200d-2640":0,"1f9d6-1f3fb-200d-2642":0,"1f9d6-1f3fc-200d-2642":0,"1f9d6-1f3fd-200d-2642":0,"1f9d6-1f3fe-200d-2642":0,"1f9d6-1f3ff-200d-2642":0,"1f9d6-1f3fb":0,"1f9d6-1f3fc":0,"1f9d6-1f3fd":0,"1f9d6-1f3fe":0,"1f9d6-1f3ff":0,"1f9d7-1f3fb-200d-2640":0,"1f9d7-1f3fc-200d-2640":0,"1f9d7-1f3fd-200d-2640":0,"1f9d7-1f3fe-200d-2640":0,"1f9d7-1f3ff-200d-2640":0,"1f9d7-1f3fb-200d-2642":0,"1f9d7-1f3fc-200d-2642":0,"1f9d7-1f3fd-200d-2642":0,"1f9d7-1f3fe-200d-2642":0,"1f9d7-1f3ff-200d-2642":0,"1f9d7-1f3fb":0,"1f9d7-1f3fc":0,"1f9d7-1f3fd":0,"1f9d7-1f3fe":0,"1f9d7-1f3ff":0,"1f9d8-1f3fb-200d-2640":0,"1f9d8-1f3fc-200d-2640":0,"1f9d8-1f3fd-200d-2640":0,"1f9d8-1f3fe-200d-2640":0,"1f9d8-1f3ff-200d-2640":0,"1f9d8-1f3fb-200d-2642":0,"1f9d8-1f3fc-200d-2642":0,"1f9d8-1f3fd-200d-2642":0,"1f9d8-1f3fe-200d-2642":0,"1f9d8-1f3ff-200d-2642":0,"1f9d8-1f3fb":0,"1f9d8-1f3fc":0,"1f9d8-1f3fd":0,"1f9d8-1f3fe":0,"1f9d8-1f3ff":0,"1f9d9-1f3fb-200d-2640":0,"1f9d9-1f3fc-200d-2640":0,"1f9d9-1f3fd-200d-2640":0,"1f9d9-1f3fe-200d-2640":0,"1f9d9-1f3ff-200d-2640":0,"1f9d9-1f3fb-200d-2642":0,"1f9d9-1f3fc-200d-2642":0,"1f9d9-1f3fd-200d-2642":0,"1f9d9-1f3fe-200d-2642":0,"1f9d9-1f3ff-200d-2642":0,"1f9d9-1f3fb":0,"1f9d9-1f3fc":0,"1f9d9-1f3fd":0,"1f9d9-1f3fe":0,"1f9d9-1f3ff":0,"1f9da-1f3fb-200d-2640":0,"1f9da-1f3fc-200d-2640":0,"1f9da-1f3fd-200d-2640":0,"1f9da-1f3fe-200d-2640":0,"1f9da-1f3ff-200d-2640":0,"1f9da-1f3fb-200d-2642":0,"1f9da-1f3fc-200d-2642":0,"1f9da-1f3fd-200d-2642":0,"1f9da-1f3fe-200d-2642":0,"1f9da-1f3ff-200d-2642":0,"1f9da-1f3fb":0,"1f9da-1f3fc":0,"1f9da-1f3fd":0,"1f9da-1f3fe":0,"1f9da-1f3ff":0,"1f9db-1f3fb-200d-2640":0,"1f9db-1f3fc-200d-2640":0,"1f9db-1f3fd-200d-2640":0,"1f9db-1f3fe-200d-2640":0,"1f9db-1f3ff-200d-2640":0,"1f9db-1f3fb-200d-2642":0,"1f9db-1f3fc-200d-2642":0,"1f9db-1f3fd-200d-2642":0,"1f9db-1f3fe-200d-2642":0,"1f9db-1f3ff-200d-2642":0,"1f9db-1f3fb":0,"1f9db-1f3fc":0,"1f9db-1f3fd":0,"1f9db-1f3fe":0,"1f9db-1f3ff":0,"1f9dc-1f3fb-200d-2640":0,"1f9dc-1f3fc-200d-2640":0,"1f9dc-1f3fd-200d-2640":0,"1f9dc-1f3fe-200d-2640":0,"1f9dc-1f3ff-200d-2640":0,"1f9dc-1f3fb-200d-2642":0,"1f9dc-1f3fc-200d-2642":0,"1f9dc-1f3fd-200d-2642":0,"1f9dc-1f3fe-200d-2642":0,"1f9dc-1f3ff-200d-2642":0,"1f9dc-1f3fb":0,"1f9dc-1f3fc":0,"1f9dc-1f3fd":0,"1f9dc-1f3fe":0,"1f9dc-1f3ff":0,"1f9dd-1f3fb-200d-2640":0,"1f9dd-1f3fc-200d-2640":0,"1f9dd-1f3fd-200d-2640":0,"1f9dd-1f3fe-200d-2640":0,"1f9dd-1f3ff-200d-2640":0,"1f9dd-1f3fb-200d-2642":0,"1f9dd-1f3fc-200d-2642":0,"1f9dd-1f3fd-200d-2642":0,"1f9dd-1f3fe-200d-2642":0,"1f9dd-1f3ff-200d-2642":0,"1f9dd-1f3fb":0,"1f9dd-1f3fc":0,"1f9dd-1f3fd":0,"1f9dd-1f3fe":0,"1f9dd-1f3ff":0,"261d-1f3fb":0,"261d-1f3fc":0,"261d-1f3fd":0,"261d-1f3fe":0,"261d-1f3ff":0,"26f9-1f3fb-200d-2640":0,"26f9-1f3fc-200d-2640":0,"26f9-1f3fd-200d-2640":0,"26f9-1f3fe-200d-2640":0,"26f9-1f3ff-200d-2640":0,"26f9-1f3fb-200d-2642":0,"26f9-1f3fc-200d-2642":0,"26f9-1f3fd-200d-2642":0,"26f9-1f3fe-200d-2642":0,"26f9-1f3ff-200d-2642":0,"26f9-1f3fb":0,"26f9-1f3fc":0,"26f9-1f3fd":0,"26f9-1f3fe":0,"26f9-1f3ff":0,"270a-1f3fb":0,"270a-1f3fc":0,"270a-1f3fd":0,"270a-1f3fe":0,"270a-1f3ff":0,"270b-1f3fb":0,"270b-1f3fc":0,"270b-1f3fd":0,"270b-1f3fe":0,"270b-1f3ff":0,"270c-1f3fb":0,"270c-1f3fc":0,"270c-1f3fd":0,"270c-1f3fe":0,"270c-1f3ff":0,"270d-1f3fb":0,"270d-1f3fc":0,"270d-1f3fd":0,"270d-1f3fe":0,"270d-1f3ff":0}; -Emoji["00a9-fe0f"] = 6362; +/* Emoji["00a9-fe0f"] = 6362; Emoji["00ae-fe0f"] = 6363; -Emoji["2122-fe0f"] = 6364; +Emoji["2122-fe0f"] = 6364; */ // From https://github.com/stephenmathieson/node-tlds/blob/master/index.js export const TLD = ['abogado', 'ac', 'academy', 'accountants', 'active', 'actor', 'ad', 'adult', 'ae', 'aero', 'af', 'ag', 'agency', 'ai', 'airforce', 'al', 'allfinanz', 'alsace', 'am', 'amsterdam', 'an', 'android', 'ao', 'apartments', 'aq', 'aquarelle', 'ar', 'archi', 'army', 'arpa', 'as', 'asia', 'associates', 'at', 'attorney', 'au', 'auction', 'audio', 'autos', 'aw', 'ax', 'axa', 'az', 'ba', 'band', 'bank', 'bar', 'barclaycard', 'barclays', 'bargains', 'bayern', 'bb', 'bd', 'be', 'beer', 'berlin', 'best', 'bf', 'bg', 'bh', 'bi', 'bid', 'bike', 'bingo', 'bio', 'biz', 'bj', 'black', 'blackfriday', 'bloomberg', 'blue', 'bm', 'bmw', 'bn', 'bnpparibas', 'bo', 'boo', 'boutique', 'br', 'brussels', 'bs', 'bt', 'budapest', 'build', 'builders', 'business', 'buzz', 'bv', 'bw', 'by', 'bz', 'bzh', 'ca', 'cab', 'cal', 'camera', 'camp', 'cancerresearch', 'canon', 'capetown', 'capital', 'caravan', 'cards', 'care', 'career', 'careers', 'cartier', 'casa', 'cash', 'cat', 'catering', 'cc', 'cd', 'center', 'ceo', 'cern', 'cf', 'cg', 'ch', 'channel', 'chat', 'cheap', 'christmas', 'chrome', 'church', 'ci', 'citic', 'city', 'ck', 'cl', 'claims', 'cleaning', 'click', 'clinic', 'clothing', 'club', 'cm', 'cn', 'co', 'coach', 'codes', 'coffee', 'college', 'cologne', 'com', 'community', 'company', 'computer', 'condos', 'construction', 'consulting', 'contractors', 'cooking', 'cool', 'coop', 'country', 'cr', 'credit', 'creditcard', 'cricket', 'crs', 'cruises', 'cu', 'cuisinella', 'cv', 'cw', 'cx', 'cy', 'cymru', 'cz', 'dabur', 'dad', 'dance', 'dating', 'day', 'dclk', 'de', 'deals', 'degree', 'delivery', 'democrat', 'dental', 'dentist', 'desi', 'design', 'dev', 'diamonds', 'diet', 'digital', 'direct', 'directory', 'discount', 'dj', 'dk', 'dm', 'dnp', 'do', 'docs', 'domains', 'doosan', 'durban', 'dvag', 'dz', 'eat', 'ec', 'edu', 'education', 'ee', 'eg', 'email', 'emerck', 'energy', 'engineer', 'engineering', 'enterprises', 'equipment', 'er', 'es', 'esq', 'estate', 'et', 'eu', 'eurovision', 'eus', 'events', 'everbank', 'exchange', 'expert', 'exposed', 'fail', 'farm', 'fashion', 'feedback', 'fi', 'finance', 'financial', 'firmdale', 'fish', 'fishing', 'fit', 'fitness', 'fj', 'fk', 'flights', 'florist', 'flowers', 'flsmidth', 'fly', 'fm', 'fo', 'foo', 'forsale', 'foundation', 'fr', 'frl', 'frogans', 'fund', 'furniture', 'futbol', 'ga', 'gal', 'gallery', 'garden', 'gb', 'gbiz', 'gd', 'ge', 'gent', 'gf', 'gg', 'ggee', 'gh', 'gi', 'gift', 'gifts', 'gives', 'gl', 'glass', 'gle', 'global', 'globo', 'gm', 'gmail', 'gmo', 'gmx', 'gn', 'goog', 'google', 'gop', 'gov', 'gp', 'gq', 'gr', 'graphics', 'gratis', 'green', 'gripe', 'gs', 'gt', 'gu', 'guide', 'guitars', 'guru', 'gw', 'gy', 'hamburg', 'hangout', 'haus', 'healthcare', 'help', 'here', 'hermes', 'hiphop', 'hiv', 'hk', 'hm', 'hn', 'holdings', 'holiday', 'homes', 'horse', 'host', 'hosting', 'house', 'how', 'hr', 'ht', 'hu', 'ibm', 'id', 'ie', 'ifm', 'il', 'im', 'immo', 'immobilien', 'in', 'industries', 'info', 'ing', 'ink', 'institute', 'insure', 'int', 'international', 'investments', 'io', 'iq', 'ir', 'irish', 'is', 'it', 'iwc', 'jcb', 'je', 'jetzt', 'jm', 'jo', 'jobs', 'joburg', 'jp', 'juegos', 'kaufen', 'kddi', 'ke', 'kg', 'kh', 'ki', 'kim', 'kitchen', 'kiwi', 'km', 'kn', 'koeln', 'kp', 'kr', 'krd', 'kred', 'kw', 'ky', 'kyoto', 'kz', 'la', 'lacaixa', 'land', 'lat', 'latrobe', 'lawyer', 'lb', 'lc', 'lds', 'lease', 'legal', 'lgbt', 'li', 'lidl', 'life', 'lighting', 'limited', 'limo', 'link', 'lk', 'loans', 'london', 'lotte', 'lotto', 'lr', 'ls', 'lt', 'ltda', 'lu', 'luxe', 'luxury', 'lv', 'ly', 'ma', 'madrid', 'maison', 'management', 'mango', 'market', 'marketing', 'marriott', 'mc', 'md', 'me', 'media', 'meet', 'melbourne', 'meme', 'memorial', 'menu', 'mg', 'mh', 'miami', 'mil', 'mini', 'mk', 'ml', 'mm', 'mn', 'mo', 'mobi', 'moda', 'moe', 'monash', 'money', 'mormon', 'mortgage', 'moscow', 'motorcycles', 'mov', 'mp', 'mq', 'mr', 'ms', 'mt', 'mu', 'museum', 'mv', 'mw', 'mx', 'my', 'mz', 'na', 'nagoya', 'name', 'navy', 'nc', 'ne', 'net', 'network', 'neustar', 'new', 'nexus', 'nf', 'ng', 'ngo', 'nhk', 'ni', 'nico', 'ninja', 'nl', 'no', 'np', 'nr', 'nra', 'nrw', 'ntt', 'nu', 'nyc', 'nz', 'okinawa', 'om', 'one', 'ong', 'onl', 'ooo', 'org', 'organic', 'osaka', 'otsuka', 'ovh', 'pa', 'paris', 'partners', 'parts', 'party', 'pe', 'pf', 'pg', 'ph', 'pharmacy', 'photo', 'photography', 'photos', 'physio', 'pics', 'pictures', 'pink', 'pizza', 'pk', 'pl', 'place', 'plumbing', 'pm', 'pn', 'pohl', 'poker', 'porn', 'post', 'pr', 'praxi', 'press', 'pro', 'prod', 'productions', 'prof', 'properties', 'property', 'ps', 'pt', 'pub', 'pw', 'py', 'qa', 'qpon', 'quebec', 're', 'realtor', 'recipes', 'red', 'rehab', 'reise', 'reisen', 'reit', 'ren', 'rentals', 'repair', 'report', 'republican', 'rest', 'restaurant', 'reviews', 'rich', 'rio', 'rip', 'ro', 'rocks', 'rodeo', 'rs', 'rsvp', 'ru', 'ruhr', 'rw', 'ryukyu', 'sa', 'saarland', 'sale', 'samsung', 'sarl', 'saxo', 'sb', 'sc', 'sca', 'scb', 'schmidt', 'schule', 'schwarz', 'science', 'scot', 'sd', 'se', 'services', 'sew', 'sexy', 'sg', 'sh', 'shiksha', 'shoes', 'shriram', 'si', 'singles', 'sj', 'sk', 'sky', 'sl', 'sm', 'sn', 'so', 'social', 'software', 'sohu', 'solar', 'solutions', 'soy', 'space', 'spiegel', 'sr', 'st', 'style', 'su', 'supplies', 'supply', 'support', 'surf', 'surgery', 'suzuki', 'sv', 'sx', 'sy', 'sydney', 'systems', 'sz', 'taipei', 'tatar', 'tattoo', 'tax', 'tc', 'td', 'technology', 'tel', 'temasek', 'tennis', 'tf', 'tg', 'th', 'tienda', 'tips', 'tires', 'tirol', 'tj', 'tk', 'tl', 'tm', 'tn', 'to', 'today', 'tokyo', 'tools', 'top', 'toshiba', 'town', 'toys', 'tp', 'tr', 'trade', 'training', 'travel', 'trust', 'tt', 'tui', 'tv', 'tw', 'tz', 'ua', 'ug', 'uk', 'university', 'uno', 'uol', 'us', 'uy', 'uz', 'va', 'vacations', 'vc', 've', 'vegas', 'ventures', 'versicherung', 'vet', 'vg', 'vi', 'viajes', 'video', 'villas', 'vision', 'vlaanderen', 'vn', 'vodka', 'vote', 'voting', 'voto', 'voyage', 'vu', 'wales', 'wang', 'watch', 'webcam', 'website', 'wed', 'wedding', 'wf', 'whoswho', 'wien', 'wiki', 'williamhill', 'wme', 'work', 'works', 'world', 'ws', 'wtc', 'wtf', '佛山', '集团', '在线', '한국', 'ভারত', '八卦', 'موقع', '公益', '公司', '移动', '我爱你', 'москва', 'қаз', 'онлайн', 'сайт', 'срб', '淡马锡', 'орг', '삼성', 'சிங்கப்பூர்', '商标', '商店', '商城', 'дети', 'мкд', '中文网', '中信', '中国', '中國', '谷歌', 'భారత్', 'ලංකා', 'ભારત', 'भारत', '网店', 'संगठन', '网络', 'укр', '香港', '台湾', '台灣', '手机', 'мон', 'الجزائر', 'عمان', 'ایران', 'امارات', 'بازار', 'الاردن', 'بھارت', 'المغرب', 'السعودية', 'مليسيا', 'شبكة', 'გე', '机构', '组织机构', 'ไทย', 'سورية', 'рус', 'рф', 'تونس', 'みんな', 'グーグル', '世界', 'ਭਾਰਤ', '网址', '游戏', 'vermögensberater', 'vermögensberatung', '企业', 'مصر', 'قطر', '广东', 'இலங்கை', 'இந்தியா', '新加坡', 'فلسطين', '政务', 'xxx', 'xyz', 'yachts', 'yandex', 'ye', 'yoga', 'yokohama', 'youtube', 'yt', 'za', 'zip', 'zm', 'zone', 'zuerich', 'zw']; diff --git a/src/lib/mtproto/apiManager.ts b/src/lib/mtproto/apiManager.ts index bf99d05c..1182a25e 100644 --- a/src/lib/mtproto/apiManager.ts +++ b/src/lib/mtproto/apiManager.ts @@ -67,7 +67,7 @@ export type ApiError = Partial<{ } */ export class ApiManager { - public cachedNetworkers: { + private cachedNetworkers: { [transportType in TransportType]: { [connectionType in ConnectionType]: { [dcId: number]: MTPNetworker[] @@ -75,9 +75,9 @@ export class ApiManager { } } = {} as any; - public cachedExportPromise: {[x: number]: Promise} = {}; + private cachedExportPromise: {[x: number]: Promise} = {}; private gettingNetworkers: {[dcIdAndType: string]: Promise} = {}; - public baseDcId = 0; + private baseDcId = 0; //public telegramMeNotified = false; @@ -288,7 +288,9 @@ export class ApiManager { const startTime = Date.now(); const interval = ctx.setInterval(() => { - this.log.error('Request is still processing:', method, params, options, 'time:', (Date.now() - startTime) / 1000); + if(!cachedNetworker || !cachedNetworker.isStopped()) { + this.log.error('Request is still processing:', method, params, options, 'time:', (Date.now() - startTime) / 1000); + } //this.cachedUploadNetworkers[2].requestMessageStatus(); }, 5e3); } diff --git a/src/lib/mtproto/mtproto.service.ts b/src/lib/mtproto/mtproto.service.ts index e51e2b48..fe084c1b 100644 --- a/src/lib/mtproto/mtproto.service.ts +++ b/src/lib/mtproto/mtproto.service.ts @@ -52,7 +52,7 @@ const onFetch = (event: FetchEvent): void => { try { const [, url, scope, params] = /http[:s]+\/\/.*?(\/(.*?)(?:$|\/(.*)$))/.exec(event.request.url) || []; - log.debug('[fetch]:', event); + //log.debug('[fetch]:', event); switch(scope) { case 'stream': { @@ -71,7 +71,7 @@ const onFetch = (event: FetchEvent): void => { offset = info.size - (info.size % limitPart); } */ - log.debug('[stream]', url, offset, end); + //log.debug('[stream]', url, offset, end); event.respondWith(Promise.race([ timeout(45 * 1000), @@ -86,7 +86,7 @@ const onFetch = (event: FetchEvent): void => { const limit = end && end < limitPart ? alignLimit(end - offset + 1) : limitPart; const alignedOffset = alignOffset(offset, limit); - log.debug('[stream] requestFilePart:', /* info.dcId, info.location, */ alignedOffset, limit); + //log.debug('[stream] requestFilePart:', /* info.dcId, info.location, */ alignedOffset, limit); const task: ServiceWorkerTask = { type: 'requestFilePart', @@ -99,7 +99,7 @@ const onFetch = (event: FetchEvent): void => { deferred.then(result => { let ab = result.bytes as Uint8Array; - log.debug('[stream] requestFilePart result:', result); + //log.debug('[stream] requestFilePart result:', result); const headers: Record = { 'Accept-Ranges': 'bytes', diff --git a/src/lib/mtproto/mtproto.worker.ts b/src/lib/mtproto/mtproto.worker.ts index c88ced03..8bf916b2 100644 --- a/src/lib/mtproto/mtproto.worker.ts +++ b/src/lib/mtproto/mtproto.worker.ts @@ -130,6 +130,13 @@ const onMessage = async(e: any) => { CacheStorageController.toggleStorage(enabled); break; } + + case 'startAll': + case 'stopAll': { + // @ts-ignore + networkerFactory[task.task].apply(networkerFactory); + break; + } default: { try { diff --git a/src/lib/mtproto/mtprotoworker.ts b/src/lib/mtproto/mtprotoworker.ts index a8b934ee..f544c799 100644 --- a/src/lib/mtproto/mtprotoworker.ts +++ b/src/lib/mtproto/mtprotoworker.ts @@ -20,6 +20,7 @@ import type { MTMessage } from './networker'; import DEBUG, { MOUNT_CLASS_TO } from '../../config/debug'; import Socket from './transports/websocket'; import IDBStorage from '../idb'; +import singleInstance from './singleInstance'; type Task = { taskId: number, @@ -86,6 +87,8 @@ export class ApiManagerProxy extends CryptoWorkerMethods { super(); this.log('constructor'); + singleInstance.start(); + this.registerServiceWorker(); this.addTaskListener('clear', () => { @@ -482,6 +485,14 @@ export class ApiManagerProxy extends CryptoWorkerMethods { public toggleStorage(enabled: boolean) { return this.performTaskWorker('toggleStorage', enabled); } + + public stopAll() { + return this.performTaskWorker('stopAll'); + } + + public startAll() { + return this.performTaskWorker('startAll'); + } } const apiManagerProxy = new ApiManagerProxy(); diff --git a/src/lib/mtproto/networker.ts b/src/lib/mtproto/networker.ts index 50b66ee3..e32d095b 100644 --- a/src/lib/mtproto/networker.ts +++ b/src/lib/mtproto/networker.ts @@ -188,7 +188,7 @@ export default class MTPNetworker { } } - public updateSession() { + private updateSession() { this.seqNo = 0; this.prevSessionId = this.sessionId; this.sessionId = new Uint8Array(8).randomize(); @@ -203,7 +203,7 @@ export default class MTPNetworker { } } */ - public updateSentMessage(sentMessageId: string) { + private updateSentMessage(sentMessageId: string) { const sentMessage = this.sentMessages[sentMessageId]; if(!sentMessage) { return false; @@ -233,7 +233,7 @@ export default class MTPNetworker { return sentMessage; } - public generateSeqNo(notContentRelated?: boolean) { + private generateSeqNo(notContentRelated?: boolean) { let seqNo = this.seqNo * 2; if(!notContentRelated) { @@ -471,11 +471,12 @@ export default class MTPNetworker { // }; /// #if MTPROTO_HTTP || MTPROTO_HTTP_UPLOAD - public checkLongPoll = () => { + private checkLongPoll = () => { const isClean = this.cleanupSent(); //this.log.error('Check lp', this.longPollPending, this.dcId, isClean, this); if((this.longPollPending && Date.now() < this.longPollPending) || - this.offline) { + this.offline || + this.isStopped()) { //this.log('No lp this time'); return false; } @@ -494,7 +495,7 @@ export default class MTPNetworker { }); }; - public sendLongPoll() { + private sendLongPoll() { const maxWait = 25000; this.longPollPending = Date.now() + maxWait; @@ -515,7 +516,7 @@ export default class MTPNetworker { }); } - public checkConnection = (event: Event | string) => { + private checkConnection = (event: Event | string) => { /* rootScope.offlineConnecting = true */ this.log('Check connection', event); @@ -548,7 +549,7 @@ export default class MTPNetworker { }); }; - public toggleOffline(enabled: boolean) { + private toggleOffline(enabled: boolean) { // this.log('toggle ', enabled, this.dcId, this.iii) if(this.offline !== undefined && this.offline === enabled) { return false; @@ -642,7 +643,7 @@ export default class MTPNetworker { /// #endif // тут можно сделать таймаут и выводить дисконнект - public pushMessage(message: { + private pushMessage(message: { msg_id: string, seq_no: number, body: Uint8Array | number[], @@ -692,7 +693,7 @@ export default class MTPNetworker { return promise; } - public setConnectionStatus(online: boolean) { + public setConnectionStatus(online: boolean, timeout?: number) { const willChange = this.isOnline !== online; this.isOnline = online; @@ -705,10 +706,15 @@ export default class MTPNetworker { name: this.name, isFileNetworker: this.isFileNetworker, isFileDownload: this.isFileDownload, - isFileUpload: this.isFileUpload + isFileUpload: this.isFileUpload, + timeout }); } + if(this.isOnline) { + this.scheduleRequest(); + } + // if((this.transport as TcpObfuscated).networker) { // this.sendPingDelayDisconnect(); // } @@ -720,7 +726,7 @@ export default class MTPNetworker { } */ } - public pushResend(messageId: string, delay = 100) { + private pushResend(messageId: string, delay = 100) { const value = delay ? Date.now() + delay : 0; const sentMessage = this.sentMessages[messageId]; if(sentMessage.container) { @@ -743,7 +749,7 @@ export default class MTPNetworker { } // * correct, fully checked - public async getMsgKey(dataWithPadding: ArrayBuffer, isOut: boolean) { + private async getMsgKey(dataWithPadding: ArrayBuffer, isOut: boolean) { const x = isOut ? 0 : 8; const msgKeyLargePlain = bufferConcat(this.authKeyUint8.subarray(88 + x, 88 + x + 32), dataWithPadding); @@ -753,7 +759,7 @@ export default class MTPNetworker { }; // * correct, fully checked - public getAesKeyIv(msgKey: Uint8Array | number[], isOut: boolean): Promise<[Uint8Array, Uint8Array]> { + private getAesKeyIv(msgKey: Uint8Array | number[], isOut: boolean): Promise<[Uint8Array, Uint8Array]> { const x = isOut ? 0 : 8; const sha2aText = new Uint8Array(52); const sha2bText = new Uint8Array(52); @@ -785,9 +791,17 @@ export default class MTPNetworker { }); } + public isStopped() { + return NetworkerFactory.akStopped && !this.isFileNetworker; + } + private performScheduledRequest() { // this.log('scheduled', this.dcId, this.iii) + if(this.isStopped()) { + return false; + } + if(this.pendingAcks.length) { const ackMsgIds: Array = this.pendingAcks.slice(); @@ -936,7 +950,7 @@ export default class MTPNetworker { if(lengthOverflow) { this.scheduleRequest(); } - }; + } private generateContainerMessage(messagesByteLen: number, messages: MTMessage[]) { const container = new TLSerialization({ @@ -973,7 +987,7 @@ export default class MTPNetworker { }; } - public async getEncryptedMessage(dataWithPadding: ArrayBuffer) { + private async getEncryptedMessage(dataWithPadding: ArrayBuffer) { const msgKey = await this.getMsgKey(dataWithPadding, true); const keyIv = await this.getAesKeyIv(msgKey, true); // this.log('after msg key iv') @@ -987,7 +1001,7 @@ export default class MTPNetworker { }; } - public getDecryptedMessage(msgKey: Uint8Array, encryptedData: Uint8Array): Promise { + private getDecryptedMessage(msgKey: Uint8Array, encryptedData: Uint8Array): Promise { // this.log('get decrypted start') return this.getAesKeyIv(msgKey, false).then((keyIv) => { // this.log('after msg key iv') @@ -995,7 +1009,7 @@ export default class MTPNetworker { }); } - public getEncryptedOutput(message: MTMessage) { + private getEncryptedOutput(message: MTMessage) { /* if(DEBUG) { this.log.debug('Send encrypted', message, this.authKeyId); } */ @@ -1088,7 +1102,7 @@ export default class MTPNetworker { }); } - public sendEncryptedRequest(message: MTMessage) { + private sendEncryptedRequest(message: MTMessage) { return this.getEncryptedOutput(message).then(requestData => { this.debug && this.log.debug('sendEncryptedRequest: launching message into space:', message, [message.msg_id].concat(message.inner || [])); @@ -1242,7 +1256,7 @@ export default class MTPNetworker { }); } - public applyServerSalt(newServerSalt: string) { + private applyServerSalt(newServerSalt: string) { const serverSalt = longToBytes(newServerSalt); sessionStorage.set({ @@ -1313,7 +1327,7 @@ export default class MTPNetworker { } } - public ackMessage(msgId: string) { + private ackMessage(msgId: string) { // this.log('ack message', msgID) this.pendingAcks.push(msgId); @@ -1324,7 +1338,7 @@ export default class MTPNetworker { /// #endif } - public reqResendMessage(msgId: string) { + private reqResendMessage(msgId: string) { if(this.debug) { this.log.debug('Req resend', msgId); } @@ -1361,7 +1375,7 @@ export default class MTPNetworker { return !notEmpty; } - public processMessageAck(messageId: string) { + private processMessageAck(messageId: string) { const sentMessage = this.sentMessages[messageId]; if(sentMessage && !sentMessage.acked) { //delete sentMessage.body; @@ -1369,7 +1383,7 @@ export default class MTPNetworker { } } - public processError(rawError: {error_message: string, error_code: number}) { + private processError(rawError: {error_message: string, error_code: number}) { const matches = (rawError.error_message || '').match(/^([A-Z_0-9]+\b)(: (.+))?/) || []; rawError.error_code = rawError.error_code; @@ -1518,7 +1532,6 @@ export default class MTPNetworker { break; } - case 'new_session_created': { this.ackMessage(messageId); diff --git a/src/lib/mtproto/networkerFactory.ts b/src/lib/mtproto/networkerFactory.ts index c7c522c2..f25eafd1 100644 --- a/src/lib/mtproto/networkerFactory.ts +++ b/src/lib/mtproto/networkerFactory.ts @@ -14,6 +14,7 @@ import { ConnectionStatusChange, InvokeApiOptions } from "../../types"; import MTTransport from "./transports/transport"; export class NetworkerFactory { + private networkers: MTPNetworker[] = []; public updatesProcessor: (obj: any) => void = null; public onConnectionStatusChange: (info: ConnectionStatusChange) => void = null; public akStopped = false; @@ -24,13 +25,21 @@ export class NetworkerFactory { public getNetworker(dcId: number, authKey: number[], authKeyID: Uint8Array, serverSalt: number[], transport: MTTransport, options: InvokeApiOptions) { //console.log('NetworkerFactory: creating new instance of MTPNetworker:', dcId, options); - return new MTPNetworker(dcId, authKey, authKeyID, serverSalt, transport, options); + const networker = new MTPNetworker(dcId, authKey, authKeyID, serverSalt, transport, options); + this.networkers.push(networker); + return networker; } public startAll() { if(this.akStopped) { + const stoppedNetworkers = this.networkers.filter(networker => networker.isStopped()); + this.akStopped = false; this.updatesProcessor && this.updatesProcessor({_: 'new_session_created'}); + + for(const networker of stoppedNetworkers) { + networker.scheduleRequest(); + } } } diff --git a/src/lib/mtproto/singleInstance.ts b/src/lib/mtproto/singleInstance.ts index 08ce5210..1e4b5852 100644 --- a/src/lib/mtproto/singleInstance.ts +++ b/src/lib/mtproto/singleInstance.ts @@ -3,6 +3,7 @@ import { nextRandomInt } from "../../helpers/random"; import { logger } from "../logger"; import rootScope from "../rootScope"; import sessionStorage from "../sessionStorage"; +import apiManager from "./mtprotoworker"; export type AppInstance = { id: number, @@ -10,23 +11,28 @@ export type AppInstance = { time: number }; +const CHECK_INSTANCE_INTERVAL = 5000; +const DEACTIVATE_TIMEOUT = 30000; +const MULTIPLE_TABS_THRESHOLD = 20000; + export class SingleInstance { - private instanceID = nextRandomInt(0xFFFFFFFF); - private started = false; - private masterInstance = false; - private deactivateTimeout: number = 0; - private deactivated = false; - private initial = false; - private log = logger('SI'); + private instanceID: number; + private started: boolean; + private masterInstance: boolean; + private deactivateTimeout: number; + private deactivated: boolean; + private initial: boolean; + private log = logger('INSTANCE'); public start() { if(!this.started/* && !Config.Navigator.mobile && !Config.Modes.packed */) { - this.started = true + this.started = true; + this.reset(); //IdleManager.start(); rootScope.addEventListener('idle', this.checkInstance); - setInterval(this.checkInstance, 5000); + setInterval(this.checkInstance, CHECK_INSTANCE_INTERVAL); this.checkInstance(); try { @@ -35,12 +41,21 @@ export class SingleInstance { } } - public clearInstance() { + public reset() { + this.instanceID = nextRandomInt(0xFFFFFFFF); + this.masterInstance = false; + if(this.deactivateTimeout) clearTimeout(this.deactivateTimeout); + this.deactivateTimeout = 0; + this.deactivated = false; + this.initial = false; + } + + public clearInstance = () => { if(this.masterInstance && !this.deactivated) { this.log.warn('clear master instance'); sessionStorage.delete('xt_instance'); } - } + }; public deactivateInstance = () => { if(this.masterInstance || this.deactivated) { @@ -56,30 +71,31 @@ export class SingleInstance { //document.title = _('inactive_tab_title_raw') rootScope.idle.deactivated = true; + rootScope.dispatchEvent('instance_deactivated'); }; - public checkInstance = () => { + public checkInstance = (idle = rootScope.idle && rootScope.idle.isIDLE) => { if(this.deactivated) { return false; } const time = Date.now(); - const idle = rootScope.idle && rootScope.idle.isIDLE; const newInstance: AppInstance = { id: this.instanceID, idle, time }; - sessionStorage.get('xt_instance').then((curInstance: AppInstance) => { - // console.log(dT(), 'check instance', newInstance, curInstance) + sessionStorage.get('xt_instance', false).then((curInstance: AppInstance) => { + // this.log('check instance', newInstance, curInstance) if(!idle || !curInstance || - curInstance.id == this.instanceID || - curInstance.time < time - 20000) { + curInstance.id === this.instanceID || + curInstance.time < (time - MULTIPLE_TABS_THRESHOLD)) { sessionStorage.set({xt_instance: newInstance}); + if(!this.masterInstance) { - //MtpNetworkerFactory.startAll(); + apiManager.startAll(); if(!this.initial) { this.initial = true; } else { @@ -95,10 +111,10 @@ export class SingleInstance { } } else { if(this.masterInstance) { - //MtpNetworkerFactory.stopAll(); + apiManager.stopAll(); this.log.warn('now idle instance', newInstance); if(!this.deactivateTimeout) { - this.deactivateTimeout = window.setTimeout(this.deactivateInstance, 30000); + this.deactivateTimeout = window.setTimeout(this.deactivateInstance, DEACTIVATE_TIMEOUT); } this.masterInstance = false; diff --git a/src/lib/mtproto/transports/tcpObfuscated.ts b/src/lib/mtproto/transports/tcpObfuscated.ts index 8a83d96b..996f3297 100644 --- a/src/lib/mtproto/transports/tcpObfuscated.ts +++ b/src/lib/mtproto/transports/tcpObfuscated.ts @@ -28,11 +28,16 @@ export default class TcpObfuscated implements MTTransport { private log: ReturnType; public connected = false; private lastCloseTime: number; - public connection: MTConnection; + private connection: MTConnection; //private debugPayloads: MTPNetworker['debugRequests'] = []; - constructor(private Connection: MTConnectionConstructable, private dcId: number, private url: string, private logSuffix: string, public retryTimeout: number) { + constructor(private Connection: MTConnectionConstructable, + private dcId: number, + private url: string, + private logSuffix: string, + private retryTimeout: number + ) { let logTypes = LogTypes.Error | LogTypes.Log; if(this.debug) logTypes |= LogTypes.Debug; this.log = logger(`TCP-${dcId}` + logSuffix, logTypes); @@ -115,7 +120,7 @@ export default class TcpObfuscated implements MTTransport { const needTimeout = !isNaN(diff) && diff < this.retryTimeout ? this.retryTimeout - diff : 0; if(this.networker) { - this.networker.setConnectionStatus(false); + this.networker.setConnectionStatus(false, needTimeout); this.pending.length = 0; } diff --git a/src/lib/richtextprocessor.ts b/src/lib/richtextprocessor.ts index b768bcbe..efc50028 100644 --- a/src/lib/richtextprocessor.ts +++ b/src/lib/richtextprocessor.ts @@ -106,7 +106,8 @@ const markdownEntities: {[markdown: string]: MessageEntity['_']} = { const passConflictingEntities: Set = new Set([ 'messageEntityEmoji', - 'messageEntityLinebreak' + 'messageEntityLinebreak', + 'messageEntityCaret' ]); for(let i in markdownEntities) { passConflictingEntities.add(markdownEntities[i]); @@ -116,19 +117,20 @@ namespace RichTextProcessor { export const emojiSupported = navigator.userAgent.search(/OS X|iPhone|iPad|iOS/i) !== -1/* && false *//* || true */; export function getEmojiSpritesheetCoords(emojiCode: string) { - let unified = encodeEmoji(emojiCode)/* .replace(/(-fe0f|fe0f)/g, '') */; + let unified = encodeEmoji(emojiCode); if(unified === '1f441-200d-1f5e8') { - unified = '1f441-fe0f-200d-1f5e8-fe0f'; + //unified = '1f441-fe0f-200d-1f5e8-fe0f'; + unified = '1f441-fe0f-200d-1f5e8'; } - if(!emojiData.hasOwnProperty(unified)/* && !emojiData.hasOwnProperty(unified.replace(/(-fe0f|fe0f)/g, '')) */) { + if(!emojiData.hasOwnProperty(unified) && !emojiData.hasOwnProperty(unified.replace(/-?fe0f$/, ''))/* && !emojiData.hasOwnProperty(unified.replace(/(-fe0f|fe0f)/g, '')) */) { //if(!emojiData.hasOwnProperty(emojiCode) && !emojiData.hasOwnProperty(emojiCode.replace(/[\ufe0f\u200d]/g, ''))) { //console.error('lol', unified); return null; } - return unified.replace(/(-fe0f|fe0f)/g, ''); + return unified.replace(/-?fe0f/g, ''); } export function parseEntities(text: string) { @@ -138,6 +140,7 @@ namespace RichTextProcessor { let matchIndex; let rawOffset = 0; // var start = tsNow() + fullRegExp.lastIndex = 0; while((match = raw.match(fullRegExp))) { matchIndex = rawOffset + match.index; @@ -540,6 +543,11 @@ namespace RichTextProcessor { break; } + + case 'messageEntityCaret': { + insertPart(entity, ''); + break; + } /* case 'messageEntityLinebreak': { if(options.noLinebreaks) { @@ -587,7 +595,7 @@ namespace RichTextProcessor { const target = (currentContext || typeof electronHelpers !== 'undefined') ? '' : ' target="_blank" rel="noopener noreferrer"'; - insertPart(entity, ``, ''); + insertPart(entity, ``, ''); } break; @@ -714,6 +722,7 @@ namespace RichTextProcessor { var raw = text; var text: any = [], emojiTitle; + fullRegExp.lastIndex = 0; while((match = raw.match(fullRegExp))) { text.push(raw.substr(0, match.index)) if(match[8]) { diff --git a/src/lib/rootScope.ts b/src/lib/rootScope.ts index 2840054e..7302ebfe 100644 --- a/src/lib/rootScope.ts +++ b/src/lib/rootScope.ts @@ -111,6 +111,8 @@ export type BroadcastEvents = { 'language_change': void, 'theme_change': void, + + 'instance_deactivated': void }; export class RootScope extends EventListenerBase<{ diff --git a/src/lib/searchIndex.ts b/src/lib/searchIndex.ts index a65fb07d..e56ecdd3 100644 --- a/src/lib/searchIndex.ts +++ b/src/lib/searchIndex.ts @@ -14,12 +14,16 @@ import cleanSearchText from '../helpers/cleanSearchText'; export default class SearchIndex { private fullTexts: Map = new Map(); + constructor(private cleanText = true, private latinize = true) { + + } + public indexObject(id: SearchWhat, searchText: string) { /* if(searchIndex.fullTexts.hasOwnProperty(id)) { return false; } */ - if(searchText.trim()) { + if(searchText.trim() && this.cleanText) { searchText = cleanSearchText(searchText); } @@ -49,7 +53,9 @@ export default class SearchIndex { const fullTexts = this.fullTexts; //const shortIndexes = searchIndex.shortIndexes; - query = cleanSearchText(query); + if(this.cleanText) { + query = cleanSearchText(query, this.latinize); + } const newFoundObjs: Array<{fullText: string, what: SearchWhat}> = []; const queryWords = query.split(' '); diff --git a/src/lib/storage.ts b/src/lib/storage.ts index 3becac92..07e9340c 100644 --- a/src/lib/storage.ts +++ b/src/lib/storage.ts @@ -143,8 +143,8 @@ export default class AppStorage/* Storage ex return this.cache[key] = value; } - public async get(key: keyof Storage): Promise { - if(this.cache.hasOwnProperty(key)) { + public async get(key: keyof Storage, useCache = true): Promise { + if(this.cache.hasOwnProperty(key) && useCache) { return this.getFromCache(key); } else if(this.useStorage) { const r = this.getPromises.get(key); diff --git a/src/lib/storages/dialogs.ts b/src/lib/storages/dialogs.ts index 768023e9..5bf48a61 100644 --- a/src/lib/storages/dialogs.ts +++ b/src/lib/storages/dialogs.ts @@ -133,6 +133,10 @@ export default class DialogsStorage { this.dialogsNum = 0; } + public resetPinnedOrder(folderId: number) { + this.pinnedOrders[folderId] = []; + } + public getOffsetDate(folderId: number) { return this.dialogsOffsetDate[folderId] || 0; } diff --git a/src/scripts/format_jsons.js b/src/scripts/format_jsons.js index 09d36282..81a9f6e5 100644 --- a/src/scripts/format_jsons.js +++ b/src/scripts/format_jsons.js @@ -12,6 +12,10 @@ let countries = require('fs').readFileSync('./in/countries.dat').toString(); //console.log(emoji, countries); +const path = process.argv[2]; +const writePathTo = (/* path || */__dirname + '/out/'); +console.log('Writing to:', writePathTo); + let formatted = emoji.filter(e => e.has_img_apple); function encodeEmoji(emojiText) { @@ -150,6 +154,7 @@ if(false) { emoji = encodeEmoji(emoji); //emoji = emoji.replace(/(-fe0f|fe0f)/g, ''); + emoji = emoji.replace(/-?fe0f$/, ''); let c = categories[category] === undefined ? 9 : categories[category]; //obj[emoji] = '' + c + sort_order; @@ -159,7 +164,7 @@ if(false) { console.log(obj); - require('fs').writeFileSync('./out/emoji.json', JSON.stringify(obj)); + require('fs').writeFileSync(writePathTo + 'emoji.json', JSON.stringify(obj)); } /* { @@ -209,5 +214,5 @@ if(false) { //console.log(item); }); - require('fs').writeFileSync('./out/countries.json', JSON.stringify(arr)); + require('fs').writeFileSync(writePathTo + 'countries.json', JSON.stringify(arr)); } diff --git a/src/scripts/in/emoji_pretty.json b/src/scripts/in/emoji_pretty.json index 240474c1..119cb0ee 100644 --- a/src/scripts/in/emoji_pretty.json +++ b/src/scripts/in/emoji_pretty.json @@ -17,15 +17,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 132, - "added_in": "0.0", + "subcategory": "keycap", + "sort_order": 1456, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, { - "name": null, + "name": "KEYCAP: *", "unified": "002A-FE0F-20E3", "non_qualified": "002A-20E3", "docomo": null, @@ -42,8 +43,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 133, - "added_in": "0.0", + "subcategory": "keycap", + "sort_order": 1457, + "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -67,8 +69,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 134, - "added_in": "0.0", + "subcategory": "keycap", + "sort_order": 1458, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -92,8 +95,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 135, - "added_in": "0.0", + "subcategory": "keycap", + "sort_order": 1459, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -117,8 +121,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 136, - "added_in": "0.0", + "subcategory": "keycap", + "sort_order": 1460, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -142,8 +147,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 137, - "added_in": "0.0", + "subcategory": "keycap", + "sort_order": 1461, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -167,8 +173,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 138, - "added_in": "0.0", + "subcategory": "keycap", + "sort_order": 1462, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -192,8 +199,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 139, - "added_in": "0.0", + "subcategory": "keycap", + "sort_order": 1463, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -217,8 +225,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 140, - "added_in": "0.0", + "subcategory": "keycap", + "sort_order": 1464, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -242,8 +251,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 141, - "added_in": "0.0", + "subcategory": "keycap", + "sort_order": 1465, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -267,8 +277,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 142, - "added_in": "0.0", + "subcategory": "keycap", + "sort_order": 1466, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -292,8 +303,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 143, - "added_in": "0.0", + "subcategory": "keycap", + "sort_order": 1467, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -317,8 +329,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 129, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1453, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -342,8 +355,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 130, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1454, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -367,8 +381,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 73, - "added_in": "2.0", + "subcategory": "game", + "sort_order": 1063, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -392,8 +407,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 72, - "added_in": "2.0", + "subcategory": "game", + "sort_order": 1062, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -417,8 +433,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 150, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1474, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -442,8 +459,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 152, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1476, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -467,8 +485,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 161, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1485, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -492,8 +511,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 163, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1487, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -517,8 +537,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 151, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1475, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -542,8 +563,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 153, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1477, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -567,8 +589,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 154, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1478, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -592,8 +615,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 155, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1479, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -617,8 +641,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 157, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1481, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -642,8 +667,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 159, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1483, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -667,8 +693,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 160, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1484, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -692,8 +719,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 162, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1486, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -717,8 +745,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 164, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1488, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -742,8 +771,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 165, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1489, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -767,8 +797,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 166, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1490, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -792,7 +823,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 8, + "subcategory": "country-flag", + "sort_order": 1550, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -817,7 +849,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 9, + "subcategory": "country-flag", + "sort_order": 1551, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -842,7 +875,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 10, + "subcategory": "country-flag", + "sort_order": 1552, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -867,7 +901,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 11, + "subcategory": "country-flag", + "sort_order": 1553, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -892,7 +927,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 12, + "subcategory": "country-flag", + "sort_order": 1554, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -917,7 +953,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 13, + "subcategory": "country-flag", + "sort_order": 1555, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -942,7 +979,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 14, + "subcategory": "country-flag", + "sort_order": 1556, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -967,7 +1005,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 15, + "subcategory": "country-flag", + "sort_order": 1557, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -992,7 +1031,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 16, + "subcategory": "country-flag", + "sort_order": 1558, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1017,7 +1057,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 17, + "subcategory": "country-flag", + "sort_order": 1559, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1042,7 +1083,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 18, + "subcategory": "country-flag", + "sort_order": 1560, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1067,7 +1109,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 19, + "subcategory": "country-flag", + "sort_order": 1561, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1092,7 +1135,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 20, + "subcategory": "country-flag", + "sort_order": 1562, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1117,7 +1161,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 21, + "subcategory": "country-flag", + "sort_order": 1563, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1142,7 +1187,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 22, + "subcategory": "country-flag", + "sort_order": 1564, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1167,7 +1213,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 23, + "subcategory": "country-flag", + "sort_order": 1565, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1192,7 +1239,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 24, + "subcategory": "country-flag", + "sort_order": 1566, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1217,7 +1265,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 25, + "subcategory": "country-flag", + "sort_order": 1567, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1242,7 +1291,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 26, + "subcategory": "country-flag", + "sort_order": 1568, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1267,7 +1317,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 27, + "subcategory": "country-flag", + "sort_order": 1569, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1292,7 +1343,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 28, + "subcategory": "country-flag", + "sort_order": 1570, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1317,7 +1369,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 29, + "subcategory": "country-flag", + "sort_order": 1571, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1342,7 +1395,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 30, + "subcategory": "country-flag", + "sort_order": 1572, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1367,7 +1421,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 31, + "subcategory": "country-flag", + "sort_order": 1573, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1392,7 +1447,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 32, + "subcategory": "country-flag", + "sort_order": 1574, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1417,7 +1473,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 33, + "subcategory": "country-flag", + "sort_order": 1575, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1433,8 +1490,8 @@ "softbank": null, "google": null, "image": "1f1e7-1f1f1.png", - "sheet_x": 1, - "sheet_y": 0, + "sheet_x": 0, + "sheet_y": 57, "short_name": "flag-bl", "short_names": [ "flag-bl" @@ -1442,7 +1499,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 34, + "subcategory": "country-flag", + "sort_order": 1576, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1459,7 +1517,7 @@ "google": null, "image": "1f1e7-1f1f2.png", "sheet_x": 1, - "sheet_y": 1, + "sheet_y": 0, "short_name": "flag-bm", "short_names": [ "flag-bm" @@ -1467,7 +1525,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 35, + "subcategory": "country-flag", + "sort_order": 1577, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1484,7 +1543,7 @@ "google": null, "image": "1f1e7-1f1f3.png", "sheet_x": 1, - "sheet_y": 2, + "sheet_y": 1, "short_name": "flag-bn", "short_names": [ "flag-bn" @@ -1492,7 +1551,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 36, + "subcategory": "country-flag", + "sort_order": 1578, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1509,7 +1569,7 @@ "google": null, "image": "1f1e7-1f1f4.png", "sheet_x": 1, - "sheet_y": 3, + "sheet_y": 2, "short_name": "flag-bo", "short_names": [ "flag-bo" @@ -1517,7 +1577,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 37, + "subcategory": "country-flag", + "sort_order": 1579, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1534,7 +1595,7 @@ "google": null, "image": "1f1e7-1f1f6.png", "sheet_x": 1, - "sheet_y": 4, + "sheet_y": 3, "short_name": "flag-bq", "short_names": [ "flag-bq" @@ -1542,7 +1603,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 38, + "subcategory": "country-flag", + "sort_order": 1580, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1559,7 +1621,7 @@ "google": null, "image": "1f1e7-1f1f7.png", "sheet_x": 1, - "sheet_y": 5, + "sheet_y": 4, "short_name": "flag-br", "short_names": [ "flag-br" @@ -1567,7 +1629,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 39, + "subcategory": "country-flag", + "sort_order": 1581, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1584,7 +1647,7 @@ "google": null, "image": "1f1e7-1f1f8.png", "sheet_x": 1, - "sheet_y": 6, + "sheet_y": 5, "short_name": "flag-bs", "short_names": [ "flag-bs" @@ -1592,7 +1655,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 40, + "subcategory": "country-flag", + "sort_order": 1582, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1609,7 +1673,7 @@ "google": null, "image": "1f1e7-1f1f9.png", "sheet_x": 1, - "sheet_y": 7, + "sheet_y": 6, "short_name": "flag-bt", "short_names": [ "flag-bt" @@ -1617,7 +1681,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 41, + "subcategory": "country-flag", + "sort_order": 1583, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1634,7 +1699,7 @@ "google": null, "image": "1f1e7-1f1fb.png", "sheet_x": 1, - "sheet_y": 8, + "sheet_y": 7, "short_name": "flag-bv", "short_names": [ "flag-bv" @@ -1642,7 +1707,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 42, + "subcategory": "country-flag", + "sort_order": 1584, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1659,7 +1725,7 @@ "google": null, "image": "1f1e7-1f1fc.png", "sheet_x": 1, - "sheet_y": 9, + "sheet_y": 8, "short_name": "flag-bw", "short_names": [ "flag-bw" @@ -1667,7 +1733,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 43, + "subcategory": "country-flag", + "sort_order": 1585, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1684,7 +1751,7 @@ "google": null, "image": "1f1e7-1f1fe.png", "sheet_x": 1, - "sheet_y": 10, + "sheet_y": 9, "short_name": "flag-by", "short_names": [ "flag-by" @@ -1692,7 +1759,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 44, + "subcategory": "country-flag", + "sort_order": 1586, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1709,7 +1777,7 @@ "google": null, "image": "1f1e7-1f1ff.png", "sheet_x": 1, - "sheet_y": 11, + "sheet_y": 10, "short_name": "flag-bz", "short_names": [ "flag-bz" @@ -1717,7 +1785,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 45, + "subcategory": "country-flag", + "sort_order": 1587, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1734,7 +1803,7 @@ "google": null, "image": "1f1e8-1f1e6.png", "sheet_x": 1, - "sheet_y": 12, + "sheet_y": 11, "short_name": "flag-ca", "short_names": [ "flag-ca" @@ -1742,7 +1811,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 46, + "subcategory": "country-flag", + "sort_order": 1588, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1759,7 +1829,7 @@ "google": null, "image": "1f1e8-1f1e8.png", "sheet_x": 1, - "sheet_y": 13, + "sheet_y": 12, "short_name": "flag-cc", "short_names": [ "flag-cc" @@ -1767,7 +1837,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 47, + "subcategory": "country-flag", + "sort_order": 1589, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1784,7 +1855,7 @@ "google": null, "image": "1f1e8-1f1e9.png", "sheet_x": 1, - "sheet_y": 14, + "sheet_y": 13, "short_name": "flag-cd", "short_names": [ "flag-cd" @@ -1792,7 +1863,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 48, + "subcategory": "country-flag", + "sort_order": 1590, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1809,7 +1881,7 @@ "google": null, "image": "1f1e8-1f1eb.png", "sheet_x": 1, - "sheet_y": 15, + "sheet_y": 14, "short_name": "flag-cf", "short_names": [ "flag-cf" @@ -1817,7 +1889,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 49, + "subcategory": "country-flag", + "sort_order": 1591, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1834,7 +1907,7 @@ "google": null, "image": "1f1e8-1f1ec.png", "sheet_x": 1, - "sheet_y": 16, + "sheet_y": 15, "short_name": "flag-cg", "short_names": [ "flag-cg" @@ -1842,7 +1915,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 50, + "subcategory": "country-flag", + "sort_order": 1592, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1859,7 +1933,7 @@ "google": null, "image": "1f1e8-1f1ed.png", "sheet_x": 1, - "sheet_y": 17, + "sheet_y": 16, "short_name": "flag-ch", "short_names": [ "flag-ch" @@ -1867,7 +1941,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 51, + "subcategory": "country-flag", + "sort_order": 1593, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1884,7 +1959,7 @@ "google": null, "image": "1f1e8-1f1ee.png", "sheet_x": 1, - "sheet_y": 18, + "sheet_y": 17, "short_name": "flag-ci", "short_names": [ "flag-ci" @@ -1892,7 +1967,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 52, + "subcategory": "country-flag", + "sort_order": 1594, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1909,7 +1985,7 @@ "google": null, "image": "1f1e8-1f1f0.png", "sheet_x": 1, - "sheet_y": 19, + "sheet_y": 18, "short_name": "flag-ck", "short_names": [ "flag-ck" @@ -1917,7 +1993,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 53, + "subcategory": "country-flag", + "sort_order": 1595, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1934,7 +2011,7 @@ "google": null, "image": "1f1e8-1f1f1.png", "sheet_x": 1, - "sheet_y": 20, + "sheet_y": 19, "short_name": "flag-cl", "short_names": [ "flag-cl" @@ -1942,7 +2019,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 54, + "subcategory": "country-flag", + "sort_order": 1596, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1959,7 +2037,7 @@ "google": null, "image": "1f1e8-1f1f2.png", "sheet_x": 1, - "sheet_y": 21, + "sheet_y": 20, "short_name": "flag-cm", "short_names": [ "flag-cm" @@ -1967,7 +2045,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 55, + "subcategory": "country-flag", + "sort_order": 1597, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -1984,7 +2063,7 @@ "google": "FE4ED", "image": "1f1e8-1f1f3.png", "sheet_x": 1, - "sheet_y": 22, + "sheet_y": 21, "short_name": "cn", "short_names": [ "cn", @@ -1993,8 +2072,9 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 56, - "added_in": "2.0", + "subcategory": "country-flag", + "sort_order": 1598, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -2010,7 +2090,7 @@ "google": null, "image": "1f1e8-1f1f4.png", "sheet_x": 1, - "sheet_y": 23, + "sheet_y": 22, "short_name": "flag-co", "short_names": [ "flag-co" @@ -2018,7 +2098,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 57, + "subcategory": "country-flag", + "sort_order": 1599, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2035,7 +2116,7 @@ "google": null, "image": "1f1e8-1f1f5.png", "sheet_x": 1, - "sheet_y": 24, + "sheet_y": 23, "short_name": "flag-cp", "short_names": [ "flag-cp" @@ -2043,7 +2124,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 58, + "subcategory": "country-flag", + "sort_order": 1600, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2060,7 +2142,7 @@ "google": null, "image": "1f1e8-1f1f7.png", "sheet_x": 1, - "sheet_y": 25, + "sheet_y": 24, "short_name": "flag-cr", "short_names": [ "flag-cr" @@ -2068,7 +2150,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 59, + "subcategory": "country-flag", + "sort_order": 1601, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2085,7 +2168,7 @@ "google": null, "image": "1f1e8-1f1fa.png", "sheet_x": 1, - "sheet_y": 26, + "sheet_y": 25, "short_name": "flag-cu", "short_names": [ "flag-cu" @@ -2093,7 +2176,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 60, + "subcategory": "country-flag", + "sort_order": 1602, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2110,7 +2194,7 @@ "google": null, "image": "1f1e8-1f1fb.png", "sheet_x": 1, - "sheet_y": 27, + "sheet_y": 26, "short_name": "flag-cv", "short_names": [ "flag-cv" @@ -2118,7 +2202,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 61, + "subcategory": "country-flag", + "sort_order": 1603, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2135,7 +2220,7 @@ "google": null, "image": "1f1e8-1f1fc.png", "sheet_x": 1, - "sheet_y": 28, + "sheet_y": 27, "short_name": "flag-cw", "short_names": [ "flag-cw" @@ -2143,7 +2228,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 62, + "subcategory": "country-flag", + "sort_order": 1604, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2160,7 +2246,7 @@ "google": null, "image": "1f1e8-1f1fd.png", "sheet_x": 1, - "sheet_y": 29, + "sheet_y": 28, "short_name": "flag-cx", "short_names": [ "flag-cx" @@ -2168,7 +2254,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 63, + "subcategory": "country-flag", + "sort_order": 1605, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2185,7 +2272,7 @@ "google": null, "image": "1f1e8-1f1fe.png", "sheet_x": 1, - "sheet_y": 30, + "sheet_y": 29, "short_name": "flag-cy", "short_names": [ "flag-cy" @@ -2193,7 +2280,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 64, + "subcategory": "country-flag", + "sort_order": 1606, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2210,7 +2298,7 @@ "google": null, "image": "1f1e8-1f1ff.png", "sheet_x": 1, - "sheet_y": 31, + "sheet_y": 30, "short_name": "flag-cz", "short_names": [ "flag-cz" @@ -2218,7 +2306,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 65, + "subcategory": "country-flag", + "sort_order": 1607, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2235,7 +2324,7 @@ "google": "FE4E8", "image": "1f1e9-1f1ea.png", "sheet_x": 1, - "sheet_y": 32, + "sheet_y": 31, "short_name": "de", "short_names": [ "de", @@ -2244,8 +2333,9 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 66, - "added_in": "2.0", + "subcategory": "country-flag", + "sort_order": 1608, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -2261,7 +2351,7 @@ "google": null, "image": "1f1e9-1f1ec.png", "sheet_x": 1, - "sheet_y": 33, + "sheet_y": 32, "short_name": "flag-dg", "short_names": [ "flag-dg" @@ -2269,7 +2359,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 67, + "subcategory": "country-flag", + "sort_order": 1609, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2286,7 +2377,7 @@ "google": null, "image": "1f1e9-1f1ef.png", "sheet_x": 1, - "sheet_y": 34, + "sheet_y": 33, "short_name": "flag-dj", "short_names": [ "flag-dj" @@ -2294,7 +2385,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 68, + "subcategory": "country-flag", + "sort_order": 1610, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2311,7 +2403,7 @@ "google": null, "image": "1f1e9-1f1f0.png", "sheet_x": 1, - "sheet_y": 35, + "sheet_y": 34, "short_name": "flag-dk", "short_names": [ "flag-dk" @@ -2319,7 +2411,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 69, + "subcategory": "country-flag", + "sort_order": 1611, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2336,7 +2429,7 @@ "google": null, "image": "1f1e9-1f1f2.png", "sheet_x": 1, - "sheet_y": 36, + "sheet_y": 35, "short_name": "flag-dm", "short_names": [ "flag-dm" @@ -2344,7 +2437,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 70, + "subcategory": "country-flag", + "sort_order": 1612, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2361,7 +2455,7 @@ "google": null, "image": "1f1e9-1f1f4.png", "sheet_x": 1, - "sheet_y": 37, + "sheet_y": 36, "short_name": "flag-do", "short_names": [ "flag-do" @@ -2369,7 +2463,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 71, + "subcategory": "country-flag", + "sort_order": 1613, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2386,7 +2481,7 @@ "google": null, "image": "1f1e9-1f1ff.png", "sheet_x": 1, - "sheet_y": 38, + "sheet_y": 37, "short_name": "flag-dz", "short_names": [ "flag-dz" @@ -2394,7 +2489,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 72, + "subcategory": "country-flag", + "sort_order": 1614, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2411,7 +2507,7 @@ "google": null, "image": "1f1ea-1f1e6.png", "sheet_x": 1, - "sheet_y": 39, + "sheet_y": 38, "short_name": "flag-ea", "short_names": [ "flag-ea" @@ -2419,7 +2515,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 73, + "subcategory": "country-flag", + "sort_order": 1615, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2436,7 +2533,7 @@ "google": null, "image": "1f1ea-1f1e8.png", "sheet_x": 1, - "sheet_y": 40, + "sheet_y": 39, "short_name": "flag-ec", "short_names": [ "flag-ec" @@ -2444,7 +2541,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 74, + "subcategory": "country-flag", + "sort_order": 1616, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2461,7 +2559,7 @@ "google": null, "image": "1f1ea-1f1ea.png", "sheet_x": 1, - "sheet_y": 41, + "sheet_y": 40, "short_name": "flag-ee", "short_names": [ "flag-ee" @@ -2469,7 +2567,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 75, + "subcategory": "country-flag", + "sort_order": 1617, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2486,7 +2585,7 @@ "google": null, "image": "1f1ea-1f1ec.png", "sheet_x": 1, - "sheet_y": 42, + "sheet_y": 41, "short_name": "flag-eg", "short_names": [ "flag-eg" @@ -2494,7 +2593,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 76, + "subcategory": "country-flag", + "sort_order": 1618, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2511,7 +2611,7 @@ "google": null, "image": "1f1ea-1f1ed.png", "sheet_x": 1, - "sheet_y": 43, + "sheet_y": 42, "short_name": "flag-eh", "short_names": [ "flag-eh" @@ -2519,7 +2619,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 77, + "subcategory": "country-flag", + "sort_order": 1619, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2536,7 +2637,7 @@ "google": null, "image": "1f1ea-1f1f7.png", "sheet_x": 1, - "sheet_y": 44, + "sheet_y": 43, "short_name": "flag-er", "short_names": [ "flag-er" @@ -2544,7 +2645,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 78, + "subcategory": "country-flag", + "sort_order": 1620, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2561,7 +2663,7 @@ "google": "FE4EB", "image": "1f1ea-1f1f8.png", "sheet_x": 1, - "sheet_y": 45, + "sheet_y": 44, "short_name": "es", "short_names": [ "es", @@ -2570,8 +2672,9 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 79, - "added_in": "2.0", + "subcategory": "country-flag", + "sort_order": 1621, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -2587,7 +2690,7 @@ "google": null, "image": "1f1ea-1f1f9.png", "sheet_x": 1, - "sheet_y": 46, + "sheet_y": 45, "short_name": "flag-et", "short_names": [ "flag-et" @@ -2595,7 +2698,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 80, + "subcategory": "country-flag", + "sort_order": 1622, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2612,7 +2716,7 @@ "google": null, "image": "1f1ea-1f1fa.png", "sheet_x": 1, - "sheet_y": 47, + "sheet_y": 46, "short_name": "flag-eu", "short_names": [ "flag-eu" @@ -2620,7 +2724,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 81, + "subcategory": "country-flag", + "sort_order": 1623, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2637,7 +2742,7 @@ "google": null, "image": "1f1eb-1f1ee.png", "sheet_x": 1, - "sheet_y": 48, + "sheet_y": 47, "short_name": "flag-fi", "short_names": [ "flag-fi" @@ -2645,7 +2750,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 82, + "subcategory": "country-flag", + "sort_order": 1624, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2662,7 +2768,7 @@ "google": null, "image": "1f1eb-1f1ef.png", "sheet_x": 1, - "sheet_y": 49, + "sheet_y": 48, "short_name": "flag-fj", "short_names": [ "flag-fj" @@ -2670,7 +2776,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 83, + "subcategory": "country-flag", + "sort_order": 1625, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2687,7 +2794,7 @@ "google": null, "image": "1f1eb-1f1f0.png", "sheet_x": 1, - "sheet_y": 50, + "sheet_y": 49, "short_name": "flag-fk", "short_names": [ "flag-fk" @@ -2695,7 +2802,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 84, + "subcategory": "country-flag", + "sort_order": 1626, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2712,7 +2820,7 @@ "google": null, "image": "1f1eb-1f1f2.png", "sheet_x": 1, - "sheet_y": 51, + "sheet_y": 50, "short_name": "flag-fm", "short_names": [ "flag-fm" @@ -2720,7 +2828,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 85, + "subcategory": "country-flag", + "sort_order": 1627, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2737,7 +2846,7 @@ "google": null, "image": "1f1eb-1f1f4.png", "sheet_x": 1, - "sheet_y": 52, + "sheet_y": 51, "short_name": "flag-fo", "short_names": [ "flag-fo" @@ -2745,7 +2854,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 86, + "subcategory": "country-flag", + "sort_order": 1628, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2762,7 +2872,7 @@ "google": "FE4E7", "image": "1f1eb-1f1f7.png", "sheet_x": 1, - "sheet_y": 53, + "sheet_y": 52, "short_name": "fr", "short_names": [ "fr", @@ -2771,8 +2881,9 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 87, - "added_in": "2.0", + "subcategory": "country-flag", + "sort_order": 1629, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -2788,7 +2899,7 @@ "google": null, "image": "1f1ec-1f1e6.png", "sheet_x": 1, - "sheet_y": 54, + "sheet_y": 53, "short_name": "flag-ga", "short_names": [ "flag-ga" @@ -2796,7 +2907,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 88, + "subcategory": "country-flag", + "sort_order": 1630, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2813,7 +2925,7 @@ "google": "FE4EA", "image": "1f1ec-1f1e7.png", "sheet_x": 1, - "sheet_y": 55, + "sheet_y": 54, "short_name": "gb", "short_names": [ "gb", @@ -2823,8 +2935,9 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 89, - "added_in": "2.0", + "subcategory": "country-flag", + "sort_order": 1631, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -2840,7 +2953,7 @@ "google": null, "image": "1f1ec-1f1e9.png", "sheet_x": 1, - "sheet_y": 56, + "sheet_y": 55, "short_name": "flag-gd", "short_names": [ "flag-gd" @@ -2848,7 +2961,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 90, + "subcategory": "country-flag", + "sort_order": 1632, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2864,8 +2978,8 @@ "softbank": null, "google": null, "image": "1f1ec-1f1ea.png", - "sheet_x": 2, - "sheet_y": 0, + "sheet_x": 1, + "sheet_y": 56, "short_name": "flag-ge", "short_names": [ "flag-ge" @@ -2873,7 +2987,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 91, + "subcategory": "country-flag", + "sort_order": 1633, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2889,8 +3004,8 @@ "softbank": null, "google": null, "image": "1f1ec-1f1eb.png", - "sheet_x": 2, - "sheet_y": 1, + "sheet_x": 1, + "sheet_y": 57, "short_name": "flag-gf", "short_names": [ "flag-gf" @@ -2898,7 +3013,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 92, + "subcategory": "country-flag", + "sort_order": 1634, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2915,7 +3031,7 @@ "google": null, "image": "1f1ec-1f1ec.png", "sheet_x": 2, - "sheet_y": 2, + "sheet_y": 0, "short_name": "flag-gg", "short_names": [ "flag-gg" @@ -2923,7 +3039,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 93, + "subcategory": "country-flag", + "sort_order": 1635, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2940,7 +3057,7 @@ "google": null, "image": "1f1ec-1f1ed.png", "sheet_x": 2, - "sheet_y": 3, + "sheet_y": 1, "short_name": "flag-gh", "short_names": [ "flag-gh" @@ -2948,7 +3065,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 94, + "subcategory": "country-flag", + "sort_order": 1636, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2965,7 +3083,7 @@ "google": null, "image": "1f1ec-1f1ee.png", "sheet_x": 2, - "sheet_y": 4, + "sheet_y": 2, "short_name": "flag-gi", "short_names": [ "flag-gi" @@ -2973,7 +3091,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 95, + "subcategory": "country-flag", + "sort_order": 1637, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -2990,7 +3109,7 @@ "google": null, "image": "1f1ec-1f1f1.png", "sheet_x": 2, - "sheet_y": 5, + "sheet_y": 3, "short_name": "flag-gl", "short_names": [ "flag-gl" @@ -2998,7 +3117,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 96, + "subcategory": "country-flag", + "sort_order": 1638, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3015,7 +3135,7 @@ "google": null, "image": "1f1ec-1f1f2.png", "sheet_x": 2, - "sheet_y": 6, + "sheet_y": 4, "short_name": "flag-gm", "short_names": [ "flag-gm" @@ -3023,7 +3143,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 97, + "subcategory": "country-flag", + "sort_order": 1639, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3040,7 +3161,7 @@ "google": null, "image": "1f1ec-1f1f3.png", "sheet_x": 2, - "sheet_y": 7, + "sheet_y": 5, "short_name": "flag-gn", "short_names": [ "flag-gn" @@ -3048,7 +3169,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 98, + "subcategory": "country-flag", + "sort_order": 1640, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3065,7 +3187,7 @@ "google": null, "image": "1f1ec-1f1f5.png", "sheet_x": 2, - "sheet_y": 8, + "sheet_y": 6, "short_name": "flag-gp", "short_names": [ "flag-gp" @@ -3073,7 +3195,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 99, + "subcategory": "country-flag", + "sort_order": 1641, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3090,7 +3213,7 @@ "google": null, "image": "1f1ec-1f1f6.png", "sheet_x": 2, - "sheet_y": 9, + "sheet_y": 7, "short_name": "flag-gq", "short_names": [ "flag-gq" @@ -3098,7 +3221,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 100, + "subcategory": "country-flag", + "sort_order": 1642, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3115,7 +3239,7 @@ "google": null, "image": "1f1ec-1f1f7.png", "sheet_x": 2, - "sheet_y": 10, + "sheet_y": 8, "short_name": "flag-gr", "short_names": [ "flag-gr" @@ -3123,7 +3247,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 101, + "subcategory": "country-flag", + "sort_order": 1643, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3140,7 +3265,7 @@ "google": null, "image": "1f1ec-1f1f8.png", "sheet_x": 2, - "sheet_y": 11, + "sheet_y": 9, "short_name": "flag-gs", "short_names": [ "flag-gs" @@ -3148,7 +3273,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 102, + "subcategory": "country-flag", + "sort_order": 1644, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3165,7 +3291,7 @@ "google": null, "image": "1f1ec-1f1f9.png", "sheet_x": 2, - "sheet_y": 12, + "sheet_y": 10, "short_name": "flag-gt", "short_names": [ "flag-gt" @@ -3173,7 +3299,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 103, + "subcategory": "country-flag", + "sort_order": 1645, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3190,7 +3317,7 @@ "google": null, "image": "1f1ec-1f1fa.png", "sheet_x": 2, - "sheet_y": 13, + "sheet_y": 11, "short_name": "flag-gu", "short_names": [ "flag-gu" @@ -3198,7 +3325,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 104, + "subcategory": "country-flag", + "sort_order": 1646, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3215,7 +3343,7 @@ "google": null, "image": "1f1ec-1f1fc.png", "sheet_x": 2, - "sheet_y": 14, + "sheet_y": 12, "short_name": "flag-gw", "short_names": [ "flag-gw" @@ -3223,7 +3351,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 105, + "subcategory": "country-flag", + "sort_order": 1647, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3240,7 +3369,7 @@ "google": null, "image": "1f1ec-1f1fe.png", "sheet_x": 2, - "sheet_y": 15, + "sheet_y": 13, "short_name": "flag-gy", "short_names": [ "flag-gy" @@ -3248,7 +3377,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 106, + "subcategory": "country-flag", + "sort_order": 1648, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3265,7 +3395,7 @@ "google": null, "image": "1f1ed-1f1f0.png", "sheet_x": 2, - "sheet_y": 16, + "sheet_y": 14, "short_name": "flag-hk", "short_names": [ "flag-hk" @@ -3273,7 +3403,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 107, + "subcategory": "country-flag", + "sort_order": 1649, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3290,7 +3421,7 @@ "google": null, "image": "1f1ed-1f1f2.png", "sheet_x": 2, - "sheet_y": 17, + "sheet_y": 15, "short_name": "flag-hm", "short_names": [ "flag-hm" @@ -3298,7 +3429,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 108, + "subcategory": "country-flag", + "sort_order": 1650, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3315,7 +3447,7 @@ "google": null, "image": "1f1ed-1f1f3.png", "sheet_x": 2, - "sheet_y": 18, + "sheet_y": 16, "short_name": "flag-hn", "short_names": [ "flag-hn" @@ -3323,7 +3455,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 109, + "subcategory": "country-flag", + "sort_order": 1651, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3340,7 +3473,7 @@ "google": null, "image": "1f1ed-1f1f7.png", "sheet_x": 2, - "sheet_y": 19, + "sheet_y": 17, "short_name": "flag-hr", "short_names": [ "flag-hr" @@ -3348,7 +3481,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 110, + "subcategory": "country-flag", + "sort_order": 1652, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3365,7 +3499,7 @@ "google": null, "image": "1f1ed-1f1f9.png", "sheet_x": 2, - "sheet_y": 20, + "sheet_y": 18, "short_name": "flag-ht", "short_names": [ "flag-ht" @@ -3373,7 +3507,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 111, + "subcategory": "country-flag", + "sort_order": 1653, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3390,7 +3525,7 @@ "google": null, "image": "1f1ed-1f1fa.png", "sheet_x": 2, - "sheet_y": 21, + "sheet_y": 19, "short_name": "flag-hu", "short_names": [ "flag-hu" @@ -3398,7 +3533,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 112, + "subcategory": "country-flag", + "sort_order": 1654, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3415,7 +3551,7 @@ "google": null, "image": "1f1ee-1f1e8.png", "sheet_x": 2, - "sheet_y": 22, + "sheet_y": 20, "short_name": "flag-ic", "short_names": [ "flag-ic" @@ -3423,7 +3559,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 113, + "subcategory": "country-flag", + "sort_order": 1655, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3440,7 +3577,7 @@ "google": null, "image": "1f1ee-1f1e9.png", "sheet_x": 2, - "sheet_y": 23, + "sheet_y": 21, "short_name": "flag-id", "short_names": [ "flag-id" @@ -3448,7 +3585,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 114, + "subcategory": "country-flag", + "sort_order": 1656, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3465,7 +3603,7 @@ "google": null, "image": "1f1ee-1f1ea.png", "sheet_x": 2, - "sheet_y": 24, + "sheet_y": 22, "short_name": "flag-ie", "short_names": [ "flag-ie" @@ -3473,7 +3611,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 115, + "subcategory": "country-flag", + "sort_order": 1657, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3490,7 +3629,7 @@ "google": null, "image": "1f1ee-1f1f1.png", "sheet_x": 2, - "sheet_y": 25, + "sheet_y": 23, "short_name": "flag-il", "short_names": [ "flag-il" @@ -3498,7 +3637,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 116, + "subcategory": "country-flag", + "sort_order": 1658, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3515,7 +3655,7 @@ "google": null, "image": "1f1ee-1f1f2.png", "sheet_x": 2, - "sheet_y": 26, + "sheet_y": 24, "short_name": "flag-im", "short_names": [ "flag-im" @@ -3523,7 +3663,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 117, + "subcategory": "country-flag", + "sort_order": 1659, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3540,7 +3681,7 @@ "google": null, "image": "1f1ee-1f1f3.png", "sheet_x": 2, - "sheet_y": 27, + "sheet_y": 25, "short_name": "flag-in", "short_names": [ "flag-in" @@ -3548,7 +3689,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 118, + "subcategory": "country-flag", + "sort_order": 1660, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3565,7 +3707,7 @@ "google": null, "image": "1f1ee-1f1f4.png", "sheet_x": 2, - "sheet_y": 28, + "sheet_y": 26, "short_name": "flag-io", "short_names": [ "flag-io" @@ -3573,7 +3715,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 119, + "subcategory": "country-flag", + "sort_order": 1661, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3590,7 +3733,7 @@ "google": null, "image": "1f1ee-1f1f6.png", "sheet_x": 2, - "sheet_y": 29, + "sheet_y": 27, "short_name": "flag-iq", "short_names": [ "flag-iq" @@ -3598,7 +3741,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 120, + "subcategory": "country-flag", + "sort_order": 1662, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3615,7 +3759,7 @@ "google": null, "image": "1f1ee-1f1f7.png", "sheet_x": 2, - "sheet_y": 30, + "sheet_y": 28, "short_name": "flag-ir", "short_names": [ "flag-ir" @@ -3623,7 +3767,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 121, + "subcategory": "country-flag", + "sort_order": 1663, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3640,7 +3785,7 @@ "google": null, "image": "1f1ee-1f1f8.png", "sheet_x": 2, - "sheet_y": 31, + "sheet_y": 29, "short_name": "flag-is", "short_names": [ "flag-is" @@ -3648,7 +3793,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 122, + "subcategory": "country-flag", + "sort_order": 1664, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3665,7 +3811,7 @@ "google": "FE4E9", "image": "1f1ee-1f1f9.png", "sheet_x": 2, - "sheet_y": 32, + "sheet_y": 30, "short_name": "it", "short_names": [ "it", @@ -3674,8 +3820,9 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 123, - "added_in": "2.0", + "subcategory": "country-flag", + "sort_order": 1665, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -3691,7 +3838,7 @@ "google": null, "image": "1f1ef-1f1ea.png", "sheet_x": 2, - "sheet_y": 33, + "sheet_y": 31, "short_name": "flag-je", "short_names": [ "flag-je" @@ -3699,7 +3846,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 124, + "subcategory": "country-flag", + "sort_order": 1666, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3716,7 +3864,7 @@ "google": null, "image": "1f1ef-1f1f2.png", "sheet_x": 2, - "sheet_y": 34, + "sheet_y": 32, "short_name": "flag-jm", "short_names": [ "flag-jm" @@ -3724,7 +3872,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 125, + "subcategory": "country-flag", + "sort_order": 1667, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3741,7 +3890,7 @@ "google": null, "image": "1f1ef-1f1f4.png", "sheet_x": 2, - "sheet_y": 35, + "sheet_y": 33, "short_name": "flag-jo", "short_names": [ "flag-jo" @@ -3749,7 +3898,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 126, + "subcategory": "country-flag", + "sort_order": 1668, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3766,7 +3916,7 @@ "google": "FE4E5", "image": "1f1ef-1f1f5.png", "sheet_x": 2, - "sheet_y": 36, + "sheet_y": 34, "short_name": "jp", "short_names": [ "jp", @@ -3775,8 +3925,9 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 127, - "added_in": "2.0", + "subcategory": "country-flag", + "sort_order": 1669, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -3792,7 +3943,7 @@ "google": null, "image": "1f1f0-1f1ea.png", "sheet_x": 2, - "sheet_y": 37, + "sheet_y": 35, "short_name": "flag-ke", "short_names": [ "flag-ke" @@ -3800,7 +3951,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 128, + "subcategory": "country-flag", + "sort_order": 1670, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3817,7 +3969,7 @@ "google": null, "image": "1f1f0-1f1ec.png", "sheet_x": 2, - "sheet_y": 38, + "sheet_y": 36, "short_name": "flag-kg", "short_names": [ "flag-kg" @@ -3825,7 +3977,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 129, + "subcategory": "country-flag", + "sort_order": 1671, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3842,7 +3995,7 @@ "google": null, "image": "1f1f0-1f1ed.png", "sheet_x": 2, - "sheet_y": 39, + "sheet_y": 37, "short_name": "flag-kh", "short_names": [ "flag-kh" @@ -3850,7 +4003,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 130, + "subcategory": "country-flag", + "sort_order": 1672, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3867,7 +4021,7 @@ "google": null, "image": "1f1f0-1f1ee.png", "sheet_x": 2, - "sheet_y": 40, + "sheet_y": 38, "short_name": "flag-ki", "short_names": [ "flag-ki" @@ -3875,7 +4029,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 131, + "subcategory": "country-flag", + "sort_order": 1673, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3892,7 +4047,7 @@ "google": null, "image": "1f1f0-1f1f2.png", "sheet_x": 2, - "sheet_y": 41, + "sheet_y": 39, "short_name": "flag-km", "short_names": [ "flag-km" @@ -3900,7 +4055,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 132, + "subcategory": "country-flag", + "sort_order": 1674, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3917,7 +4073,7 @@ "google": null, "image": "1f1f0-1f1f3.png", "sheet_x": 2, - "sheet_y": 42, + "sheet_y": 40, "short_name": "flag-kn", "short_names": [ "flag-kn" @@ -3925,7 +4081,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 133, + "subcategory": "country-flag", + "sort_order": 1675, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3942,7 +4099,7 @@ "google": null, "image": "1f1f0-1f1f5.png", "sheet_x": 2, - "sheet_y": 43, + "sheet_y": 41, "short_name": "flag-kp", "short_names": [ "flag-kp" @@ -3950,7 +4107,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 134, + "subcategory": "country-flag", + "sort_order": 1676, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -3967,7 +4125,7 @@ "google": "FE4EE", "image": "1f1f0-1f1f7.png", "sheet_x": 2, - "sheet_y": 44, + "sheet_y": 42, "short_name": "kr", "short_names": [ "kr", @@ -3976,8 +4134,9 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 135, - "added_in": "2.0", + "subcategory": "country-flag", + "sort_order": 1677, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -3993,7 +4152,7 @@ "google": null, "image": "1f1f0-1f1fc.png", "sheet_x": 2, - "sheet_y": 45, + "sheet_y": 43, "short_name": "flag-kw", "short_names": [ "flag-kw" @@ -4001,7 +4160,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 136, + "subcategory": "country-flag", + "sort_order": 1678, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4018,7 +4178,7 @@ "google": null, "image": "1f1f0-1f1fe.png", "sheet_x": 2, - "sheet_y": 46, + "sheet_y": 44, "short_name": "flag-ky", "short_names": [ "flag-ky" @@ -4026,7 +4186,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 137, + "subcategory": "country-flag", + "sort_order": 1679, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4043,7 +4204,7 @@ "google": null, "image": "1f1f0-1f1ff.png", "sheet_x": 2, - "sheet_y": 47, + "sheet_y": 45, "short_name": "flag-kz", "short_names": [ "flag-kz" @@ -4051,7 +4212,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 138, + "subcategory": "country-flag", + "sort_order": 1680, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4068,7 +4230,7 @@ "google": null, "image": "1f1f1-1f1e6.png", "sheet_x": 2, - "sheet_y": 48, + "sheet_y": 46, "short_name": "flag-la", "short_names": [ "flag-la" @@ -4076,7 +4238,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 139, + "subcategory": "country-flag", + "sort_order": 1681, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4093,7 +4256,7 @@ "google": null, "image": "1f1f1-1f1e7.png", "sheet_x": 2, - "sheet_y": 49, + "sheet_y": 47, "short_name": "flag-lb", "short_names": [ "flag-lb" @@ -4101,7 +4264,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 140, + "subcategory": "country-flag", + "sort_order": 1682, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4118,7 +4282,7 @@ "google": null, "image": "1f1f1-1f1e8.png", "sheet_x": 2, - "sheet_y": 50, + "sheet_y": 48, "short_name": "flag-lc", "short_names": [ "flag-lc" @@ -4126,7 +4290,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 141, + "subcategory": "country-flag", + "sort_order": 1683, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4143,7 +4308,7 @@ "google": null, "image": "1f1f1-1f1ee.png", "sheet_x": 2, - "sheet_y": 51, + "sheet_y": 49, "short_name": "flag-li", "short_names": [ "flag-li" @@ -4151,7 +4316,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 142, + "subcategory": "country-flag", + "sort_order": 1684, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4168,7 +4334,7 @@ "google": null, "image": "1f1f1-1f1f0.png", "sheet_x": 2, - "sheet_y": 52, + "sheet_y": 50, "short_name": "flag-lk", "short_names": [ "flag-lk" @@ -4176,7 +4342,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 143, + "subcategory": "country-flag", + "sort_order": 1685, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4193,7 +4360,7 @@ "google": null, "image": "1f1f1-1f1f7.png", "sheet_x": 2, - "sheet_y": 53, + "sheet_y": 51, "short_name": "flag-lr", "short_names": [ "flag-lr" @@ -4201,7 +4368,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 144, + "subcategory": "country-flag", + "sort_order": 1686, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4218,7 +4386,7 @@ "google": null, "image": "1f1f1-1f1f8.png", "sheet_x": 2, - "sheet_y": 54, + "sheet_y": 52, "short_name": "flag-ls", "short_names": [ "flag-ls" @@ -4226,7 +4394,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 145, + "subcategory": "country-flag", + "sort_order": 1687, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4243,7 +4412,7 @@ "google": null, "image": "1f1f1-1f1f9.png", "sheet_x": 2, - "sheet_y": 55, + "sheet_y": 53, "short_name": "flag-lt", "short_names": [ "flag-lt" @@ -4251,7 +4420,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 146, + "subcategory": "country-flag", + "sort_order": 1688, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4268,7 +4438,7 @@ "google": null, "image": "1f1f1-1f1fa.png", "sheet_x": 2, - "sheet_y": 56, + "sheet_y": 54, "short_name": "flag-lu", "short_names": [ "flag-lu" @@ -4276,7 +4446,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 147, + "subcategory": "country-flag", + "sort_order": 1689, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4292,8 +4463,8 @@ "softbank": null, "google": null, "image": "1f1f1-1f1fb.png", - "sheet_x": 3, - "sheet_y": 0, + "sheet_x": 2, + "sheet_y": 55, "short_name": "flag-lv", "short_names": [ "flag-lv" @@ -4301,7 +4472,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 148, + "subcategory": "country-flag", + "sort_order": 1690, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4317,8 +4489,8 @@ "softbank": null, "google": null, "image": "1f1f1-1f1fe.png", - "sheet_x": 3, - "sheet_y": 1, + "sheet_x": 2, + "sheet_y": 56, "short_name": "flag-ly", "short_names": [ "flag-ly" @@ -4326,7 +4498,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 149, + "subcategory": "country-flag", + "sort_order": 1691, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4342,8 +4515,8 @@ "softbank": null, "google": null, "image": "1f1f2-1f1e6.png", - "sheet_x": 3, - "sheet_y": 2, + "sheet_x": 2, + "sheet_y": 57, "short_name": "flag-ma", "short_names": [ "flag-ma" @@ -4351,7 +4524,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 150, + "subcategory": "country-flag", + "sort_order": 1692, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4368,7 +4542,7 @@ "google": null, "image": "1f1f2-1f1e8.png", "sheet_x": 3, - "sheet_y": 3, + "sheet_y": 0, "short_name": "flag-mc", "short_names": [ "flag-mc" @@ -4376,7 +4550,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 151, + "subcategory": "country-flag", + "sort_order": 1693, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4393,7 +4568,7 @@ "google": null, "image": "1f1f2-1f1e9.png", "sheet_x": 3, - "sheet_y": 4, + "sheet_y": 1, "short_name": "flag-md", "short_names": [ "flag-md" @@ -4401,7 +4576,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 152, + "subcategory": "country-flag", + "sort_order": 1694, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4418,7 +4594,7 @@ "google": null, "image": "1f1f2-1f1ea.png", "sheet_x": 3, - "sheet_y": 5, + "sheet_y": 2, "short_name": "flag-me", "short_names": [ "flag-me" @@ -4426,7 +4602,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 153, + "subcategory": "country-flag", + "sort_order": 1695, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4443,7 +4620,7 @@ "google": null, "image": "1f1f2-1f1eb.png", "sheet_x": 3, - "sheet_y": 6, + "sheet_y": 3, "short_name": "flag-mf", "short_names": [ "flag-mf" @@ -4451,7 +4628,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 154, + "subcategory": "country-flag", + "sort_order": 1696, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4468,7 +4646,7 @@ "google": null, "image": "1f1f2-1f1ec.png", "sheet_x": 3, - "sheet_y": 7, + "sheet_y": 4, "short_name": "flag-mg", "short_names": [ "flag-mg" @@ -4476,7 +4654,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 155, + "subcategory": "country-flag", + "sort_order": 1697, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4493,7 +4672,7 @@ "google": null, "image": "1f1f2-1f1ed.png", "sheet_x": 3, - "sheet_y": 8, + "sheet_y": 5, "short_name": "flag-mh", "short_names": [ "flag-mh" @@ -4501,7 +4680,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 156, + "subcategory": "country-flag", + "sort_order": 1698, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4518,7 +4698,7 @@ "google": null, "image": "1f1f2-1f1f0.png", "sheet_x": 3, - "sheet_y": 9, + "sheet_y": 6, "short_name": "flag-mk", "short_names": [ "flag-mk" @@ -4526,7 +4706,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 157, + "subcategory": "country-flag", + "sort_order": 1699, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4543,7 +4724,7 @@ "google": null, "image": "1f1f2-1f1f1.png", "sheet_x": 3, - "sheet_y": 10, + "sheet_y": 7, "short_name": "flag-ml", "short_names": [ "flag-ml" @@ -4551,7 +4732,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 158, + "subcategory": "country-flag", + "sort_order": 1700, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4568,7 +4750,7 @@ "google": null, "image": "1f1f2-1f1f2.png", "sheet_x": 3, - "sheet_y": 11, + "sheet_y": 8, "short_name": "flag-mm", "short_names": [ "flag-mm" @@ -4576,7 +4758,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 159, + "subcategory": "country-flag", + "sort_order": 1701, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4593,7 +4776,7 @@ "google": null, "image": "1f1f2-1f1f3.png", "sheet_x": 3, - "sheet_y": 12, + "sheet_y": 9, "short_name": "flag-mn", "short_names": [ "flag-mn" @@ -4601,7 +4784,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 160, + "subcategory": "country-flag", + "sort_order": 1702, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4618,7 +4802,7 @@ "google": null, "image": "1f1f2-1f1f4.png", "sheet_x": 3, - "sheet_y": 13, + "sheet_y": 10, "short_name": "flag-mo", "short_names": [ "flag-mo" @@ -4626,7 +4810,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 161, + "subcategory": "country-flag", + "sort_order": 1703, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4643,7 +4828,7 @@ "google": null, "image": "1f1f2-1f1f5.png", "sheet_x": 3, - "sheet_y": 14, + "sheet_y": 11, "short_name": "flag-mp", "short_names": [ "flag-mp" @@ -4651,7 +4836,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 162, + "subcategory": "country-flag", + "sort_order": 1704, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4668,7 +4854,7 @@ "google": null, "image": "1f1f2-1f1f6.png", "sheet_x": 3, - "sheet_y": 15, + "sheet_y": 12, "short_name": "flag-mq", "short_names": [ "flag-mq" @@ -4676,7 +4862,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 163, + "subcategory": "country-flag", + "sort_order": 1705, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4693,7 +4880,7 @@ "google": null, "image": "1f1f2-1f1f7.png", "sheet_x": 3, - "sheet_y": 16, + "sheet_y": 13, "short_name": "flag-mr", "short_names": [ "flag-mr" @@ -4701,7 +4888,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 164, + "subcategory": "country-flag", + "sort_order": 1706, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4718,7 +4906,7 @@ "google": null, "image": "1f1f2-1f1f8.png", "sheet_x": 3, - "sheet_y": 17, + "sheet_y": 14, "short_name": "flag-ms", "short_names": [ "flag-ms" @@ -4726,7 +4914,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 165, + "subcategory": "country-flag", + "sort_order": 1707, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4743,7 +4932,7 @@ "google": null, "image": "1f1f2-1f1f9.png", "sheet_x": 3, - "sheet_y": 18, + "sheet_y": 15, "short_name": "flag-mt", "short_names": [ "flag-mt" @@ -4751,7 +4940,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 166, + "subcategory": "country-flag", + "sort_order": 1708, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4768,7 +4958,7 @@ "google": null, "image": "1f1f2-1f1fa.png", "sheet_x": 3, - "sheet_y": 19, + "sheet_y": 16, "short_name": "flag-mu", "short_names": [ "flag-mu" @@ -4776,7 +4966,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 167, + "subcategory": "country-flag", + "sort_order": 1709, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4793,7 +4984,7 @@ "google": null, "image": "1f1f2-1f1fb.png", "sheet_x": 3, - "sheet_y": 20, + "sheet_y": 17, "short_name": "flag-mv", "short_names": [ "flag-mv" @@ -4801,7 +4992,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 168, + "subcategory": "country-flag", + "sort_order": 1710, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4818,7 +5010,7 @@ "google": null, "image": "1f1f2-1f1fc.png", "sheet_x": 3, - "sheet_y": 21, + "sheet_y": 18, "short_name": "flag-mw", "short_names": [ "flag-mw" @@ -4826,7 +5018,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 169, + "subcategory": "country-flag", + "sort_order": 1711, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4843,7 +5036,7 @@ "google": null, "image": "1f1f2-1f1fd.png", "sheet_x": 3, - "sheet_y": 22, + "sheet_y": 19, "short_name": "flag-mx", "short_names": [ "flag-mx" @@ -4851,7 +5044,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 170, + "subcategory": "country-flag", + "sort_order": 1712, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4868,7 +5062,7 @@ "google": null, "image": "1f1f2-1f1fe.png", "sheet_x": 3, - "sheet_y": 23, + "sheet_y": 20, "short_name": "flag-my", "short_names": [ "flag-my" @@ -4876,7 +5070,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 171, + "subcategory": "country-flag", + "sort_order": 1713, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4893,7 +5088,7 @@ "google": null, "image": "1f1f2-1f1ff.png", "sheet_x": 3, - "sheet_y": 24, + "sheet_y": 21, "short_name": "flag-mz", "short_names": [ "flag-mz" @@ -4901,7 +5096,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 172, + "subcategory": "country-flag", + "sort_order": 1714, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4918,7 +5114,7 @@ "google": null, "image": "1f1f3-1f1e6.png", "sheet_x": 3, - "sheet_y": 25, + "sheet_y": 22, "short_name": "flag-na", "short_names": [ "flag-na" @@ -4926,7 +5122,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 173, + "subcategory": "country-flag", + "sort_order": 1715, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4943,7 +5140,7 @@ "google": null, "image": "1f1f3-1f1e8.png", "sheet_x": 3, - "sheet_y": 26, + "sheet_y": 23, "short_name": "flag-nc", "short_names": [ "flag-nc" @@ -4951,7 +5148,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 174, + "subcategory": "country-flag", + "sort_order": 1716, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4968,7 +5166,7 @@ "google": null, "image": "1f1f3-1f1ea.png", "sheet_x": 3, - "sheet_y": 27, + "sheet_y": 24, "short_name": "flag-ne", "short_names": [ "flag-ne" @@ -4976,7 +5174,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 175, + "subcategory": "country-flag", + "sort_order": 1717, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -4993,7 +5192,7 @@ "google": null, "image": "1f1f3-1f1eb.png", "sheet_x": 3, - "sheet_y": 28, + "sheet_y": 25, "short_name": "flag-nf", "short_names": [ "flag-nf" @@ -5001,7 +5200,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 176, + "subcategory": "country-flag", + "sort_order": 1718, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5018,7 +5218,7 @@ "google": null, "image": "1f1f3-1f1ec.png", "sheet_x": 3, - "sheet_y": 29, + "sheet_y": 26, "short_name": "flag-ng", "short_names": [ "flag-ng" @@ -5026,7 +5226,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 177, + "subcategory": "country-flag", + "sort_order": 1719, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5043,7 +5244,7 @@ "google": null, "image": "1f1f3-1f1ee.png", "sheet_x": 3, - "sheet_y": 30, + "sheet_y": 27, "short_name": "flag-ni", "short_names": [ "flag-ni" @@ -5051,7 +5252,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 178, + "subcategory": "country-flag", + "sort_order": 1720, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5068,7 +5270,7 @@ "google": null, "image": "1f1f3-1f1f1.png", "sheet_x": 3, - "sheet_y": 31, + "sheet_y": 28, "short_name": "flag-nl", "short_names": [ "flag-nl" @@ -5076,7 +5278,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 179, + "subcategory": "country-flag", + "sort_order": 1721, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5093,7 +5296,7 @@ "google": null, "image": "1f1f3-1f1f4.png", "sheet_x": 3, - "sheet_y": 32, + "sheet_y": 29, "short_name": "flag-no", "short_names": [ "flag-no" @@ -5101,7 +5304,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 180, + "subcategory": "country-flag", + "sort_order": 1722, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5118,7 +5322,7 @@ "google": null, "image": "1f1f3-1f1f5.png", "sheet_x": 3, - "sheet_y": 33, + "sheet_y": 30, "short_name": "flag-np", "short_names": [ "flag-np" @@ -5126,7 +5330,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 181, + "subcategory": "country-flag", + "sort_order": 1723, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5143,7 +5348,7 @@ "google": null, "image": "1f1f3-1f1f7.png", "sheet_x": 3, - "sheet_y": 34, + "sheet_y": 31, "short_name": "flag-nr", "short_names": [ "flag-nr" @@ -5151,7 +5356,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 182, + "subcategory": "country-flag", + "sort_order": 1724, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5168,7 +5374,7 @@ "google": null, "image": "1f1f3-1f1fa.png", "sheet_x": 3, - "sheet_y": 35, + "sheet_y": 32, "short_name": "flag-nu", "short_names": [ "flag-nu" @@ -5176,7 +5382,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 183, + "subcategory": "country-flag", + "sort_order": 1725, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5193,7 +5400,7 @@ "google": null, "image": "1f1f3-1f1ff.png", "sheet_x": 3, - "sheet_y": 36, + "sheet_y": 33, "short_name": "flag-nz", "short_names": [ "flag-nz" @@ -5201,7 +5408,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 184, + "subcategory": "country-flag", + "sort_order": 1726, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5218,7 +5426,7 @@ "google": null, "image": "1f1f4-1f1f2.png", "sheet_x": 3, - "sheet_y": 37, + "sheet_y": 34, "short_name": "flag-om", "short_names": [ "flag-om" @@ -5226,7 +5434,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 185, + "subcategory": "country-flag", + "sort_order": 1727, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5243,7 +5452,7 @@ "google": null, "image": "1f1f5-1f1e6.png", "sheet_x": 3, - "sheet_y": 38, + "sheet_y": 35, "short_name": "flag-pa", "short_names": [ "flag-pa" @@ -5251,7 +5460,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 186, + "subcategory": "country-flag", + "sort_order": 1728, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5268,7 +5478,7 @@ "google": null, "image": "1f1f5-1f1ea.png", "sheet_x": 3, - "sheet_y": 39, + "sheet_y": 36, "short_name": "flag-pe", "short_names": [ "flag-pe" @@ -5276,7 +5486,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 187, + "subcategory": "country-flag", + "sort_order": 1729, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5293,7 +5504,7 @@ "google": null, "image": "1f1f5-1f1eb.png", "sheet_x": 3, - "sheet_y": 40, + "sheet_y": 37, "short_name": "flag-pf", "short_names": [ "flag-pf" @@ -5301,7 +5512,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 188, + "subcategory": "country-flag", + "sort_order": 1730, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5318,7 +5530,7 @@ "google": null, "image": "1f1f5-1f1ec.png", "sheet_x": 3, - "sheet_y": 41, + "sheet_y": 38, "short_name": "flag-pg", "short_names": [ "flag-pg" @@ -5326,7 +5538,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 189, + "subcategory": "country-flag", + "sort_order": 1731, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5343,7 +5556,7 @@ "google": null, "image": "1f1f5-1f1ed.png", "sheet_x": 3, - "sheet_y": 42, + "sheet_y": 39, "short_name": "flag-ph", "short_names": [ "flag-ph" @@ -5351,7 +5564,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 190, + "subcategory": "country-flag", + "sort_order": 1732, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5368,7 +5582,7 @@ "google": null, "image": "1f1f5-1f1f0.png", "sheet_x": 3, - "sheet_y": 43, + "sheet_y": 40, "short_name": "flag-pk", "short_names": [ "flag-pk" @@ -5376,7 +5590,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 191, + "subcategory": "country-flag", + "sort_order": 1733, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5393,7 +5608,7 @@ "google": null, "image": "1f1f5-1f1f1.png", "sheet_x": 3, - "sheet_y": 44, + "sheet_y": 41, "short_name": "flag-pl", "short_names": [ "flag-pl" @@ -5401,7 +5616,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 192, + "subcategory": "country-flag", + "sort_order": 1734, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5418,7 +5634,7 @@ "google": null, "image": "1f1f5-1f1f2.png", "sheet_x": 3, - "sheet_y": 45, + "sheet_y": 42, "short_name": "flag-pm", "short_names": [ "flag-pm" @@ -5426,7 +5642,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 193, + "subcategory": "country-flag", + "sort_order": 1735, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5443,7 +5660,7 @@ "google": null, "image": "1f1f5-1f1f3.png", "sheet_x": 3, - "sheet_y": 46, + "sheet_y": 43, "short_name": "flag-pn", "short_names": [ "flag-pn" @@ -5451,7 +5668,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 194, + "subcategory": "country-flag", + "sort_order": 1736, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5468,7 +5686,7 @@ "google": null, "image": "1f1f5-1f1f7.png", "sheet_x": 3, - "sheet_y": 47, + "sheet_y": 44, "short_name": "flag-pr", "short_names": [ "flag-pr" @@ -5476,7 +5694,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 195, + "subcategory": "country-flag", + "sort_order": 1737, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5493,7 +5712,7 @@ "google": null, "image": "1f1f5-1f1f8.png", "sheet_x": 3, - "sheet_y": 48, + "sheet_y": 45, "short_name": "flag-ps", "short_names": [ "flag-ps" @@ -5501,7 +5720,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 196, + "subcategory": "country-flag", + "sort_order": 1738, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5518,7 +5738,7 @@ "google": null, "image": "1f1f5-1f1f9.png", "sheet_x": 3, - "sheet_y": 49, + "sheet_y": 46, "short_name": "flag-pt", "short_names": [ "flag-pt" @@ -5526,7 +5746,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 197, + "subcategory": "country-flag", + "sort_order": 1739, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5543,7 +5764,7 @@ "google": null, "image": "1f1f5-1f1fc.png", "sheet_x": 3, - "sheet_y": 50, + "sheet_y": 47, "short_name": "flag-pw", "short_names": [ "flag-pw" @@ -5551,7 +5772,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 198, + "subcategory": "country-flag", + "sort_order": 1740, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5568,7 +5790,7 @@ "google": null, "image": "1f1f5-1f1fe.png", "sheet_x": 3, - "sheet_y": 51, + "sheet_y": 48, "short_name": "flag-py", "short_names": [ "flag-py" @@ -5576,7 +5798,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 199, + "subcategory": "country-flag", + "sort_order": 1741, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5593,7 +5816,7 @@ "google": null, "image": "1f1f6-1f1e6.png", "sheet_x": 3, - "sheet_y": 52, + "sheet_y": 49, "short_name": "flag-qa", "short_names": [ "flag-qa" @@ -5601,7 +5824,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 200, + "subcategory": "country-flag", + "sort_order": 1742, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5618,7 +5842,7 @@ "google": null, "image": "1f1f7-1f1ea.png", "sheet_x": 3, - "sheet_y": 53, + "sheet_y": 50, "short_name": "flag-re", "short_names": [ "flag-re" @@ -5626,7 +5850,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 201, + "subcategory": "country-flag", + "sort_order": 1743, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5643,7 +5868,7 @@ "google": null, "image": "1f1f7-1f1f4.png", "sheet_x": 3, - "sheet_y": 54, + "sheet_y": 51, "short_name": "flag-ro", "short_names": [ "flag-ro" @@ -5651,7 +5876,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 202, + "subcategory": "country-flag", + "sort_order": 1744, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5668,7 +5894,7 @@ "google": null, "image": "1f1f7-1f1f8.png", "sheet_x": 3, - "sheet_y": 55, + "sheet_y": 52, "short_name": "flag-rs", "short_names": [ "flag-rs" @@ -5676,7 +5902,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 203, + "subcategory": "country-flag", + "sort_order": 1745, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5693,7 +5920,7 @@ "google": "FE4EC", "image": "1f1f7-1f1fa.png", "sheet_x": 3, - "sheet_y": 56, + "sheet_y": 53, "short_name": "ru", "short_names": [ "ru", @@ -5702,8 +5929,9 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 204, - "added_in": "2.0", + "subcategory": "country-flag", + "sort_order": 1746, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -5718,8 +5946,8 @@ "softbank": null, "google": null, "image": "1f1f7-1f1fc.png", - "sheet_x": 4, - "sheet_y": 0, + "sheet_x": 3, + "sheet_y": 54, "short_name": "flag-rw", "short_names": [ "flag-rw" @@ -5727,7 +5955,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 205, + "subcategory": "country-flag", + "sort_order": 1747, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5743,8 +5972,8 @@ "softbank": null, "google": null, "image": "1f1f8-1f1e6.png", - "sheet_x": 4, - "sheet_y": 1, + "sheet_x": 3, + "sheet_y": 55, "short_name": "flag-sa", "short_names": [ "flag-sa" @@ -5752,7 +5981,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 206, + "subcategory": "country-flag", + "sort_order": 1748, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5768,8 +5998,8 @@ "softbank": null, "google": null, "image": "1f1f8-1f1e7.png", - "sheet_x": 4, - "sheet_y": 2, + "sheet_x": 3, + "sheet_y": 56, "short_name": "flag-sb", "short_names": [ "flag-sb" @@ -5777,7 +6007,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 207, + "subcategory": "country-flag", + "sort_order": 1749, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5793,8 +6024,8 @@ "softbank": null, "google": null, "image": "1f1f8-1f1e8.png", - "sheet_x": 4, - "sheet_y": 3, + "sheet_x": 3, + "sheet_y": 57, "short_name": "flag-sc", "short_names": [ "flag-sc" @@ -5802,7 +6033,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 208, + "subcategory": "country-flag", + "sort_order": 1750, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5819,7 +6051,7 @@ "google": null, "image": "1f1f8-1f1e9.png", "sheet_x": 4, - "sheet_y": 4, + "sheet_y": 0, "short_name": "flag-sd", "short_names": [ "flag-sd" @@ -5827,7 +6059,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 209, + "subcategory": "country-flag", + "sort_order": 1751, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5844,7 +6077,7 @@ "google": null, "image": "1f1f8-1f1ea.png", "sheet_x": 4, - "sheet_y": 5, + "sheet_y": 1, "short_name": "flag-se", "short_names": [ "flag-se" @@ -5852,7 +6085,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 210, + "subcategory": "country-flag", + "sort_order": 1752, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5869,7 +6103,7 @@ "google": null, "image": "1f1f8-1f1ec.png", "sheet_x": 4, - "sheet_y": 6, + "sheet_y": 2, "short_name": "flag-sg", "short_names": [ "flag-sg" @@ -5877,7 +6111,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 211, + "subcategory": "country-flag", + "sort_order": 1753, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5894,7 +6129,7 @@ "google": null, "image": "1f1f8-1f1ed.png", "sheet_x": 4, - "sheet_y": 7, + "sheet_y": 3, "short_name": "flag-sh", "short_names": [ "flag-sh" @@ -5902,7 +6137,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 212, + "subcategory": "country-flag", + "sort_order": 1754, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5919,7 +6155,7 @@ "google": null, "image": "1f1f8-1f1ee.png", "sheet_x": 4, - "sheet_y": 8, + "sheet_y": 4, "short_name": "flag-si", "short_names": [ "flag-si" @@ -5927,7 +6163,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 213, + "subcategory": "country-flag", + "sort_order": 1755, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5944,7 +6181,7 @@ "google": null, "image": "1f1f8-1f1ef.png", "sheet_x": 4, - "sheet_y": 9, + "sheet_y": 5, "short_name": "flag-sj", "short_names": [ "flag-sj" @@ -5952,7 +6189,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 214, + "subcategory": "country-flag", + "sort_order": 1756, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5969,7 +6207,7 @@ "google": null, "image": "1f1f8-1f1f0.png", "sheet_x": 4, - "sheet_y": 10, + "sheet_y": 6, "short_name": "flag-sk", "short_names": [ "flag-sk" @@ -5977,7 +6215,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 215, + "subcategory": "country-flag", + "sort_order": 1757, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -5994,7 +6233,7 @@ "google": null, "image": "1f1f8-1f1f1.png", "sheet_x": 4, - "sheet_y": 11, + "sheet_y": 7, "short_name": "flag-sl", "short_names": [ "flag-sl" @@ -6002,7 +6241,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 216, + "subcategory": "country-flag", + "sort_order": 1758, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6019,7 +6259,7 @@ "google": null, "image": "1f1f8-1f1f2.png", "sheet_x": 4, - "sheet_y": 12, + "sheet_y": 8, "short_name": "flag-sm", "short_names": [ "flag-sm" @@ -6027,7 +6267,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 217, + "subcategory": "country-flag", + "sort_order": 1759, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6044,7 +6285,7 @@ "google": null, "image": "1f1f8-1f1f3.png", "sheet_x": 4, - "sheet_y": 13, + "sheet_y": 9, "short_name": "flag-sn", "short_names": [ "flag-sn" @@ -6052,7 +6293,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 218, + "subcategory": "country-flag", + "sort_order": 1760, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6069,7 +6311,7 @@ "google": null, "image": "1f1f8-1f1f4.png", "sheet_x": 4, - "sheet_y": 14, + "sheet_y": 10, "short_name": "flag-so", "short_names": [ "flag-so" @@ -6077,7 +6319,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 219, + "subcategory": "country-flag", + "sort_order": 1761, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6094,7 +6337,7 @@ "google": null, "image": "1f1f8-1f1f7.png", "sheet_x": 4, - "sheet_y": 15, + "sheet_y": 11, "short_name": "flag-sr", "short_names": [ "flag-sr" @@ -6102,7 +6345,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 220, + "subcategory": "country-flag", + "sort_order": 1762, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6119,7 +6363,7 @@ "google": null, "image": "1f1f8-1f1f8.png", "sheet_x": 4, - "sheet_y": 16, + "sheet_y": 12, "short_name": "flag-ss", "short_names": [ "flag-ss" @@ -6127,7 +6371,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 221, + "subcategory": "country-flag", + "sort_order": 1763, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6144,7 +6389,7 @@ "google": null, "image": "1f1f8-1f1f9.png", "sheet_x": 4, - "sheet_y": 17, + "sheet_y": 13, "short_name": "flag-st", "short_names": [ "flag-st" @@ -6152,7 +6397,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 222, + "subcategory": "country-flag", + "sort_order": 1764, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6169,7 +6415,7 @@ "google": null, "image": "1f1f8-1f1fb.png", "sheet_x": 4, - "sheet_y": 18, + "sheet_y": 14, "short_name": "flag-sv", "short_names": [ "flag-sv" @@ -6177,7 +6423,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 223, + "subcategory": "country-flag", + "sort_order": 1765, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6194,7 +6441,7 @@ "google": null, "image": "1f1f8-1f1fd.png", "sheet_x": 4, - "sheet_y": 19, + "sheet_y": 15, "short_name": "flag-sx", "short_names": [ "flag-sx" @@ -6202,7 +6449,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 224, + "subcategory": "country-flag", + "sort_order": 1766, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6219,7 +6467,7 @@ "google": null, "image": "1f1f8-1f1fe.png", "sheet_x": 4, - "sheet_y": 20, + "sheet_y": 16, "short_name": "flag-sy", "short_names": [ "flag-sy" @@ -6227,7 +6475,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 225, + "subcategory": "country-flag", + "sort_order": 1767, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6244,7 +6493,7 @@ "google": null, "image": "1f1f8-1f1ff.png", "sheet_x": 4, - "sheet_y": 21, + "sheet_y": 17, "short_name": "flag-sz", "short_names": [ "flag-sz" @@ -6252,7 +6501,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 226, + "subcategory": "country-flag", + "sort_order": 1768, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6269,7 +6519,7 @@ "google": null, "image": "1f1f9-1f1e6.png", "sheet_x": 4, - "sheet_y": 22, + "sheet_y": 18, "short_name": "flag-ta", "short_names": [ "flag-ta" @@ -6277,7 +6527,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 227, + "subcategory": "country-flag", + "sort_order": 1769, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6294,7 +6545,7 @@ "google": null, "image": "1f1f9-1f1e8.png", "sheet_x": 4, - "sheet_y": 23, + "sheet_y": 19, "short_name": "flag-tc", "short_names": [ "flag-tc" @@ -6302,7 +6553,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 228, + "subcategory": "country-flag", + "sort_order": 1770, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6319,7 +6571,7 @@ "google": null, "image": "1f1f9-1f1e9.png", "sheet_x": 4, - "sheet_y": 24, + "sheet_y": 20, "short_name": "flag-td", "short_names": [ "flag-td" @@ -6327,7 +6579,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 229, + "subcategory": "country-flag", + "sort_order": 1771, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6344,7 +6597,7 @@ "google": null, "image": "1f1f9-1f1eb.png", "sheet_x": 4, - "sheet_y": 25, + "sheet_y": 21, "short_name": "flag-tf", "short_names": [ "flag-tf" @@ -6352,7 +6605,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 230, + "subcategory": "country-flag", + "sort_order": 1772, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6369,7 +6623,7 @@ "google": null, "image": "1f1f9-1f1ec.png", "sheet_x": 4, - "sheet_y": 26, + "sheet_y": 22, "short_name": "flag-tg", "short_names": [ "flag-tg" @@ -6377,7 +6631,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 231, + "subcategory": "country-flag", + "sort_order": 1773, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6394,7 +6649,7 @@ "google": null, "image": "1f1f9-1f1ed.png", "sheet_x": 4, - "sheet_y": 27, + "sheet_y": 23, "short_name": "flag-th", "short_names": [ "flag-th" @@ -6402,7 +6657,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 232, + "subcategory": "country-flag", + "sort_order": 1774, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6419,7 +6675,7 @@ "google": null, "image": "1f1f9-1f1ef.png", "sheet_x": 4, - "sheet_y": 28, + "sheet_y": 24, "short_name": "flag-tj", "short_names": [ "flag-tj" @@ -6427,7 +6683,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 233, + "subcategory": "country-flag", + "sort_order": 1775, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6444,7 +6701,7 @@ "google": null, "image": "1f1f9-1f1f0.png", "sheet_x": 4, - "sheet_y": 29, + "sheet_y": 25, "short_name": "flag-tk", "short_names": [ "flag-tk" @@ -6452,7 +6709,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 234, + "subcategory": "country-flag", + "sort_order": 1776, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6469,7 +6727,7 @@ "google": null, "image": "1f1f9-1f1f1.png", "sheet_x": 4, - "sheet_y": 30, + "sheet_y": 26, "short_name": "flag-tl", "short_names": [ "flag-tl" @@ -6477,7 +6735,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 235, + "subcategory": "country-flag", + "sort_order": 1777, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6494,7 +6753,7 @@ "google": null, "image": "1f1f9-1f1f2.png", "sheet_x": 4, - "sheet_y": 31, + "sheet_y": 27, "short_name": "flag-tm", "short_names": [ "flag-tm" @@ -6502,7 +6761,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 236, + "subcategory": "country-flag", + "sort_order": 1778, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6519,7 +6779,7 @@ "google": null, "image": "1f1f9-1f1f3.png", "sheet_x": 4, - "sheet_y": 32, + "sheet_y": 28, "short_name": "flag-tn", "short_names": [ "flag-tn" @@ -6527,7 +6787,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 237, + "subcategory": "country-flag", + "sort_order": 1779, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6544,7 +6805,7 @@ "google": null, "image": "1f1f9-1f1f4.png", "sheet_x": 4, - "sheet_y": 33, + "sheet_y": 29, "short_name": "flag-to", "short_names": [ "flag-to" @@ -6552,7 +6813,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 238, + "subcategory": "country-flag", + "sort_order": 1780, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6569,7 +6831,7 @@ "google": null, "image": "1f1f9-1f1f7.png", "sheet_x": 4, - "sheet_y": 34, + "sheet_y": 30, "short_name": "flag-tr", "short_names": [ "flag-tr" @@ -6577,7 +6839,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 239, + "subcategory": "country-flag", + "sort_order": 1781, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6594,7 +6857,7 @@ "google": null, "image": "1f1f9-1f1f9.png", "sheet_x": 4, - "sheet_y": 35, + "sheet_y": 31, "short_name": "flag-tt", "short_names": [ "flag-tt" @@ -6602,7 +6865,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 240, + "subcategory": "country-flag", + "sort_order": 1782, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6619,7 +6883,7 @@ "google": null, "image": "1f1f9-1f1fb.png", "sheet_x": 4, - "sheet_y": 36, + "sheet_y": 32, "short_name": "flag-tv", "short_names": [ "flag-tv" @@ -6627,7 +6891,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 241, + "subcategory": "country-flag", + "sort_order": 1783, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6644,7 +6909,7 @@ "google": null, "image": "1f1f9-1f1fc.png", "sheet_x": 4, - "sheet_y": 37, + "sheet_y": 33, "short_name": "flag-tw", "short_names": [ "flag-tw" @@ -6652,7 +6917,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 242, + "subcategory": "country-flag", + "sort_order": 1784, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6669,7 +6935,7 @@ "google": null, "image": "1f1f9-1f1ff.png", "sheet_x": 4, - "sheet_y": 38, + "sheet_y": 34, "short_name": "flag-tz", "short_names": [ "flag-tz" @@ -6677,7 +6943,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 243, + "subcategory": "country-flag", + "sort_order": 1785, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6694,7 +6961,7 @@ "google": null, "image": "1f1fa-1f1e6.png", "sheet_x": 4, - "sheet_y": 39, + "sheet_y": 35, "short_name": "flag-ua", "short_names": [ "flag-ua" @@ -6702,7 +6969,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 244, + "subcategory": "country-flag", + "sort_order": 1786, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6719,7 +6987,7 @@ "google": null, "image": "1f1fa-1f1ec.png", "sheet_x": 4, - "sheet_y": 40, + "sheet_y": 36, "short_name": "flag-ug", "short_names": [ "flag-ug" @@ -6727,7 +6995,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 245, + "subcategory": "country-flag", + "sort_order": 1787, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6744,7 +7013,7 @@ "google": null, "image": "1f1fa-1f1f2.png", "sheet_x": 4, - "sheet_y": 41, + "sheet_y": 37, "short_name": "flag-um", "short_names": [ "flag-um" @@ -6752,7 +7021,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 246, + "subcategory": "country-flag", + "sort_order": 1788, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6769,7 +7039,7 @@ "google": null, "image": "1f1fa-1f1f3.png", "sheet_x": 4, - "sheet_y": 42, + "sheet_y": 38, "short_name": "flag-un", "short_names": [ "flag-un" @@ -6777,7 +7047,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 247, + "subcategory": "country-flag", + "sort_order": 1789, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -6794,7 +7065,7 @@ "google": "FE4E6", "image": "1f1fa-1f1f8.png", "sheet_x": 4, - "sheet_y": 43, + "sheet_y": 39, "short_name": "us", "short_names": [ "us", @@ -6803,8 +7074,9 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 248, - "added_in": "2.0", + "subcategory": "country-flag", + "sort_order": 1790, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -6820,7 +7092,7 @@ "google": null, "image": "1f1fa-1f1fe.png", "sheet_x": 4, - "sheet_y": 44, + "sheet_y": 40, "short_name": "flag-uy", "short_names": [ "flag-uy" @@ -6828,7 +7100,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 249, + "subcategory": "country-flag", + "sort_order": 1791, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6845,7 +7118,7 @@ "google": null, "image": "1f1fa-1f1ff.png", "sheet_x": 4, - "sheet_y": 45, + "sheet_y": 41, "short_name": "flag-uz", "short_names": [ "flag-uz" @@ -6853,7 +7126,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 250, + "subcategory": "country-flag", + "sort_order": 1792, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6870,7 +7144,7 @@ "google": null, "image": "1f1fb-1f1e6.png", "sheet_x": 4, - "sheet_y": 46, + "sheet_y": 42, "short_name": "flag-va", "short_names": [ "flag-va" @@ -6878,7 +7152,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 251, + "subcategory": "country-flag", + "sort_order": 1793, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6895,7 +7170,7 @@ "google": null, "image": "1f1fb-1f1e8.png", "sheet_x": 4, - "sheet_y": 47, + "sheet_y": 43, "short_name": "flag-vc", "short_names": [ "flag-vc" @@ -6903,7 +7178,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 252, + "subcategory": "country-flag", + "sort_order": 1794, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6920,7 +7196,7 @@ "google": null, "image": "1f1fb-1f1ea.png", "sheet_x": 4, - "sheet_y": 48, + "sheet_y": 44, "short_name": "flag-ve", "short_names": [ "flag-ve" @@ -6928,7 +7204,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 253, + "subcategory": "country-flag", + "sort_order": 1795, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6945,7 +7222,7 @@ "google": null, "image": "1f1fb-1f1ec.png", "sheet_x": 4, - "sheet_y": 49, + "sheet_y": 45, "short_name": "flag-vg", "short_names": [ "flag-vg" @@ -6953,7 +7230,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 254, + "subcategory": "country-flag", + "sort_order": 1796, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6970,7 +7248,7 @@ "google": null, "image": "1f1fb-1f1ee.png", "sheet_x": 4, - "sheet_y": 50, + "sheet_y": 46, "short_name": "flag-vi", "short_names": [ "flag-vi" @@ -6978,7 +7256,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 255, + "subcategory": "country-flag", + "sort_order": 1797, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -6995,7 +7274,7 @@ "google": null, "image": "1f1fb-1f1f3.png", "sheet_x": 4, - "sheet_y": 51, + "sheet_y": 47, "short_name": "flag-vn", "short_names": [ "flag-vn" @@ -7003,7 +7282,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 256, + "subcategory": "country-flag", + "sort_order": 1798, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -7020,7 +7300,7 @@ "google": null, "image": "1f1fb-1f1fa.png", "sheet_x": 4, - "sheet_y": 52, + "sheet_y": 48, "short_name": "flag-vu", "short_names": [ "flag-vu" @@ -7028,7 +7308,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 257, + "subcategory": "country-flag", + "sort_order": 1799, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -7045,7 +7326,7 @@ "google": null, "image": "1f1fc-1f1eb.png", "sheet_x": 4, - "sheet_y": 53, + "sheet_y": 49, "short_name": "flag-wf", "short_names": [ "flag-wf" @@ -7053,7 +7334,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 258, + "subcategory": "country-flag", + "sort_order": 1800, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -7070,7 +7352,7 @@ "google": null, "image": "1f1fc-1f1f8.png", "sheet_x": 4, - "sheet_y": 54, + "sheet_y": 50, "short_name": "flag-ws", "short_names": [ "flag-ws" @@ -7078,7 +7360,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 259, + "subcategory": "country-flag", + "sort_order": 1801, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -7095,7 +7378,7 @@ "google": null, "image": "1f1fd-1f1f0.png", "sheet_x": 4, - "sheet_y": 55, + "sheet_y": 51, "short_name": "flag-xk", "short_names": [ "flag-xk" @@ -7103,7 +7386,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 260, + "subcategory": "country-flag", + "sort_order": 1802, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -7120,7 +7404,7 @@ "google": null, "image": "1f1fe-1f1ea.png", "sheet_x": 4, - "sheet_y": 56, + "sheet_y": 52, "short_name": "flag-ye", "short_names": [ "flag-ye" @@ -7128,7 +7412,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 261, + "subcategory": "country-flag", + "sort_order": 1803, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -7144,8 +7429,8 @@ "softbank": null, "google": null, "image": "1f1fe-1f1f9.png", - "sheet_x": 5, - "sheet_y": 0, + "sheet_x": 4, + "sheet_y": 53, "short_name": "flag-yt", "short_names": [ "flag-yt" @@ -7153,7 +7438,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 262, + "subcategory": "country-flag", + "sort_order": 1804, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -7169,8 +7455,8 @@ "softbank": null, "google": null, "image": "1f1ff-1f1e6.png", - "sheet_x": 5, - "sheet_y": 1, + "sheet_x": 4, + "sheet_y": 54, "short_name": "flag-za", "short_names": [ "flag-za" @@ -7178,7 +7464,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 263, + "subcategory": "country-flag", + "sort_order": 1805, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -7194,8 +7481,8 @@ "softbank": null, "google": null, "image": "1f1ff-1f1f2.png", - "sheet_x": 5, - "sheet_y": 2, + "sheet_x": 4, + "sheet_y": 55, "short_name": "flag-zm", "short_names": [ "flag-zm" @@ -7203,7 +7490,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 264, + "subcategory": "country-flag", + "sort_order": 1806, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -7219,8 +7507,8 @@ "softbank": null, "google": null, "image": "1f1ff-1f1fc.png", - "sheet_x": 5, - "sheet_y": 3, + "sheet_x": 4, + "sheet_y": 56, "short_name": "flag-zw", "short_names": [ "flag-zw" @@ -7228,7 +7516,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 265, + "subcategory": "country-flag", + "sort_order": 1807, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -7244,8 +7533,8 @@ "softbank": "E203", "google": "FEB24", "image": "1f201.png", - "sheet_x": 5, - "sheet_y": 4, + "sheet_x": 4, + "sheet_y": 57, "short_name": "koko", "short_names": [ "koko" @@ -7253,8 +7542,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 167, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1491, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7270,7 +7560,7 @@ "google": "FEB3F", "image": "1f202-fe0f.png", "sheet_x": 5, - "sheet_y": 5, + "sheet_y": 0, "short_name": "sa", "short_names": [ "sa" @@ -7278,8 +7568,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 168, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1492, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7295,7 +7586,7 @@ "google": "FEB3A", "image": "1f21a.png", "sheet_x": 5, - "sheet_y": 6, + "sheet_y": 1, "short_name": "u7121", "short_names": [ "u7121" @@ -7303,8 +7594,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 174, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1498, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7320,7 +7612,7 @@ "google": "FEB40", "image": "1f22f.png", "sheet_x": 5, - "sheet_y": 7, + "sheet_y": 2, "short_name": "u6307", "short_names": [ "u6307" @@ -7328,8 +7620,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 171, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1495, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7345,7 +7638,7 @@ "google": "FEB2E", "image": "1f232.png", "sheet_x": 5, - "sheet_y": 8, + "sheet_y": 3, "short_name": "u7981", "short_names": [ "u7981" @@ -7353,8 +7646,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 175, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1499, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7370,7 +7664,7 @@ "google": "FEB2F", "image": "1f233.png", "sheet_x": 5, - "sheet_y": 9, + "sheet_y": 4, "short_name": "u7a7a", "short_names": [ "u7a7a" @@ -7378,8 +7672,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 179, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1503, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7395,7 +7690,7 @@ "google": "FEB30", "image": "1f234.png", "sheet_x": 5, - "sheet_y": 10, + "sheet_y": 5, "short_name": "u5408", "short_names": [ "u5408" @@ -7403,8 +7698,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 178, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1502, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7420,7 +7716,7 @@ "google": "FEB31", "image": "1f235.png", "sheet_x": 5, - "sheet_y": 11, + "sheet_y": 6, "short_name": "u6e80", "short_names": [ "u6e80" @@ -7428,8 +7724,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 183, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1507, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7445,7 +7742,7 @@ "google": "FEB39", "image": "1f236.png", "sheet_x": 5, - "sheet_y": 12, + "sheet_y": 7, "short_name": "u6709", "short_names": [ "u6709" @@ -7453,8 +7750,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 170, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1494, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7470,7 +7768,7 @@ "google": "FEB3B", "image": "1f237-fe0f.png", "sheet_x": 5, - "sheet_y": 13, + "sheet_y": 8, "short_name": "u6708", "short_names": [ "u6708" @@ -7478,8 +7776,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 169, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1493, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7495,7 +7794,7 @@ "google": "FEB3C", "image": "1f238.png", "sheet_x": 5, - "sheet_y": 14, + "sheet_y": 9, "short_name": "u7533", "short_names": [ "u7533" @@ -7503,8 +7802,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 177, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1501, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7520,7 +7820,7 @@ "google": "FEB3E", "image": "1f239.png", "sheet_x": 5, - "sheet_y": 15, + "sheet_y": 10, "short_name": "u5272", "short_names": [ "u5272" @@ -7528,8 +7828,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 173, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1497, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7545,7 +7846,7 @@ "google": "FEB41", "image": "1f23a.png", "sheet_x": 5, - "sheet_y": 16, + "sheet_y": 11, "short_name": "u55b6", "short_names": [ "u55b6" @@ -7553,8 +7854,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 182, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1506, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7570,7 +7872,7 @@ "google": "FEB3D", "image": "1f250.png", "sheet_x": 5, - "sheet_y": 17, + "sheet_y": 12, "short_name": "ideograph_advantage", "short_names": [ "ideograph_advantage" @@ -7578,8 +7880,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 172, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1496, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7595,7 +7898,7 @@ "google": "FEB50", "image": "1f251.png", "sheet_x": 5, - "sheet_y": 18, + "sheet_y": 13, "short_name": "accept", "short_names": [ "accept" @@ -7603,8 +7906,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 176, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1500, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7620,7 +7924,7 @@ "google": "FE005", "image": "1f300.png", "sheet_x": 5, - "sheet_y": 19, + "sheet_y": 14, "short_name": "cyclone", "short_names": [ "cyclone" @@ -7628,8 +7932,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 197, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 974, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7645,7 +7950,7 @@ "google": "FE006", "image": "1f301.png", "sheet_x": 5, - "sheet_y": 20, + "sheet_y": 15, "short_name": "foggy", "short_names": [ "foggy" @@ -7653,8 +7958,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 49, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 824, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7670,7 +7976,7 @@ "google": "FE007", "image": "1f302.png", "sheet_x": 5, - "sheet_y": 21, + "sheet_y": 16, "short_name": "closed_umbrella", "short_names": [ "closed_umbrella" @@ -7678,8 +7984,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 199, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 976, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7695,7 +8002,7 @@ "google": "FE008", "image": "1f303.png", "sheet_x": 5, - "sheet_y": 22, + "sheet_y": 17, "short_name": "night_with_stars", "short_names": [ "night_with_stars" @@ -7703,8 +8010,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 50, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 825, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7720,7 +8028,7 @@ "google": "FE009", "image": "1f304.png", "sheet_x": 5, - "sheet_y": 23, + "sheet_y": 18, "short_name": "sunrise_over_mountains", "short_names": [ "sunrise_over_mountains" @@ -7728,8 +8036,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 52, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 827, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7745,7 +8054,7 @@ "google": "FE00A", "image": "1f305.png", "sheet_x": 5, - "sheet_y": 24, + "sheet_y": 19, "short_name": "sunrise", "short_names": [ "sunrise" @@ -7753,8 +8062,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 53, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 828, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7770,7 +8080,7 @@ "google": "FE00B", "image": "1f306.png", "sheet_x": 5, - "sheet_y": 25, + "sheet_y": 20, "short_name": "city_sunset", "short_names": [ "city_sunset" @@ -7778,8 +8088,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 54, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 829, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7795,7 +8106,7 @@ "google": "FE00C", "image": "1f307.png", "sheet_x": 5, - "sheet_y": 26, + "sheet_y": 21, "short_name": "city_sunrise", "short_names": [ "city_sunrise" @@ -7803,8 +8114,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 55, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 830, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7820,7 +8132,7 @@ "google": "FE00D", "image": "1f308.png", "sheet_x": 5, - "sheet_y": 27, + "sheet_y": 22, "short_name": "rainbow", "short_names": [ "rainbow" @@ -7828,8 +8140,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 198, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 975, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7845,7 +8158,7 @@ "google": "FE010", "image": "1f309.png", "sheet_x": 5, - "sheet_y": 28, + "sheet_y": 23, "short_name": "bridge_at_night", "short_names": [ "bridge_at_night" @@ -7853,8 +8166,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 56, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 831, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7870,7 +8184,7 @@ "google": "FE038", "image": "1f30a.png", "sheet_x": 5, - "sheet_y": 29, + "sheet_y": 24, "short_name": "ocean", "short_names": [ "ocean" @@ -7878,8 +8192,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 210, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 987, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7895,7 +8210,7 @@ "google": "FE03A", "image": "1f30b.png", "sheet_x": 5, - "sheet_y": 30, + "sheet_y": 25, "short_name": "volcano", "short_names": [ "volcano" @@ -7903,8 +8218,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 10, - "added_in": "2.0", + "subcategory": "place-geographic", + "sort_order": 782, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7920,7 +8236,7 @@ "google": "FE03B", "image": "1f30c.png", "sheet_x": 5, - "sheet_y": 31, + "sheet_y": 26, "short_name": "milky_way", "short_names": [ "milky_way" @@ -7928,8 +8244,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 184, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 961, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7945,7 +8262,7 @@ "google": null, "image": "1f30d.png", "sheet_x": 5, - "sheet_y": 32, + "sheet_y": 27, "short_name": "earth_africa", "short_names": [ "earth_africa" @@ -7953,8 +8270,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 1, - "added_in": "2.0", + "subcategory": "place-map", + "sort_order": 773, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7970,7 +8288,7 @@ "google": null, "image": "1f30e.png", "sheet_x": 5, - "sheet_y": 33, + "sheet_y": 28, "short_name": "earth_americas", "short_names": [ "earth_americas" @@ -7978,8 +8296,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 2, - "added_in": "2.0", + "subcategory": "place-map", + "sort_order": 774, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -7995,7 +8314,7 @@ "google": "FE039", "image": "1f30f.png", "sheet_x": 5, - "sheet_y": 34, + "sheet_y": 29, "short_name": "earth_asia", "short_names": [ "earth_asia" @@ -8003,8 +8322,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 3, - "added_in": "2.0", + "subcategory": "place-map", + "sort_order": 775, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8020,7 +8340,7 @@ "google": null, "image": "1f310.png", "sheet_x": 5, - "sheet_y": 35, + "sheet_y": 30, "short_name": "globe_with_meridians", "short_names": [ "globe_with_meridians" @@ -8028,8 +8348,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 4, - "added_in": "2.0", + "subcategory": "place-map", + "sort_order": 776, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8045,7 +8366,7 @@ "google": "FE011", "image": "1f311.png", "sheet_x": 5, - "sheet_y": 36, + "sheet_y": 31, "short_name": "new_moon", "short_names": [ "new_moon" @@ -8053,8 +8374,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 164, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 941, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8070,7 +8392,7 @@ "google": null, "image": "1f312.png", "sheet_x": 5, - "sheet_y": 37, + "sheet_y": 32, "short_name": "waxing_crescent_moon", "short_names": [ "waxing_crescent_moon" @@ -8078,8 +8400,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 165, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 942, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8095,7 +8418,7 @@ "google": "FE013", "image": "1f313.png", "sheet_x": 5, - "sheet_y": 38, + "sheet_y": 33, "short_name": "first_quarter_moon", "short_names": [ "first_quarter_moon" @@ -8103,8 +8426,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 166, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 943, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8120,7 +8444,7 @@ "google": "FE012", "image": "1f314.png", "sheet_x": 5, - "sheet_y": 39, + "sheet_y": 34, "short_name": "moon", "short_names": [ "moon", @@ -8129,8 +8453,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 167, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 944, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8146,7 +8471,7 @@ "google": "FE015", "image": "1f315.png", "sheet_x": 5, - "sheet_y": 40, + "sheet_y": 35, "short_name": "full_moon", "short_names": [ "full_moon" @@ -8154,8 +8479,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 168, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 945, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8171,7 +8497,7 @@ "google": null, "image": "1f316.png", "sheet_x": 5, - "sheet_y": 41, + "sheet_y": 36, "short_name": "waning_gibbous_moon", "short_names": [ "waning_gibbous_moon" @@ -8179,8 +8505,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 169, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 946, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8196,7 +8523,7 @@ "google": null, "image": "1f317.png", "sheet_x": 5, - "sheet_y": 42, + "sheet_y": 37, "short_name": "last_quarter_moon", "short_names": [ "last_quarter_moon" @@ -8204,8 +8531,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 170, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 947, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8221,7 +8549,7 @@ "google": null, "image": "1f318.png", "sheet_x": 5, - "sheet_y": 43, + "sheet_y": 38, "short_name": "waning_crescent_moon", "short_names": [ "waning_crescent_moon" @@ -8229,8 +8557,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 171, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 948, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8246,7 +8575,7 @@ "google": "FE014", "image": "1f319.png", "sheet_x": 5, - "sheet_y": 44, + "sheet_y": 39, "short_name": "crescent_moon", "short_names": [ "crescent_moon" @@ -8254,8 +8583,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 172, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 949, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8271,7 +8601,7 @@ "google": null, "image": "1f31a.png", "sheet_x": 5, - "sheet_y": 45, + "sheet_y": 40, "short_name": "new_moon_with_face", "short_names": [ "new_moon_with_face" @@ -8279,8 +8609,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 173, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 950, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8296,7 +8627,7 @@ "google": "FE016", "image": "1f31b.png", "sheet_x": 5, - "sheet_y": 46, + "sheet_y": 41, "short_name": "first_quarter_moon_with_face", "short_names": [ "first_quarter_moon_with_face" @@ -8304,8 +8635,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 174, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 951, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8321,7 +8653,7 @@ "google": null, "image": "1f31c.png", "sheet_x": 5, - "sheet_y": 47, + "sheet_y": 42, "short_name": "last_quarter_moon_with_face", "short_names": [ "last_quarter_moon_with_face" @@ -8329,8 +8661,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 175, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 952, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8346,7 +8679,7 @@ "google": null, "image": "1f31d.png", "sheet_x": 5, - "sheet_y": 48, + "sheet_y": 43, "short_name": "full_moon_with_face", "short_names": [ "full_moon_with_face" @@ -8354,8 +8687,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 178, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 955, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8371,7 +8705,7 @@ "google": null, "image": "1f31e.png", "sheet_x": 5, - "sheet_y": 49, + "sheet_y": 44, "short_name": "sun_with_face", "short_names": [ "sun_with_face" @@ -8379,8 +8713,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 179, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 956, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8396,7 +8731,7 @@ "google": "FEB69", "image": "1f31f.png", "sheet_x": 5, - "sheet_y": 50, + "sheet_y": 45, "short_name": "star2", "short_names": [ "star2" @@ -8404,8 +8739,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 182, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 959, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8421,7 +8757,7 @@ "google": "FEB6A", "image": "1f320.png", "sheet_x": 5, - "sheet_y": 51, + "sheet_y": 46, "short_name": "stars", "short_names": [ "stars" @@ -8429,15 +8765,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 183, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 960, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "THERMOMETER", "unified": "1F321-FE0F", "non_qualified": "1F321", "docomo": null, @@ -8446,7 +8783,7 @@ "google": null, "image": "1f321-fe0f.png", "sheet_x": 5, - "sheet_y": 52, + "sheet_y": 47, "short_name": "thermometer", "short_names": [ "thermometer" @@ -8454,15 +8791,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 176, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 953, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SUN BEHIND SMALL CLOUD", "unified": "1F324-FE0F", "non_qualified": "1F324", "docomo": null, @@ -8471,7 +8809,7 @@ "google": null, "image": "1f324-fe0f.png", "sheet_x": 5, - "sheet_y": 53, + "sheet_y": 48, "short_name": "mostly_sunny", "short_names": [ "mostly_sunny", @@ -8480,15 +8818,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 188, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 965, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SUN BEHIND LARGE CLOUD", "unified": "1F325-FE0F", "non_qualified": "1F325", "docomo": null, @@ -8497,7 +8836,7 @@ "google": null, "image": "1f325-fe0f.png", "sheet_x": 5, - "sheet_y": 54, + "sheet_y": 49, "short_name": "barely_sunny", "short_names": [ "barely_sunny", @@ -8506,15 +8845,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 189, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 966, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SUN BEHIND RAIN CLOUD", "unified": "1F326-FE0F", "non_qualified": "1F326", "docomo": null, @@ -8523,7 +8863,7 @@ "google": null, "image": "1f326-fe0f.png", "sheet_x": 5, - "sheet_y": 55, + "sheet_y": 50, "short_name": "partly_sunny_rain", "short_names": [ "partly_sunny_rain", @@ -8532,15 +8872,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 190, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 967, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CLOUD WITH RAIN", "unified": "1F327-FE0F", "non_qualified": "1F327", "docomo": null, @@ -8549,7 +8890,7 @@ "google": null, "image": "1f327-fe0f.png", "sheet_x": 5, - "sheet_y": 56, + "sheet_y": 51, "short_name": "rain_cloud", "short_names": [ "rain_cloud" @@ -8557,15 +8898,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 191, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 968, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CLOUD WITH SNOW", "unified": "1F328-FE0F", "non_qualified": "1F328", "docomo": null, @@ -8573,8 +8915,8 @@ "softbank": null, "google": null, "image": "1f328-fe0f.png", - "sheet_x": 6, - "sheet_y": 0, + "sheet_x": 5, + "sheet_y": 52, "short_name": "snow_cloud", "short_names": [ "snow_cloud" @@ -8582,15 +8924,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 192, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 969, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CLOUD WITH LIGHTNING", "unified": "1F329-FE0F", "non_qualified": "1F329", "docomo": null, @@ -8598,8 +8941,8 @@ "softbank": null, "google": null, "image": "1f329-fe0f.png", - "sheet_x": 6, - "sheet_y": 1, + "sheet_x": 5, + "sheet_y": 53, "short_name": "lightning", "short_names": [ "lightning", @@ -8608,15 +8951,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 193, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 970, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "TORNADO", "unified": "1F32A-FE0F", "non_qualified": "1F32A", "docomo": null, @@ -8624,8 +8968,8 @@ "softbank": null, "google": null, "image": "1f32a-fe0f.png", - "sheet_x": 6, - "sheet_y": 2, + "sheet_x": 5, + "sheet_y": 54, "short_name": "tornado", "short_names": [ "tornado", @@ -8634,15 +8978,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 194, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 971, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "FOG", "unified": "1F32B-FE0F", "non_qualified": "1F32B", "docomo": null, @@ -8650,8 +8995,8 @@ "softbank": null, "google": null, "image": "1f32b-fe0f.png", - "sheet_x": 6, - "sheet_y": 3, + "sheet_x": 5, + "sheet_y": 55, "short_name": "fog", "short_names": [ "fog" @@ -8659,15 +9004,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 195, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 972, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WIND FACE", "unified": "1F32C-FE0F", "non_qualified": "1F32C", "docomo": null, @@ -8675,8 +9021,8 @@ "softbank": null, "google": null, "image": "1f32c-fe0f.png", - "sheet_x": 6, - "sheet_y": 4, + "sheet_x": 5, + "sheet_y": 56, "short_name": "wind_blowing_face", "short_names": [ "wind_blowing_face" @@ -8684,8 +9030,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 196, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 973, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8700,8 +9047,8 @@ "softbank": null, "google": null, "image": "1f32d.png", - "sheet_x": 6, - "sheet_y": 5, + "sheet_x": 5, + "sheet_y": 57, "short_name": "hotdog", "short_names": [ "hotdog" @@ -8709,8 +9056,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 47, - "added_in": "2.0", + "subcategory": "food-prepared", + "sort_order": 694, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8726,7 +9074,7 @@ "google": null, "image": "1f32e.png", "sheet_x": 6, - "sheet_y": 6, + "sheet_y": 0, "short_name": "taco", "short_names": [ "taco" @@ -8734,8 +9082,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 49, - "added_in": "2.0", + "subcategory": "food-prepared", + "sort_order": 696, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8751,7 +9100,7 @@ "google": null, "image": "1f32f.png", "sheet_x": 6, - "sheet_y": 7, + "sheet_y": 1, "short_name": "burrito", "short_names": [ "burrito" @@ -8759,8 +9108,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 50, - "added_in": "2.0", + "subcategory": "food-prepared", + "sort_order": 697, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8776,7 +9126,7 @@ "google": "FE04C", "image": "1f330.png", "sheet_x": 6, - "sheet_y": 8, + "sheet_y": 2, "short_name": "chestnut", "short_names": [ "chestnut" @@ -8784,8 +9134,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 31, - "added_in": "2.0", + "subcategory": "food-vegetable", + "sort_order": 677, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8801,7 +9152,7 @@ "google": "FE03E", "image": "1f331.png", "sheet_x": 6, - "sheet_y": 9, + "sheet_y": 3, "short_name": "seedling", "short_names": [ "seedling" @@ -8809,8 +9160,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 116, - "added_in": "2.0", + "subcategory": "plant-other", + "sort_order": 631, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8826,7 +9178,7 @@ "google": null, "image": "1f332.png", "sheet_x": 6, - "sheet_y": 10, + "sheet_y": 4, "short_name": "evergreen_tree", "short_names": [ "evergreen_tree" @@ -8834,8 +9186,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 117, - "added_in": "2.0", + "subcategory": "plant-other", + "sort_order": 633, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8851,7 +9204,7 @@ "google": null, "image": "1f333.png", "sheet_x": 6, - "sheet_y": 11, + "sheet_y": 5, "short_name": "deciduous_tree", "short_names": [ "deciduous_tree" @@ -8859,8 +9212,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 118, - "added_in": "2.0", + "subcategory": "plant-other", + "sort_order": 634, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8876,7 +9230,7 @@ "google": "FE047", "image": "1f334.png", "sheet_x": 6, - "sheet_y": 12, + "sheet_y": 6, "short_name": "palm_tree", "short_names": [ "palm_tree" @@ -8884,8 +9238,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 119, - "added_in": "2.0", + "subcategory": "plant-other", + "sort_order": 635, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8901,7 +9256,7 @@ "google": "FE048", "image": "1f335.png", "sheet_x": 6, - "sheet_y": 13, + "sheet_y": 7, "short_name": "cactus", "short_names": [ "cactus" @@ -8909,15 +9264,16 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 120, - "added_in": "2.0", + "subcategory": "plant-other", + "sort_order": 636, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "HOT PEPPER", "unified": "1F336-FE0F", "non_qualified": "1F336", "docomo": null, @@ -8926,7 +9282,7 @@ "google": null, "image": "1f336-fe0f.png", "sheet_x": 6, - "sheet_y": 14, + "sheet_y": 8, "short_name": "hot_pepper", "short_names": [ "hot_pepper" @@ -8934,8 +9290,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 23, - "added_in": "2.0", + "subcategory": "food-vegetable", + "sort_order": 668, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8951,7 +9308,7 @@ "google": "FE03D", "image": "1f337.png", "sheet_x": 6, - "sheet_y": 15, + "sheet_y": 9, "short_name": "tulip", "short_names": [ "tulip" @@ -8959,8 +9316,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 115, - "added_in": "2.0", + "subcategory": "plant-flower", + "sort_order": 630, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -8976,7 +9334,7 @@ "google": "FE040", "image": "1f338.png", "sheet_x": 6, - "sheet_y": 16, + "sheet_y": 10, "short_name": "cherry_blossom", "short_names": [ "cherry_blossom" @@ -8984,8 +9342,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 107, - "added_in": "2.0", + "subcategory": "plant-flower", + "sort_order": 622, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9001,7 +9360,7 @@ "google": "FE041", "image": "1f339.png", "sheet_x": 6, - "sheet_y": 17, + "sheet_y": 11, "short_name": "rose", "short_names": [ "rose" @@ -9009,8 +9368,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 110, - "added_in": "2.0", + "subcategory": "plant-flower", + "sort_order": 625, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9026,7 +9386,7 @@ "google": "FE045", "image": "1f33a.png", "sheet_x": 6, - "sheet_y": 18, + "sheet_y": 12, "short_name": "hibiscus", "short_names": [ "hibiscus" @@ -9034,8 +9394,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 112, - "added_in": "2.0", + "subcategory": "plant-flower", + "sort_order": 627, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9051,7 +9412,7 @@ "google": "FE046", "image": "1f33b.png", "sheet_x": 6, - "sheet_y": 19, + "sheet_y": 13, "short_name": "sunflower", "short_names": [ "sunflower" @@ -9059,8 +9420,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 113, - "added_in": "2.0", + "subcategory": "plant-flower", + "sort_order": 628, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9076,7 +9438,7 @@ "google": "FE04D", "image": "1f33c.png", "sheet_x": 6, - "sheet_y": 20, + "sheet_y": 14, "short_name": "blossom", "short_names": [ "blossom" @@ -9084,8 +9446,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 114, - "added_in": "2.0", + "subcategory": "plant-flower", + "sort_order": 629, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9101,7 +9464,7 @@ "google": "FE04A", "image": "1f33d.png", "sheet_x": 6, - "sheet_y": 21, + "sheet_y": 15, "short_name": "corn", "short_names": [ "corn" @@ -9109,8 +9472,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 22, - "added_in": "2.0", + "subcategory": "food-vegetable", + "sort_order": 667, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9126,7 +9490,7 @@ "google": "FE049", "image": "1f33e.png", "sheet_x": 6, - "sheet_y": 22, + "sheet_y": 16, "short_name": "ear_of_rice", "short_names": [ "ear_of_rice" @@ -9134,8 +9498,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 121, - "added_in": "2.0", + "subcategory": "plant-other", + "sort_order": 637, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9151,7 +9516,7 @@ "google": "FE04E", "image": "1f33f.png", "sheet_x": 6, - "sheet_y": 23, + "sheet_y": 17, "short_name": "herb", "short_names": [ "herb" @@ -9159,8 +9524,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 122, - "added_in": "2.0", + "subcategory": "plant-other", + "sort_order": 638, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9176,7 +9542,7 @@ "google": "FE03C", "image": "1f340.png", "sheet_x": 6, - "sheet_y": 24, + "sheet_y": 18, "short_name": "four_leaf_clover", "short_names": [ "four_leaf_clover" @@ -9184,8 +9550,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 124, - "added_in": "2.0", + "subcategory": "plant-other", + "sort_order": 640, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9201,7 +9568,7 @@ "google": "FE03F", "image": "1f341.png", "sheet_x": 6, - "sheet_y": 25, + "sheet_y": 19, "short_name": "maple_leaf", "short_names": [ "maple_leaf" @@ -9209,8 +9576,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 125, - "added_in": "2.0", + "subcategory": "plant-other", + "sort_order": 641, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9226,7 +9594,7 @@ "google": "FE042", "image": "1f342.png", "sheet_x": 6, - "sheet_y": 26, + "sheet_y": 20, "short_name": "fallen_leaf", "short_names": [ "fallen_leaf" @@ -9234,8 +9602,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 126, - "added_in": "2.0", + "subcategory": "plant-other", + "sort_order": 642, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9251,7 +9620,7 @@ "google": "FE043", "image": "1f343.png", "sheet_x": 6, - "sheet_y": 27, + "sheet_y": 21, "short_name": "leaves", "short_names": [ "leaves" @@ -9259,8 +9628,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 127, - "added_in": "2.0", + "subcategory": "plant-other", + "sort_order": 643, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9276,7 +9646,7 @@ "google": "FE04B", "image": "1f344.png", "sheet_x": 6, - "sheet_y": 28, + "sheet_y": 22, "short_name": "mushroom", "short_names": [ "mushroom" @@ -9284,8 +9654,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 29, - "added_in": "2.0", + "subcategory": "food-vegetable", + "sort_order": 675, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9301,7 +9672,7 @@ "google": "FE055", "image": "1f345.png", "sheet_x": 6, - "sheet_y": 29, + "sheet_y": 23, "short_name": "tomato", "short_names": [ "tomato" @@ -9309,8 +9680,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 16, - "added_in": "2.0", + "subcategory": "food-fruit", + "sort_order": 660, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9326,7 +9698,7 @@ "google": "FE056", "image": "1f346.png", "sheet_x": 6, - "sheet_y": 30, + "sheet_y": 24, "short_name": "eggplant", "short_names": [ "eggplant" @@ -9334,8 +9706,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 19, - "added_in": "2.0", + "subcategory": "food-vegetable", + "sort_order": 664, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9351,7 +9724,7 @@ "google": "FE059", "image": "1f347.png", "sheet_x": 6, - "sheet_y": 31, + "sheet_y": 25, "short_name": "grapes", "short_names": [ "grapes" @@ -9359,8 +9732,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 1, - "added_in": "2.0", + "subcategory": "food-fruit", + "sort_order": 644, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9376,7 +9750,7 @@ "google": "FE057", "image": "1f348.png", "sheet_x": 6, - "sheet_y": 32, + "sheet_y": 26, "short_name": "melon", "short_names": [ "melon" @@ -9384,8 +9758,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 2, - "added_in": "2.0", + "subcategory": "food-fruit", + "sort_order": 645, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9401,7 +9776,7 @@ "google": "FE054", "image": "1f349.png", "sheet_x": 6, - "sheet_y": 33, + "sheet_y": 27, "short_name": "watermelon", "short_names": [ "watermelon" @@ -9409,8 +9784,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 3, - "added_in": "2.0", + "subcategory": "food-fruit", + "sort_order": 646, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9426,7 +9802,7 @@ "google": "FE052", "image": "1f34a.png", "sheet_x": 6, - "sheet_y": 34, + "sheet_y": 28, "short_name": "tangerine", "short_names": [ "tangerine" @@ -9434,8 +9810,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 4, - "added_in": "2.0", + "subcategory": "food-fruit", + "sort_order": 647, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9451,7 +9828,7 @@ "google": null, "image": "1f34b.png", "sheet_x": 6, - "sheet_y": 35, + "sheet_y": 29, "short_name": "lemon", "short_names": [ "lemon" @@ -9459,8 +9836,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 5, - "added_in": "2.0", + "subcategory": "food-fruit", + "sort_order": 648, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9476,7 +9854,7 @@ "google": "FE050", "image": "1f34c.png", "sheet_x": 6, - "sheet_y": 36, + "sheet_y": 30, "short_name": "banana", "short_names": [ "banana" @@ -9484,8 +9862,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 6, - "added_in": "2.0", + "subcategory": "food-fruit", + "sort_order": 649, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9501,7 +9880,7 @@ "google": "FE058", "image": "1f34d.png", "sheet_x": 6, - "sheet_y": 37, + "sheet_y": 31, "short_name": "pineapple", "short_names": [ "pineapple" @@ -9509,8 +9888,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 7, - "added_in": "2.0", + "subcategory": "food-fruit", + "sort_order": 650, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9526,7 +9906,7 @@ "google": "FE051", "image": "1f34e.png", "sheet_x": 6, - "sheet_y": 38, + "sheet_y": 32, "short_name": "apple", "short_names": [ "apple" @@ -9534,8 +9914,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 9, - "added_in": "2.0", + "subcategory": "food-fruit", + "sort_order": 652, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9551,7 +9932,7 @@ "google": "FE05B", "image": "1f34f.png", "sheet_x": 6, - "sheet_y": 39, + "sheet_y": 33, "short_name": "green_apple", "short_names": [ "green_apple" @@ -9559,8 +9940,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 10, - "added_in": "2.0", + "subcategory": "food-fruit", + "sort_order": 653, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9576,7 +9958,7 @@ "google": null, "image": "1f350.png", "sheet_x": 6, - "sheet_y": 40, + "sheet_y": 34, "short_name": "pear", "short_names": [ "pear" @@ -9584,8 +9966,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 11, - "added_in": "2.0", + "subcategory": "food-fruit", + "sort_order": 654, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9601,7 +9984,7 @@ "google": "FE05A", "image": "1f351.png", "sheet_x": 6, - "sheet_y": 41, + "sheet_y": 35, "short_name": "peach", "short_names": [ "peach" @@ -9609,8 +9992,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 12, - "added_in": "2.0", + "subcategory": "food-fruit", + "sort_order": 655, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9626,7 +10010,7 @@ "google": "FE04F", "image": "1f352.png", "sheet_x": 6, - "sheet_y": 42, + "sheet_y": 36, "short_name": "cherries", "short_names": [ "cherries" @@ -9634,8 +10018,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 13, - "added_in": "2.0", + "subcategory": "food-fruit", + "sort_order": 656, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9651,7 +10036,7 @@ "google": "FE053", "image": "1f353.png", "sheet_x": 6, - "sheet_y": 43, + "sheet_y": 37, "short_name": "strawberry", "short_names": [ "strawberry" @@ -9659,8 +10044,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 14, - "added_in": "2.0", + "subcategory": "food-fruit", + "sort_order": 657, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9676,7 +10062,7 @@ "google": "FE960", "image": "1f354.png", "sheet_x": 6, - "sheet_y": 44, + "sheet_y": 38, "short_name": "hamburger", "short_names": [ "hamburger" @@ -9684,8 +10070,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 44, - "added_in": "2.0", + "subcategory": "food-prepared", + "sort_order": 691, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9701,7 +10088,7 @@ "google": "FE975", "image": "1f355.png", "sheet_x": 6, - "sheet_y": 45, + "sheet_y": 39, "short_name": "pizza", "short_names": [ "pizza" @@ -9709,8 +10096,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 46, - "added_in": "2.0", + "subcategory": "food-prepared", + "sort_order": 693, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9726,7 +10114,7 @@ "google": "FE972", "image": "1f356.png", "sheet_x": 6, - "sheet_y": 46, + "sheet_y": 40, "short_name": "meat_on_bone", "short_names": [ "meat_on_bone" @@ -9734,8 +10122,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 40, - "added_in": "2.0", + "subcategory": "food-prepared", + "sort_order": 687, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9751,7 +10140,7 @@ "google": "FE976", "image": "1f357.png", "sheet_x": 6, - "sheet_y": 47, + "sheet_y": 41, "short_name": "poultry_leg", "short_names": [ "poultry_leg" @@ -9759,8 +10148,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 41, - "added_in": "2.0", + "subcategory": "food-prepared", + "sort_order": 688, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9776,7 +10166,7 @@ "google": "FE969", "image": "1f358.png", "sheet_x": 6, - "sheet_y": 48, + "sheet_y": 42, "short_name": "rice_cracker", "short_names": [ "rice_cracker" @@ -9784,8 +10174,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 64, - "added_in": "2.0", + "subcategory": "food-asian", + "sort_order": 713, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9801,7 +10192,7 @@ "google": "FE961", "image": "1f359.png", "sheet_x": 6, - "sheet_y": 49, + "sheet_y": 43, "short_name": "rice_ball", "short_names": [ "rice_ball" @@ -9809,8 +10200,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 65, - "added_in": "2.0", + "subcategory": "food-asian", + "sort_order": 714, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9826,7 +10218,7 @@ "google": "FE96A", "image": "1f35a.png", "sheet_x": 6, - "sheet_y": 50, + "sheet_y": 44, "short_name": "rice", "short_names": [ "rice" @@ -9834,8 +10226,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 66, - "added_in": "2.0", + "subcategory": "food-asian", + "sort_order": 715, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9851,7 +10244,7 @@ "google": "FE96C", "image": "1f35b.png", "sheet_x": 6, - "sheet_y": 51, + "sheet_y": 45, "short_name": "curry", "short_names": [ "curry" @@ -9859,8 +10252,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 67, - "added_in": "2.0", + "subcategory": "food-asian", + "sort_order": 716, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9876,7 +10270,7 @@ "google": "FE963", "image": "1f35c.png", "sheet_x": 6, - "sheet_y": 52, + "sheet_y": 46, "short_name": "ramen", "short_names": [ "ramen" @@ -9884,8 +10278,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 68, - "added_in": "2.0", + "subcategory": "food-asian", + "sort_order": 717, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9901,7 +10296,7 @@ "google": "FE96B", "image": "1f35d.png", "sheet_x": 6, - "sheet_y": 53, + "sheet_y": 47, "short_name": "spaghetti", "short_names": [ "spaghetti" @@ -9909,8 +10304,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 69, - "added_in": "2.0", + "subcategory": "food-asian", + "sort_order": 718, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9926,7 +10322,7 @@ "google": "FE964", "image": "1f35e.png", "sheet_x": 6, - "sheet_y": 54, + "sheet_y": 48, "short_name": "bread", "short_names": [ "bread" @@ -9934,8 +10330,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 32, - "added_in": "2.0", + "subcategory": "food-prepared", + "sort_order": 678, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9951,7 +10348,7 @@ "google": "FE967", "image": "1f35f.png", "sheet_x": 6, - "sheet_y": 55, + "sheet_y": 49, "short_name": "fries", "short_names": [ "fries" @@ -9959,8 +10356,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 45, - "added_in": "2.0", + "subcategory": "food-prepared", + "sort_order": 692, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -9976,7 +10374,7 @@ "google": "FE974", "image": "1f360.png", "sheet_x": 6, - "sheet_y": 56, + "sheet_y": 50, "short_name": "sweet_potato", "short_names": [ "sweet_potato" @@ -9984,8 +10382,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 70, - "added_in": "2.0", + "subcategory": "food-asian", + "sort_order": 719, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10000,8 +10399,8 @@ "softbank": "E33C", "google": "FE968", "image": "1f361.png", - "sheet_x": 7, - "sheet_y": 0, + "sheet_x": 6, + "sheet_y": 51, "short_name": "dango", "short_names": [ "dango" @@ -10009,8 +10408,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 76, - "added_in": "2.0", + "subcategory": "food-asian", + "sort_order": 725, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10025,8 +10425,8 @@ "softbank": "E343", "google": "FE96D", "image": "1f362.png", - "sheet_x": 7, - "sheet_y": 1, + "sheet_x": 6, + "sheet_y": 52, "short_name": "oden", "short_names": [ "oden" @@ -10034,8 +10434,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 71, - "added_in": "2.0", + "subcategory": "food-asian", + "sort_order": 720, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10050,8 +10451,8 @@ "softbank": "E344", "google": "FE96E", "image": "1f363.png", - "sheet_x": 7, - "sheet_y": 2, + "sheet_x": 6, + "sheet_y": 53, "short_name": "sushi", "short_names": [ "sushi" @@ -10059,8 +10460,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 72, - "added_in": "2.0", + "subcategory": "food-asian", + "sort_order": 721, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10075,8 +10477,8 @@ "softbank": null, "google": "FE97F", "image": "1f364.png", - "sheet_x": 7, - "sheet_y": 3, + "sheet_x": 6, + "sheet_y": 54, "short_name": "fried_shrimp", "short_names": [ "fried_shrimp" @@ -10084,8 +10486,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 73, - "added_in": "2.0", + "subcategory": "food-asian", + "sort_order": 722, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10100,8 +10503,8 @@ "softbank": null, "google": "FE973", "image": "1f365.png", - "sheet_x": 7, - "sheet_y": 4, + "sheet_x": 6, + "sheet_y": 55, "short_name": "fish_cake", "short_names": [ "fish_cake" @@ -10109,8 +10512,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 74, - "added_in": "2.0", + "subcategory": "food-asian", + "sort_order": 723, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10125,8 +10529,8 @@ "softbank": "E33A", "google": "FE966", "image": "1f366.png", - "sheet_x": 7, - "sheet_y": 5, + "sheet_x": 6, + "sheet_y": 56, "short_name": "icecream", "short_names": [ "icecream" @@ -10134,8 +10538,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 85, - "added_in": "2.0", + "subcategory": "food-sweet", + "sort_order": 734, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10150,8 +10555,8 @@ "softbank": "E43F", "google": "FE971", "image": "1f367.png", - "sheet_x": 7, - "sheet_y": 6, + "sheet_x": 6, + "sheet_y": 57, "short_name": "shaved_ice", "short_names": [ "shaved_ice" @@ -10159,8 +10564,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 86, - "added_in": "2.0", + "subcategory": "food-sweet", + "sort_order": 735, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10176,7 +10582,7 @@ "google": "FE977", "image": "1f368.png", "sheet_x": 7, - "sheet_y": 7, + "sheet_y": 0, "short_name": "ice_cream", "short_names": [ "ice_cream" @@ -10184,8 +10590,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 87, - "added_in": "2.0", + "subcategory": "food-sweet", + "sort_order": 736, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10201,7 +10608,7 @@ "google": "FE978", "image": "1f369.png", "sheet_x": 7, - "sheet_y": 8, + "sheet_y": 1, "short_name": "doughnut", "short_names": [ "doughnut" @@ -10209,8 +10616,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 88, - "added_in": "2.0", + "subcategory": "food-sweet", + "sort_order": 737, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10226,7 +10634,7 @@ "google": "FE979", "image": "1f36a.png", "sheet_x": 7, - "sheet_y": 9, + "sheet_y": 2, "short_name": "cookie", "short_names": [ "cookie" @@ -10234,8 +10642,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 89, - "added_in": "2.0", + "subcategory": "food-sweet", + "sort_order": 738, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10251,7 +10660,7 @@ "google": "FE97A", "image": "1f36b.png", "sheet_x": 7, - "sheet_y": 10, + "sheet_y": 3, "short_name": "chocolate_bar", "short_names": [ "chocolate_bar" @@ -10259,8 +10668,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 94, - "added_in": "2.0", + "subcategory": "food-sweet", + "sort_order": 743, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10276,7 +10686,7 @@ "google": "FE97B", "image": "1f36c.png", "sheet_x": 7, - "sheet_y": 11, + "sheet_y": 4, "short_name": "candy", "short_names": [ "candy" @@ -10284,8 +10694,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 95, - "added_in": "2.0", + "subcategory": "food-sweet", + "sort_order": 744, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10301,7 +10712,7 @@ "google": "FE97C", "image": "1f36d.png", "sheet_x": 7, - "sheet_y": 12, + "sheet_y": 5, "short_name": "lollipop", "short_names": [ "lollipop" @@ -10309,8 +10720,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 96, - "added_in": "2.0", + "subcategory": "food-sweet", + "sort_order": 745, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10326,7 +10738,7 @@ "google": "FE97D", "image": "1f36e.png", "sheet_x": 7, - "sheet_y": 13, + "sheet_y": 6, "short_name": "custard", "short_names": [ "custard" @@ -10334,8 +10746,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 97, - "added_in": "2.0", + "subcategory": "food-sweet", + "sort_order": 746, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10351,7 +10764,7 @@ "google": "FE97E", "image": "1f36f.png", "sheet_x": 7, - "sheet_y": 14, + "sheet_y": 7, "short_name": "honey_pot", "short_names": [ "honey_pot" @@ -10359,8 +10772,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 98, - "added_in": "2.0", + "subcategory": "food-sweet", + "sort_order": 747, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10376,7 +10790,7 @@ "google": "FE962", "image": "1f370.png", "sheet_x": 7, - "sheet_y": 15, + "sheet_y": 8, "short_name": "cake", "short_names": [ "cake" @@ -10384,8 +10798,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 91, - "added_in": "2.0", + "subcategory": "food-sweet", + "sort_order": 740, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10401,7 +10816,7 @@ "google": "FE96F", "image": "1f371.png", "sheet_x": 7, - "sheet_y": 16, + "sheet_y": 9, "short_name": "bento", "short_names": [ "bento" @@ -10409,8 +10824,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 63, - "added_in": "2.0", + "subcategory": "food-asian", + "sort_order": 712, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10426,7 +10842,7 @@ "google": "FE970", "image": "1f372.png", "sheet_x": 7, - "sheet_y": 17, + "sheet_y": 10, "short_name": "stew", "short_names": [ "stew" @@ -10434,8 +10850,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 56, - "added_in": "2.0", + "subcategory": "food-prepared", + "sort_order": 704, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10451,7 +10868,7 @@ "google": "FE965", "image": "1f373.png", "sheet_x": 7, - "sheet_y": 18, + "sheet_y": 11, "short_name": "fried_egg", "short_names": [ "fried_egg", @@ -10460,8 +10877,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 54, - "added_in": "2.0", + "subcategory": "food-prepared", + "sort_order": 702, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10477,7 +10895,7 @@ "google": "FE980", "image": "1f374.png", "sheet_x": 7, - "sheet_y": 19, + "sheet_y": 12, "short_name": "fork_and_knife", "short_names": [ "fork_and_knife" @@ -10485,8 +10903,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 118, - "added_in": "2.0", + "subcategory": "dishware", + "sort_order": 769, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10502,7 +10921,7 @@ "google": "FE984", "image": "1f375.png", "sheet_x": 7, - "sheet_y": 20, + "sheet_y": 13, "short_name": "tea", "short_names": [ "tea" @@ -10510,8 +10929,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 102, - "added_in": "2.0", + "subcategory": "drink", + "sort_order": 752, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10527,7 +10947,7 @@ "google": "FE985", "image": "1f376.png", "sheet_x": 7, - "sheet_y": 21, + "sheet_y": 14, "short_name": "sake", "short_names": [ "sake" @@ -10535,8 +10955,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 103, - "added_in": "2.0", + "subcategory": "drink", + "sort_order": 753, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10552,7 +10973,7 @@ "google": "FE986", "image": "1f377.png", "sheet_x": 7, - "sheet_y": 22, + "sheet_y": 15, "short_name": "wine_glass", "short_names": [ "wine_glass" @@ -10560,8 +10981,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 105, - "added_in": "2.0", + "subcategory": "drink", + "sort_order": 755, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10577,7 +10999,7 @@ "google": "FE982", "image": "1f378.png", "sheet_x": 7, - "sheet_y": 23, + "sheet_y": 16, "short_name": "cocktail", "short_names": [ "cocktail" @@ -10585,8 +11007,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 106, - "added_in": "2.0", + "subcategory": "drink", + "sort_order": 756, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10602,7 +11025,7 @@ "google": "FE988", "image": "1f379.png", "sheet_x": 7, - "sheet_y": 24, + "sheet_y": 17, "short_name": "tropical_drink", "short_names": [ "tropical_drink" @@ -10610,8 +11033,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 107, - "added_in": "2.0", + "subcategory": "drink", + "sort_order": 757, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10627,7 +11051,7 @@ "google": "FE983", "image": "1f37a.png", "sheet_x": 7, - "sheet_y": 25, + "sheet_y": 18, "short_name": "beer", "short_names": [ "beer" @@ -10635,8 +11059,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 108, - "added_in": "2.0", + "subcategory": "drink", + "sort_order": 758, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10652,7 +11077,7 @@ "google": "FE987", "image": "1f37b.png", "sheet_x": 7, - "sheet_y": 26, + "sheet_y": 19, "short_name": "beers", "short_names": [ "beers" @@ -10660,8 +11085,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 109, - "added_in": "2.0", + "subcategory": "drink", + "sort_order": 759, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10677,7 +11103,7 @@ "google": null, "image": "1f37c.png", "sheet_x": 7, - "sheet_y": 27, + "sheet_y": 20, "short_name": "baby_bottle", "short_names": [ "baby_bottle" @@ -10685,15 +11111,16 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 99, - "added_in": "2.0", + "subcategory": "drink", + "sort_order": 748, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "FORK AND KNIFE WITH PLATE", "unified": "1F37D-FE0F", "non_qualified": "1F37D", "docomo": null, @@ -10702,7 +11129,7 @@ "google": null, "image": "1f37d-fe0f.png", "sheet_x": 7, - "sheet_y": 28, + "sheet_y": 21, "short_name": "knife_fork_plate", "short_names": [ "knife_fork_plate" @@ -10710,8 +11137,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 117, - "added_in": "2.0", + "subcategory": "dishware", + "sort_order": 768, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10727,7 +11155,7 @@ "google": null, "image": "1f37e.png", "sheet_x": 7, - "sheet_y": 29, + "sheet_y": 22, "short_name": "champagne", "short_names": [ "champagne" @@ -10735,8 +11163,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 104, - "added_in": "2.0", + "subcategory": "drink", + "sort_order": 754, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10752,7 +11181,7 @@ "google": null, "image": "1f37f.png", "sheet_x": 7, - "sheet_y": 30, + "sheet_y": 23, "short_name": "popcorn", "short_names": [ "popcorn" @@ -10760,8 +11189,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 59, - "added_in": "2.0", + "subcategory": "food-prepared", + "sort_order": 708, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10777,7 +11207,7 @@ "google": "FE50F", "image": "1f380.png", "sheet_x": 7, - "sheet_y": 31, + "sheet_y": 24, "short_name": "ribbon", "short_names": [ "ribbon" @@ -10785,8 +11215,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 17, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 1004, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10802,7 +11233,7 @@ "google": "FE510", "image": "1f381.png", "sheet_x": 7, - "sheet_y": 32, + "sheet_y": 25, "short_name": "gift", "short_names": [ "gift" @@ -10810,8 +11241,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 18, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 1005, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10827,7 +11259,7 @@ "google": "FE511", "image": "1f382.png", "sheet_x": 7, - "sheet_y": 33, + "sheet_y": 26, "short_name": "birthday", "short_names": [ "birthday" @@ -10835,8 +11267,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 90, - "added_in": "2.0", + "subcategory": "food-sweet", + "sort_order": 739, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10852,7 +11285,7 @@ "google": "FE51F", "image": "1f383.png", "sheet_x": 7, - "sheet_y": 34, + "sheet_y": 27, "short_name": "jack_o_lantern", "short_names": [ "jack_o_lantern" @@ -10860,8 +11293,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 1, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 988, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10877,7 +11311,7 @@ "google": "FE512", "image": "1f384.png", "sheet_x": 7, - "sheet_y": 35, + "sheet_y": 28, "short_name": "christmas_tree", "short_names": [ "christmas_tree" @@ -10885,8 +11319,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 2, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 989, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10902,7 +11337,7 @@ "google": "FE513", "image": "1f385.png", "sheet_x": 7, - "sheet_y": 36, + "sheet_y": 29, "short_name": "santa", "short_names": [ "santa" @@ -10910,8 +11345,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 177, - "added_in": "2.0", + "subcategory": "person-fantasy", + "sort_order": 339, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10922,8 +11358,8 @@ "non_qualified": null, "image": "1f385-1f3fb.png", "sheet_x": 7, - "sheet_y": 37, - "added_in": "2.0", + "sheet_y": 30, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10934,8 +11370,8 @@ "non_qualified": null, "image": "1f385-1f3fc.png", "sheet_x": 7, - "sheet_y": 38, - "added_in": "2.0", + "sheet_y": 31, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10946,8 +11382,8 @@ "non_qualified": null, "image": "1f385-1f3fd.png", "sheet_x": 7, - "sheet_y": 39, - "added_in": "2.0", + "sheet_y": 32, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10958,8 +11394,8 @@ "non_qualified": null, "image": "1f385-1f3fe.png", "sheet_x": 7, - "sheet_y": 40, - "added_in": "2.0", + "sheet_y": 33, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10970,8 +11406,8 @@ "non_qualified": null, "image": "1f385-1f3ff.png", "sheet_x": 7, - "sheet_y": 41, - "added_in": "2.0", + "sheet_y": 34, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -10989,7 +11425,7 @@ "google": "FE515", "image": "1f386.png", "sheet_x": 7, - "sheet_y": 42, + "sheet_y": 35, "short_name": "fireworks", "short_names": [ "fireworks" @@ -10997,8 +11433,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 3, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 990, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11014,7 +11451,7 @@ "google": "FE51D", "image": "1f387.png", "sheet_x": 7, - "sheet_y": 43, + "sheet_y": 36, "short_name": "sparkler", "short_names": [ "sparkler" @@ -11022,8 +11459,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 4, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 991, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11039,7 +11477,7 @@ "google": "FE516", "image": "1f388.png", "sheet_x": 7, - "sheet_y": 44, + "sheet_y": 37, "short_name": "balloon", "short_names": [ "balloon" @@ -11047,8 +11485,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 7, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 994, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11064,7 +11503,7 @@ "google": "FE517", "image": "1f389.png", "sheet_x": 7, - "sheet_y": 45, + "sheet_y": 38, "short_name": "tada", "short_names": [ "tada" @@ -11072,8 +11511,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 8, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 995, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11089,7 +11529,7 @@ "google": "FE520", "image": "1f38a.png", "sheet_x": 7, - "sheet_y": 46, + "sheet_y": 39, "short_name": "confetti_ball", "short_names": [ "confetti_ball" @@ -11097,8 +11537,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 9, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 996, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11114,7 +11555,7 @@ "google": "FE521", "image": "1f38b.png", "sheet_x": 7, - "sheet_y": 47, + "sheet_y": 40, "short_name": "tanabata_tree", "short_names": [ "tanabata_tree" @@ -11122,8 +11563,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 10, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 997, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11139,7 +11581,7 @@ "google": "FE514", "image": "1f38c.png", "sheet_x": 7, - "sheet_y": 48, + "sheet_y": 41, "short_name": "crossed_flags", "short_names": [ "crossed_flags" @@ -11147,8 +11589,9 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 3, - "added_in": "2.0", + "subcategory": "flag", + "sort_order": 1544, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11164,7 +11607,7 @@ "google": "FE518", "image": "1f38d.png", "sheet_x": 7, - "sheet_y": 49, + "sheet_y": 42, "short_name": "bamboo", "short_names": [ "bamboo" @@ -11172,8 +11615,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 11, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 998, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11189,7 +11633,7 @@ "google": "FE519", "image": "1f38e.png", "sheet_x": 7, - "sheet_y": 50, + "sheet_y": 43, "short_name": "dolls", "short_names": [ "dolls" @@ -11197,8 +11641,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 12, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 999, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11214,7 +11659,7 @@ "google": "FE51C", "image": "1f38f.png", "sheet_x": 7, - "sheet_y": 51, + "sheet_y": 44, "short_name": "flags", "short_names": [ "flags" @@ -11222,8 +11667,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 13, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 1000, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11239,7 +11685,7 @@ "google": "FE51E", "image": "1f390.png", "sheet_x": 7, - "sheet_y": 52, + "sheet_y": 45, "short_name": "wind_chime", "short_names": [ "wind_chime" @@ -11247,8 +11693,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 14, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 1001, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11264,7 +11711,7 @@ "google": "FE017", "image": "1f391.png", "sheet_x": 7, - "sheet_y": 53, + "sheet_y": 46, "short_name": "rice_scene", "short_names": [ "rice_scene" @@ -11272,8 +11719,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 15, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 1002, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11289,7 +11737,7 @@ "google": "FE51B", "image": "1f392.png", "sheet_x": 7, - "sheet_y": 54, + "sheet_y": 47, "short_name": "school_satchel", "short_names": [ "school_satchel" @@ -11297,8 +11745,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 25, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1096, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11314,7 +11763,7 @@ "google": "FE51A", "image": "1f393.png", "sheet_x": 7, - "sheet_y": 55, + "sheet_y": 48, "short_name": "mortar_board", "short_names": [ "mortar_board" @@ -11322,15 +11771,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 37, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1109, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "MILITARY MEDAL", "unified": "1F396-FE0F", "non_qualified": "1F396", "docomo": null, @@ -11339,7 +11789,7 @@ "google": null, "image": "1f396-fe0f.png", "sheet_x": 7, - "sheet_y": 56, + "sheet_y": 49, "short_name": "medal", "short_names": [ "medal" @@ -11347,15 +11797,16 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 22, - "added_in": "2.0", + "subcategory": "award-medal", + "sort_order": 1009, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "REMINDER RIBBON", "unified": "1F397-FE0F", "non_qualified": "1F397", "docomo": null, @@ -11363,8 +11814,8 @@ "softbank": null, "google": null, "image": "1f397-fe0f.png", - "sheet_x": 8, - "sheet_y": 0, + "sheet_x": 7, + "sheet_y": 50, "short_name": "reminder_ribbon", "short_names": [ "reminder_ribbon" @@ -11372,15 +11823,16 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 19, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 1006, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "STUDIO MICROPHONE", "unified": "1F399-FE0F", "non_qualified": "1F399", "docomo": null, @@ -11388,8 +11840,8 @@ "softbank": null, "google": null, "image": "1f399-fe0f.png", - "sheet_x": 8, - "sheet_y": 1, + "sheet_x": 7, + "sheet_y": 51, "short_name": "studio_microphone", "short_names": [ "studio_microphone" @@ -11397,15 +11849,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 56, - "added_in": "2.0", + "subcategory": "music", + "sort_order": 1129, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "LEVEL SLIDER", "unified": "1F39A-FE0F", "non_qualified": "1F39A", "docomo": null, @@ -11413,8 +11866,8 @@ "softbank": null, "google": null, "image": "1f39a-fe0f.png", - "sheet_x": 8, - "sheet_y": 2, + "sheet_x": 7, + "sheet_y": 52, "short_name": "level_slider", "short_names": [ "level_slider" @@ -11422,15 +11875,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 57, - "added_in": "2.0", + "subcategory": "music", + "sort_order": 1130, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CONTROL KNOBS", "unified": "1F39B-FE0F", "non_qualified": "1F39B", "docomo": null, @@ -11438,8 +11892,8 @@ "softbank": null, "google": null, "image": "1f39b-fe0f.png", - "sheet_x": 8, - "sheet_y": 3, + "sheet_x": 7, + "sheet_y": 53, "short_name": "control_knobs", "short_names": [ "control_knobs" @@ -11447,15 +11901,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 58, - "added_in": "2.0", + "subcategory": "music", + "sort_order": 1131, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "FILM FRAMES", "unified": "1F39E-FE0F", "non_qualified": "1F39E", "docomo": null, @@ -11463,8 +11918,8 @@ "softbank": null, "google": null, "image": "1f39e-fe0f.png", - "sheet_x": 8, - "sheet_y": 4, + "sheet_x": 7, + "sheet_y": 54, "short_name": "film_frames", "short_names": [ "film_frames" @@ -11472,15 +11927,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 89, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1164, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "ADMISSION TICKETS", "unified": "1F39F-FE0F", "non_qualified": "1F39F", "docomo": null, @@ -11488,8 +11944,8 @@ "softbank": null, "google": null, "image": "1f39f-fe0f.png", - "sheet_x": 8, - "sheet_y": 5, + "sheet_x": 7, + "sheet_y": 55, "short_name": "admission_tickets", "short_names": [ "admission_tickets" @@ -11497,8 +11953,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 20, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 1007, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11513,8 +11970,8 @@ "softbank": null, "google": "FE7FC", "image": "1f3a0.png", - "sheet_x": 8, - "sheet_y": 6, + "sheet_x": 7, + "sheet_y": 56, "short_name": "carousel_horse", "short_names": [ "carousel_horse" @@ -11522,8 +11979,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 58, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 833, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11538,8 +11996,8 @@ "softbank": "E124", "google": "FE7FD", "image": "1f3a1.png", - "sheet_x": 8, - "sheet_y": 7, + "sheet_x": 7, + "sheet_y": 57, "short_name": "ferris_wheel", "short_names": [ "ferris_wheel" @@ -11547,8 +12005,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 59, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 834, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11564,7 +12023,7 @@ "google": "FE7FE", "image": "1f3a2.png", "sheet_x": 8, - "sheet_y": 8, + "sheet_y": 0, "short_name": "roller_coaster", "short_names": [ "roller_coaster" @@ -11572,8 +12031,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 60, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 835, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11589,7 +12049,7 @@ "google": "FE7FF", "image": "1f3a3.png", "sheet_x": 8, - "sheet_y": 9, + "sheet_y": 1, "short_name": "fishing_pole_and_fish", "short_names": [ "fishing_pole_and_fish" @@ -11597,8 +12057,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 49, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1036, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11614,7 +12075,7 @@ "google": "FE800", "image": "1f3a4.png", "sheet_x": 8, - "sheet_y": 10, + "sheet_y": 2, "short_name": "microphone", "short_names": [ "microphone" @@ -11622,8 +12083,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 59, - "added_in": "2.0", + "subcategory": "music", + "sort_order": 1132, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11639,7 +12101,7 @@ "google": "FE801", "image": "1f3a5.png", "sheet_x": 8, - "sheet_y": 11, + "sheet_y": 3, "short_name": "movie_camera", "short_names": [ "movie_camera" @@ -11647,8 +12109,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 88, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1163, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11664,7 +12127,7 @@ "google": "FE802", "image": "1f3a6.png", "sheet_x": 8, - "sheet_y": 12, + "sheet_y": 4, "short_name": "cinema", "short_names": [ "cinema" @@ -11672,8 +12135,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 91, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1412, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11689,7 +12153,7 @@ "google": "FE803", "image": "1f3a7.png", "sheet_x": 8, - "sheet_y": 13, + "sheet_y": 5, "short_name": "headphones", "short_names": [ "headphones" @@ -11697,8 +12161,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 60, - "added_in": "2.0", + "subcategory": "music", + "sort_order": 1133, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11714,7 +12179,7 @@ "google": "FE804", "image": "1f3a8.png", "sheet_x": 8, - "sheet_y": 14, + "sheet_y": 6, "short_name": "art", "short_names": [ "art" @@ -11722,8 +12187,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 77, - "added_in": "2.0", + "subcategory": "arts & crafts", + "sort_order": 1067, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11739,7 +12205,7 @@ "google": "FE805", "image": "1f3a9.png", "sheet_x": 8, - "sheet_y": 15, + "sheet_y": 7, "short_name": "tophat", "short_names": [ "tophat" @@ -11747,8 +12213,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 36, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1108, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11764,7 +12231,7 @@ "google": "FE806", "image": "1f3aa.png", "sheet_x": 8, - "sheet_y": 16, + "sheet_y": 8, "short_name": "circus_tent", "short_names": [ "circus_tent" @@ -11772,8 +12239,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 62, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 837, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11789,7 +12257,7 @@ "google": "FE807", "image": "1f3ab.png", "sheet_x": 8, - "sheet_y": 17, + "sheet_y": 9, "short_name": "ticket", "short_names": [ "ticket" @@ -11797,8 +12265,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 21, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 1008, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11814,7 +12283,7 @@ "google": "FE808", "image": "1f3ac.png", "sheet_x": 8, - "sheet_y": 18, + "sheet_y": 10, "short_name": "clapper", "short_names": [ "clapper" @@ -11822,8 +12291,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 91, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1166, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11839,7 +12309,7 @@ "google": "FE809", "image": "1f3ad.png", "sheet_x": 8, - "sheet_y": 19, + "sheet_y": 11, "short_name": "performing_arts", "short_names": [ "performing_arts" @@ -11847,8 +12317,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 75, - "added_in": "2.0", + "subcategory": "arts & crafts", + "sort_order": 1065, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11864,7 +12335,7 @@ "google": "FE80A", "image": "1f3ae.png", "sheet_x": 8, - "sheet_y": 20, + "sheet_y": 12, "short_name": "video_game", "short_names": [ "video_game" @@ -11872,8 +12343,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 61, - "added_in": "2.0", + "subcategory": "game", + "sort_order": 1049, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11889,7 +12361,7 @@ "google": "FE80C", "image": "1f3af.png", "sheet_x": 8, - "sheet_y": 21, + "sheet_y": 13, "short_name": "dart", "short_names": [ "dart" @@ -11897,8 +12369,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 55, - "added_in": "2.0", + "subcategory": "game", + "sort_order": 1042, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11914,7 +12387,7 @@ "google": "FE80D", "image": "1f3b0.png", "sheet_x": 8, - "sheet_y": 22, + "sheet_y": 14, "short_name": "slot_machine", "short_names": [ "slot_machine" @@ -11922,8 +12395,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 63, - "added_in": "2.0", + "subcategory": "game", + "sort_order": 1051, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11939,7 +12413,7 @@ "google": "FE80E", "image": "1f3b1.png", "sheet_x": 8, - "sheet_y": 23, + "sheet_y": 15, "short_name": "8ball", "short_names": [ "8ball" @@ -11947,8 +12421,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 58, - "added_in": "2.0", + "subcategory": "game", + "sort_order": 1045, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11964,7 +12439,7 @@ "google": "FE80F", "image": "1f3b2.png", "sheet_x": 8, - "sheet_y": 24, + "sheet_y": 16, "short_name": "game_die", "short_names": [ "game_die" @@ -11972,8 +12447,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 64, - "added_in": "2.0", + "subcategory": "game", + "sort_order": 1052, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -11989,7 +12465,7 @@ "google": "FE810", "image": "1f3b3.png", "sheet_x": 8, - "sheet_y": 25, + "sheet_y": 17, "short_name": "bowling", "short_names": [ "bowling" @@ -11997,8 +12473,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 37, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1024, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12014,7 +12491,7 @@ "google": "FE811", "image": "1f3b4.png", "sheet_x": 8, - "sheet_y": 26, + "sheet_y": 18, "short_name": "flower_playing_cards", "short_names": [ "flower_playing_cards" @@ -12022,8 +12499,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 74, - "added_in": "2.0", + "subcategory": "game", + "sort_order": 1064, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12039,7 +12517,7 @@ "google": "FE813", "image": "1f3b5.png", "sheet_x": 8, - "sheet_y": 27, + "sheet_y": 19, "short_name": "musical_note", "short_names": [ "musical_note" @@ -12047,8 +12525,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 54, - "added_in": "2.0", + "subcategory": "music", + "sort_order": 1127, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12064,7 +12543,7 @@ "google": "FE814", "image": "1f3b6.png", "sheet_x": 8, - "sheet_y": 28, + "sheet_y": 20, "short_name": "notes", "short_names": [ "notes" @@ -12072,8 +12551,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 55, - "added_in": "2.0", + "subcategory": "music", + "sort_order": 1128, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12089,7 +12569,7 @@ "google": "FE815", "image": "1f3b7.png", "sheet_x": 8, - "sheet_y": 29, + "sheet_y": 21, "short_name": "saxophone", "short_names": [ "saxophone" @@ -12097,8 +12577,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 62, - "added_in": "2.0", + "subcategory": "musical-instrument", + "sort_order": 1135, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12114,7 +12595,7 @@ "google": "FE816", "image": "1f3b8.png", "sheet_x": 8, - "sheet_y": 30, + "sheet_y": 22, "short_name": "guitar", "short_names": [ "guitar" @@ -12122,8 +12603,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 63, - "added_in": "2.0", + "subcategory": "musical-instrument", + "sort_order": 1137, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12139,7 +12621,7 @@ "google": "FE817", "image": "1f3b9.png", "sheet_x": 8, - "sheet_y": 31, + "sheet_y": 23, "short_name": "musical_keyboard", "short_names": [ "musical_keyboard" @@ -12147,8 +12629,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 64, - "added_in": "2.0", + "subcategory": "musical-instrument", + "sort_order": 1138, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12164,7 +12647,7 @@ "google": "FE818", "image": "1f3ba.png", "sheet_x": 8, - "sheet_y": 32, + "sheet_y": 24, "short_name": "trumpet", "short_names": [ "trumpet" @@ -12172,8 +12655,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 65, - "added_in": "2.0", + "subcategory": "musical-instrument", + "sort_order": 1139, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12189,7 +12673,7 @@ "google": "FE819", "image": "1f3bb.png", "sheet_x": 8, - "sheet_y": 33, + "sheet_y": 25, "short_name": "violin", "short_names": [ "violin" @@ -12197,8 +12681,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 66, - "added_in": "2.0", + "subcategory": "musical-instrument", + "sort_order": 1140, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12214,7 +12699,7 @@ "google": "FE81A", "image": "1f3bc.png", "sheet_x": 8, - "sheet_y": 34, + "sheet_y": 26, "short_name": "musical_score", "short_names": [ "musical_score" @@ -12222,8 +12707,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 53, - "added_in": "2.0", + "subcategory": "music", + "sort_order": 1126, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12239,7 +12725,7 @@ "google": "FE7D0", "image": "1f3bd.png", "sheet_x": 8, - "sheet_y": 35, + "sheet_y": 27, "short_name": "running_shirt_with_sash", "short_names": [ "running_shirt_with_sash" @@ -12247,8 +12733,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 51, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1038, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12264,7 +12751,7 @@ "google": "FE7D3", "image": "1f3be.png", "sheet_x": 8, - "sheet_y": 36, + "sheet_y": 28, "short_name": "tennis", "short_names": [ "tennis" @@ -12272,8 +12759,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 35, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1022, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12289,7 +12777,7 @@ "google": "FE7D5", "image": "1f3bf.png", "sheet_x": 8, - "sheet_y": 37, + "sheet_y": 29, "short_name": "ski", "short_names": [ "ski" @@ -12297,8 +12785,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 52, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1039, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12314,7 +12803,7 @@ "google": "FE7D6", "image": "1f3c0.png", "sheet_x": 8, - "sheet_y": 38, + "sheet_y": 30, "short_name": "basketball", "short_names": [ "basketball" @@ -12322,8 +12811,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 31, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1018, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12339,7 +12829,7 @@ "google": "FE7D7", "image": "1f3c1.png", "sheet_x": 8, - "sheet_y": 39, + "sheet_y": 31, "short_name": "checkered_flag", "short_names": [ "checkered_flag" @@ -12347,8 +12837,9 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 1, - "added_in": "2.0", + "subcategory": "flag", + "sort_order": 1542, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12364,7 +12855,7 @@ "google": "FE7D8", "image": "1f3c2.png", "sheet_x": 8, - "sheet_y": 40, + "sheet_y": 32, "short_name": "snowboarder", "short_names": [ "snowboarder" @@ -12372,8 +12863,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 248, - "added_in": "2.0", + "subcategory": "person-sport", + "sort_order": 411, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12384,8 +12876,8 @@ "non_qualified": null, "image": "1f3c2-1f3fb.png", "sheet_x": 8, - "sheet_y": 41, - "added_in": "4.0", + "sheet_y": 33, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12396,8 +12888,8 @@ "non_qualified": null, "image": "1f3c2-1f3fc.png", "sheet_x": 8, - "sheet_y": 42, - "added_in": "4.0", + "sheet_y": 34, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12408,8 +12900,8 @@ "non_qualified": null, "image": "1f3c2-1f3fd.png", "sheet_x": 8, - "sheet_y": 43, - "added_in": "4.0", + "sheet_y": 35, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12420,8 +12912,8 @@ "non_qualified": null, "image": "1f3c2-1f3fe.png", "sheet_x": 8, - "sheet_y": 44, - "added_in": "4.0", + "sheet_y": 36, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12432,8 +12924,8 @@ "non_qualified": null, "image": "1f3c2-1f3ff.png", "sheet_x": 8, - "sheet_y": 45, - "added_in": "4.0", + "sheet_y": 37, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -12442,7 +12934,7 @@ } }, { - "name": null, + "name": "WOMAN RUNNING", "unified": "1F3C3-200D-2640-FE0F", "non_qualified": "1F3C3-200D-2640", "docomo": null, @@ -12451,7 +12943,7 @@ "google": null, "image": "1f3c3-200d-2640-fe0f.png", "sheet_x": 8, - "sheet_y": 46, + "sheet_y": 38, "short_name": "woman-running", "short_names": [ "woman-running" @@ -12459,7 +12951,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 232, + "subcategory": "person-activity", + "sort_order": 395, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12471,7 +12964,7 @@ "non_qualified": "1F3C3-1F3FB-200D-2640", "image": "1f3c3-1f3fb-200d-2640-fe0f.png", "sheet_x": 8, - "sheet_y": 47, + "sheet_y": 39, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12483,7 +12976,7 @@ "non_qualified": "1F3C3-1F3FC-200D-2640", "image": "1f3c3-1f3fc-200d-2640-fe0f.png", "sheet_x": 8, - "sheet_y": 48, + "sheet_y": 40, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12495,7 +12988,7 @@ "non_qualified": "1F3C3-1F3FD-200D-2640", "image": "1f3c3-1f3fd-200d-2640-fe0f.png", "sheet_x": 8, - "sheet_y": 49, + "sheet_y": 41, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12507,7 +13000,7 @@ "non_qualified": "1F3C3-1F3FE-200D-2640", "image": "1f3c3-1f3fe-200d-2640-fe0f.png", "sheet_x": 8, - "sheet_y": 50, + "sheet_y": 42, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12519,7 +13012,7 @@ "non_qualified": "1F3C3-1F3FF-200D-2640", "image": "1f3c3-1f3ff-200d-2640-fe0f.png", "sheet_x": 8, - "sheet_y": 51, + "sheet_y": 43, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12529,7 +13022,7 @@ } }, { - "name": null, + "name": "MAN RUNNING", "unified": "1F3C3-200D-2642-FE0F", "non_qualified": "1F3C3-200D-2642", "docomo": null, @@ -12538,7 +13031,7 @@ "google": null, "image": "1f3c3-200d-2642-fe0f.png", "sheet_x": 8, - "sheet_y": 52, + "sheet_y": 44, "short_name": "man-running", "short_names": [ "man-running" @@ -12546,7 +13039,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 231, + "subcategory": "person-activity", + "sort_order": 394, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12558,7 +13052,7 @@ "non_qualified": "1F3C3-1F3FB-200D-2642", "image": "1f3c3-1f3fb-200d-2642-fe0f.png", "sheet_x": 8, - "sheet_y": 53, + "sheet_y": 45, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12570,7 +13064,7 @@ "non_qualified": "1F3C3-1F3FC-200D-2642", "image": "1f3c3-1f3fc-200d-2642-fe0f.png", "sheet_x": 8, - "sheet_y": 54, + "sheet_y": 46, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12582,7 +13076,7 @@ "non_qualified": "1F3C3-1F3FD-200D-2642", "image": "1f3c3-1f3fd-200d-2642-fe0f.png", "sheet_x": 8, - "sheet_y": 55, + "sheet_y": 47, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12594,7 +13088,7 @@ "non_qualified": "1F3C3-1F3FE-200D-2642", "image": "1f3c3-1f3fe-200d-2642-fe0f.png", "sheet_x": 8, - "sheet_y": 56, + "sheet_y": 48, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12605,8 +13099,8 @@ "unified": "1F3C3-1F3FF-200D-2642-FE0F", "non_qualified": "1F3C3-1F3FF-200D-2642", "image": "1f3c3-1f3ff-200d-2642-fe0f.png", - "sheet_x": 9, - "sheet_y": 0, + "sheet_x": 8, + "sheet_y": 49, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12625,8 +13119,8 @@ "softbank": "E115", "google": "FE7D9", "image": "1f3c3.png", - "sheet_x": 9, - "sheet_y": 1, + "sheet_x": 8, + "sheet_y": 50, "short_name": "runner", "short_names": [ "runner", @@ -12635,78 +13129,79 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 230, - "added_in": "2.0", + "subcategory": "person-activity", + "sort_order": 393, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F3C3-1F3FB", "non_qualified": null, "image": "1f3c3-1f3fb.png", - "sheet_x": 9, - "sheet_y": 2, - "added_in": "2.0", + "sheet_x": 8, + "sheet_y": 51, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F3C3-1F3FC", "non_qualified": null, "image": "1f3c3-1f3fc.png", - "sheet_x": 9, - "sheet_y": 3, - "added_in": "2.0", + "sheet_x": 8, + "sheet_y": 52, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F3C3-1F3FD", "non_qualified": null, "image": "1f3c3-1f3fd.png", - "sheet_x": 9, - "sheet_y": 4, - "added_in": "2.0", + "sheet_x": 8, + "sheet_y": 53, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F3C3-1F3FE", "non_qualified": null, "image": "1f3c3-1f3fe.png", - "sheet_x": 9, - "sheet_y": 5, - "added_in": "2.0", + "sheet_x": 8, + "sheet_y": 54, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F3C3-1F3FF", "non_qualified": null, "image": "1f3c3-1f3ff.png", - "sheet_x": 9, - "sheet_y": 6, - "added_in": "2.0", + "sheet_x": 8, + "sheet_y": 55, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F3C3-200D-2642-FE0F" }, { - "name": null, + "name": "WOMAN SURFING", "unified": "1F3C4-200D-2640-FE0F", "non_qualified": "1F3C4-200D-2640", "docomo": null, @@ -12714,8 +13209,8 @@ "softbank": null, "google": null, "image": "1f3c4-200d-2640-fe0f.png", - "sheet_x": 9, - "sheet_y": 7, + "sheet_x": 8, + "sheet_y": 56, "short_name": "woman-surfing", "short_names": [ "woman-surfing" @@ -12723,7 +13218,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 254, + "subcategory": "person-sport", + "sort_order": 417, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12734,8 +13230,8 @@ "unified": "1F3C4-1F3FB-200D-2640-FE0F", "non_qualified": "1F3C4-1F3FB-200D-2640", "image": "1f3c4-1f3fb-200d-2640-fe0f.png", - "sheet_x": 9, - "sheet_y": 8, + "sheet_x": 8, + "sheet_y": 57, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12747,7 +13243,7 @@ "non_qualified": "1F3C4-1F3FC-200D-2640", "image": "1f3c4-1f3fc-200d-2640-fe0f.png", "sheet_x": 9, - "sheet_y": 9, + "sheet_y": 0, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12759,7 +13255,7 @@ "non_qualified": "1F3C4-1F3FD-200D-2640", "image": "1f3c4-1f3fd-200d-2640-fe0f.png", "sheet_x": 9, - "sheet_y": 10, + "sheet_y": 1, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12771,7 +13267,7 @@ "non_qualified": "1F3C4-1F3FE-200D-2640", "image": "1f3c4-1f3fe-200d-2640-fe0f.png", "sheet_x": 9, - "sheet_y": 11, + "sheet_y": 2, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12783,7 +13279,7 @@ "non_qualified": "1F3C4-1F3FF-200D-2640", "image": "1f3c4-1f3ff-200d-2640-fe0f.png", "sheet_x": 9, - "sheet_y": 12, + "sheet_y": 3, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12793,7 +13289,7 @@ } }, { - "name": null, + "name": "MAN SURFING", "unified": "1F3C4-200D-2642-FE0F", "non_qualified": "1F3C4-200D-2642", "docomo": null, @@ -12802,7 +13298,7 @@ "google": null, "image": "1f3c4-200d-2642-fe0f.png", "sheet_x": 9, - "sheet_y": 13, + "sheet_y": 4, "short_name": "man-surfing", "short_names": [ "man-surfing" @@ -12810,7 +13306,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 253, + "subcategory": "person-sport", + "sort_order": 416, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12822,7 +13319,7 @@ "non_qualified": "1F3C4-1F3FB-200D-2642", "image": "1f3c4-1f3fb-200d-2642-fe0f.png", "sheet_x": 9, - "sheet_y": 14, + "sheet_y": 5, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12834,7 +13331,7 @@ "non_qualified": "1F3C4-1F3FC-200D-2642", "image": "1f3c4-1f3fc-200d-2642-fe0f.png", "sheet_x": 9, - "sheet_y": 15, + "sheet_y": 6, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12846,7 +13343,7 @@ "non_qualified": "1F3C4-1F3FD-200D-2642", "image": "1f3c4-1f3fd-200d-2642-fe0f.png", "sheet_x": 9, - "sheet_y": 16, + "sheet_y": 7, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12858,7 +13355,7 @@ "non_qualified": "1F3C4-1F3FE-200D-2642", "image": "1f3c4-1f3fe-200d-2642-fe0f.png", "sheet_x": 9, - "sheet_y": 17, + "sheet_y": 8, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12870,7 +13367,7 @@ "non_qualified": "1F3C4-1F3FF-200D-2642", "image": "1f3c4-1f3ff-200d-2642-fe0f.png", "sheet_x": 9, - "sheet_y": 18, + "sheet_y": 9, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -12890,7 +13387,7 @@ "google": "FE7DA", "image": "1f3c4.png", "sheet_x": 9, - "sheet_y": 19, + "sheet_y": 10, "short_name": "surfer", "short_names": [ "surfer" @@ -12898,72 +13395,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 252, - "added_in": "2.0", + "subcategory": "person-sport", + "sort_order": 415, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F3C4-1F3FB", "non_qualified": null, "image": "1f3c4-1f3fb.png", "sheet_x": 9, - "sheet_y": 20, - "added_in": "2.0", + "sheet_y": 11, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F3C4-1F3FC", "non_qualified": null, "image": "1f3c4-1f3fc.png", "sheet_x": 9, - "sheet_y": 21, - "added_in": "2.0", + "sheet_y": 12, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F3C4-1F3FD", "non_qualified": null, "image": "1f3c4-1f3fd.png", "sheet_x": 9, - "sheet_y": 22, - "added_in": "2.0", + "sheet_y": 13, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F3C4-1F3FE", "non_qualified": null, "image": "1f3c4-1f3fe.png", "sheet_x": 9, - "sheet_y": 23, - "added_in": "2.0", + "sheet_y": 14, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F3C4-1F3FF", "non_qualified": null, "image": "1f3c4-1f3ff.png", "sheet_x": 9, - "sheet_y": 24, - "added_in": "2.0", + "sheet_y": 15, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F3C4-200D-2642-FE0F" @@ -12978,7 +13476,7 @@ "google": null, "image": "1f3c5.png", "sheet_x": 9, - "sheet_y": 25, + "sheet_y": 16, "short_name": "sports_medal", "short_names": [ "sports_medal" @@ -12986,8 +13484,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 24, - "added_in": "2.0", + "subcategory": "award-medal", + "sort_order": 1011, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -13003,7 +13502,7 @@ "google": "FE7DB", "image": "1f3c6.png", "sheet_x": 9, - "sheet_y": 26, + "sheet_y": 17, "short_name": "trophy", "short_names": [ "trophy" @@ -13011,8 +13510,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 23, - "added_in": "2.0", + "subcategory": "award-medal", + "sort_order": 1010, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -13028,7 +13528,7 @@ "google": null, "image": "1f3c7.png", "sheet_x": 9, - "sheet_y": 27, + "sheet_y": 18, "short_name": "horse_racing", "short_names": [ "horse_racing" @@ -13036,8 +13536,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 246, - "added_in": "2.0", + "subcategory": "person-sport", + "sort_order": 409, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -13048,8 +13549,8 @@ "non_qualified": null, "image": "1f3c7-1f3fb.png", "sheet_x": 9, - "sheet_y": 28, - "added_in": "4.0", + "sheet_y": 19, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -13060,8 +13561,8 @@ "non_qualified": null, "image": "1f3c7-1f3fc.png", "sheet_x": 9, - "sheet_y": 29, - "added_in": "4.0", + "sheet_y": 20, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -13072,8 +13573,8 @@ "non_qualified": null, "image": "1f3c7-1f3fd.png", "sheet_x": 9, - "sheet_y": 30, - "added_in": "4.0", + "sheet_y": 21, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -13084,8 +13585,8 @@ "non_qualified": null, "image": "1f3c7-1f3fe.png", "sheet_x": 9, - "sheet_y": 31, - "added_in": "4.0", + "sheet_y": 22, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -13096,8 +13597,8 @@ "non_qualified": null, "image": "1f3c7-1f3ff.png", "sheet_x": 9, - "sheet_y": 32, - "added_in": "4.0", + "sheet_y": 23, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -13115,7 +13616,7 @@ "google": "FE7DD", "image": "1f3c8.png", "sheet_x": 9, - "sheet_y": 33, + "sheet_y": 24, "short_name": "football", "short_names": [ "football" @@ -13123,8 +13624,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 33, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1020, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -13140,7 +13642,7 @@ "google": null, "image": "1f3c9.png", "sheet_x": 9, - "sheet_y": 34, + "sheet_y": 25, "short_name": "rugby_football", "short_names": [ "rugby_football" @@ -13148,15 +13650,16 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 34, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1021, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WOMAN SWIMMING", "unified": "1F3CA-200D-2640-FE0F", "non_qualified": "1F3CA-200D-2640", "docomo": null, @@ -13165,7 +13668,7 @@ "google": null, "image": "1f3ca-200d-2640-fe0f.png", "sheet_x": 9, - "sheet_y": 35, + "sheet_y": 26, "short_name": "woman-swimming", "short_names": [ "woman-swimming" @@ -13173,7 +13676,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 260, + "subcategory": "person-sport", + "sort_order": 423, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13185,7 +13689,7 @@ "non_qualified": "1F3CA-1F3FB-200D-2640", "image": "1f3ca-1f3fb-200d-2640-fe0f.png", "sheet_x": 9, - "sheet_y": 36, + "sheet_y": 27, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13197,7 +13701,7 @@ "non_qualified": "1F3CA-1F3FC-200D-2640", "image": "1f3ca-1f3fc-200d-2640-fe0f.png", "sheet_x": 9, - "sheet_y": 37, + "sheet_y": 28, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13209,7 +13713,7 @@ "non_qualified": "1F3CA-1F3FD-200D-2640", "image": "1f3ca-1f3fd-200d-2640-fe0f.png", "sheet_x": 9, - "sheet_y": 38, + "sheet_y": 29, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13221,7 +13725,7 @@ "non_qualified": "1F3CA-1F3FE-200D-2640", "image": "1f3ca-1f3fe-200d-2640-fe0f.png", "sheet_x": 9, - "sheet_y": 39, + "sheet_y": 30, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13233,7 +13737,7 @@ "non_qualified": "1F3CA-1F3FF-200D-2640", "image": "1f3ca-1f3ff-200d-2640-fe0f.png", "sheet_x": 9, - "sheet_y": 40, + "sheet_y": 31, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13243,7 +13747,7 @@ } }, { - "name": null, + "name": "MAN SWIMMING", "unified": "1F3CA-200D-2642-FE0F", "non_qualified": "1F3CA-200D-2642", "docomo": null, @@ -13252,7 +13756,7 @@ "google": null, "image": "1f3ca-200d-2642-fe0f.png", "sheet_x": 9, - "sheet_y": 41, + "sheet_y": 32, "short_name": "man-swimming", "short_names": [ "man-swimming" @@ -13260,7 +13764,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 259, + "subcategory": "person-sport", + "sort_order": 422, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13272,7 +13777,7 @@ "non_qualified": "1F3CA-1F3FB-200D-2642", "image": "1f3ca-1f3fb-200d-2642-fe0f.png", "sheet_x": 9, - "sheet_y": 42, + "sheet_y": 33, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13284,7 +13789,7 @@ "non_qualified": "1F3CA-1F3FC-200D-2642", "image": "1f3ca-1f3fc-200d-2642-fe0f.png", "sheet_x": 9, - "sheet_y": 43, + "sheet_y": 34, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13296,7 +13801,7 @@ "non_qualified": "1F3CA-1F3FD-200D-2642", "image": "1f3ca-1f3fd-200d-2642-fe0f.png", "sheet_x": 9, - "sheet_y": 44, + "sheet_y": 35, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13308,7 +13813,7 @@ "non_qualified": "1F3CA-1F3FE-200D-2642", "image": "1f3ca-1f3fe-200d-2642-fe0f.png", "sheet_x": 9, - "sheet_y": 45, + "sheet_y": 36, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13320,7 +13825,7 @@ "non_qualified": "1F3CA-1F3FF-200D-2642", "image": "1f3ca-1f3ff-200d-2642-fe0f.png", "sheet_x": 9, - "sheet_y": 46, + "sheet_y": 37, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13340,7 +13845,7 @@ "google": "FE7DE", "image": "1f3ca.png", "sheet_x": 9, - "sheet_y": 47, + "sheet_y": 38, "short_name": "swimmer", "short_names": [ "swimmer" @@ -13348,78 +13853,79 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 258, - "added_in": "2.0", + "subcategory": "person-sport", + "sort_order": 421, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F3CA-1F3FB", "non_qualified": null, "image": "1f3ca-1f3fb.png", "sheet_x": 9, - "sheet_y": 48, - "added_in": "2.0", + "sheet_y": 39, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F3CA-1F3FC", "non_qualified": null, "image": "1f3ca-1f3fc.png", "sheet_x": 9, - "sheet_y": 49, - "added_in": "2.0", + "sheet_y": 40, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F3CA-1F3FD", "non_qualified": null, "image": "1f3ca-1f3fd.png", "sheet_x": 9, - "sheet_y": 50, - "added_in": "2.0", + "sheet_y": 41, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F3CA-1F3FE", "non_qualified": null, "image": "1f3ca-1f3fe.png", "sheet_x": 9, - "sheet_y": 51, - "added_in": "2.0", + "sheet_y": 42, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F3CA-1F3FF", "non_qualified": null, "image": "1f3ca-1f3ff.png", "sheet_x": 9, - "sheet_y": 52, - "added_in": "2.0", + "sheet_y": 43, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F3CA-200D-2642-FE0F" }, { - "name": null, + "name": "WOMAN LIFTING WEIGHTS", "unified": "1F3CB-FE0F-200D-2640-FE0F", "non_qualified": null, "docomo": null, @@ -13428,7 +13934,7 @@ "google": null, "image": "1f3cb-fe0f-200d-2640-fe0f.png", "sheet_x": 9, - "sheet_y": 53, + "sheet_y": 44, "short_name": "woman-lifting-weights", "short_names": [ "woman-lifting-weights" @@ -13436,7 +13942,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 266, + "subcategory": "person-sport", + "sort_order": 429, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13448,7 +13955,7 @@ "non_qualified": "1F3CB-1F3FB-200D-2640", "image": "1f3cb-1f3fb-200d-2640-fe0f.png", "sheet_x": 9, - "sheet_y": 54, + "sheet_y": 45, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13460,7 +13967,7 @@ "non_qualified": "1F3CB-1F3FC-200D-2640", "image": "1f3cb-1f3fc-200d-2640-fe0f.png", "sheet_x": 9, - "sheet_y": 55, + "sheet_y": 46, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13472,7 +13979,7 @@ "non_qualified": "1F3CB-1F3FD-200D-2640", "image": "1f3cb-1f3fd-200d-2640-fe0f.png", "sheet_x": 9, - "sheet_y": 56, + "sheet_y": 47, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13483,8 +13990,8 @@ "unified": "1F3CB-1F3FE-200D-2640-FE0F", "non_qualified": "1F3CB-1F3FE-200D-2640", "image": "1f3cb-1f3fe-200d-2640-fe0f.png", - "sheet_x": 10, - "sheet_y": 0, + "sheet_x": 9, + "sheet_y": 48, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13495,8 +14002,8 @@ "unified": "1F3CB-1F3FF-200D-2640-FE0F", "non_qualified": "1F3CB-1F3FF-200D-2640", "image": "1f3cb-1f3ff-200d-2640-fe0f.png", - "sheet_x": 10, - "sheet_y": 1, + "sheet_x": 9, + "sheet_y": 49, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13506,7 +14013,7 @@ } }, { - "name": null, + "name": "MAN LIFTING WEIGHTS", "unified": "1F3CB-FE0F-200D-2642-FE0F", "non_qualified": null, "docomo": null, @@ -13514,8 +14021,8 @@ "softbank": null, "google": null, "image": "1f3cb-fe0f-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 2, + "sheet_x": 9, + "sheet_y": 50, "short_name": "man-lifting-weights", "short_names": [ "man-lifting-weights" @@ -13523,7 +14030,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 265, + "subcategory": "person-sport", + "sort_order": 428, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13534,8 +14042,8 @@ "unified": "1F3CB-1F3FB-200D-2642-FE0F", "non_qualified": "1F3CB-1F3FB-200D-2642", "image": "1f3cb-1f3fb-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 3, + "sheet_x": 9, + "sheet_y": 51, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13546,8 +14054,8 @@ "unified": "1F3CB-1F3FC-200D-2642-FE0F", "non_qualified": "1F3CB-1F3FC-200D-2642", "image": "1f3cb-1f3fc-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 4, + "sheet_x": 9, + "sheet_y": 52, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13558,8 +14066,8 @@ "unified": "1F3CB-1F3FD-200D-2642-FE0F", "non_qualified": "1F3CB-1F3FD-200D-2642", "image": "1f3cb-1f3fd-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 5, + "sheet_x": 9, + "sheet_y": 53, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13570,8 +14078,8 @@ "unified": "1F3CB-1F3FE-200D-2642-FE0F", "non_qualified": "1F3CB-1F3FE-200D-2642", "image": "1f3cb-1f3fe-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 6, + "sheet_x": 9, + "sheet_y": 54, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13582,8 +14090,8 @@ "unified": "1F3CB-1F3FF-200D-2642-FE0F", "non_qualified": "1F3CB-1F3FF-200D-2642", "image": "1f3cb-1f3ff-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 7, + "sheet_x": 9, + "sheet_y": 55, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13594,7 +14102,7 @@ "obsoletes": "1F3CB-FE0F" }, { - "name": null, + "name": "PERSON LIFTING WEIGHTS", "unified": "1F3CB-FE0F", "non_qualified": "1F3CB", "docomo": null, @@ -13602,8 +14110,8 @@ "softbank": null, "google": null, "image": "1f3cb-fe0f.png", - "sheet_x": 10, - "sheet_y": 8, + "sheet_x": 9, + "sheet_y": 56, "short_name": "weight_lifter", "short_names": [ "weight_lifter" @@ -13611,78 +14119,79 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 264, - "added_in": "2.0", + "subcategory": "person-sport", + "sort_order": 427, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F3CB-1F3FB", "non_qualified": null, "image": "1f3cb-1f3fb.png", - "sheet_x": 10, - "sheet_y": 9, + "sheet_x": 9, + "sheet_y": 57, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F3CB-1F3FC", "non_qualified": null, "image": "1f3cb-1f3fc.png", "sheet_x": 10, - "sheet_y": 10, + "sheet_y": 0, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F3CB-1F3FD", "non_qualified": null, "image": "1f3cb-1f3fd.png", "sheet_x": 10, - "sheet_y": 11, + "sheet_y": 1, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F3CB-1F3FE", "non_qualified": null, "image": "1f3cb-1f3fe.png", "sheet_x": 10, - "sheet_y": 12, + "sheet_y": 2, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F3CB-1F3FF", "non_qualified": null, "image": "1f3cb-1f3ff.png", "sheet_x": 10, - "sheet_y": 13, + "sheet_y": 3, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F3CB-FE0F-200D-2642-FE0F" }, { - "name": null, + "name": "WOMAN GOLFING", "unified": "1F3CC-FE0F-200D-2640-FE0F", "non_qualified": null, "docomo": null, @@ -13691,7 +14200,7 @@ "google": null, "image": "1f3cc-fe0f-200d-2640-fe0f.png", "sheet_x": 10, - "sheet_y": 14, + "sheet_y": 4, "short_name": "woman-golfing", "short_names": [ "woman-golfing" @@ -13699,7 +14208,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 251, + "subcategory": "person-sport", + "sort_order": 414, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13711,7 +14221,7 @@ "non_qualified": "1F3CC-1F3FB-200D-2640", "image": "1f3cc-1f3fb-200d-2640-fe0f.png", "sheet_x": 10, - "sheet_y": 15, + "sheet_y": 5, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13723,7 +14233,7 @@ "non_qualified": "1F3CC-1F3FC-200D-2640", "image": "1f3cc-1f3fc-200d-2640-fe0f.png", "sheet_x": 10, - "sheet_y": 16, + "sheet_y": 6, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13735,7 +14245,7 @@ "non_qualified": "1F3CC-1F3FD-200D-2640", "image": "1f3cc-1f3fd-200d-2640-fe0f.png", "sheet_x": 10, - "sheet_y": 17, + "sheet_y": 7, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13747,7 +14257,7 @@ "non_qualified": "1F3CC-1F3FE-200D-2640", "image": "1f3cc-1f3fe-200d-2640-fe0f.png", "sheet_x": 10, - "sheet_y": 18, + "sheet_y": 8, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13759,7 +14269,7 @@ "non_qualified": "1F3CC-1F3FF-200D-2640", "image": "1f3cc-1f3ff-200d-2640-fe0f.png", "sheet_x": 10, - "sheet_y": 19, + "sheet_y": 9, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13769,7 +14279,7 @@ } }, { - "name": null, + "name": "MAN GOLFING", "unified": "1F3CC-FE0F-200D-2642-FE0F", "non_qualified": null, "docomo": null, @@ -13778,7 +14288,7 @@ "google": null, "image": "1f3cc-fe0f-200d-2642-fe0f.png", "sheet_x": 10, - "sheet_y": 20, + "sheet_y": 10, "short_name": "man-golfing", "short_names": [ "man-golfing" @@ -13786,7 +14296,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 250, + "subcategory": "person-sport", + "sort_order": 413, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13798,7 +14309,7 @@ "non_qualified": "1F3CC-1F3FB-200D-2642", "image": "1f3cc-1f3fb-200d-2642-fe0f.png", "sheet_x": 10, - "sheet_y": 21, + "sheet_y": 11, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13810,7 +14321,7 @@ "non_qualified": "1F3CC-1F3FC-200D-2642", "image": "1f3cc-1f3fc-200d-2642-fe0f.png", "sheet_x": 10, - "sheet_y": 22, + "sheet_y": 12, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13822,7 +14333,7 @@ "non_qualified": "1F3CC-1F3FD-200D-2642", "image": "1f3cc-1f3fd-200d-2642-fe0f.png", "sheet_x": 10, - "sheet_y": 23, + "sheet_y": 13, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13834,7 +14345,7 @@ "non_qualified": "1F3CC-1F3FE-200D-2642", "image": "1f3cc-1f3fe-200d-2642-fe0f.png", "sheet_x": 10, - "sheet_y": 24, + "sheet_y": 14, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13846,7 +14357,7 @@ "non_qualified": "1F3CC-1F3FF-200D-2642", "image": "1f3cc-1f3ff-200d-2642-fe0f.png", "sheet_x": 10, - "sheet_y": 25, + "sheet_y": 15, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -13857,7 +14368,7 @@ "obsoletes": "1F3CC-FE0F" }, { - "name": null, + "name": "PERSON GOLFING", "unified": "1F3CC-FE0F", "non_qualified": "1F3CC", "docomo": null, @@ -13866,7 +14377,7 @@ "google": null, "image": "1f3cc-fe0f.png", "sheet_x": 10, - "sheet_y": 26, + "sheet_y": 16, "short_name": "golfer", "short_names": [ "golfer" @@ -13874,78 +14385,79 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 249, - "added_in": "2.0", + "subcategory": "person-sport", + "sort_order": 412, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F3CC-1F3FB", "non_qualified": null, "image": "1f3cc-1f3fb.png", "sheet_x": 10, - "sheet_y": 27, + "sheet_y": 17, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F3CC-1F3FC", "non_qualified": null, "image": "1f3cc-1f3fc.png", "sheet_x": 10, - "sheet_y": 28, + "sheet_y": 18, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F3CC-1F3FD", "non_qualified": null, "image": "1f3cc-1f3fd.png", "sheet_x": 10, - "sheet_y": 29, + "sheet_y": 19, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F3CC-1F3FE", "non_qualified": null, "image": "1f3cc-1f3fe.png", "sheet_x": 10, - "sheet_y": 30, + "sheet_y": 20, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F3CC-1F3FF", "non_qualified": null, "image": "1f3cc-1f3ff.png", "sheet_x": 10, - "sheet_y": 31, + "sheet_y": 21, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F3CC-FE0F-200D-2642-FE0F" }, { - "name": null, + "name": "MOTORCYCLE", "unified": "1F3CD-FE0F", "non_qualified": "1F3CD", "docomo": null, @@ -13954,7 +14466,7 @@ "google": null, "image": "1f3cd-fe0f.png", "sheet_x": 10, - "sheet_y": 32, + "sheet_y": 22, "short_name": "racing_motorcycle", "short_names": [ "racing_motorcycle" @@ -13962,15 +14474,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 92, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 868, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "RACING CAR", "unified": "1F3CE-FE0F", "non_qualified": "1F3CE", "docomo": null, @@ -13979,7 +14492,7 @@ "google": null, "image": "1f3ce-fe0f.png", "sheet_x": 10, - "sheet_y": 33, + "sheet_y": 23, "short_name": "racing_car", "short_names": [ "racing_car" @@ -13987,8 +14500,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 91, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 867, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14004,7 +14518,7 @@ "google": null, "image": "1f3cf.png", "sheet_x": 10, - "sheet_y": 34, + "sheet_y": 24, "short_name": "cricket_bat_and_ball", "short_names": [ "cricket_bat_and_ball" @@ -14012,8 +14526,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 38, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1025, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14029,7 +14544,7 @@ "google": null, "image": "1f3d0.png", "sheet_x": 10, - "sheet_y": 35, + "sheet_y": 25, "short_name": "volleyball", "short_names": [ "volleyball" @@ -14037,8 +14552,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 32, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1019, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14054,7 +14570,7 @@ "google": null, "image": "1f3d1.png", "sheet_x": 10, - "sheet_y": 36, + "sheet_y": 26, "short_name": "field_hockey_stick_and_ball", "short_names": [ "field_hockey_stick_and_ball" @@ -14062,8 +14578,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 39, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1026, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14079,7 +14596,7 @@ "google": null, "image": "1f3d2.png", "sheet_x": 10, - "sheet_y": 37, + "sheet_y": 27, "short_name": "ice_hockey_stick_and_puck", "short_names": [ "ice_hockey_stick_and_puck" @@ -14087,8 +14604,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 40, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1027, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14104,7 +14622,7 @@ "google": null, "image": "1f3d3.png", "sheet_x": 10, - "sheet_y": 38, + "sheet_y": 28, "short_name": "table_tennis_paddle_and_ball", "short_names": [ "table_tennis_paddle_and_ball" @@ -14112,15 +14630,16 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 42, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1029, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SNOW-CAPPED MOUNTAIN", "unified": "1F3D4-FE0F", "non_qualified": "1F3D4", "docomo": null, @@ -14129,7 +14648,7 @@ "google": null, "image": "1f3d4-fe0f.png", "sheet_x": 10, - "sheet_y": 39, + "sheet_y": 29, "short_name": "snow_capped_mountain", "short_names": [ "snow_capped_mountain" @@ -14137,15 +14656,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 8, - "added_in": "2.0", + "subcategory": "place-geographic", + "sort_order": 780, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CAMPING", "unified": "1F3D5-FE0F", "non_qualified": "1F3D5", "docomo": null, @@ -14154,7 +14674,7 @@ "google": null, "image": "1f3d5-fe0f.png", "sheet_x": 10, - "sheet_y": 40, + "sheet_y": 30, "short_name": "camping", "short_names": [ "camping" @@ -14162,15 +14682,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 12, - "added_in": "2.0", + "subcategory": "place-geographic", + "sort_order": 784, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "BEACH WITH UMBRELLA", "unified": "1F3D6-FE0F", "non_qualified": "1F3D6", "docomo": null, @@ -14179,7 +14700,7 @@ "google": null, "image": "1f3d6-fe0f.png", "sheet_x": 10, - "sheet_y": 41, + "sheet_y": 31, "short_name": "beach_with_umbrella", "short_names": [ "beach_with_umbrella" @@ -14187,15 +14708,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 13, - "added_in": "2.0", + "subcategory": "place-geographic", + "sort_order": 785, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "BUILDING CONSTRUCTION", "unified": "1F3D7-FE0F", "non_qualified": "1F3D7", "docomo": null, @@ -14204,7 +14726,7 @@ "google": null, "image": "1f3d7-fe0f.png", "sheet_x": 10, - "sheet_y": 42, + "sheet_y": 32, "short_name": "building_construction", "short_names": [ "building_construction" @@ -14212,15 +14734,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 19, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 791, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "HOUSES", "unified": "1F3D8-FE0F", "non_qualified": "1F3D8", "docomo": null, @@ -14229,7 +14752,7 @@ "google": null, "image": "1f3d8-fe0f.png", "sheet_x": 10, - "sheet_y": 43, + "sheet_y": 33, "short_name": "house_buildings", "short_names": [ "house_buildings" @@ -14237,15 +14760,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 21, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 796, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CITYSCAPE", "unified": "1F3D9-FE0F", "non_qualified": "1F3D9", "docomo": null, @@ -14254,7 +14778,7 @@ "google": null, "image": "1f3d9-fe0f.png", "sheet_x": 10, - "sheet_y": 44, + "sheet_y": 34, "short_name": "cityscape", "short_names": [ "cityscape" @@ -14262,15 +14786,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 51, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 826, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "DERELICT HOUSE", "unified": "1F3DA-FE0F", "non_qualified": "1F3DA", "docomo": null, @@ -14279,7 +14804,7 @@ "google": null, "image": "1f3da-fe0f.png", "sheet_x": 10, - "sheet_y": 45, + "sheet_y": 35, "short_name": "derelict_house_building", "short_names": [ "derelict_house_building" @@ -14287,15 +14812,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 22, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 797, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CLASSICAL BUILDING", "unified": "1F3DB-FE0F", "non_qualified": "1F3DB", "docomo": null, @@ -14304,7 +14830,7 @@ "google": null, "image": "1f3db-fe0f.png", "sheet_x": 10, - "sheet_y": 46, + "sheet_y": 36, "short_name": "classical_building", "short_names": [ "classical_building" @@ -14312,15 +14838,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 18, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 790, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "DESERT", "unified": "1F3DC-FE0F", "non_qualified": "1F3DC", "docomo": null, @@ -14329,7 +14856,7 @@ "google": null, "image": "1f3dc-fe0f.png", "sheet_x": 10, - "sheet_y": 47, + "sheet_y": 37, "short_name": "desert", "short_names": [ "desert" @@ -14337,15 +14864,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 14, - "added_in": "2.0", + "subcategory": "place-geographic", + "sort_order": 786, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "DESERT ISLAND", "unified": "1F3DD-FE0F", "non_qualified": "1F3DD", "docomo": null, @@ -14354,7 +14882,7 @@ "google": null, "image": "1f3dd-fe0f.png", "sheet_x": 10, - "sheet_y": 48, + "sheet_y": 38, "short_name": "desert_island", "short_names": [ "desert_island" @@ -14362,15 +14890,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 15, - "added_in": "2.0", + "subcategory": "place-geographic", + "sort_order": 787, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "NATIONAL PARK", "unified": "1F3DE-FE0F", "non_qualified": "1F3DE", "docomo": null, @@ -14379,7 +14908,7 @@ "google": null, "image": "1f3de-fe0f.png", "sheet_x": 10, - "sheet_y": 49, + "sheet_y": 39, "short_name": "national_park", "short_names": [ "national_park" @@ -14387,15 +14916,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 16, - "added_in": "2.0", + "subcategory": "place-geographic", + "sort_order": 788, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "STADIUM", "unified": "1F3DF-FE0F", "non_qualified": "1F3DF", "docomo": null, @@ -14404,7 +14934,7 @@ "google": null, "image": "1f3df-fe0f.png", "sheet_x": 10, - "sheet_y": 50, + "sheet_y": 40, "short_name": "stadium", "short_names": [ "stadium" @@ -14412,8 +14942,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 17, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 789, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14429,7 +14960,7 @@ "google": "FE4B0", "image": "1f3e0.png", "sheet_x": 10, - "sheet_y": 51, + "sheet_y": 41, "short_name": "house", "short_names": [ "house" @@ -14437,8 +14968,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 23, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 798, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14454,7 +14986,7 @@ "google": "FE4B1", "image": "1f3e1.png", "sheet_x": 10, - "sheet_y": 52, + "sheet_y": 42, "short_name": "house_with_garden", "short_names": [ "house_with_garden" @@ -14462,8 +14994,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 24, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 799, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14479,7 +15012,7 @@ "google": "FE4B2", "image": "1f3e2.png", "sheet_x": 10, - "sheet_y": 53, + "sheet_y": 43, "short_name": "office", "short_names": [ "office" @@ -14487,8 +15020,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 25, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 800, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14504,7 +15038,7 @@ "google": "FE4B3", "image": "1f3e3.png", "sheet_x": 10, - "sheet_y": 54, + "sheet_y": 44, "short_name": "post_office", "short_names": [ "post_office" @@ -14512,8 +15046,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 26, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 801, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14529,7 +15064,7 @@ "google": null, "image": "1f3e4.png", "sheet_x": 10, - "sheet_y": 55, + "sheet_y": 45, "short_name": "european_post_office", "short_names": [ "european_post_office" @@ -14537,8 +15072,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 27, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 802, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14554,7 +15090,7 @@ "google": "FE4B4", "image": "1f3e5.png", "sheet_x": 10, - "sheet_y": 56, + "sheet_y": 46, "short_name": "hospital", "short_names": [ "hospital" @@ -14562,8 +15098,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 28, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 803, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14578,8 +15115,8 @@ "softbank": "E14D", "google": "FE4B5", "image": "1f3e6.png", - "sheet_x": 11, - "sheet_y": 0, + "sheet_x": 10, + "sheet_y": 47, "short_name": "bank", "short_names": [ "bank" @@ -14587,8 +15124,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 29, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 804, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14603,8 +15141,8 @@ "softbank": "E154", "google": "FE4B6", "image": "1f3e7.png", - "sheet_x": 11, - "sheet_y": 1, + "sheet_x": 10, + "sheet_y": 48, "short_name": "atm", "short_names": [ "atm" @@ -14612,8 +15150,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 1, - "added_in": "2.0", + "subcategory": "transport-sign", + "sort_order": 1322, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14628,8 +15167,8 @@ "softbank": "E158", "google": "FE4B7", "image": "1f3e8.png", - "sheet_x": 11, - "sheet_y": 2, + "sheet_x": 10, + "sheet_y": 49, "short_name": "hotel", "short_names": [ "hotel" @@ -14637,8 +15176,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 30, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 805, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14653,8 +15193,8 @@ "softbank": "E501", "google": "FE4B8", "image": "1f3e9.png", - "sheet_x": 11, - "sheet_y": 3, + "sheet_x": 10, + "sheet_y": 50, "short_name": "love_hotel", "short_names": [ "love_hotel" @@ -14662,8 +15202,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 31, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 806, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14678,8 +15219,8 @@ "softbank": "E156", "google": "FE4B9", "image": "1f3ea.png", - "sheet_x": 11, - "sheet_y": 4, + "sheet_x": 10, + "sheet_y": 51, "short_name": "convenience_store", "short_names": [ "convenience_store" @@ -14687,8 +15228,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 32, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 807, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14703,8 +15245,8 @@ "softbank": "E157", "google": "FE4BA", "image": "1f3eb.png", - "sheet_x": 11, - "sheet_y": 5, + "sheet_x": 10, + "sheet_y": 52, "short_name": "school", "short_names": [ "school" @@ -14712,8 +15254,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 33, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 808, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14728,8 +15271,8 @@ "softbank": "E504", "google": "FE4BD", "image": "1f3ec.png", - "sheet_x": 11, - "sheet_y": 6, + "sheet_x": 10, + "sheet_y": 53, "short_name": "department_store", "short_names": [ "department_store" @@ -14737,8 +15280,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 34, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 809, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14753,8 +15297,8 @@ "softbank": "E508", "google": "FE4C0", "image": "1f3ed.png", - "sheet_x": 11, - "sheet_y": 7, + "sheet_x": 10, + "sheet_y": 54, "short_name": "factory", "short_names": [ "factory" @@ -14762,8 +15306,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 35, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 810, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14778,8 +15323,8 @@ "softbank": null, "google": "FE4C2", "image": "1f3ee.png", - "sheet_x": 11, - "sheet_y": 8, + "sheet_x": 10, + "sheet_y": 55, "short_name": "izakaya_lantern", "short_names": [ "izakaya_lantern", @@ -14788,8 +15333,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 102, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1177, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14804,8 +15350,8 @@ "softbank": "E505", "google": "FE4BE", "image": "1f3ef.png", - "sheet_x": 11, - "sheet_y": 9, + "sheet_x": 10, + "sheet_y": 56, "short_name": "japanese_castle", "short_names": [ "japanese_castle" @@ -14813,8 +15359,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 36, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 811, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -14829,8 +15376,8 @@ "softbank": "E506", "google": "FE4BF", "image": "1f3f0.png", - "sheet_x": 11, - "sheet_y": 10, + "sheet_x": 10, + "sheet_y": 57, "short_name": "european_castle", "short_names": [ "european_castle" @@ -14838,15 +15385,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 37, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 812, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "RAINBOW FLAG", "unified": "1F3F3-FE0F-200D-1F308", "non_qualified": "1F3F3-200D-1F308", "docomo": null, @@ -14855,7 +15403,7 @@ "google": null, "image": "1f3f3-fe0f-200d-1f308.png", "sheet_x": 11, - "sheet_y": 11, + "sheet_y": 0, "short_name": "rainbow-flag", "short_names": [ "rainbow-flag" @@ -14863,7 +15411,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 6, + "subcategory": "flag", + "sort_order": 1547, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -14871,7 +15420,33 @@ "has_img_facebook": true }, { - "name": null, + "name": "TRANSGENDER FLAG", + "unified": "1F3F3-FE0F-200D-26A7-FE0F", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f3f3-fe0f-200d-26a7-fe0f.png", + "sheet_x": 11, + "sheet_y": 1, + "short_name": "transgender_flag", + "short_names": [ + "transgender_flag" + ], + "text": null, + "texts": null, + "category": "Flags", + "subcategory": "flag", + "sort_order": 1548, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": false + }, + { + "name": "WHITE FLAG", "unified": "1F3F3-FE0F", "non_qualified": "1F3F3", "docomo": null, @@ -14880,7 +15455,7 @@ "google": null, "image": "1f3f3-fe0f.png", "sheet_x": 11, - "sheet_y": 12, + "sheet_y": 2, "short_name": "waving_white_flag", "short_names": [ "waving_white_flag" @@ -14888,15 +15463,16 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 5, - "added_in": "2.0", + "subcategory": "flag", + "sort_order": 1546, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "PIRATE FLAG", "unified": "1F3F4-200D-2620-FE0F", "non_qualified": "1F3F4-200D-2620", "docomo": null, @@ -14905,7 +15481,7 @@ "google": null, "image": "1f3f4-200d-2620-fe0f.png", "sheet_x": 11, - "sheet_y": 13, + "sheet_y": 3, "short_name": "pirate_flag", "short_names": [ "pirate_flag" @@ -14913,7 +15489,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 7, + "subcategory": "flag", + "sort_order": 1549, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -14930,7 +15507,7 @@ "google": null, "image": "1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.png", "sheet_x": 11, - "sheet_y": 14, + "sheet_y": 4, "short_name": "flag-england", "short_names": [ "flag-england" @@ -14938,7 +15515,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 266, + "subcategory": "subdivision-flag", + "sort_order": 1808, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -14955,7 +15533,7 @@ "google": null, "image": "1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.png", "sheet_x": 11, - "sheet_y": 15, + "sheet_y": 5, "short_name": "flag-scotland", "short_names": [ "flag-scotland" @@ -14963,7 +15541,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 267, + "subcategory": "subdivision-flag", + "sort_order": 1809, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -14980,7 +15559,7 @@ "google": null, "image": "1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.png", "sheet_x": 11, - "sheet_y": 16, + "sheet_y": 6, "short_name": "flag-wales", "short_names": [ "flag-wales" @@ -14988,7 +15567,8 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 268, + "subcategory": "subdivision-flag", + "sort_order": 1810, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -15005,7 +15585,7 @@ "google": null, "image": "1f3f4.png", "sheet_x": 11, - "sheet_y": 17, + "sheet_y": 7, "short_name": "waving_black_flag", "short_names": [ "waving_black_flag" @@ -15013,15 +15593,16 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 4, - "added_in": "2.0", + "subcategory": "flag", + "sort_order": 1545, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "ROSETTE", "unified": "1F3F5-FE0F", "non_qualified": "1F3F5", "docomo": null, @@ -15030,7 +15611,7 @@ "google": null, "image": "1f3f5-fe0f.png", "sheet_x": 11, - "sheet_y": 18, + "sheet_y": 8, "short_name": "rosette", "short_names": [ "rosette" @@ -15038,15 +15619,16 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 109, - "added_in": "2.0", + "subcategory": "plant-flower", + "sort_order": 624, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "LABEL", "unified": "1F3F7-FE0F", "non_qualified": "1F3F7", "docomo": null, @@ -15055,7 +15637,7 @@ "google": null, "image": "1f3f7-fe0f.png", "sheet_x": 11, - "sheet_y": 19, + "sheet_y": 9, "short_name": "label", "short_names": [ "label" @@ -15063,8 +15645,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 120, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1195, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15080,7 +15663,7 @@ "google": null, "image": "1f3f8.png", "sheet_x": 11, - "sheet_y": 20, + "sheet_y": 10, "short_name": "badminton_racquet_and_shuttlecock", "short_names": [ "badminton_racquet_and_shuttlecock" @@ -15088,8 +15671,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 43, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1030, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15105,7 +15689,7 @@ "google": null, "image": "1f3f9.png", "sheet_x": 11, - "sheet_y": 21, + "sheet_y": 11, "short_name": "bow_and_arrow", "short_names": [ "bow_and_arrow" @@ -15113,8 +15697,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 189, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1264, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15130,7 +15715,7 @@ "google": null, "image": "1f3fa.png", "sheet_x": 11, - "sheet_y": 22, + "sheet_y": 12, "short_name": "amphora", "short_names": [ "amphora" @@ -15138,8 +15723,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 121, - "added_in": "2.0", + "subcategory": "dishware", + "sort_order": 772, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15155,16 +15741,17 @@ "google": null, "image": "1f3fb.png", "sheet_x": 11, - "sheet_y": 23, + "sheet_y": 13, "short_name": "skin-tone-2", "short_names": [ "skin-tone-2" ], "text": null, "texts": null, - "category": "Skin Tones", - "sort_order": 1, - "added_in": "2.0", + "category": "Component", + "subcategory": "skin-tone", + "sort_order": 499, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15180,16 +15767,17 @@ "google": null, "image": "1f3fc.png", "sheet_x": 11, - "sheet_y": 24, + "sheet_y": 14, "short_name": "skin-tone-3", "short_names": [ "skin-tone-3" ], "text": null, "texts": null, - "category": "Skin Tones", - "sort_order": 2, - "added_in": "2.0", + "category": "Component", + "subcategory": "skin-tone", + "sort_order": 500, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15205,16 +15793,17 @@ "google": null, "image": "1f3fd.png", "sheet_x": 11, - "sheet_y": 25, + "sheet_y": 15, "short_name": "skin-tone-4", "short_names": [ "skin-tone-4" ], "text": null, "texts": null, - "category": "Skin Tones", - "sort_order": 3, - "added_in": "2.0", + "category": "Component", + "subcategory": "skin-tone", + "sort_order": 501, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15230,16 +15819,17 @@ "google": null, "image": "1f3fe.png", "sheet_x": 11, - "sheet_y": 26, + "sheet_y": 16, "short_name": "skin-tone-5", "short_names": [ "skin-tone-5" ], "text": null, "texts": null, - "category": "Skin Tones", - "sort_order": 4, - "added_in": "2.0", + "category": "Component", + "subcategory": "skin-tone", + "sort_order": 502, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15255,16 +15845,17 @@ "google": null, "image": "1f3ff.png", "sheet_x": 11, - "sheet_y": 27, + "sheet_y": 17, "short_name": "skin-tone-6", "short_names": [ "skin-tone-6" ], "text": null, "texts": null, - "category": "Skin Tones", - "sort_order": 5, - "added_in": "2.0", + "category": "Component", + "subcategory": "skin-tone", + "sort_order": 503, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15280,7 +15871,7 @@ "google": null, "image": "1f400.png", "sheet_x": 11, - "sheet_y": 28, + "sheet_y": 18, "short_name": "rat", "short_names": [ "rat" @@ -15288,8 +15879,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 44, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 550, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15305,7 +15897,7 @@ "google": null, "image": "1f401.png", "sheet_x": 11, - "sheet_y": 29, + "sheet_y": 19, "short_name": "mouse2", "short_names": [ "mouse2" @@ -15313,8 +15905,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 43, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 549, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15330,7 +15923,7 @@ "google": null, "image": "1f402.png", "sheet_x": 11, - "sheet_y": 30, + "sheet_y": 20, "short_name": "ox", "short_names": [ "ox" @@ -15338,8 +15931,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 25, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 530, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15355,7 +15949,7 @@ "google": null, "image": "1f403.png", "sheet_x": 11, - "sheet_y": 31, + "sheet_y": 21, "short_name": "water_buffalo", "short_names": [ "water_buffalo" @@ -15363,8 +15957,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 26, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 531, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15380,7 +15975,7 @@ "google": null, "image": "1f404.png", "sheet_x": 11, - "sheet_y": 32, + "sheet_y": 22, "short_name": "cow2", "short_names": [ "cow2" @@ -15388,8 +15983,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 27, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 532, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15405,7 +16001,7 @@ "google": null, "image": "1f405.png", "sheet_x": 11, - "sheet_y": 33, + "sheet_y": 23, "short_name": "tiger2", "short_names": [ "tiger2" @@ -15413,8 +16009,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 17, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 521, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15430,7 +16027,7 @@ "google": null, "image": "1f406.png", "sheet_x": 11, - "sheet_y": 34, + "sheet_y": 24, "short_name": "leopard", "short_names": [ "leopard" @@ -15438,8 +16035,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 18, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 522, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15455,7 +16053,7 @@ "google": null, "image": "1f407.png", "sheet_x": 11, - "sheet_y": 35, + "sheet_y": 25, "short_name": "rabbit2", "short_names": [ "rabbit2" @@ -15463,8 +16061,35 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 47, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 553, + "added_in": "1.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "BLACK CAT", + "unified": "1F408-200D-2B1B", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f408-200d-2b1b.png", + "sheet_x": 11, + "sheet_y": 26, + "short_name": "black_cat", + "short_names": [ + "black_cat" + ], + "text": null, + "texts": null, + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 518, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15480,7 +16105,7 @@ "google": null, "image": "1f408.png", "sheet_x": 11, - "sheet_y": 36, + "sheet_y": 27, "short_name": "cat2", "short_names": [ "cat2" @@ -15488,8 +16113,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 14, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 517, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15505,7 +16131,7 @@ "google": null, "image": "1f409.png", "sheet_x": 11, - "sheet_y": 37, + "sheet_y": 28, "short_name": "dragon", "short_names": [ "dragon" @@ -15513,8 +16139,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 82, - "added_in": "2.0", + "subcategory": "animal-reptile", + "sort_order": 592, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15530,7 +16157,7 @@ "google": null, "image": "1f40a.png", "sheet_x": 11, - "sheet_y": 38, + "sheet_y": 29, "short_name": "crocodile", "short_names": [ "crocodile" @@ -15538,8 +16165,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 77, - "added_in": "2.0", + "subcategory": "animal-reptile", + "sort_order": 587, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15555,7 +16183,7 @@ "google": null, "image": "1f40b.png", "sheet_x": 11, - "sheet_y": 39, + "sheet_y": 30, "short_name": "whale2", "short_names": [ "whale2" @@ -15563,8 +16191,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 86, - "added_in": "2.0", + "subcategory": "animal-marine", + "sort_order": 596, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15580,7 +16209,7 @@ "google": "FE1B9", "image": "1f40c.png", "sheet_x": 11, - "sheet_y": 40, + "sheet_y": 31, "short_name": "snail", "short_names": [ "snail" @@ -15588,8 +16217,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 94, - "added_in": "2.0", + "subcategory": "animal-bug", + "sort_order": 605, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15605,7 +16235,7 @@ "google": "FE1D3", "image": "1f40d.png", "sheet_x": 11, - "sheet_y": 41, + "sheet_y": 32, "short_name": "snake", "short_names": [ "snake" @@ -15613,8 +16243,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 80, - "added_in": "2.0", + "subcategory": "animal-reptile", + "sort_order": 590, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15630,7 +16261,7 @@ "google": "FE7DC", "image": "1f40e.png", "sheet_x": 11, - "sheet_y": 42, + "sheet_y": 33, "short_name": "racehorse", "short_names": [ "racehorse" @@ -15638,8 +16269,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 20, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 524, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15655,7 +16287,7 @@ "google": null, "image": "1f40f.png", "sheet_x": 11, - "sheet_y": 43, + "sheet_y": 34, "short_name": "ram", "short_names": [ "ram" @@ -15663,8 +16295,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 32, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 537, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15680,7 +16313,7 @@ "google": null, "image": "1f410.png", "sheet_x": 11, - "sheet_y": 44, + "sheet_y": 35, "short_name": "goat", "short_names": [ "goat" @@ -15688,8 +16321,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 34, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 539, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15705,7 +16339,7 @@ "google": "FE1CF", "image": "1f411.png", "sheet_x": 11, - "sheet_y": 45, + "sheet_y": 36, "short_name": "sheep", "short_names": [ "sheep" @@ -15713,8 +16347,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 33, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 538, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15730,7 +16365,7 @@ "google": "FE1CE", "image": "1f412.png", "sheet_x": 11, - "sheet_y": 46, + "sheet_y": 37, "short_name": "monkey", "short_names": [ "monkey" @@ -15738,8 +16373,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 2, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 505, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15755,7 +16391,7 @@ "google": null, "image": "1f413.png", "sheet_x": 11, - "sheet_y": 47, + "sheet_y": 38, "short_name": "rooster", "short_names": [ "rooster" @@ -15763,8 +16399,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 62, - "added_in": "2.0", + "subcategory": "animal-bird", + "sort_order": 570, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15780,7 +16417,7 @@ "google": "FE1D4", "image": "1f414.png", "sheet_x": 11, - "sheet_y": 48, + "sheet_y": 39, "short_name": "chicken", "short_names": [ "chicken" @@ -15788,15 +16425,16 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 61, - "added_in": "2.0", + "subcategory": "animal-bird", + "sort_order": 569, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SERVICE DOG", "unified": "1F415-200D-1F9BA", "non_qualified": null, "docomo": null, @@ -15805,7 +16443,7 @@ "google": null, "image": "1f415-200d-1f9ba.png", "sheet_x": 11, - "sheet_y": 49, + "sheet_y": 40, "short_name": "service_dog", "short_names": [ "service_dog" @@ -15813,8 +16451,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 8, - "added_in": "12.1", + "subcategory": "animal-mammal", + "sort_order": 511, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15830,7 +16469,7 @@ "google": null, "image": "1f415.png", "sheet_x": 11, - "sheet_y": 50, + "sheet_y": 41, "short_name": "dog2", "short_names": [ "dog2" @@ -15838,8 +16477,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 6, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 509, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15855,7 +16495,7 @@ "google": null, "image": "1f416.png", "sheet_x": 11, - "sheet_y": 51, + "sheet_y": 42, "short_name": "pig2", "short_names": [ "pig2" @@ -15863,8 +16503,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 29, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 534, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15880,7 +16521,7 @@ "google": "FE1D5", "image": "1f417.png", "sheet_x": 11, - "sheet_y": 52, + "sheet_y": 43, "short_name": "boar", "short_names": [ "boar" @@ -15888,8 +16529,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 30, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 535, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15905,7 +16547,7 @@ "google": "FE1CC", "image": "1f418.png", "sheet_x": 11, - "sheet_y": 53, + "sheet_y": 44, "short_name": "elephant", "short_names": [ "elephant" @@ -15913,8 +16555,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 39, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 544, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15930,7 +16573,7 @@ "google": "FE1C5", "image": "1f419.png", "sheet_x": 11, - "sheet_y": 54, + "sheet_y": 45, "short_name": "octopus", "short_names": [ "octopus" @@ -15938,8 +16581,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 92, - "added_in": "2.0", + "subcategory": "animal-marine", + "sort_order": 603, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15955,7 +16599,7 @@ "google": "FE1C6", "image": "1f41a.png", "sheet_x": 11, - "sheet_y": 55, + "sheet_y": 46, "short_name": "shell", "short_names": [ "shell" @@ -15963,8 +16607,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 93, - "added_in": "2.0", + "subcategory": "animal-marine", + "sort_order": 604, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -15980,7 +16625,7 @@ "google": "FE1CB", "image": "1f41b.png", "sheet_x": 11, - "sheet_y": 56, + "sheet_y": 47, "short_name": "bug", "short_names": [ "bug" @@ -15988,8 +16633,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 96, - "added_in": "2.0", + "subcategory": "animal-bug", + "sort_order": 607, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16004,8 +16650,8 @@ "softbank": null, "google": "FE1DA", "image": "1f41c.png", - "sheet_x": 12, - "sheet_y": 0, + "sheet_x": 11, + "sheet_y": 48, "short_name": "ant", "short_names": [ "ant" @@ -16013,8 +16659,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 97, - "added_in": "2.0", + "subcategory": "animal-bug", + "sort_order": 608, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16029,8 +16676,8 @@ "softbank": null, "google": "FE1E1", "image": "1f41d.png", - "sheet_x": 12, - "sheet_y": 1, + "sheet_x": 11, + "sheet_y": 49, "short_name": "bee", "short_names": [ "bee", @@ -16039,8 +16686,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 98, - "added_in": "2.0", + "subcategory": "animal-bug", + "sort_order": 609, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16055,17 +16703,19 @@ "softbank": null, "google": "FE1E2", "image": "1f41e.png", - "sheet_x": 12, - "sheet_y": 2, - "short_name": "beetle", + "sheet_x": 11, + "sheet_y": 50, + "short_name": "ladybug", "short_names": [ - "beetle" + "ladybug", + "lady_beetle" ], "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 99, - "added_in": "2.0", + "subcategory": "animal-bug", + "sort_order": 611, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16080,8 +16730,8 @@ "softbank": "E019", "google": "FE1BD", "image": "1f41f.png", - "sheet_x": 12, - "sheet_y": 3, + "sheet_x": 11, + "sheet_y": 51, "short_name": "fish", "short_names": [ "fish" @@ -16089,8 +16739,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 88, - "added_in": "2.0", + "subcategory": "animal-marine", + "sort_order": 599, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16105,8 +16756,8 @@ "softbank": "E522", "google": "FE1C9", "image": "1f420.png", - "sheet_x": 12, - "sheet_y": 4, + "sheet_x": 11, + "sheet_y": 52, "short_name": "tropical_fish", "short_names": [ "tropical_fish" @@ -16114,8 +16765,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 89, - "added_in": "2.0", + "subcategory": "animal-marine", + "sort_order": 600, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16130,8 +16782,8 @@ "softbank": null, "google": "FE1D9", "image": "1f421.png", - "sheet_x": 12, - "sheet_y": 5, + "sheet_x": 11, + "sheet_y": 53, "short_name": "blowfish", "short_names": [ "blowfish" @@ -16139,8 +16791,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 90, - "added_in": "2.0", + "subcategory": "animal-marine", + "sort_order": 601, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16155,8 +16808,8 @@ "softbank": null, "google": "FE1DC", "image": "1f422.png", - "sheet_x": 12, - "sheet_y": 6, + "sheet_x": 11, + "sheet_y": 54, "short_name": "turtle", "short_names": [ "turtle" @@ -16164,8 +16817,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 78, - "added_in": "2.0", + "subcategory": "animal-reptile", + "sort_order": 588, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16180,8 +16834,8 @@ "softbank": null, "google": "FE1DD", "image": "1f423.png", - "sheet_x": 12, - "sheet_y": 7, + "sheet_x": 11, + "sheet_y": 55, "short_name": "hatching_chick", "short_names": [ "hatching_chick" @@ -16189,8 +16843,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 63, - "added_in": "2.0", + "subcategory": "animal-bird", + "sort_order": 571, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16205,8 +16860,8 @@ "softbank": "E523", "google": "FE1BA", "image": "1f424.png", - "sheet_x": 12, - "sheet_y": 8, + "sheet_x": 11, + "sheet_y": 56, "short_name": "baby_chick", "short_names": [ "baby_chick" @@ -16214,8 +16869,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 64, - "added_in": "2.0", + "subcategory": "animal-bird", + "sort_order": 572, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16230,8 +16886,8 @@ "softbank": null, "google": "FE1BB", "image": "1f425.png", - "sheet_x": 12, - "sheet_y": 9, + "sheet_x": 11, + "sheet_y": 57, "short_name": "hatched_chick", "short_names": [ "hatched_chick" @@ -16239,8 +16895,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 65, - "added_in": "2.0", + "subcategory": "animal-bird", + "sort_order": 573, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16256,7 +16913,7 @@ "google": "FE1C8", "image": "1f426.png", "sheet_x": 12, - "sheet_y": 10, + "sheet_y": 0, "short_name": "bird", "short_names": [ "bird" @@ -16264,8 +16921,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 66, - "added_in": "2.0", + "subcategory": "animal-bird", + "sort_order": 574, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16281,7 +16939,7 @@ "google": "FE1BC", "image": "1f427.png", "sheet_x": 12, - "sheet_y": 11, + "sheet_y": 1, "short_name": "penguin", "short_names": [ "penguin" @@ -16289,8 +16947,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 67, - "added_in": "2.0", + "subcategory": "animal-bird", + "sort_order": 575, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16306,7 +16965,7 @@ "google": "FE1CD", "image": "1f428.png", "sheet_x": 12, - "sheet_y": 12, + "sheet_y": 2, "short_name": "koala", "short_names": [ "koala" @@ -16314,8 +16973,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 52, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 560, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16331,7 +16991,7 @@ "google": "FE1D8", "image": "1f429.png", "sheet_x": 12, - "sheet_y": 13, + "sheet_y": 3, "short_name": "poodle", "short_names": [ "poodle" @@ -16339,8 +16999,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 9, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 512, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16356,7 +17017,7 @@ "google": null, "image": "1f42a.png", "sheet_x": 12, - "sheet_y": 14, + "sheet_y": 4, "short_name": "dromedary_camel", "short_names": [ "dromedary_camel" @@ -16364,8 +17025,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 35, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 540, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16381,7 +17043,7 @@ "google": "FE1D6", "image": "1f42b.png", "sheet_x": 12, - "sheet_y": 15, + "sheet_y": 5, "short_name": "camel", "short_names": [ "camel" @@ -16389,8 +17051,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 36, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 541, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16406,7 +17069,7 @@ "google": "FE1C7", "image": "1f42c.png", "sheet_x": 12, - "sheet_y": 16, + "sheet_y": 6, "short_name": "dolphin", "short_names": [ "dolphin", @@ -16415,8 +17078,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 87, - "added_in": "2.0", + "subcategory": "animal-marine", + "sort_order": 597, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16432,7 +17096,7 @@ "google": "FE1C2", "image": "1f42d.png", "sheet_x": 12, - "sheet_y": 17, + "sheet_y": 7, "short_name": "mouse", "short_names": [ "mouse" @@ -16440,8 +17104,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 42, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 548, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16457,7 +17122,7 @@ "google": "FE1D1", "image": "1f42e.png", "sheet_x": 12, - "sheet_y": 18, + "sheet_y": 8, "short_name": "cow", "short_names": [ "cow" @@ -16465,8 +17130,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 24, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 529, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16482,7 +17148,7 @@ "google": "FE1C0", "image": "1f42f.png", "sheet_x": 12, - "sheet_y": 19, + "sheet_y": 9, "short_name": "tiger", "short_names": [ "tiger" @@ -16490,8 +17156,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 16, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 520, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16507,7 +17174,7 @@ "google": "FE1D2", "image": "1f430.png", "sheet_x": 12, - "sheet_y": 20, + "sheet_y": 10, "short_name": "rabbit", "short_names": [ "rabbit" @@ -16515,8 +17182,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 46, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 552, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16532,7 +17200,7 @@ "google": "FE1B8", "image": "1f431.png", "sheet_x": 12, - "sheet_y": 21, + "sheet_y": 11, "short_name": "cat", "short_names": [ "cat" @@ -16540,8 +17208,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 13, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 516, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16557,7 +17226,7 @@ "google": "FE1DE", "image": "1f432.png", "sheet_x": 12, - "sheet_y": 22, + "sheet_y": 12, "short_name": "dragon_face", "short_names": [ "dragon_face" @@ -16565,8 +17234,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 81, - "added_in": "2.0", + "subcategory": "animal-reptile", + "sort_order": 591, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16582,7 +17252,7 @@ "google": "FE1C3", "image": "1f433.png", "sheet_x": 12, - "sheet_y": 23, + "sheet_y": 13, "short_name": "whale", "short_names": [ "whale" @@ -16590,8 +17260,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 85, - "added_in": "2.0", + "subcategory": "animal-marine", + "sort_order": 595, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16607,7 +17278,7 @@ "google": "FE1BE", "image": "1f434.png", "sheet_x": 12, - "sheet_y": 24, + "sheet_y": 14, "short_name": "horse", "short_names": [ "horse" @@ -16615,8 +17286,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 19, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 523, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16632,7 +17304,7 @@ "google": "FE1C4", "image": "1f435.png", "sheet_x": 12, - "sheet_y": 25, + "sheet_y": 15, "short_name": "monkey_face", "short_names": [ "monkey_face" @@ -16642,8 +17314,9 @@ ":o)" ], "category": "Animals & Nature", - "sort_order": 1, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 504, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16659,7 +17332,7 @@ "google": "FE1B7", "image": "1f436.png", "sheet_x": 12, - "sheet_y": 26, + "sheet_y": 16, "short_name": "dog", "short_names": [ "dog" @@ -16667,8 +17340,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 5, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 508, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16684,7 +17358,7 @@ "google": "FE1BF", "image": "1f437.png", "sheet_x": 12, - "sheet_y": 27, + "sheet_y": 17, "short_name": "pig", "short_names": [ "pig" @@ -16692,8 +17366,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 28, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 533, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16709,7 +17384,7 @@ "google": "FE1D7", "image": "1f438.png", "sheet_x": 12, - "sheet_y": 28, + "sheet_y": 18, "short_name": "frog", "short_names": [ "frog" @@ -16717,8 +17392,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 76, - "added_in": "2.0", + "subcategory": "animal-amphibian", + "sort_order": 586, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16734,7 +17410,7 @@ "google": "FE1CA", "image": "1f439.png", "sheet_x": 12, - "sheet_y": 29, + "sheet_y": 19, "short_name": "hamster", "short_names": [ "hamster" @@ -16742,8 +17418,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 45, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 551, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16759,7 +17436,7 @@ "google": "FE1D0", "image": "1f43a.png", "sheet_x": 12, - "sheet_y": 30, + "sheet_y": 20, "short_name": "wolf", "short_names": [ "wolf" @@ -16767,8 +17444,35 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 10, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 513, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "POLAR BEAR", + "unified": "1F43B-200D-2744-FE0F", + "non_qualified": "1F43B-200D-2744", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f43b-200d-2744-fe0f.png", + "sheet_x": 12, + "sheet_y": 21, + "short_name": "polar_bear", + "short_names": [ + "polar_bear" + ], + "text": null, + "texts": null, + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 559, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16784,7 +17488,7 @@ "google": "FE1C1", "image": "1f43b.png", "sheet_x": 12, - "sheet_y": 31, + "sheet_y": 22, "short_name": "bear", "short_names": [ "bear" @@ -16792,8 +17496,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 51, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 558, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16809,7 +17514,7 @@ "google": "FE1DF", "image": "1f43c.png", "sheet_x": 12, - "sheet_y": 32, + "sheet_y": 23, "short_name": "panda_face", "short_names": [ "panda_face" @@ -16817,8 +17522,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 53, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 561, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16834,7 +17540,7 @@ "google": "FE1E0", "image": "1f43d.png", "sheet_x": 12, - "sheet_y": 33, + "sheet_y": 24, "short_name": "pig_nose", "short_names": [ "pig_nose" @@ -16842,8 +17548,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 31, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 536, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16859,7 +17566,7 @@ "google": "FE1DB", "image": "1f43e.png", "sheet_x": 12, - "sheet_y": 34, + "sheet_y": 25, "short_name": "feet", "short_names": [ "feet", @@ -16868,15 +17575,16 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 59, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 567, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CHIPMUNK", "unified": "1F43F-FE0F", "non_qualified": "1F43F", "docomo": null, @@ -16885,7 +17593,7 @@ "google": null, "image": "1f43f-fe0f.png", "sheet_x": 12, - "sheet_y": 35, + "sheet_y": 26, "short_name": "chipmunk", "short_names": [ "chipmunk" @@ -16893,8 +17601,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 48, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 554, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16910,7 +17619,7 @@ "google": "FE190", "image": "1f440.png", "sheet_x": 12, - "sheet_y": 36, + "sheet_y": 27, "short_name": "eyes", "short_names": [ "eyes" @@ -16918,15 +17627,16 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 45, - "added_in": "2.0", + "subcategory": "body-parts", + "sort_order": 199, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "EYE IN SPEECH BUBBLE", "unified": "1F441-FE0F-200D-1F5E8-FE0F", "non_qualified": null, "docomo": null, @@ -16935,7 +17645,7 @@ "google": null, "image": "1f441-fe0f-200d-1f5e8-fe0f.png", "sheet_x": 12, - "sheet_y": 37, + "sheet_y": 28, "short_name": "eye-in-speech-bubble", "short_names": [ "eye-in-speech-bubble" @@ -16943,7 +17653,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 145, + "subcategory": "emotion", + "sort_order": 147, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -16951,7 +17662,7 @@ "has_img_facebook": false }, { - "name": null, + "name": "EYE", "unified": "1F441-FE0F", "non_qualified": "1F441", "docomo": null, @@ -16960,7 +17671,7 @@ "google": null, "image": "1f441-fe0f.png", "sheet_x": 12, - "sheet_y": 38, + "sheet_y": 29, "short_name": "eye", "short_names": [ "eye" @@ -16968,8 +17679,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 46, - "added_in": "2.0", + "subcategory": "body-parts", + "sort_order": 200, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -16985,7 +17697,7 @@ "google": "FE191", "image": "1f442.png", "sheet_x": 12, - "sheet_y": 39, + "sheet_y": 30, "short_name": "ear", "short_names": [ "ear" @@ -16993,8 +17705,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 39, - "added_in": "2.0", + "subcategory": "body-parts", + "sort_order": 191, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17005,8 +17718,8 @@ "non_qualified": null, "image": "1f442-1f3fb.png", "sheet_x": 12, - "sheet_y": 40, - "added_in": "2.0", + "sheet_y": 31, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17017,8 +17730,8 @@ "non_qualified": null, "image": "1f442-1f3fc.png", "sheet_x": 12, - "sheet_y": 41, - "added_in": "2.0", + "sheet_y": 32, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17029,8 +17742,8 @@ "non_qualified": null, "image": "1f442-1f3fd.png", "sheet_x": 12, - "sheet_y": 42, - "added_in": "2.0", + "sheet_y": 33, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17041,8 +17754,8 @@ "non_qualified": null, "image": "1f442-1f3fe.png", "sheet_x": 12, - "sheet_y": 43, - "added_in": "2.0", + "sheet_y": 34, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17053,8 +17766,8 @@ "non_qualified": null, "image": "1f442-1f3ff.png", "sheet_x": 12, - "sheet_y": 44, - "added_in": "2.0", + "sheet_y": 35, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17072,7 +17785,7 @@ "google": "FE192", "image": "1f443.png", "sheet_x": 12, - "sheet_y": 45, + "sheet_y": 36, "short_name": "nose", "short_names": [ "nose" @@ -17080,8 +17793,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 41, - "added_in": "2.0", + "subcategory": "body-parts", + "sort_order": 193, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17092,8 +17806,8 @@ "non_qualified": null, "image": "1f443-1f3fb.png", "sheet_x": 12, - "sheet_y": 46, - "added_in": "2.0", + "sheet_y": 37, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17104,8 +17818,8 @@ "non_qualified": null, "image": "1f443-1f3fc.png", "sheet_x": 12, - "sheet_y": 47, - "added_in": "2.0", + "sheet_y": 38, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17116,8 +17830,8 @@ "non_qualified": null, "image": "1f443-1f3fd.png", "sheet_x": 12, - "sheet_y": 48, - "added_in": "2.0", + "sheet_y": 39, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17128,8 +17842,8 @@ "non_qualified": null, "image": "1f443-1f3fe.png", "sheet_x": 12, - "sheet_y": 49, - "added_in": "2.0", + "sheet_y": 40, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17140,8 +17854,8 @@ "non_qualified": null, "image": "1f443-1f3ff.png", "sheet_x": 12, - "sheet_y": 50, - "added_in": "2.0", + "sheet_y": 41, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17159,7 +17873,7 @@ "google": "FE193", "image": "1f444.png", "sheet_x": 12, - "sheet_y": 51, + "sheet_y": 42, "short_name": "lips", "short_names": [ "lips" @@ -17167,8 +17881,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 48, - "added_in": "2.0", + "subcategory": "body-parts", + "sort_order": 202, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17184,7 +17899,7 @@ "google": "FE194", "image": "1f445.png", "sheet_x": 12, - "sheet_y": 52, + "sheet_y": 43, "short_name": "tongue", "short_names": [ "tongue" @@ -17192,8 +17907,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 47, - "added_in": "2.0", + "subcategory": "body-parts", + "sort_order": 201, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17209,7 +17925,7 @@ "google": "FEB99", "image": "1f446.png", "sheet_x": 12, - "sheet_y": 53, + "sheet_y": 44, "short_name": "point_up_2", "short_names": [ "point_up_2" @@ -17217,8 +17933,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 15, - "added_in": "2.0", + "subcategory": "hand-single-finger", + "sort_order": 167, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17229,8 +17946,8 @@ "non_qualified": null, "image": "1f446-1f3fb.png", "sheet_x": 12, - "sheet_y": 54, - "added_in": "2.0", + "sheet_y": 45, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17241,8 +17958,8 @@ "non_qualified": null, "image": "1f446-1f3fc.png", "sheet_x": 12, - "sheet_y": 55, - "added_in": "2.0", + "sheet_y": 46, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17253,8 +17970,8 @@ "non_qualified": null, "image": "1f446-1f3fd.png", "sheet_x": 12, - "sheet_y": 56, - "added_in": "2.0", + "sheet_y": 47, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17264,9 +17981,9 @@ "unified": "1F446-1F3FE", "non_qualified": null, "image": "1f446-1f3fe.png", - "sheet_x": 13, - "sheet_y": 0, - "added_in": "2.0", + "sheet_x": 12, + "sheet_y": 48, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17276,9 +17993,9 @@ "unified": "1F446-1F3FF", "non_qualified": null, "image": "1f446-1f3ff.png", - "sheet_x": 13, - "sheet_y": 1, - "added_in": "2.0", + "sheet_x": 12, + "sheet_y": 49, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17295,8 +18012,8 @@ "softbank": "E22F", "google": "FEB9A", "image": "1f447.png", - "sheet_x": 13, - "sheet_y": 2, + "sheet_x": 12, + "sheet_y": 50, "short_name": "point_down", "short_names": [ "point_down" @@ -17304,8 +18021,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 17, - "added_in": "2.0", + "subcategory": "hand-single-finger", + "sort_order": 169, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17315,9 +18033,9 @@ "unified": "1F447-1F3FB", "non_qualified": null, "image": "1f447-1f3fb.png", - "sheet_x": 13, - "sheet_y": 3, - "added_in": "2.0", + "sheet_x": 12, + "sheet_y": 51, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17327,9 +18045,9 @@ "unified": "1F447-1F3FC", "non_qualified": null, "image": "1f447-1f3fc.png", - "sheet_x": 13, - "sheet_y": 4, - "added_in": "2.0", + "sheet_x": 12, + "sheet_y": 52, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17339,9 +18057,9 @@ "unified": "1F447-1F3FD", "non_qualified": null, "image": "1f447-1f3fd.png", - "sheet_x": 13, - "sheet_y": 5, - "added_in": "2.0", + "sheet_x": 12, + "sheet_y": 53, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17351,9 +18069,9 @@ "unified": "1F447-1F3FE", "non_qualified": null, "image": "1f447-1f3fe.png", - "sheet_x": 13, - "sheet_y": 6, - "added_in": "2.0", + "sheet_x": 12, + "sheet_y": 54, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17363,9 +18081,9 @@ "unified": "1F447-1F3FF", "non_qualified": null, "image": "1f447-1f3ff.png", - "sheet_x": 13, - "sheet_y": 7, - "added_in": "2.0", + "sheet_x": 12, + "sheet_y": 55, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17382,8 +18100,8 @@ "softbank": "E230", "google": "FEB9B", "image": "1f448.png", - "sheet_x": 13, - "sheet_y": 8, + "sheet_x": 12, + "sheet_y": 56, "short_name": "point_left", "short_names": [ "point_left" @@ -17391,8 +18109,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 13, - "added_in": "2.0", + "subcategory": "hand-single-finger", + "sort_order": 165, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17402,9 +18121,9 @@ "unified": "1F448-1F3FB", "non_qualified": null, "image": "1f448-1f3fb.png", - "sheet_x": 13, - "sheet_y": 9, - "added_in": "2.0", + "sheet_x": 12, + "sheet_y": 57, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17415,8 +18134,8 @@ "non_qualified": null, "image": "1f448-1f3fc.png", "sheet_x": 13, - "sheet_y": 10, - "added_in": "2.0", + "sheet_y": 0, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17427,8 +18146,8 @@ "non_qualified": null, "image": "1f448-1f3fd.png", "sheet_x": 13, - "sheet_y": 11, - "added_in": "2.0", + "sheet_y": 1, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17439,8 +18158,8 @@ "non_qualified": null, "image": "1f448-1f3fe.png", "sheet_x": 13, - "sheet_y": 12, - "added_in": "2.0", + "sheet_y": 2, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17451,8 +18170,8 @@ "non_qualified": null, "image": "1f448-1f3ff.png", "sheet_x": 13, - "sheet_y": 13, - "added_in": "2.0", + "sheet_y": 3, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17470,7 +18189,7 @@ "google": "FEB9C", "image": "1f449.png", "sheet_x": 13, - "sheet_y": 14, + "sheet_y": 4, "short_name": "point_right", "short_names": [ "point_right" @@ -17478,8 +18197,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 14, - "added_in": "2.0", + "subcategory": "hand-single-finger", + "sort_order": 166, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17490,8 +18210,8 @@ "non_qualified": null, "image": "1f449-1f3fb.png", "sheet_x": 13, - "sheet_y": 15, - "added_in": "2.0", + "sheet_y": 5, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17502,8 +18222,8 @@ "non_qualified": null, "image": "1f449-1f3fc.png", "sheet_x": 13, - "sheet_y": 16, - "added_in": "2.0", + "sheet_y": 6, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17514,8 +18234,8 @@ "non_qualified": null, "image": "1f449-1f3fd.png", "sheet_x": 13, - "sheet_y": 17, - "added_in": "2.0", + "sheet_y": 7, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17526,8 +18246,8 @@ "non_qualified": null, "image": "1f449-1f3fe.png", "sheet_x": 13, - "sheet_y": 18, - "added_in": "2.0", + "sheet_y": 8, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17538,8 +18258,8 @@ "non_qualified": null, "image": "1f449-1f3ff.png", "sheet_x": 13, - "sheet_y": 19, - "added_in": "2.0", + "sheet_y": 9, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17557,7 +18277,7 @@ "google": "FEB96", "image": "1f44a.png", "sheet_x": 13, - "sheet_y": 20, + "sheet_y": 10, "short_name": "facepunch", "short_names": [ "facepunch", @@ -17566,8 +18286,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 22, - "added_in": "2.0", + "subcategory": "hand-fingers-closed", + "sort_order": 174, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17578,8 +18299,8 @@ "non_qualified": null, "image": "1f44a-1f3fb.png", "sheet_x": 13, - "sheet_y": 21, - "added_in": "2.0", + "sheet_y": 11, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17590,8 +18311,8 @@ "non_qualified": null, "image": "1f44a-1f3fc.png", "sheet_x": 13, - "sheet_y": 22, - "added_in": "2.0", + "sheet_y": 12, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17602,8 +18323,8 @@ "non_qualified": null, "image": "1f44a-1f3fd.png", "sheet_x": 13, - "sheet_y": 23, - "added_in": "2.0", + "sheet_y": 13, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17614,8 +18335,8 @@ "non_qualified": null, "image": "1f44a-1f3fe.png", "sheet_x": 13, - "sheet_y": 24, - "added_in": "2.0", + "sheet_y": 14, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17626,8 +18347,8 @@ "non_qualified": null, "image": "1f44a-1f3ff.png", "sheet_x": 13, - "sheet_y": 25, - "added_in": "2.0", + "sheet_y": 15, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17645,7 +18366,7 @@ "google": "FEB9D", "image": "1f44b.png", "sheet_x": 13, - "sheet_y": 26, + "sheet_y": 16, "short_name": "wave", "short_names": [ "wave" @@ -17653,8 +18374,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 1, - "added_in": "2.0", + "subcategory": "hand-fingers-open", + "sort_order": 152, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17665,8 +18387,8 @@ "non_qualified": null, "image": "1f44b-1f3fb.png", "sheet_x": 13, - "sheet_y": 27, - "added_in": "2.0", + "sheet_y": 17, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17677,8 +18399,8 @@ "non_qualified": null, "image": "1f44b-1f3fc.png", "sheet_x": 13, - "sheet_y": 28, - "added_in": "2.0", + "sheet_y": 18, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17689,8 +18411,8 @@ "non_qualified": null, "image": "1f44b-1f3fd.png", "sheet_x": 13, - "sheet_y": 29, - "added_in": "2.0", + "sheet_y": 19, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17701,8 +18423,8 @@ "non_qualified": null, "image": "1f44b-1f3fe.png", "sheet_x": 13, - "sheet_y": 30, - "added_in": "2.0", + "sheet_y": 20, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17713,8 +18435,8 @@ "non_qualified": null, "image": "1f44b-1f3ff.png", "sheet_x": 13, - "sheet_y": 31, - "added_in": "2.0", + "sheet_y": 21, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17732,7 +18454,7 @@ "google": "FEB9F", "image": "1f44c.png", "sheet_x": 13, - "sheet_y": 32, + "sheet_y": 22, "short_name": "ok_hand", "short_names": [ "ok_hand" @@ -17740,8 +18462,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 6, - "added_in": "2.0", + "subcategory": "hand-fingers-partial", + "sort_order": 157, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17752,8 +18475,8 @@ "non_qualified": null, "image": "1f44c-1f3fb.png", "sheet_x": 13, - "sheet_y": 33, - "added_in": "2.0", + "sheet_y": 23, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17764,8 +18487,8 @@ "non_qualified": null, "image": "1f44c-1f3fc.png", "sheet_x": 13, - "sheet_y": 34, - "added_in": "2.0", + "sheet_y": 24, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17776,8 +18499,8 @@ "non_qualified": null, "image": "1f44c-1f3fd.png", "sheet_x": 13, - "sheet_y": 35, - "added_in": "2.0", + "sheet_y": 25, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17788,8 +18511,8 @@ "non_qualified": null, "image": "1f44c-1f3fe.png", "sheet_x": 13, - "sheet_y": 36, - "added_in": "2.0", + "sheet_y": 26, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17800,8 +18523,8 @@ "non_qualified": null, "image": "1f44c-1f3ff.png", "sheet_x": 13, - "sheet_y": 37, - "added_in": "2.0", + "sheet_y": 27, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17819,7 +18542,7 @@ "google": "FEB97", "image": "1f44d.png", "sheet_x": 13, - "sheet_y": 38, + "sheet_y": 28, "short_name": "+1", "short_names": [ "+1", @@ -17828,8 +18551,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 19, - "added_in": "2.0", + "subcategory": "hand-fingers-closed", + "sort_order": 171, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17840,8 +18564,8 @@ "non_qualified": null, "image": "1f44d-1f3fb.png", "sheet_x": 13, - "sheet_y": 39, - "added_in": "2.0", + "sheet_y": 29, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17852,8 +18576,8 @@ "non_qualified": null, "image": "1f44d-1f3fc.png", "sheet_x": 13, - "sheet_y": 40, - "added_in": "2.0", + "sheet_y": 30, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17864,8 +18588,8 @@ "non_qualified": null, "image": "1f44d-1f3fd.png", "sheet_x": 13, - "sheet_y": 41, - "added_in": "2.0", + "sheet_y": 31, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17876,8 +18600,8 @@ "non_qualified": null, "image": "1f44d-1f3fe.png", "sheet_x": 13, - "sheet_y": 42, - "added_in": "2.0", + "sheet_y": 32, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17888,8 +18612,8 @@ "non_qualified": null, "image": "1f44d-1f3ff.png", "sheet_x": 13, - "sheet_y": 43, - "added_in": "2.0", + "sheet_y": 33, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17907,7 +18631,7 @@ "google": "FEBA0", "image": "1f44e.png", "sheet_x": 13, - "sheet_y": 44, + "sheet_y": 34, "short_name": "-1", "short_names": [ "-1", @@ -17916,8 +18640,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 20, - "added_in": "2.0", + "subcategory": "hand-fingers-closed", + "sort_order": 172, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17928,8 +18653,8 @@ "non_qualified": null, "image": "1f44e-1f3fb.png", "sheet_x": 13, - "sheet_y": 45, - "added_in": "2.0", + "sheet_y": 35, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17940,8 +18665,8 @@ "non_qualified": null, "image": "1f44e-1f3fc.png", "sheet_x": 13, - "sheet_y": 46, - "added_in": "2.0", + "sheet_y": 36, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17952,8 +18677,8 @@ "non_qualified": null, "image": "1f44e-1f3fd.png", "sheet_x": 13, - "sheet_y": 47, - "added_in": "2.0", + "sheet_y": 37, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17964,8 +18689,8 @@ "non_qualified": null, "image": "1f44e-1f3fe.png", "sheet_x": 13, - "sheet_y": 48, - "added_in": "2.0", + "sheet_y": 38, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17976,8 +18701,8 @@ "non_qualified": null, "image": "1f44e-1f3ff.png", "sheet_x": 13, - "sheet_y": 49, - "added_in": "2.0", + "sheet_y": 39, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -17995,7 +18720,7 @@ "google": "FEB9E", "image": "1f44f.png", "sheet_x": 13, - "sheet_y": 50, + "sheet_y": 40, "short_name": "clap", "short_names": [ "clap" @@ -18003,8 +18728,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 25, - "added_in": "2.0", + "subcategory": "hands", + "sort_order": 177, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18015,8 +18741,8 @@ "non_qualified": null, "image": "1f44f-1f3fb.png", "sheet_x": 13, - "sheet_y": 51, - "added_in": "2.0", + "sheet_y": 41, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18027,8 +18753,8 @@ "non_qualified": null, "image": "1f44f-1f3fc.png", "sheet_x": 13, - "sheet_y": 52, - "added_in": "2.0", + "sheet_y": 42, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18039,8 +18765,8 @@ "non_qualified": null, "image": "1f44f-1f3fd.png", "sheet_x": 13, - "sheet_y": 53, - "added_in": "2.0", + "sheet_y": 43, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18051,8 +18777,8 @@ "non_qualified": null, "image": "1f44f-1f3fe.png", "sheet_x": 13, - "sheet_y": 54, - "added_in": "2.0", + "sheet_y": 44, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18063,8 +18789,8 @@ "non_qualified": null, "image": "1f44f-1f3ff.png", "sheet_x": 13, - "sheet_y": 55, - "added_in": "2.0", + "sheet_y": 45, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18082,7 +18808,7 @@ "google": "FEBA1", "image": "1f450.png", "sheet_x": 13, - "sheet_y": 56, + "sheet_y": 46, "short_name": "open_hands", "short_names": [ "open_hands" @@ -18090,8 +18816,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 27, - "added_in": "2.0", + "subcategory": "hands", + "sort_order": 179, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18101,9 +18828,9 @@ "unified": "1F450-1F3FB", "non_qualified": null, "image": "1f450-1f3fb.png", - "sheet_x": 14, - "sheet_y": 0, - "added_in": "2.0", + "sheet_x": 13, + "sheet_y": 47, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18113,9 +18840,9 @@ "unified": "1F450-1F3FC", "non_qualified": null, "image": "1f450-1f3fc.png", - "sheet_x": 14, - "sheet_y": 1, - "added_in": "2.0", + "sheet_x": 13, + "sheet_y": 48, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18125,9 +18852,9 @@ "unified": "1F450-1F3FD", "non_qualified": null, "image": "1f450-1f3fd.png", - "sheet_x": 14, - "sheet_y": 2, - "added_in": "2.0", + "sheet_x": 13, + "sheet_y": 49, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18137,9 +18864,9 @@ "unified": "1F450-1F3FE", "non_qualified": null, "image": "1f450-1f3fe.png", - "sheet_x": 14, - "sheet_y": 3, - "added_in": "2.0", + "sheet_x": 13, + "sheet_y": 50, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18149,9 +18876,9 @@ "unified": "1F450-1F3FF", "non_qualified": null, "image": "1f450-1f3ff.png", - "sheet_x": 14, - "sheet_y": 4, - "added_in": "2.0", + "sheet_x": 13, + "sheet_y": 51, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18168,8 +18895,8 @@ "softbank": "E10E", "google": "FE4D1", "image": "1f451.png", - "sheet_x": 14, - "sheet_y": 5, + "sheet_x": 13, + "sheet_y": 52, "short_name": "crown", "short_names": [ "crown" @@ -18177,8 +18904,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 34, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1106, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18193,8 +18921,8 @@ "softbank": "E318", "google": "FE4D4", "image": "1f452.png", - "sheet_x": 14, - "sheet_y": 6, + "sheet_x": 13, + "sheet_y": 53, "short_name": "womans_hat", "short_names": [ "womans_hat" @@ -18202,8 +18930,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 35, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1107, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18218,8 +18947,8 @@ "softbank": null, "google": "FE4CE", "image": "1f453.png", - "sheet_x": 14, - "sheet_y": 7, + "sheet_x": 13, + "sheet_y": 54, "short_name": "eyeglasses", "short_names": [ "eyeglasses" @@ -18227,8 +18956,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 1, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1072, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18243,8 +18973,8 @@ "softbank": "E302", "google": "FE4D3", "image": "1f454.png", - "sheet_x": 14, - "sheet_y": 8, + "sheet_x": 13, + "sheet_y": 55, "short_name": "necktie", "short_names": [ "necktie" @@ -18252,8 +18982,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 6, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1077, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18268,8 +18999,8 @@ "softbank": "E006", "google": "FE4CF", "image": "1f455.png", - "sheet_x": 14, - "sheet_y": 9, + "sheet_x": 13, + "sheet_y": 56, "short_name": "shirt", "short_names": [ "shirt", @@ -18278,8 +19009,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 7, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1078, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18294,8 +19026,8 @@ "softbank": null, "google": "FE4D0", "image": "1f456.png", - "sheet_x": 14, - "sheet_y": 10, + "sheet_x": 13, + "sheet_y": 57, "short_name": "jeans", "short_names": [ "jeans" @@ -18303,8 +19035,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 8, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1079, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18320,7 +19053,7 @@ "google": "FE4D5", "image": "1f457.png", "sheet_x": 14, - "sheet_y": 11, + "sheet_y": 0, "short_name": "dress", "short_names": [ "dress" @@ -18328,8 +19061,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 13, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1084, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18345,7 +19079,7 @@ "google": "FE4D9", "image": "1f458.png", "sheet_x": 14, - "sheet_y": 12, + "sheet_y": 1, "short_name": "kimono", "short_names": [ "kimono" @@ -18353,8 +19087,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 14, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1085, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18370,7 +19105,7 @@ "google": "FE4DA", "image": "1f459.png", "sheet_x": 14, - "sheet_y": 13, + "sheet_y": 2, "short_name": "bikini", "short_names": [ "bikini" @@ -18378,8 +19113,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 19, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1090, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18395,7 +19131,7 @@ "google": "FE4DB", "image": "1f45a.png", "sheet_x": 14, - "sheet_y": 14, + "sheet_y": 3, "short_name": "womans_clothes", "short_names": [ "womans_clothes" @@ -18403,8 +19139,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 20, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1091, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18420,7 +19157,7 @@ "google": "FE4DC", "image": "1f45b.png", "sheet_x": 14, - "sheet_y": 15, + "sheet_y": 4, "short_name": "purse", "short_names": [ "purse" @@ -18428,8 +19165,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 21, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1092, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18445,7 +19183,7 @@ "google": "FE4F0", "image": "1f45c.png", "sheet_x": 14, - "sheet_y": 16, + "sheet_y": 5, "short_name": "handbag", "short_names": [ "handbag" @@ -18453,8 +19191,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 22, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1093, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18470,7 +19209,7 @@ "google": "FE4F1", "image": "1f45d.png", "sheet_x": 14, - "sheet_y": 17, + "sheet_y": 6, "short_name": "pouch", "short_names": [ "pouch" @@ -18478,8 +19217,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 23, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1094, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18495,7 +19235,7 @@ "google": "FE4CC", "image": "1f45e.png", "sheet_x": 14, - "sheet_y": 18, + "sheet_y": 7, "short_name": "mans_shoe", "short_names": [ "mans_shoe", @@ -18504,8 +19244,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 26, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1098, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18521,7 +19262,7 @@ "google": "FE4CD", "image": "1f45f.png", "sheet_x": 14, - "sheet_y": 19, + "sheet_y": 8, "short_name": "athletic_shoe", "short_names": [ "athletic_shoe" @@ -18529,8 +19270,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 27, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1099, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18546,7 +19288,7 @@ "google": "FE4D6", "image": "1f460.png", "sheet_x": 14, - "sheet_y": 20, + "sheet_y": 9, "short_name": "high_heel", "short_names": [ "high_heel" @@ -18554,8 +19296,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 30, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1102, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18571,7 +19314,7 @@ "google": "FE4D7", "image": "1f461.png", "sheet_x": 14, - "sheet_y": 21, + "sheet_y": 10, "short_name": "sandal", "short_names": [ "sandal" @@ -18579,8 +19322,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 31, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1103, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18596,7 +19340,7 @@ "google": "FE4D8", "image": "1f462.png", "sheet_x": 14, - "sheet_y": 22, + "sheet_y": 11, "short_name": "boot", "short_names": [ "boot" @@ -18604,8 +19348,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 33, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1105, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18621,7 +19366,7 @@ "google": "FE553", "image": "1f463.png", "sheet_x": 14, - "sheet_y": 23, + "sheet_y": 12, "short_name": "footprints", "short_names": [ "footprints" @@ -18629,8 +19374,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 334, - "added_in": "2.0", + "subcategory": "person-symbol", + "sort_order": 498, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18646,7 +19392,7 @@ "google": "FE19A", "image": "1f464.png", "sheet_x": 14, - "sheet_y": 24, + "sheet_y": 13, "short_name": "bust_in_silhouette", "short_names": [ "bust_in_silhouette" @@ -18654,8 +19400,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 332, - "added_in": "2.0", + "subcategory": "person-symbol", + "sort_order": 495, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18671,7 +19418,7 @@ "google": null, "image": "1f465.png", "sheet_x": 14, - "sheet_y": 25, + "sheet_y": 14, "short_name": "busts_in_silhouette", "short_names": [ "busts_in_silhouette" @@ -18679,8 +19426,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 333, - "added_in": "2.0", + "subcategory": "person-symbol", + "sort_order": 496, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18696,7 +19444,7 @@ "google": "FE19B", "image": "1f466.png", "sheet_x": 14, - "sheet_y": 26, + "sheet_y": 15, "short_name": "boy", "short_names": [ "boy" @@ -18704,8 +19452,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 51, - "added_in": "2.0", + "subcategory": "person", + "sort_order": 205, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18716,8 +19465,8 @@ "non_qualified": null, "image": "1f466-1f3fb.png", "sheet_x": 14, - "sheet_y": 27, - "added_in": "2.0", + "sheet_y": 16, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18728,8 +19477,8 @@ "non_qualified": null, "image": "1f466-1f3fc.png", "sheet_x": 14, - "sheet_y": 28, - "added_in": "2.0", + "sheet_y": 17, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18740,8 +19489,8 @@ "non_qualified": null, "image": "1f466-1f3fd.png", "sheet_x": 14, - "sheet_y": 29, - "added_in": "2.0", + "sheet_y": 18, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18752,8 +19501,8 @@ "non_qualified": null, "image": "1f466-1f3fe.png", "sheet_x": 14, - "sheet_y": 30, - "added_in": "2.0", + "sheet_y": 19, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18764,8 +19513,8 @@ "non_qualified": null, "image": "1f466-1f3ff.png", "sheet_x": 14, - "sheet_y": 31, - "added_in": "2.0", + "sheet_y": 20, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18783,7 +19532,7 @@ "google": "FE19C", "image": "1f467.png", "sheet_x": 14, - "sheet_y": 32, + "sheet_y": 21, "short_name": "girl", "short_names": [ "girl" @@ -18791,8 +19540,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 52, - "added_in": "2.0", + "subcategory": "person", + "sort_order": 206, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18803,8 +19553,8 @@ "non_qualified": null, "image": "1f467-1f3fb.png", "sheet_x": 14, - "sheet_y": 33, - "added_in": "2.0", + "sheet_y": 22, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18815,8 +19565,8 @@ "non_qualified": null, "image": "1f467-1f3fc.png", "sheet_x": 14, - "sheet_y": 34, - "added_in": "2.0", + "sheet_y": 23, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18827,8 +19577,8 @@ "non_qualified": null, "image": "1f467-1f3fd.png", "sheet_x": 14, - "sheet_y": 35, - "added_in": "2.0", + "sheet_y": 24, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18839,8 +19589,8 @@ "non_qualified": null, "image": "1f467-1f3fe.png", "sheet_x": 14, - "sheet_y": 36, - "added_in": "2.0", + "sheet_y": 25, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18851,8 +19601,8 @@ "non_qualified": null, "image": "1f467-1f3ff.png", "sheet_x": 14, - "sheet_y": 37, - "added_in": "2.0", + "sheet_y": 26, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -18861,7 +19611,7 @@ } }, { - "name": null, + "name": "MAN FARMER", "unified": "1F468-200D-1F33E", "non_qualified": null, "docomo": null, @@ -18870,7 +19620,7 @@ "google": null, "image": "1f468-200d-1f33e.png", "sheet_x": 14, - "sheet_y": 38, + "sheet_y": 27, "short_name": "male-farmer", "short_names": [ "male-farmer" @@ -18878,7 +19628,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 118, + "subcategory": "person-role", + "sort_order": 272, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -18890,7 +19641,7 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f33e.png", "sheet_x": 14, - "sheet_y": 39, + "sheet_y": 28, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -18902,7 +19653,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f33e.png", "sheet_x": 14, - "sheet_y": 40, + "sheet_y": 29, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -18914,7 +19665,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f33e.png", "sheet_x": 14, - "sheet_y": 41, + "sheet_y": 30, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -18926,7 +19677,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f33e.png", "sheet_x": 14, - "sheet_y": 42, + "sheet_y": 31, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -18938,7 +19689,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f33e.png", "sheet_x": 14, - "sheet_y": 43, + "sheet_y": 32, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -18948,7 +19699,7 @@ } }, { - "name": null, + "name": "MAN COOK", "unified": "1F468-200D-1F373", "non_qualified": null, "docomo": null, @@ -18957,7 +19708,7 @@ "google": null, "image": "1f468-200d-1f373.png", "sheet_x": 14, - "sheet_y": 44, + "sheet_y": 33, "short_name": "male-cook", "short_names": [ "male-cook" @@ -18965,7 +19716,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 121, + "subcategory": "person-role", + "sort_order": 275, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -18977,7 +19729,7 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f373.png", "sheet_x": 14, - "sheet_y": 45, + "sheet_y": 34, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -18989,7 +19741,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f373.png", "sheet_x": 14, - "sheet_y": 46, + "sheet_y": 35, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19001,7 +19753,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f373.png", "sheet_x": 14, - "sheet_y": 47, + "sheet_y": 36, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19013,7 +19765,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f373.png", "sheet_x": 14, - "sheet_y": 48, + "sheet_y": 37, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19025,7 +19777,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f373.png", "sheet_x": 14, - "sheet_y": 49, + "sheet_y": 38, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19035,7 +19787,95 @@ } }, { - "name": null, + "name": "MAN FEEDING BABY", + "unified": "1F468-200D-1F37C", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f468-200d-1f37c.png", + "sheet_x": 14, + "sheet_y": 39, + "short_name": "man_feeding_baby", + "short_names": [ + "man_feeding_baby" + ], + "text": null, + "texts": null, + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 336, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1F468-1F3FB-200D-1F37C", + "non_qualified": null, + "image": "1f468-1f3fb-200d-1f37c.png", + "sheet_x": 14, + "sheet_y": 40, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F468-1F3FC-200D-1F37C", + "non_qualified": null, + "image": "1f468-1f3fc-200d-1f37c.png", + "sheet_x": 14, + "sheet_y": 41, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F468-1F3FD-200D-1F37C", + "non_qualified": null, + "image": "1f468-1f3fd-200d-1f37c.png", + "sheet_x": 14, + "sheet_y": 42, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F468-1F3FE-200D-1F37C", + "non_qualified": null, + "image": "1f468-1f3fe-200d-1f37c.png", + "sheet_x": 14, + "sheet_y": 43, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F468-1F3FF-200D-1F37C", + "non_qualified": null, + "image": "1f468-1f3ff-200d-1f37c.png", + "sheet_x": 14, + "sheet_y": 44, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } + }, + { + "name": "MAN STUDENT", "unified": "1F468-200D-1F393", "non_qualified": null, "docomo": null, @@ -19044,7 +19884,7 @@ "google": null, "image": "1f468-200d-1f393.png", "sheet_x": 14, - "sheet_y": 50, + "sheet_y": 45, "short_name": "male-student", "short_names": [ "male-student" @@ -19052,7 +19892,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 109, + "subcategory": "person-role", + "sort_order": 263, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19064,7 +19905,7 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f393.png", "sheet_x": 14, - "sheet_y": 51, + "sheet_y": 46, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19076,7 +19917,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f393.png", "sheet_x": 14, - "sheet_y": 52, + "sheet_y": 47, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19088,7 +19929,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f393.png", "sheet_x": 14, - "sheet_y": 53, + "sheet_y": 48, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19100,7 +19941,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f393.png", "sheet_x": 14, - "sheet_y": 54, + "sheet_y": 49, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19112,7 +19953,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f393.png", "sheet_x": 14, - "sheet_y": 55, + "sheet_y": 50, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19122,7 +19963,7 @@ } }, { - "name": null, + "name": "MAN SINGER", "unified": "1F468-200D-1F3A4", "non_qualified": null, "docomo": null, @@ -19131,7 +19972,7 @@ "google": null, "image": "1f468-200d-1f3a4.png", "sheet_x": 14, - "sheet_y": 56, + "sheet_y": 51, "short_name": "male-singer", "short_names": [ "male-singer" @@ -19139,7 +19980,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 139, + "subcategory": "person-role", + "sort_order": 293, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19150,8 +19992,8 @@ "unified": "1F468-1F3FB-200D-1F3A4", "non_qualified": null, "image": "1f468-1f3fb-200d-1f3a4.png", - "sheet_x": 15, - "sheet_y": 0, + "sheet_x": 14, + "sheet_y": 52, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19162,8 +20004,8 @@ "unified": "1F468-1F3FC-200D-1F3A4", "non_qualified": null, "image": "1f468-1f3fc-200d-1f3a4.png", - "sheet_x": 15, - "sheet_y": 1, + "sheet_x": 14, + "sheet_y": 53, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19174,8 +20016,8 @@ "unified": "1F468-1F3FD-200D-1F3A4", "non_qualified": null, "image": "1f468-1f3fd-200d-1f3a4.png", - "sheet_x": 15, - "sheet_y": 2, + "sheet_x": 14, + "sheet_y": 54, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19186,8 +20028,8 @@ "unified": "1F468-1F3FE-200D-1F3A4", "non_qualified": null, "image": "1f468-1f3fe-200d-1f3a4.png", - "sheet_x": 15, - "sheet_y": 3, + "sheet_x": 14, + "sheet_y": 55, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19198,8 +20040,8 @@ "unified": "1F468-1F3FF-200D-1F3A4", "non_qualified": null, "image": "1f468-1f3ff-200d-1f3a4.png", - "sheet_x": 15, - "sheet_y": 4, + "sheet_x": 14, + "sheet_y": 56, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19209,7 +20051,7 @@ } }, { - "name": null, + "name": "MAN ARTIST", "unified": "1F468-200D-1F3A8", "non_qualified": null, "docomo": null, @@ -19217,8 +20059,8 @@ "softbank": null, "google": null, "image": "1f468-200d-1f3a8.png", - "sheet_x": 15, - "sheet_y": 5, + "sheet_x": 14, + "sheet_y": 57, "short_name": "male-artist", "short_names": [ "male-artist" @@ -19226,7 +20068,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 142, + "subcategory": "person-role", + "sort_order": 296, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19238,7 +20081,7 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f3a8.png", "sheet_x": 15, - "sheet_y": 6, + "sheet_y": 0, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19250,7 +20093,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f3a8.png", "sheet_x": 15, - "sheet_y": 7, + "sheet_y": 1, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19262,7 +20105,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f3a8.png", "sheet_x": 15, - "sheet_y": 8, + "sheet_y": 2, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19274,7 +20117,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f3a8.png", "sheet_x": 15, - "sheet_y": 9, + "sheet_y": 3, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19286,7 +20129,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f3a8.png", "sheet_x": 15, - "sheet_y": 10, + "sheet_y": 4, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19296,7 +20139,7 @@ } }, { - "name": null, + "name": "MAN TEACHER", "unified": "1F468-200D-1F3EB", "non_qualified": null, "docomo": null, @@ -19305,7 +20148,7 @@ "google": null, "image": "1f468-200d-1f3eb.png", "sheet_x": 15, - "sheet_y": 11, + "sheet_y": 5, "short_name": "male-teacher", "short_names": [ "male-teacher" @@ -19313,7 +20156,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 112, + "subcategory": "person-role", + "sort_order": 266, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19325,7 +20169,7 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f3eb.png", "sheet_x": 15, - "sheet_y": 12, + "sheet_y": 6, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19337,7 +20181,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f3eb.png", "sheet_x": 15, - "sheet_y": 13, + "sheet_y": 7, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19349,7 +20193,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f3eb.png", "sheet_x": 15, - "sheet_y": 14, + "sheet_y": 8, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19361,7 +20205,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f3eb.png", "sheet_x": 15, - "sheet_y": 15, + "sheet_y": 9, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19373,7 +20217,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f3eb.png", "sheet_x": 15, - "sheet_y": 16, + "sheet_y": 10, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19383,7 +20227,7 @@ } }, { - "name": null, + "name": "MAN FACTORY WORKER", "unified": "1F468-200D-1F3ED", "non_qualified": null, "docomo": null, @@ -19392,7 +20236,7 @@ "google": null, "image": "1f468-200d-1f3ed.png", "sheet_x": 15, - "sheet_y": 17, + "sheet_y": 11, "short_name": "male-factory-worker", "short_names": [ "male-factory-worker" @@ -19400,7 +20244,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 127, + "subcategory": "person-role", + "sort_order": 281, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19412,7 +20257,7 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f3ed.png", "sheet_x": 15, - "sheet_y": 18, + "sheet_y": 12, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19424,7 +20269,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f3ed.png", "sheet_x": 15, - "sheet_y": 19, + "sheet_y": 13, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19436,7 +20281,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f3ed.png", "sheet_x": 15, - "sheet_y": 20, + "sheet_y": 14, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19448,7 +20293,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f3ed.png", "sheet_x": 15, - "sheet_y": 21, + "sheet_y": 15, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19460,7 +20305,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f3ed.png", "sheet_x": 15, - "sheet_y": 22, + "sheet_y": 16, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19470,7 +20315,7 @@ } }, { - "name": null, + "name": "FAMILY: MAN, BOY, BOY", "unified": "1F468-200D-1F466-200D-1F466", "non_qualified": null, "docomo": null, @@ -19479,7 +20324,7 @@ "google": null, "image": "1f468-200d-1f466-200d-1f466.png", "sheet_x": 15, - "sheet_y": 23, + "sheet_y": 17, "short_name": "man-boy-boy", "short_names": [ "man-boy-boy" @@ -19487,7 +20332,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 322, + "subcategory": "family", + "sort_order": 485, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19495,7 +20341,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: MAN, BOY", "unified": "1F468-200D-1F466", "non_qualified": null, "docomo": null, @@ -19504,7 +20350,7 @@ "google": null, "image": "1f468-200d-1f466.png", "sheet_x": 15, - "sheet_y": 24, + "sheet_y": 18, "short_name": "man-boy", "short_names": [ "man-boy" @@ -19512,7 +20358,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 321, + "subcategory": "family", + "sort_order": 484, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19520,7 +20367,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: MAN, GIRL, BOY", "unified": "1F468-200D-1F467-200D-1F466", "non_qualified": null, "docomo": null, @@ -19529,7 +20376,7 @@ "google": null, "image": "1f468-200d-1f467-200d-1f466.png", "sheet_x": 15, - "sheet_y": 25, + "sheet_y": 19, "short_name": "man-girl-boy", "short_names": [ "man-girl-boy" @@ -19537,7 +20384,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 324, + "subcategory": "family", + "sort_order": 487, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19545,7 +20393,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: MAN, GIRL, GIRL", "unified": "1F468-200D-1F467-200D-1F467", "non_qualified": null, "docomo": null, @@ -19554,7 +20402,7 @@ "google": null, "image": "1f468-200d-1f467-200d-1f467.png", "sheet_x": 15, - "sheet_y": 26, + "sheet_y": 20, "short_name": "man-girl-girl", "short_names": [ "man-girl-girl" @@ -19562,7 +20410,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 325, + "subcategory": "family", + "sort_order": 488, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19570,7 +20419,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: MAN, GIRL", "unified": "1F468-200D-1F467", "non_qualified": null, "docomo": null, @@ -19579,7 +20428,7 @@ "google": null, "image": "1f468-200d-1f467.png", "sheet_x": 15, - "sheet_y": 27, + "sheet_y": 21, "short_name": "man-girl", "short_names": [ "man-girl" @@ -19587,7 +20436,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 323, + "subcategory": "family", + "sort_order": 486, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19595,7 +20445,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: MAN, MAN, BOY", "unified": "1F468-200D-1F468-200D-1F466", "non_qualified": null, "docomo": null, @@ -19604,7 +20454,7 @@ "google": null, "image": "1f468-200d-1f468-200d-1f466.png", "sheet_x": 15, - "sheet_y": 28, + "sheet_y": 22, "short_name": "man-man-boy", "short_names": [ "man-man-boy" @@ -19612,7 +20462,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 311, + "subcategory": "family", + "sort_order": 474, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -19620,7 +20471,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: MAN, MAN, BOY, BOY", "unified": "1F468-200D-1F468-200D-1F466-200D-1F466", "non_qualified": null, "docomo": null, @@ -19629,7 +20480,7 @@ "google": null, "image": "1f468-200d-1f468-200d-1f466-200d-1f466.png", "sheet_x": 15, - "sheet_y": 29, + "sheet_y": 23, "short_name": "man-man-boy-boy", "short_names": [ "man-man-boy-boy" @@ -19637,7 +20488,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 314, + "subcategory": "family", + "sort_order": 477, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -19645,7 +20497,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: MAN, MAN, GIRL", "unified": "1F468-200D-1F468-200D-1F467", "non_qualified": null, "docomo": null, @@ -19654,7 +20506,7 @@ "google": null, "image": "1f468-200d-1f468-200d-1f467.png", "sheet_x": 15, - "sheet_y": 30, + "sheet_y": 24, "short_name": "man-man-girl", "short_names": [ "man-man-girl" @@ -19662,7 +20514,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 312, + "subcategory": "family", + "sort_order": 475, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -19670,7 +20523,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: MAN, MAN, GIRL, BOY", "unified": "1F468-200D-1F468-200D-1F467-200D-1F466", "non_qualified": null, "docomo": null, @@ -19679,7 +20532,7 @@ "google": null, "image": "1f468-200d-1f468-200d-1f467-200d-1f466.png", "sheet_x": 15, - "sheet_y": 31, + "sheet_y": 25, "short_name": "man-man-girl-boy", "short_names": [ "man-man-girl-boy" @@ -19687,7 +20540,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 313, + "subcategory": "family", + "sort_order": 476, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -19695,7 +20549,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: MAN, MAN, GIRL, GIRL", "unified": "1F468-200D-1F468-200D-1F467-200D-1F467", "non_qualified": null, "docomo": null, @@ -19704,7 +20558,7 @@ "google": null, "image": "1f468-200d-1f468-200d-1f467-200d-1f467.png", "sheet_x": 15, - "sheet_y": 32, + "sheet_y": 26, "short_name": "man-man-girl-girl", "short_names": [ "man-man-girl-girl" @@ -19712,7 +20566,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 315, + "subcategory": "family", + "sort_order": 478, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -19720,7 +20575,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: MAN, WOMAN, BOY", "unified": "1F468-200D-1F469-200D-1F466", "non_qualified": null, "docomo": null, @@ -19729,16 +20584,16 @@ "google": null, "image": "1f468-200d-1f469-200d-1f466.png", "sheet_x": 15, - "sheet_y": 33, + "sheet_y": 27, "short_name": "man-woman-boy", "short_names": [ - "man-woman-boy", - "family" + "man-woman-boy" ], "text": null, "texts": null, "category": "People & Body", - "sort_order": 306, + "subcategory": "family", + "sort_order": 469, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -19747,7 +20602,7 @@ "obsoletes": "1F46A" }, { - "name": null, + "name": "FAMILY: MAN, WOMAN, BOY, BOY", "unified": "1F468-200D-1F469-200D-1F466-200D-1F466", "non_qualified": null, "docomo": null, @@ -19756,7 +20611,7 @@ "google": null, "image": "1f468-200d-1f469-200d-1f466-200d-1f466.png", "sheet_x": 15, - "sheet_y": 34, + "sheet_y": 28, "short_name": "man-woman-boy-boy", "short_names": [ "man-woman-boy-boy" @@ -19764,7 +20619,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 309, + "subcategory": "family", + "sort_order": 472, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -19772,7 +20628,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: MAN, WOMAN, GIRL", "unified": "1F468-200D-1F469-200D-1F467", "non_qualified": null, "docomo": null, @@ -19781,7 +20637,7 @@ "google": null, "image": "1f468-200d-1f469-200d-1f467.png", "sheet_x": 15, - "sheet_y": 35, + "sheet_y": 29, "short_name": "man-woman-girl", "short_names": [ "man-woman-girl" @@ -19789,7 +20645,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 307, + "subcategory": "family", + "sort_order": 470, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -19797,7 +20654,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: MAN, WOMAN, GIRL, BOY", "unified": "1F468-200D-1F469-200D-1F467-200D-1F466", "non_qualified": null, "docomo": null, @@ -19806,7 +20663,7 @@ "google": null, "image": "1f468-200d-1f469-200d-1f467-200d-1f466.png", "sheet_x": 15, - "sheet_y": 36, + "sheet_y": 30, "short_name": "man-woman-girl-boy", "short_names": [ "man-woman-girl-boy" @@ -19814,7 +20671,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 308, + "subcategory": "family", + "sort_order": 471, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -19822,7 +20680,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: MAN, WOMAN, GIRL, GIRL", "unified": "1F468-200D-1F469-200D-1F467-200D-1F467", "non_qualified": null, "docomo": null, @@ -19831,7 +20689,7 @@ "google": null, "image": "1f468-200d-1f469-200d-1f467-200d-1f467.png", "sheet_x": 15, - "sheet_y": 37, + "sheet_y": 31, "short_name": "man-woman-girl-girl", "short_names": [ "man-woman-girl-girl" @@ -19839,7 +20697,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 310, + "subcategory": "family", + "sort_order": 473, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -19847,7 +20706,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "MAN TECHNOLOGIST", "unified": "1F468-200D-1F4BB", "non_qualified": null, "docomo": null, @@ -19856,7 +20715,7 @@ "google": null, "image": "1f468-200d-1f4bb.png", "sheet_x": 15, - "sheet_y": 38, + "sheet_y": 32, "short_name": "male-technologist", "short_names": [ "male-technologist" @@ -19864,7 +20723,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 136, + "subcategory": "person-role", + "sort_order": 290, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19876,7 +20736,7 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f4bb.png", "sheet_x": 15, - "sheet_y": 39, + "sheet_y": 33, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19888,7 +20748,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f4bb.png", "sheet_x": 15, - "sheet_y": 40, + "sheet_y": 34, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19900,7 +20760,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f4bb.png", "sheet_x": 15, - "sheet_y": 41, + "sheet_y": 35, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19912,7 +20772,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f4bb.png", "sheet_x": 15, - "sheet_y": 42, + "sheet_y": 36, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19924,7 +20784,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f4bb.png", "sheet_x": 15, - "sheet_y": 43, + "sheet_y": 37, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19934,7 +20794,7 @@ } }, { - "name": null, + "name": "MAN OFFICE WORKER", "unified": "1F468-200D-1F4BC", "non_qualified": null, "docomo": null, @@ -19943,7 +20803,7 @@ "google": null, "image": "1f468-200d-1f4bc.png", "sheet_x": 15, - "sheet_y": 44, + "sheet_y": 38, "short_name": "male-office-worker", "short_names": [ "male-office-worker" @@ -19951,7 +20811,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 130, + "subcategory": "person-role", + "sort_order": 284, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19963,7 +20824,7 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f4bc.png", "sheet_x": 15, - "sheet_y": 45, + "sheet_y": 39, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19975,7 +20836,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f4bc.png", "sheet_x": 15, - "sheet_y": 46, + "sheet_y": 40, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19987,7 +20848,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f4bc.png", "sheet_x": 15, - "sheet_y": 47, + "sheet_y": 41, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -19999,7 +20860,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f4bc.png", "sheet_x": 15, - "sheet_y": 48, + "sheet_y": 42, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20011,7 +20872,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f4bc.png", "sheet_x": 15, - "sheet_y": 49, + "sheet_y": 43, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20021,7 +20882,7 @@ } }, { - "name": null, + "name": "MAN MECHANIC", "unified": "1F468-200D-1F527", "non_qualified": null, "docomo": null, @@ -20030,7 +20891,7 @@ "google": null, "image": "1f468-200d-1f527.png", "sheet_x": 15, - "sheet_y": 50, + "sheet_y": 44, "short_name": "male-mechanic", "short_names": [ "male-mechanic" @@ -20038,7 +20899,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 124, + "subcategory": "person-role", + "sort_order": 278, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20050,7 +20912,7 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f527.png", "sheet_x": 15, - "sheet_y": 51, + "sheet_y": 45, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20062,7 +20924,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f527.png", "sheet_x": 15, - "sheet_y": 52, + "sheet_y": 46, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20074,7 +20936,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f527.png", "sheet_x": 15, - "sheet_y": 53, + "sheet_y": 47, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20086,7 +20948,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f527.png", "sheet_x": 15, - "sheet_y": 54, + "sheet_y": 48, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20098,7 +20960,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f527.png", "sheet_x": 15, - "sheet_y": 55, + "sheet_y": 49, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20108,7 +20970,7 @@ } }, { - "name": null, + "name": "MAN SCIENTIST", "unified": "1F468-200D-1F52C", "non_qualified": null, "docomo": null, @@ -20117,7 +20979,7 @@ "google": null, "image": "1f468-200d-1f52c.png", "sheet_x": 15, - "sheet_y": 56, + "sheet_y": 50, "short_name": "male-scientist", "short_names": [ "male-scientist" @@ -20125,7 +20987,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 133, + "subcategory": "person-role", + "sort_order": 287, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20136,8 +20999,8 @@ "unified": "1F468-1F3FB-200D-1F52C", "non_qualified": null, "image": "1f468-1f3fb-200d-1f52c.png", - "sheet_x": 16, - "sheet_y": 0, + "sheet_x": 15, + "sheet_y": 51, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20148,8 +21011,8 @@ "unified": "1F468-1F3FC-200D-1F52C", "non_qualified": null, "image": "1f468-1f3fc-200d-1f52c.png", - "sheet_x": 16, - "sheet_y": 1, + "sheet_x": 15, + "sheet_y": 52, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20160,8 +21023,8 @@ "unified": "1F468-1F3FD-200D-1F52C", "non_qualified": null, "image": "1f468-1f3fd-200d-1f52c.png", - "sheet_x": 16, - "sheet_y": 2, + "sheet_x": 15, + "sheet_y": 53, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20172,8 +21035,8 @@ "unified": "1F468-1F3FE-200D-1F52C", "non_qualified": null, "image": "1f468-1f3fe-200d-1f52c.png", - "sheet_x": 16, - "sheet_y": 3, + "sheet_x": 15, + "sheet_y": 54, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20184,8 +21047,8 @@ "unified": "1F468-1F3FF-200D-1F52C", "non_qualified": null, "image": "1f468-1f3ff-200d-1f52c.png", - "sheet_x": 16, - "sheet_y": 4, + "sheet_x": 15, + "sheet_y": 55, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20195,7 +21058,7 @@ } }, { - "name": null, + "name": "MAN ASTRONAUT", "unified": "1F468-200D-1F680", "non_qualified": null, "docomo": null, @@ -20203,8 +21066,8 @@ "softbank": null, "google": null, "image": "1f468-200d-1f680.png", - "sheet_x": 16, - "sheet_y": 5, + "sheet_x": 15, + "sheet_y": 56, "short_name": "male-astronaut", "short_names": [ "male-astronaut" @@ -20212,7 +21075,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 148, + "subcategory": "person-role", + "sort_order": 302, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20223,8 +21087,8 @@ "unified": "1F468-1F3FB-200D-1F680", "non_qualified": null, "image": "1f468-1f3fb-200d-1f680.png", - "sheet_x": 16, - "sheet_y": 6, + "sheet_x": 15, + "sheet_y": 57, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20236,7 +21100,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f680.png", "sheet_x": 16, - "sheet_y": 7, + "sheet_y": 0, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20248,7 +21112,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f680.png", "sheet_x": 16, - "sheet_y": 8, + "sheet_y": 1, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20260,7 +21124,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f680.png", "sheet_x": 16, - "sheet_y": 9, + "sheet_y": 2, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20272,7 +21136,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f680.png", "sheet_x": 16, - "sheet_y": 10, + "sheet_y": 3, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20282,7 +21146,7 @@ } }, { - "name": null, + "name": "MAN FIREFIGHTER", "unified": "1F468-200D-1F692", "non_qualified": null, "docomo": null, @@ -20291,7 +21155,7 @@ "google": null, "image": "1f468-200d-1f692.png", "sheet_x": 16, - "sheet_y": 11, + "sheet_y": 4, "short_name": "male-firefighter", "short_names": [ "male-firefighter" @@ -20299,7 +21163,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 151, + "subcategory": "person-role", + "sort_order": 305, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20311,7 +21176,7 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f692.png", "sheet_x": 16, - "sheet_y": 12, + "sheet_y": 5, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20323,7 +21188,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f692.png", "sheet_x": 16, - "sheet_y": 13, + "sheet_y": 6, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20335,7 +21200,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f692.png", "sheet_x": 16, - "sheet_y": 14, + "sheet_y": 7, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20347,7 +21212,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f692.png", "sheet_x": 16, - "sheet_y": 15, + "sheet_y": 8, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20359,7 +21224,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f692.png", "sheet_x": 16, - "sheet_y": 16, + "sheet_y": 9, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -20369,7 +21234,7 @@ } }, { - "name": null, + "name": "MAN WITH WHITE CANE", "unified": "1F468-200D-1F9AF", "non_qualified": null, "docomo": null, @@ -20378,7 +21243,7 @@ "google": null, "image": "1f468-200d-1f9af.png", "sheet_x": 16, - "sheet_y": 17, + "sheet_y": 10, "short_name": "man_with_probing_cane", "short_names": [ "man_with_probing_cane" @@ -20386,8 +21251,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 222, - "added_in": "12.1", + "subcategory": "person-activity", + "sort_order": 385, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20398,8 +21264,8 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f9af.png", "sheet_x": 16, - "sheet_y": 18, - "added_in": "12.1", + "sheet_y": 11, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20410,8 +21276,8 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f9af.png", "sheet_x": 16, - "sheet_y": 19, - "added_in": "12.1", + "sheet_y": 12, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20422,8 +21288,8 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f9af.png", "sheet_x": 16, - "sheet_y": 20, - "added_in": "12.1", + "sheet_y": 13, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20434,8 +21300,8 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f9af.png", "sheet_x": 16, - "sheet_y": 21, - "added_in": "12.1", + "sheet_y": 14, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20446,8 +21312,8 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f9af.png", "sheet_x": 16, - "sheet_y": 22, - "added_in": "12.1", + "sheet_y": 15, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20456,7 +21322,7 @@ } }, { - "name": null, + "name": "MAN: RED HAIR", "unified": "1F468-200D-1F9B0", "non_qualified": null, "docomo": null, @@ -20465,7 +21331,7 @@ "google": null, "image": "1f468-200d-1f9b0.png", "sheet_x": 16, - "sheet_y": 23, + "sheet_y": 16, "short_name": "red_haired_man", "short_names": [ "red_haired_man" @@ -20473,7 +21339,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 57, + "subcategory": "person", + "sort_order": 211, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20485,7 +21352,7 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f9b0.png", "sheet_x": 16, - "sheet_y": 24, + "sheet_y": 17, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20497,7 +21364,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f9b0.png", "sheet_x": 16, - "sheet_y": 25, + "sheet_y": 18, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20509,7 +21376,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f9b0.png", "sheet_x": 16, - "sheet_y": 26, + "sheet_y": 19, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20521,7 +21388,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f9b0.png", "sheet_x": 16, - "sheet_y": 27, + "sheet_y": 20, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20533,7 +21400,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f9b0.png", "sheet_x": 16, - "sheet_y": 28, + "sheet_y": 21, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20543,7 +21410,7 @@ } }, { - "name": null, + "name": "MAN: CURLY HAIR", "unified": "1F468-200D-1F9B1", "non_qualified": null, "docomo": null, @@ -20552,7 +21419,7 @@ "google": null, "image": "1f468-200d-1f9b1.png", "sheet_x": 16, - "sheet_y": 29, + "sheet_y": 22, "short_name": "curly_haired_man", "short_names": [ "curly_haired_man" @@ -20560,7 +21427,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 58, + "subcategory": "person", + "sort_order": 212, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20572,7 +21440,7 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f9b1.png", "sheet_x": 16, - "sheet_y": 30, + "sheet_y": 23, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20584,7 +21452,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f9b1.png", "sheet_x": 16, - "sheet_y": 31, + "sheet_y": 24, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20596,7 +21464,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f9b1.png", "sheet_x": 16, - "sheet_y": 32, + "sheet_y": 25, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20608,7 +21476,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f9b1.png", "sheet_x": 16, - "sheet_y": 33, + "sheet_y": 26, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20620,7 +21488,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f9b1.png", "sheet_x": 16, - "sheet_y": 34, + "sheet_y": 27, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20630,7 +21498,7 @@ } }, { - "name": null, + "name": "MAN: BALD", "unified": "1F468-200D-1F9B2", "non_qualified": null, "docomo": null, @@ -20639,7 +21507,7 @@ "google": null, "image": "1f468-200d-1f9b2.png", "sheet_x": 16, - "sheet_y": 35, + "sheet_y": 28, "short_name": "bald_man", "short_names": [ "bald_man" @@ -20647,7 +21515,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 60, + "subcategory": "person", + "sort_order": 214, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20659,7 +21528,7 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f9b2.png", "sheet_x": 16, - "sheet_y": 36, + "sheet_y": 29, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20671,7 +21540,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f9b2.png", "sheet_x": 16, - "sheet_y": 37, + "sheet_y": 30, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20683,7 +21552,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f9b2.png", "sheet_x": 16, - "sheet_y": 38, + "sheet_y": 31, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20695,7 +21564,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f9b2.png", "sheet_x": 16, - "sheet_y": 39, + "sheet_y": 32, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20707,7 +21576,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f9b2.png", "sheet_x": 16, - "sheet_y": 40, + "sheet_y": 33, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20717,7 +21586,7 @@ } }, { - "name": null, + "name": "MAN: WHITE HAIR", "unified": "1F468-200D-1F9B3", "non_qualified": null, "docomo": null, @@ -20726,7 +21595,7 @@ "google": null, "image": "1f468-200d-1f9b3.png", "sheet_x": 16, - "sheet_y": 41, + "sheet_y": 34, "short_name": "white_haired_man", "short_names": [ "white_haired_man" @@ -20734,7 +21603,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 59, + "subcategory": "person", + "sort_order": 213, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20746,7 +21616,7 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f9b3.png", "sheet_x": 16, - "sheet_y": 42, + "sheet_y": 35, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20758,7 +21628,7 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f9b3.png", "sheet_x": 16, - "sheet_y": 43, + "sheet_y": 36, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20770,7 +21640,7 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f9b3.png", "sheet_x": 16, - "sheet_y": 44, + "sheet_y": 37, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20782,7 +21652,7 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f9b3.png", "sheet_x": 16, - "sheet_y": 45, + "sheet_y": 38, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20794,7 +21664,7 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f9b3.png", "sheet_x": 16, - "sheet_y": 46, + "sheet_y": 39, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -20804,7 +21674,7 @@ } }, { - "name": null, + "name": "MAN IN MOTORIZED WHEELCHAIR", "unified": "1F468-200D-1F9BC", "non_qualified": null, "docomo": null, @@ -20813,7 +21683,7 @@ "google": null, "image": "1f468-200d-1f9bc.png", "sheet_x": 16, - "sheet_y": 47, + "sheet_y": 40, "short_name": "man_in_motorized_wheelchair", "short_names": [ "man_in_motorized_wheelchair" @@ -20821,8 +21691,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 225, - "added_in": "12.1", + "subcategory": "person-activity", + "sort_order": 388, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20833,8 +21704,8 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f9bc.png", "sheet_x": 16, - "sheet_y": 48, - "added_in": "12.1", + "sheet_y": 41, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20845,8 +21716,8 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f9bc.png", "sheet_x": 16, - "sheet_y": 49, - "added_in": "12.1", + "sheet_y": 42, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20857,8 +21728,8 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f9bc.png", "sheet_x": 16, - "sheet_y": 50, - "added_in": "12.1", + "sheet_y": 43, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20869,8 +21740,8 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f9bc.png", "sheet_x": 16, - "sheet_y": 51, - "added_in": "12.1", + "sheet_y": 44, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20881,8 +21752,8 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f9bc.png", "sheet_x": 16, - "sheet_y": 52, - "added_in": "12.1", + "sheet_y": 45, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20891,7 +21762,7 @@ } }, { - "name": null, + "name": "MAN IN MANUAL WHEELCHAIR", "unified": "1F468-200D-1F9BD", "non_qualified": null, "docomo": null, @@ -20900,7 +21771,7 @@ "google": null, "image": "1f468-200d-1f9bd.png", "sheet_x": 16, - "sheet_y": 53, + "sheet_y": 46, "short_name": "man_in_manual_wheelchair", "short_names": [ "man_in_manual_wheelchair" @@ -20908,8 +21779,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 228, - "added_in": "12.1", + "subcategory": "person-activity", + "sort_order": 391, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20920,8 +21792,8 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f9bd.png", "sheet_x": 16, - "sheet_y": 54, - "added_in": "12.1", + "sheet_y": 47, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20932,8 +21804,8 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f9bd.png", "sheet_x": 16, - "sheet_y": 55, - "added_in": "12.1", + "sheet_y": 48, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20944,8 +21816,8 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f9bd.png", "sheet_x": 16, - "sheet_y": 56, - "added_in": "12.1", + "sheet_y": 49, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20955,9 +21827,9 @@ "unified": "1F468-1F3FE-200D-1F9BD", "non_qualified": null, "image": "1f468-1f3fe-200d-1f9bd.png", - "sheet_x": 17, - "sheet_y": 0, - "added_in": "12.1", + "sheet_x": 16, + "sheet_y": 50, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20967,9 +21839,9 @@ "unified": "1F468-1F3FF-200D-1F9BD", "non_qualified": null, "image": "1f468-1f3ff-200d-1f9bd.png", - "sheet_x": 17, - "sheet_y": 1, - "added_in": "12.1", + "sheet_x": 16, + "sheet_y": 51, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -20978,7 +21850,7 @@ } }, { - "name": null, + "name": "MAN HEALTH WORKER", "unified": "1F468-200D-2695-FE0F", "non_qualified": "1F468-200D-2695", "docomo": null, @@ -20986,8 +21858,8 @@ "softbank": null, "google": null, "image": "1f468-200d-2695-fe0f.png", - "sheet_x": 17, - "sheet_y": 2, + "sheet_x": 16, + "sheet_y": 52, "short_name": "male-doctor", "short_names": [ "male-doctor" @@ -20995,7 +21867,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 106, + "subcategory": "person-role", + "sort_order": 260, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21006,8 +21879,8 @@ "unified": "1F468-1F3FB-200D-2695-FE0F", "non_qualified": "1F468-1F3FB-200D-2695", "image": "1f468-1f3fb-200d-2695-fe0f.png", - "sheet_x": 17, - "sheet_y": 3, + "sheet_x": 16, + "sheet_y": 53, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21018,8 +21891,8 @@ "unified": "1F468-1F3FC-200D-2695-FE0F", "non_qualified": "1F468-1F3FC-200D-2695", "image": "1f468-1f3fc-200d-2695-fe0f.png", - "sheet_x": 17, - "sheet_y": 4, + "sheet_x": 16, + "sheet_y": 54, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21030,8 +21903,8 @@ "unified": "1F468-1F3FD-200D-2695-FE0F", "non_qualified": "1F468-1F3FD-200D-2695", "image": "1f468-1f3fd-200d-2695-fe0f.png", - "sheet_x": 17, - "sheet_y": 5, + "sheet_x": 16, + "sheet_y": 55, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21042,8 +21915,8 @@ "unified": "1F468-1F3FE-200D-2695-FE0F", "non_qualified": "1F468-1F3FE-200D-2695", "image": "1f468-1f3fe-200d-2695-fe0f.png", - "sheet_x": 17, - "sheet_y": 6, + "sheet_x": 16, + "sheet_y": 56, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21054,8 +21927,8 @@ "unified": "1F468-1F3FF-200D-2695-FE0F", "non_qualified": "1F468-1F3FF-200D-2695", "image": "1f468-1f3ff-200d-2695-fe0f.png", - "sheet_x": 17, - "sheet_y": 7, + "sheet_x": 16, + "sheet_y": 57, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21065,7 +21938,7 @@ } }, { - "name": null, + "name": "MAN JUDGE", "unified": "1F468-200D-2696-FE0F", "non_qualified": "1F468-200D-2696", "docomo": null, @@ -21074,7 +21947,7 @@ "google": null, "image": "1f468-200d-2696-fe0f.png", "sheet_x": 17, - "sheet_y": 8, + "sheet_y": 0, "short_name": "male-judge", "short_names": [ "male-judge" @@ -21082,7 +21955,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 115, + "subcategory": "person-role", + "sort_order": 269, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21094,7 +21968,7 @@ "non_qualified": "1F468-1F3FB-200D-2696", "image": "1f468-1f3fb-200d-2696-fe0f.png", "sheet_x": 17, - "sheet_y": 9, + "sheet_y": 1, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21106,7 +21980,7 @@ "non_qualified": "1F468-1F3FC-200D-2696", "image": "1f468-1f3fc-200d-2696-fe0f.png", "sheet_x": 17, - "sheet_y": 10, + "sheet_y": 2, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21118,7 +21992,7 @@ "non_qualified": "1F468-1F3FD-200D-2696", "image": "1f468-1f3fd-200d-2696-fe0f.png", "sheet_x": 17, - "sheet_y": 11, + "sheet_y": 3, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21130,7 +22004,7 @@ "non_qualified": "1F468-1F3FE-200D-2696", "image": "1f468-1f3fe-200d-2696-fe0f.png", "sheet_x": 17, - "sheet_y": 12, + "sheet_y": 4, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21142,7 +22016,7 @@ "non_qualified": "1F468-1F3FF-200D-2696", "image": "1f468-1f3ff-200d-2696-fe0f.png", "sheet_x": 17, - "sheet_y": 13, + "sheet_y": 5, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21152,7 +22026,7 @@ } }, { - "name": null, + "name": "MAN PILOT", "unified": "1F468-200D-2708-FE0F", "non_qualified": "1F468-200D-2708", "docomo": null, @@ -21161,7 +22035,7 @@ "google": null, "image": "1f468-200d-2708-fe0f.png", "sheet_x": 17, - "sheet_y": 14, + "sheet_y": 6, "short_name": "male-pilot", "short_names": [ "male-pilot" @@ -21169,7 +22043,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 145, + "subcategory": "person-role", + "sort_order": 299, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21181,7 +22056,7 @@ "non_qualified": "1F468-1F3FB-200D-2708", "image": "1f468-1f3fb-200d-2708-fe0f.png", "sheet_x": 17, - "sheet_y": 15, + "sheet_y": 7, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21193,7 +22068,7 @@ "non_qualified": "1F468-1F3FC-200D-2708", "image": "1f468-1f3fc-200d-2708-fe0f.png", "sheet_x": 17, - "sheet_y": 16, + "sheet_y": 8, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21205,7 +22080,7 @@ "non_qualified": "1F468-1F3FD-200D-2708", "image": "1f468-1f3fd-200d-2708-fe0f.png", "sheet_x": 17, - "sheet_y": 17, + "sheet_y": 9, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21217,7 +22092,7 @@ "non_qualified": "1F468-1F3FE-200D-2708", "image": "1f468-1f3fe-200d-2708-fe0f.png", "sheet_x": 17, - "sheet_y": 18, + "sheet_y": 10, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21229,7 +22104,7 @@ "non_qualified": "1F468-1F3FF-200D-2708", "image": "1f468-1f3ff-200d-2708-fe0f.png", "sheet_x": 17, - "sheet_y": 19, + "sheet_y": 11, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21239,7 +22114,7 @@ } }, { - "name": null, + "name": "COUPLE WITH HEART: MAN, MAN", "unified": "1F468-200D-2764-FE0F-200D-1F468", "non_qualified": "1F468-200D-2764-200D-1F468", "docomo": null, @@ -21248,7 +22123,7 @@ "google": null, "image": "1f468-200d-2764-fe0f-200d-1f468.png", "sheet_x": 17, - "sheet_y": 20, + "sheet_y": 12, "short_name": "man-heart-man", "short_names": [ "man-heart-man" @@ -21256,7 +22131,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 303, + "subcategory": "family", + "sort_order": 466, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -21264,7 +22140,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "KISS: MAN, MAN", "unified": "1F468-200D-2764-FE0F-200D-1F48B-200D-1F468", "non_qualified": "1F468-200D-2764-200D-1F48B-200D-1F468", "docomo": null, @@ -21273,7 +22149,7 @@ "google": null, "image": "1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png", "sheet_x": 17, - "sheet_y": 21, + "sheet_y": 13, "short_name": "man-kiss-man", "short_names": [ "man-kiss-man" @@ -21281,7 +22157,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 299, + "subcategory": "family", + "sort_order": 462, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -21298,7 +22175,7 @@ "google": "FE19D", "image": "1f468.png", "sheet_x": 17, - "sheet_y": 22, + "sheet_y": 14, "short_name": "man", "short_names": [ "man" @@ -21306,8 +22183,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 55, - "added_in": "2.0", + "subcategory": "person", + "sort_order": 209, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -21318,8 +22196,8 @@ "non_qualified": null, "image": "1f468-1f3fb.png", "sheet_x": 17, - "sheet_y": 23, - "added_in": "2.0", + "sheet_y": 15, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -21330,8 +22208,8 @@ "non_qualified": null, "image": "1f468-1f3fc.png", "sheet_x": 17, - "sheet_y": 24, - "added_in": "2.0", + "sheet_y": 16, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -21342,8 +22220,8 @@ "non_qualified": null, "image": "1f468-1f3fd.png", "sheet_x": 17, - "sheet_y": 25, - "added_in": "2.0", + "sheet_y": 17, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -21354,8 +22232,8 @@ "non_qualified": null, "image": "1f468-1f3fe.png", "sheet_x": 17, - "sheet_y": 26, - "added_in": "2.0", + "sheet_y": 18, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -21366,8 +22244,8 @@ "non_qualified": null, "image": "1f468-1f3ff.png", "sheet_x": 17, - "sheet_y": 27, - "added_in": "2.0", + "sheet_y": 19, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -21376,7 +22254,7 @@ } }, { - "name": null, + "name": "WOMAN FARMER", "unified": "1F469-200D-1F33E", "non_qualified": null, "docomo": null, @@ -21385,7 +22263,7 @@ "google": null, "image": "1f469-200d-1f33e.png", "sheet_x": 17, - "sheet_y": 28, + "sheet_y": 20, "short_name": "female-farmer", "short_names": [ "female-farmer" @@ -21393,7 +22271,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 119, + "subcategory": "person-role", + "sort_order": 273, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21405,7 +22284,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f33e.png", "sheet_x": 17, - "sheet_y": 29, + "sheet_y": 21, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21417,7 +22296,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f33e.png", "sheet_x": 17, - "sheet_y": 30, + "sheet_y": 22, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21429,7 +22308,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f33e.png", "sheet_x": 17, - "sheet_y": 31, + "sheet_y": 23, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21441,7 +22320,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f33e.png", "sheet_x": 17, - "sheet_y": 32, + "sheet_y": 24, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21453,7 +22332,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f33e.png", "sheet_x": 17, - "sheet_y": 33, + "sheet_y": 25, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21463,7 +22342,7 @@ } }, { - "name": null, + "name": "WOMAN COOK", "unified": "1F469-200D-1F373", "non_qualified": null, "docomo": null, @@ -21472,7 +22351,7 @@ "google": null, "image": "1f469-200d-1f373.png", "sheet_x": 17, - "sheet_y": 34, + "sheet_y": 26, "short_name": "female-cook", "short_names": [ "female-cook" @@ -21480,7 +22359,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 122, + "subcategory": "person-role", + "sort_order": 276, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21492,7 +22372,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f373.png", "sheet_x": 17, - "sheet_y": 35, + "sheet_y": 27, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21504,7 +22384,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f373.png", "sheet_x": 17, - "sheet_y": 36, + "sheet_y": 28, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21516,7 +22396,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f373.png", "sheet_x": 17, - "sheet_y": 37, + "sheet_y": 29, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21528,7 +22408,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f373.png", "sheet_x": 17, - "sheet_y": 38, + "sheet_y": 30, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21540,7 +22420,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f373.png", "sheet_x": 17, - "sheet_y": 39, + "sheet_y": 31, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21550,7 +22430,95 @@ } }, { - "name": null, + "name": "WOMAN FEEDING BABY", + "unified": "1F469-200D-1F37C", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f469-200d-1f37c.png", + "sheet_x": 17, + "sheet_y": 32, + "short_name": "woman_feeding_baby", + "short_names": [ + "woman_feeding_baby" + ], + "text": null, + "texts": null, + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 335, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1F469-1F3FB-200D-1F37C", + "non_qualified": null, + "image": "1f469-1f3fb-200d-1f37c.png", + "sheet_x": 17, + "sheet_y": 33, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F469-1F3FC-200D-1F37C", + "non_qualified": null, + "image": "1f469-1f3fc-200d-1f37c.png", + "sheet_x": 17, + "sheet_y": 34, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F469-1F3FD-200D-1F37C", + "non_qualified": null, + "image": "1f469-1f3fd-200d-1f37c.png", + "sheet_x": 17, + "sheet_y": 35, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F469-1F3FE-200D-1F37C", + "non_qualified": null, + "image": "1f469-1f3fe-200d-1f37c.png", + "sheet_x": 17, + "sheet_y": 36, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F469-1F3FF-200D-1F37C", + "non_qualified": null, + "image": "1f469-1f3ff-200d-1f37c.png", + "sheet_x": 17, + "sheet_y": 37, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } + }, + { + "name": "WOMAN STUDENT", "unified": "1F469-200D-1F393", "non_qualified": null, "docomo": null, @@ -21559,7 +22527,7 @@ "google": null, "image": "1f469-200d-1f393.png", "sheet_x": 17, - "sheet_y": 40, + "sheet_y": 38, "short_name": "female-student", "short_names": [ "female-student" @@ -21567,7 +22535,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 110, + "subcategory": "person-role", + "sort_order": 264, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21579,7 +22548,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f393.png", "sheet_x": 17, - "sheet_y": 41, + "sheet_y": 39, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21591,7 +22560,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f393.png", "sheet_x": 17, - "sheet_y": 42, + "sheet_y": 40, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21603,7 +22572,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f393.png", "sheet_x": 17, - "sheet_y": 43, + "sheet_y": 41, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21615,7 +22584,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f393.png", "sheet_x": 17, - "sheet_y": 44, + "sheet_y": 42, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21627,7 +22596,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f393.png", "sheet_x": 17, - "sheet_y": 45, + "sheet_y": 43, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21637,7 +22606,7 @@ } }, { - "name": null, + "name": "WOMAN SINGER", "unified": "1F469-200D-1F3A4", "non_qualified": null, "docomo": null, @@ -21646,7 +22615,7 @@ "google": null, "image": "1f469-200d-1f3a4.png", "sheet_x": 17, - "sheet_y": 46, + "sheet_y": 44, "short_name": "female-singer", "short_names": [ "female-singer" @@ -21654,7 +22623,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 140, + "subcategory": "person-role", + "sort_order": 294, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21666,7 +22636,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f3a4.png", "sheet_x": 17, - "sheet_y": 47, + "sheet_y": 45, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21678,7 +22648,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f3a4.png", "sheet_x": 17, - "sheet_y": 48, + "sheet_y": 46, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21690,7 +22660,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f3a4.png", "sheet_x": 17, - "sheet_y": 49, + "sheet_y": 47, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21702,7 +22672,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f3a4.png", "sheet_x": 17, - "sheet_y": 50, + "sheet_y": 48, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21714,7 +22684,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f3a4.png", "sheet_x": 17, - "sheet_y": 51, + "sheet_y": 49, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21724,7 +22694,7 @@ } }, { - "name": null, + "name": "WOMAN ARTIST", "unified": "1F469-200D-1F3A8", "non_qualified": null, "docomo": null, @@ -21733,7 +22703,7 @@ "google": null, "image": "1f469-200d-1f3a8.png", "sheet_x": 17, - "sheet_y": 52, + "sheet_y": 50, "short_name": "female-artist", "short_names": [ "female-artist" @@ -21741,7 +22711,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 143, + "subcategory": "person-role", + "sort_order": 297, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21753,7 +22724,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f3a8.png", "sheet_x": 17, - "sheet_y": 53, + "sheet_y": 51, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21765,7 +22736,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f3a8.png", "sheet_x": 17, - "sheet_y": 54, + "sheet_y": 52, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21777,7 +22748,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f3a8.png", "sheet_x": 17, - "sheet_y": 55, + "sheet_y": 53, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21789,7 +22760,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f3a8.png", "sheet_x": 17, - "sheet_y": 56, + "sheet_y": 54, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21800,8 +22771,8 @@ "unified": "1F469-1F3FF-200D-1F3A8", "non_qualified": null, "image": "1f469-1f3ff-200d-1f3a8.png", - "sheet_x": 18, - "sheet_y": 0, + "sheet_x": 17, + "sheet_y": 55, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21811,7 +22782,7 @@ } }, { - "name": null, + "name": "WOMAN TEACHER", "unified": "1F469-200D-1F3EB", "non_qualified": null, "docomo": null, @@ -21819,8 +22790,8 @@ "softbank": null, "google": null, "image": "1f469-200d-1f3eb.png", - "sheet_x": 18, - "sheet_y": 1, + "sheet_x": 17, + "sheet_y": 56, "short_name": "female-teacher", "short_names": [ "female-teacher" @@ -21828,7 +22799,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 113, + "subcategory": "person-role", + "sort_order": 267, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21839,8 +22811,8 @@ "unified": "1F469-1F3FB-200D-1F3EB", "non_qualified": null, "image": "1f469-1f3fb-200d-1f3eb.png", - "sheet_x": 18, - "sheet_y": 2, + "sheet_x": 17, + "sheet_y": 57, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21852,7 +22824,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f3eb.png", "sheet_x": 18, - "sheet_y": 3, + "sheet_y": 0, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21864,7 +22836,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f3eb.png", "sheet_x": 18, - "sheet_y": 4, + "sheet_y": 1, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21876,7 +22848,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f3eb.png", "sheet_x": 18, - "sheet_y": 5, + "sheet_y": 2, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21888,7 +22860,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f3eb.png", "sheet_x": 18, - "sheet_y": 6, + "sheet_y": 3, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21898,7 +22870,7 @@ } }, { - "name": null, + "name": "WOMAN FACTORY WORKER", "unified": "1F469-200D-1F3ED", "non_qualified": null, "docomo": null, @@ -21907,7 +22879,7 @@ "google": null, "image": "1f469-200d-1f3ed.png", "sheet_x": 18, - "sheet_y": 7, + "sheet_y": 4, "short_name": "female-factory-worker", "short_names": [ "female-factory-worker" @@ -21915,7 +22887,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 128, + "subcategory": "person-role", + "sort_order": 282, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21927,7 +22900,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f3ed.png", "sheet_x": 18, - "sheet_y": 8, + "sheet_y": 5, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21939,7 +22912,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f3ed.png", "sheet_x": 18, - "sheet_y": 9, + "sheet_y": 6, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21951,7 +22924,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f3ed.png", "sheet_x": 18, - "sheet_y": 10, + "sheet_y": 7, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21963,7 +22936,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f3ed.png", "sheet_x": 18, - "sheet_y": 11, + "sheet_y": 8, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21975,7 +22948,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f3ed.png", "sheet_x": 18, - "sheet_y": 12, + "sheet_y": 9, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -21985,7 +22958,7 @@ } }, { - "name": null, + "name": "FAMILY: WOMAN, BOY, BOY", "unified": "1F469-200D-1F466-200D-1F466", "non_qualified": null, "docomo": null, @@ -21994,7 +22967,7 @@ "google": null, "image": "1f469-200d-1f466-200d-1f466.png", "sheet_x": 18, - "sheet_y": 13, + "sheet_y": 10, "short_name": "woman-boy-boy", "short_names": [ "woman-boy-boy" @@ -22002,7 +22975,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 327, + "subcategory": "family", + "sort_order": 490, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22010,7 +22984,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: WOMAN, BOY", "unified": "1F469-200D-1F466", "non_qualified": null, "docomo": null, @@ -22019,7 +22993,7 @@ "google": null, "image": "1f469-200d-1f466.png", "sheet_x": 18, - "sheet_y": 14, + "sheet_y": 11, "short_name": "woman-boy", "short_names": [ "woman-boy" @@ -22027,7 +23001,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 326, + "subcategory": "family", + "sort_order": 489, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22035,7 +23010,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: WOMAN, GIRL, BOY", "unified": "1F469-200D-1F467-200D-1F466", "non_qualified": null, "docomo": null, @@ -22044,7 +23019,7 @@ "google": null, "image": "1f469-200d-1f467-200d-1f466.png", "sheet_x": 18, - "sheet_y": 15, + "sheet_y": 12, "short_name": "woman-girl-boy", "short_names": [ "woman-girl-boy" @@ -22052,7 +23027,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 329, + "subcategory": "family", + "sort_order": 492, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22060,7 +23036,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: WOMAN, GIRL, GIRL", "unified": "1F469-200D-1F467-200D-1F467", "non_qualified": null, "docomo": null, @@ -22069,7 +23045,7 @@ "google": null, "image": "1f469-200d-1f467-200d-1f467.png", "sheet_x": 18, - "sheet_y": 16, + "sheet_y": 13, "short_name": "woman-girl-girl", "short_names": [ "woman-girl-girl" @@ -22077,7 +23053,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 330, + "subcategory": "family", + "sort_order": 493, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22085,7 +23062,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: WOMAN, GIRL", "unified": "1F469-200D-1F467", "non_qualified": null, "docomo": null, @@ -22094,7 +23071,7 @@ "google": null, "image": "1f469-200d-1f467.png", "sheet_x": 18, - "sheet_y": 17, + "sheet_y": 14, "short_name": "woman-girl", "short_names": [ "woman-girl" @@ -22102,7 +23079,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 328, + "subcategory": "family", + "sort_order": 491, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22110,7 +23088,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: WOMAN, WOMAN, BOY", "unified": "1F469-200D-1F469-200D-1F466", "non_qualified": null, "docomo": null, @@ -22119,7 +23097,7 @@ "google": null, "image": "1f469-200d-1f469-200d-1f466.png", "sheet_x": 18, - "sheet_y": 18, + "sheet_y": 15, "short_name": "woman-woman-boy", "short_names": [ "woman-woman-boy" @@ -22127,7 +23105,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 316, + "subcategory": "family", + "sort_order": 479, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -22135,7 +23114,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: WOMAN, WOMAN, BOY, BOY", "unified": "1F469-200D-1F469-200D-1F466-200D-1F466", "non_qualified": null, "docomo": null, @@ -22144,7 +23123,7 @@ "google": null, "image": "1f469-200d-1f469-200d-1f466-200d-1f466.png", "sheet_x": 18, - "sheet_y": 19, + "sheet_y": 16, "short_name": "woman-woman-boy-boy", "short_names": [ "woman-woman-boy-boy" @@ -22152,7 +23131,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 319, + "subcategory": "family", + "sort_order": 482, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -22160,7 +23140,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: WOMAN, WOMAN, GIRL", "unified": "1F469-200D-1F469-200D-1F467", "non_qualified": null, "docomo": null, @@ -22169,7 +23149,7 @@ "google": null, "image": "1f469-200d-1f469-200d-1f467.png", "sheet_x": 18, - "sheet_y": 20, + "sheet_y": 17, "short_name": "woman-woman-girl", "short_names": [ "woman-woman-girl" @@ -22177,7 +23157,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 317, + "subcategory": "family", + "sort_order": 480, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -22185,7 +23166,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: WOMAN, WOMAN, GIRL, BOY", "unified": "1F469-200D-1F469-200D-1F467-200D-1F466", "non_qualified": null, "docomo": null, @@ -22194,7 +23175,7 @@ "google": null, "image": "1f469-200d-1f469-200d-1f467-200d-1f466.png", "sheet_x": 18, - "sheet_y": 21, + "sheet_y": 18, "short_name": "woman-woman-girl-boy", "short_names": [ "woman-woman-girl-boy" @@ -22202,7 +23183,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 318, + "subcategory": "family", + "sort_order": 481, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -22210,7 +23192,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FAMILY: WOMAN, WOMAN, GIRL, GIRL", "unified": "1F469-200D-1F469-200D-1F467-200D-1F467", "non_qualified": null, "docomo": null, @@ -22219,7 +23201,7 @@ "google": null, "image": "1f469-200d-1f469-200d-1f467-200d-1f467.png", "sheet_x": 18, - "sheet_y": 22, + "sheet_y": 19, "short_name": "woman-woman-girl-girl", "short_names": [ "woman-woman-girl-girl" @@ -22227,7 +23209,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 320, + "subcategory": "family", + "sort_order": 483, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -22235,7 +23218,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "WOMAN TECHNOLOGIST", "unified": "1F469-200D-1F4BB", "non_qualified": null, "docomo": null, @@ -22244,7 +23227,7 @@ "google": null, "image": "1f469-200d-1f4bb.png", "sheet_x": 18, - "sheet_y": 23, + "sheet_y": 20, "short_name": "female-technologist", "short_names": [ "female-technologist" @@ -22252,7 +23235,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 137, + "subcategory": "person-role", + "sort_order": 291, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22264,7 +23248,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f4bb.png", "sheet_x": 18, - "sheet_y": 24, + "sheet_y": 21, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22276,7 +23260,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f4bb.png", "sheet_x": 18, - "sheet_y": 25, + "sheet_y": 22, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22288,7 +23272,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f4bb.png", "sheet_x": 18, - "sheet_y": 26, + "sheet_y": 23, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22300,7 +23284,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f4bb.png", "sheet_x": 18, - "sheet_y": 27, + "sheet_y": 24, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22312,7 +23296,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f4bb.png", "sheet_x": 18, - "sheet_y": 28, + "sheet_y": 25, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22322,7 +23306,7 @@ } }, { - "name": null, + "name": "WOMAN OFFICE WORKER", "unified": "1F469-200D-1F4BC", "non_qualified": null, "docomo": null, @@ -22331,7 +23315,7 @@ "google": null, "image": "1f469-200d-1f4bc.png", "sheet_x": 18, - "sheet_y": 29, + "sheet_y": 26, "short_name": "female-office-worker", "short_names": [ "female-office-worker" @@ -22339,7 +23323,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 131, + "subcategory": "person-role", + "sort_order": 285, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22351,7 +23336,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f4bc.png", "sheet_x": 18, - "sheet_y": 30, + "sheet_y": 27, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22363,7 +23348,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f4bc.png", "sheet_x": 18, - "sheet_y": 31, + "sheet_y": 28, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22375,7 +23360,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f4bc.png", "sheet_x": 18, - "sheet_y": 32, + "sheet_y": 29, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22387,7 +23372,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f4bc.png", "sheet_x": 18, - "sheet_y": 33, + "sheet_y": 30, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22399,7 +23384,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f4bc.png", "sheet_x": 18, - "sheet_y": 34, + "sheet_y": 31, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22409,7 +23394,7 @@ } }, { - "name": null, + "name": "WOMAN MECHANIC", "unified": "1F469-200D-1F527", "non_qualified": null, "docomo": null, @@ -22418,7 +23403,7 @@ "google": null, "image": "1f469-200d-1f527.png", "sheet_x": 18, - "sheet_y": 35, + "sheet_y": 32, "short_name": "female-mechanic", "short_names": [ "female-mechanic" @@ -22426,7 +23411,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 125, + "subcategory": "person-role", + "sort_order": 279, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22438,7 +23424,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f527.png", "sheet_x": 18, - "sheet_y": 36, + "sheet_y": 33, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22450,7 +23436,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f527.png", "sheet_x": 18, - "sheet_y": 37, + "sheet_y": 34, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22462,7 +23448,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f527.png", "sheet_x": 18, - "sheet_y": 38, + "sheet_y": 35, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22474,7 +23460,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f527.png", "sheet_x": 18, - "sheet_y": 39, + "sheet_y": 36, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22486,7 +23472,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f527.png", "sheet_x": 18, - "sheet_y": 40, + "sheet_y": 37, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22496,7 +23482,7 @@ } }, { - "name": null, + "name": "WOMAN SCIENTIST", "unified": "1F469-200D-1F52C", "non_qualified": null, "docomo": null, @@ -22505,7 +23491,7 @@ "google": null, "image": "1f469-200d-1f52c.png", "sheet_x": 18, - "sheet_y": 41, + "sheet_y": 38, "short_name": "female-scientist", "short_names": [ "female-scientist" @@ -22513,7 +23499,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 134, + "subcategory": "person-role", + "sort_order": 288, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22525,7 +23512,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f52c.png", "sheet_x": 18, - "sheet_y": 42, + "sheet_y": 39, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22537,7 +23524,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f52c.png", "sheet_x": 18, - "sheet_y": 43, + "sheet_y": 40, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22549,7 +23536,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f52c.png", "sheet_x": 18, - "sheet_y": 44, + "sheet_y": 41, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22561,7 +23548,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f52c.png", "sheet_x": 18, - "sheet_y": 45, + "sheet_y": 42, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22573,7 +23560,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f52c.png", "sheet_x": 18, - "sheet_y": 46, + "sheet_y": 43, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22583,7 +23570,7 @@ } }, { - "name": null, + "name": "WOMAN ASTRONAUT", "unified": "1F469-200D-1F680", "non_qualified": null, "docomo": null, @@ -22592,7 +23579,7 @@ "google": null, "image": "1f469-200d-1f680.png", "sheet_x": 18, - "sheet_y": 47, + "sheet_y": 44, "short_name": "female-astronaut", "short_names": [ "female-astronaut" @@ -22600,7 +23587,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 149, + "subcategory": "person-role", + "sort_order": 303, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22612,7 +23600,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f680.png", "sheet_x": 18, - "sheet_y": 48, + "sheet_y": 45, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22624,7 +23612,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f680.png", "sheet_x": 18, - "sheet_y": 49, + "sheet_y": 46, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22636,7 +23624,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f680.png", "sheet_x": 18, - "sheet_y": 50, + "sheet_y": 47, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22648,7 +23636,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f680.png", "sheet_x": 18, - "sheet_y": 51, + "sheet_y": 48, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22660,7 +23648,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f680.png", "sheet_x": 18, - "sheet_y": 52, + "sheet_y": 49, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22670,7 +23658,7 @@ } }, { - "name": null, + "name": "WOMAN FIREFIGHTER", "unified": "1F469-200D-1F692", "non_qualified": null, "docomo": null, @@ -22679,7 +23667,7 @@ "google": null, "image": "1f469-200d-1f692.png", "sheet_x": 18, - "sheet_y": 53, + "sheet_y": 50, "short_name": "female-firefighter", "short_names": [ "female-firefighter" @@ -22687,7 +23675,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 152, + "subcategory": "person-role", + "sort_order": 306, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22699,7 +23688,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f692.png", "sheet_x": 18, - "sheet_y": 54, + "sheet_y": 51, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22711,7 +23700,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f692.png", "sheet_x": 18, - "sheet_y": 55, + "sheet_y": 52, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22723,7 +23712,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f692.png", "sheet_x": 18, - "sheet_y": 56, + "sheet_y": 53, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22734,8 +23723,8 @@ "unified": "1F469-1F3FE-200D-1F692", "non_qualified": null, "image": "1f469-1f3fe-200d-1f692.png", - "sheet_x": 19, - "sheet_y": 0, + "sheet_x": 18, + "sheet_y": 54, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22746,8 +23735,8 @@ "unified": "1F469-1F3FF-200D-1F692", "non_qualified": null, "image": "1f469-1f3ff-200d-1f692.png", - "sheet_x": 19, - "sheet_y": 1, + "sheet_x": 18, + "sheet_y": 55, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -22757,7 +23746,7 @@ } }, { - "name": null, + "name": "WOMAN WITH WHITE CANE", "unified": "1F469-200D-1F9AF", "non_qualified": null, "docomo": null, @@ -22765,8 +23754,8 @@ "softbank": null, "google": null, "image": "1f469-200d-1f9af.png", - "sheet_x": 19, - "sheet_y": 2, + "sheet_x": 18, + "sheet_y": 56, "short_name": "woman_with_probing_cane", "short_names": [ "woman_with_probing_cane" @@ -22774,8 +23763,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 223, - "added_in": "12.1", + "subcategory": "person-activity", + "sort_order": 386, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -22785,9 +23775,9 @@ "unified": "1F469-1F3FB-200D-1F9AF", "non_qualified": null, "image": "1f469-1f3fb-200d-1f9af.png", - "sheet_x": 19, - "sheet_y": 3, - "added_in": "12.1", + "sheet_x": 18, + "sheet_y": 57, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -22798,8 +23788,8 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f9af.png", "sheet_x": 19, - "sheet_y": 4, - "added_in": "12.1", + "sheet_y": 0, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -22810,8 +23800,8 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f9af.png", "sheet_x": 19, - "sheet_y": 5, - "added_in": "12.1", + "sheet_y": 1, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -22822,8 +23812,8 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f9af.png", "sheet_x": 19, - "sheet_y": 6, - "added_in": "12.1", + "sheet_y": 2, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -22834,8 +23824,8 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f9af.png", "sheet_x": 19, - "sheet_y": 7, - "added_in": "12.1", + "sheet_y": 3, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -22844,7 +23834,7 @@ } }, { - "name": null, + "name": "WOMAN: RED HAIR", "unified": "1F469-200D-1F9B0", "non_qualified": null, "docomo": null, @@ -22853,7 +23843,7 @@ "google": null, "image": "1f469-200d-1f9b0.png", "sheet_x": 19, - "sheet_y": 8, + "sheet_y": 4, "short_name": "red_haired_woman", "short_names": [ "red_haired_woman" @@ -22861,7 +23851,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 62, + "subcategory": "person", + "sort_order": 216, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -22873,7 +23864,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f9b0.png", "sheet_x": 19, - "sheet_y": 9, + "sheet_y": 5, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -22885,7 +23876,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f9b0.png", "sheet_x": 19, - "sheet_y": 10, + "sheet_y": 6, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -22897,7 +23888,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f9b0.png", "sheet_x": 19, - "sheet_y": 11, + "sheet_y": 7, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -22909,7 +23900,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f9b0.png", "sheet_x": 19, - "sheet_y": 12, + "sheet_y": 8, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -22921,7 +23912,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f9b0.png", "sheet_x": 19, - "sheet_y": 13, + "sheet_y": 9, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -22931,7 +23922,7 @@ } }, { - "name": null, + "name": "WOMAN: CURLY HAIR", "unified": "1F469-200D-1F9B1", "non_qualified": null, "docomo": null, @@ -22940,7 +23931,7 @@ "google": null, "image": "1f469-200d-1f9b1.png", "sheet_x": 19, - "sheet_y": 14, + "sheet_y": 10, "short_name": "curly_haired_woman", "short_names": [ "curly_haired_woman" @@ -22948,7 +23939,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 64, + "subcategory": "person", + "sort_order": 218, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -22960,7 +23952,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f9b1.png", "sheet_x": 19, - "sheet_y": 15, + "sheet_y": 11, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -22972,7 +23964,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f9b1.png", "sheet_x": 19, - "sheet_y": 16, + "sheet_y": 12, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -22984,7 +23976,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f9b1.png", "sheet_x": 19, - "sheet_y": 17, + "sheet_y": 13, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -22996,7 +23988,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f9b1.png", "sheet_x": 19, - "sheet_y": 18, + "sheet_y": 14, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -23008,7 +24000,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f9b1.png", "sheet_x": 19, - "sheet_y": 19, + "sheet_y": 15, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -23018,7 +24010,7 @@ } }, { - "name": null, + "name": "WOMAN: BALD", "unified": "1F469-200D-1F9B2", "non_qualified": null, "docomo": null, @@ -23027,7 +24019,7 @@ "google": null, "image": "1f469-200d-1f9b2.png", "sheet_x": 19, - "sheet_y": 20, + "sheet_y": 16, "short_name": "bald_woman", "short_names": [ "bald_woman" @@ -23035,7 +24027,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 68, + "subcategory": "person", + "sort_order": 222, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -23047,7 +24040,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f9b2.png", "sheet_x": 19, - "sheet_y": 21, + "sheet_y": 17, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -23059,7 +24052,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f9b2.png", "sheet_x": 19, - "sheet_y": 22, + "sheet_y": 18, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -23071,7 +24064,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f9b2.png", "sheet_x": 19, - "sheet_y": 23, + "sheet_y": 19, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -23083,7 +24076,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f9b2.png", "sheet_x": 19, - "sheet_y": 24, + "sheet_y": 20, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -23095,7 +24088,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f9b2.png", "sheet_x": 19, - "sheet_y": 25, + "sheet_y": 21, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -23105,7 +24098,7 @@ } }, { - "name": null, + "name": "WOMAN: WHITE HAIR", "unified": "1F469-200D-1F9B3", "non_qualified": null, "docomo": null, @@ -23114,7 +24107,7 @@ "google": null, "image": "1f469-200d-1f9b3.png", "sheet_x": 19, - "sheet_y": 26, + "sheet_y": 22, "short_name": "white_haired_woman", "short_names": [ "white_haired_woman" @@ -23122,7 +24115,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 66, + "subcategory": "person", + "sort_order": 220, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -23134,7 +24128,7 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f9b3.png", "sheet_x": 19, - "sheet_y": 27, + "sheet_y": 23, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -23146,7 +24140,7 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f9b3.png", "sheet_x": 19, - "sheet_y": 28, + "sheet_y": 24, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -23158,7 +24152,7 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f9b3.png", "sheet_x": 19, - "sheet_y": 29, + "sheet_y": 25, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -23170,7 +24164,7 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f9b3.png", "sheet_x": 19, - "sheet_y": 30, + "sheet_y": 26, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -23182,7 +24176,7 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f9b3.png", "sheet_x": 19, - "sheet_y": 31, + "sheet_y": 27, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -23192,7 +24186,7 @@ } }, { - "name": null, + "name": "WOMAN IN MOTORIZED WHEELCHAIR", "unified": "1F469-200D-1F9BC", "non_qualified": null, "docomo": null, @@ -23201,7 +24195,7 @@ "google": null, "image": "1f469-200d-1f9bc.png", "sheet_x": 19, - "sheet_y": 32, + "sheet_y": 28, "short_name": "woman_in_motorized_wheelchair", "short_names": [ "woman_in_motorized_wheelchair" @@ -23209,8 +24203,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 226, - "added_in": "12.1", + "subcategory": "person-activity", + "sort_order": 389, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23221,8 +24216,8 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f9bc.png", "sheet_x": 19, - "sheet_y": 33, - "added_in": "12.1", + "sheet_y": 29, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23233,8 +24228,8 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f9bc.png", "sheet_x": 19, - "sheet_y": 34, - "added_in": "12.1", + "sheet_y": 30, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23245,8 +24240,8 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f9bc.png", "sheet_x": 19, - "sheet_y": 35, - "added_in": "12.1", + "sheet_y": 31, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23257,8 +24252,8 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f9bc.png", "sheet_x": 19, - "sheet_y": 36, - "added_in": "12.1", + "sheet_y": 32, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23269,8 +24264,8 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f9bc.png", "sheet_x": 19, - "sheet_y": 37, - "added_in": "12.1", + "sheet_y": 33, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23279,7 +24274,7 @@ } }, { - "name": null, + "name": "WOMAN IN MANUAL WHEELCHAIR", "unified": "1F469-200D-1F9BD", "non_qualified": null, "docomo": null, @@ -23288,7 +24283,7 @@ "google": null, "image": "1f469-200d-1f9bd.png", "sheet_x": 19, - "sheet_y": 38, + "sheet_y": 34, "short_name": "woman_in_manual_wheelchair", "short_names": [ "woman_in_manual_wheelchair" @@ -23296,8 +24291,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 229, - "added_in": "12.1", + "subcategory": "person-activity", + "sort_order": 392, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23308,8 +24304,8 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f9bd.png", "sheet_x": 19, - "sheet_y": 39, - "added_in": "12.1", + "sheet_y": 35, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23320,8 +24316,8 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f9bd.png", "sheet_x": 19, - "sheet_y": 40, - "added_in": "12.1", + "sheet_y": 36, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23332,8 +24328,8 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f9bd.png", "sheet_x": 19, - "sheet_y": 41, - "added_in": "12.1", + "sheet_y": 37, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23344,8 +24340,8 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f9bd.png", "sheet_x": 19, - "sheet_y": 42, - "added_in": "12.1", + "sheet_y": 38, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23356,8 +24352,8 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f9bd.png", "sheet_x": 19, - "sheet_y": 43, - "added_in": "12.1", + "sheet_y": 39, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23366,7 +24362,7 @@ } }, { - "name": null, + "name": "WOMAN HEALTH WORKER", "unified": "1F469-200D-2695-FE0F", "non_qualified": "1F469-200D-2695", "docomo": null, @@ -23375,7 +24371,7 @@ "google": null, "image": "1f469-200d-2695-fe0f.png", "sheet_x": 19, - "sheet_y": 44, + "sheet_y": 40, "short_name": "female-doctor", "short_names": [ "female-doctor" @@ -23383,7 +24379,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 107, + "subcategory": "person-role", + "sort_order": 261, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23395,7 +24392,7 @@ "non_qualified": "1F469-1F3FB-200D-2695", "image": "1f469-1f3fb-200d-2695-fe0f.png", "sheet_x": 19, - "sheet_y": 45, + "sheet_y": 41, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23407,7 +24404,7 @@ "non_qualified": "1F469-1F3FC-200D-2695", "image": "1f469-1f3fc-200d-2695-fe0f.png", "sheet_x": 19, - "sheet_y": 46, + "sheet_y": 42, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23419,7 +24416,7 @@ "non_qualified": "1F469-1F3FD-200D-2695", "image": "1f469-1f3fd-200d-2695-fe0f.png", "sheet_x": 19, - "sheet_y": 47, + "sheet_y": 43, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23431,7 +24428,7 @@ "non_qualified": "1F469-1F3FE-200D-2695", "image": "1f469-1f3fe-200d-2695-fe0f.png", "sheet_x": 19, - "sheet_y": 48, + "sheet_y": 44, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23443,7 +24440,7 @@ "non_qualified": "1F469-1F3FF-200D-2695", "image": "1f469-1f3ff-200d-2695-fe0f.png", "sheet_x": 19, - "sheet_y": 49, + "sheet_y": 45, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23453,7 +24450,7 @@ } }, { - "name": null, + "name": "WOMAN JUDGE", "unified": "1F469-200D-2696-FE0F", "non_qualified": "1F469-200D-2696", "docomo": null, @@ -23462,7 +24459,7 @@ "google": null, "image": "1f469-200d-2696-fe0f.png", "sheet_x": 19, - "sheet_y": 50, + "sheet_y": 46, "short_name": "female-judge", "short_names": [ "female-judge" @@ -23470,7 +24467,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 116, + "subcategory": "person-role", + "sort_order": 270, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23482,7 +24480,7 @@ "non_qualified": "1F469-1F3FB-200D-2696", "image": "1f469-1f3fb-200d-2696-fe0f.png", "sheet_x": 19, - "sheet_y": 51, + "sheet_y": 47, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23494,7 +24492,7 @@ "non_qualified": "1F469-1F3FC-200D-2696", "image": "1f469-1f3fc-200d-2696-fe0f.png", "sheet_x": 19, - "sheet_y": 52, + "sheet_y": 48, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23506,7 +24504,7 @@ "non_qualified": "1F469-1F3FD-200D-2696", "image": "1f469-1f3fd-200d-2696-fe0f.png", "sheet_x": 19, - "sheet_y": 53, + "sheet_y": 49, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23518,7 +24516,7 @@ "non_qualified": "1F469-1F3FE-200D-2696", "image": "1f469-1f3fe-200d-2696-fe0f.png", "sheet_x": 19, - "sheet_y": 54, + "sheet_y": 50, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23530,7 +24528,7 @@ "non_qualified": "1F469-1F3FF-200D-2696", "image": "1f469-1f3ff-200d-2696-fe0f.png", "sheet_x": 19, - "sheet_y": 55, + "sheet_y": 51, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23540,7 +24538,7 @@ } }, { - "name": null, + "name": "WOMAN PILOT", "unified": "1F469-200D-2708-FE0F", "non_qualified": "1F469-200D-2708", "docomo": null, @@ -23549,7 +24547,7 @@ "google": null, "image": "1f469-200d-2708-fe0f.png", "sheet_x": 19, - "sheet_y": 56, + "sheet_y": 52, "short_name": "female-pilot", "short_names": [ "female-pilot" @@ -23557,7 +24555,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 146, + "subcategory": "person-role", + "sort_order": 300, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23568,8 +24567,8 @@ "unified": "1F469-1F3FB-200D-2708-FE0F", "non_qualified": "1F469-1F3FB-200D-2708", "image": "1f469-1f3fb-200d-2708-fe0f.png", - "sheet_x": 20, - "sheet_y": 0, + "sheet_x": 19, + "sheet_y": 53, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23580,8 +24579,8 @@ "unified": "1F469-1F3FC-200D-2708-FE0F", "non_qualified": "1F469-1F3FC-200D-2708", "image": "1f469-1f3fc-200d-2708-fe0f.png", - "sheet_x": 20, - "sheet_y": 1, + "sheet_x": 19, + "sheet_y": 54, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23592,8 +24591,8 @@ "unified": "1F469-1F3FD-200D-2708-FE0F", "non_qualified": "1F469-1F3FD-200D-2708", "image": "1f469-1f3fd-200d-2708-fe0f.png", - "sheet_x": 20, - "sheet_y": 2, + "sheet_x": 19, + "sheet_y": 55, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23604,8 +24603,8 @@ "unified": "1F469-1F3FE-200D-2708-FE0F", "non_qualified": "1F469-1F3FE-200D-2708", "image": "1f469-1f3fe-200d-2708-fe0f.png", - "sheet_x": 20, - "sheet_y": 3, + "sheet_x": 19, + "sheet_y": 56, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23616,8 +24615,8 @@ "unified": "1F469-1F3FF-200D-2708-FE0F", "non_qualified": "1F469-1F3FF-200D-2708", "image": "1f469-1f3ff-200d-2708-fe0f.png", - "sheet_x": 20, - "sheet_y": 4, + "sheet_x": 19, + "sheet_y": 57, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -23627,7 +24626,7 @@ } }, { - "name": null, + "name": "COUPLE WITH HEART: WOMAN, MAN", "unified": "1F469-200D-2764-FE0F-200D-1F468", "non_qualified": "1F469-200D-2764-200D-1F468", "docomo": null, @@ -23636,7 +24635,7 @@ "google": null, "image": "1f469-200d-2764-fe0f-200d-1f468.png", "sheet_x": 20, - "sheet_y": 5, + "sheet_y": 0, "short_name": "woman-heart-man", "short_names": [ "woman-heart-man" @@ -23644,7 +24643,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 302, + "subcategory": "family", + "sort_order": 465, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -23653,7 +24653,7 @@ "obsoletes": "1F491" }, { - "name": null, + "name": "COUPLE WITH HEART: WOMAN, WOMAN", "unified": "1F469-200D-2764-FE0F-200D-1F469", "non_qualified": "1F469-200D-2764-200D-1F469", "docomo": null, @@ -23662,7 +24662,7 @@ "google": null, "image": "1f469-200d-2764-fe0f-200d-1f469.png", "sheet_x": 20, - "sheet_y": 6, + "sheet_y": 1, "short_name": "woman-heart-woman", "short_names": [ "woman-heart-woman" @@ -23670,7 +24670,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 304, + "subcategory": "family", + "sort_order": 467, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -23678,7 +24679,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "KISS: WOMAN, MAN", "unified": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F468", "non_qualified": "1F469-200D-2764-200D-1F48B-200D-1F468", "docomo": null, @@ -23687,7 +24688,7 @@ "google": null, "image": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.png", "sheet_x": 20, - "sheet_y": 7, + "sheet_y": 2, "short_name": "woman-kiss-man", "short_names": [ "woman-kiss-man" @@ -23695,7 +24696,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 298, + "subcategory": "family", + "sort_order": 461, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -23704,7 +24706,7 @@ "obsoletes": "1F48F" }, { - "name": null, + "name": "KISS: WOMAN, WOMAN", "unified": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F469", "non_qualified": "1F469-200D-2764-200D-1F48B-200D-1F469", "docomo": null, @@ -23713,7 +24715,7 @@ "google": null, "image": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png", "sheet_x": 20, - "sheet_y": 8, + "sheet_y": 3, "short_name": "woman-kiss-woman", "short_names": [ "woman-kiss-woman" @@ -23721,7 +24723,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 300, + "subcategory": "family", + "sort_order": 463, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -23738,7 +24741,7 @@ "google": "FE19E", "image": "1f469.png", "sheet_x": 20, - "sheet_y": 9, + "sheet_y": 4, "short_name": "woman", "short_names": [ "woman" @@ -23746,8 +24749,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 61, - "added_in": "2.0", + "subcategory": "person", + "sort_order": 215, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23758,8 +24762,8 @@ "non_qualified": null, "image": "1f469-1f3fb.png", "sheet_x": 20, - "sheet_y": 10, - "added_in": "2.0", + "sheet_y": 5, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23770,8 +24774,8 @@ "non_qualified": null, "image": "1f469-1f3fc.png", "sheet_x": 20, - "sheet_y": 11, - "added_in": "2.0", + "sheet_y": 6, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23782,8 +24786,8 @@ "non_qualified": null, "image": "1f469-1f3fd.png", "sheet_x": 20, - "sheet_y": 12, - "added_in": "2.0", + "sheet_y": 7, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23794,8 +24798,8 @@ "non_qualified": null, "image": "1f469-1f3fe.png", "sheet_x": 20, - "sheet_y": 13, - "added_in": "2.0", + "sheet_y": 8, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23806,8 +24810,8 @@ "non_qualified": null, "image": "1f469-1f3ff.png", "sheet_x": 20, - "sheet_y": 14, - "added_in": "2.0", + "sheet_y": 9, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23825,17 +24829,17 @@ "google": "FE19F", "image": "1f46a.png", "sheet_x": 20, - "sheet_y": 15, + "sheet_y": 10, "short_name": "family", "short_names": [ - "family", - "man-woman-boy" + "family" ], "text": null, "texts": null, "category": "People & Body", - "sort_order": 305, - "added_in": "2.0", + "subcategory": "family", + "sort_order": 468, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23852,18 +24856,19 @@ "google": "FE1A0", "image": "1f46b.png", "sheet_x": 20, - "sheet_y": 16, - "short_name": "couple", + "sheet_y": 11, + "short_name": "man_and_woman_holding_hands", "short_names": [ - "couple", "man_and_woman_holding_hands", - "woman_and_man_holding_hands" + "woman_and_man_holding_hands", + "couple" ], "text": null, "texts": null, "category": "People & Body", - "sort_order": 295, - "added_in": "2.0", + "subcategory": "family", + "sort_order": 458, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23874,8 +24879,8 @@ "non_qualified": null, "image": "1f46b-1f3fb.png", "sheet_x": 20, - "sheet_y": 17, - "added_in": "12.1", + "sheet_y": 12, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23886,8 +24891,8 @@ "non_qualified": null, "image": "1f46b-1f3fc.png", "sheet_x": 20, - "sheet_y": 18, - "added_in": "12.1", + "sheet_y": 13, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23898,8 +24903,8 @@ "non_qualified": null, "image": "1f46b-1f3fd.png", "sheet_x": 20, - "sheet_y": 19, - "added_in": "12.1", + "sheet_y": 14, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23910,8 +24915,8 @@ "non_qualified": null, "image": "1f46b-1f3fe.png", "sheet_x": 20, - "sheet_y": 20, - "added_in": "12.1", + "sheet_y": 15, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23922,8 +24927,8 @@ "non_qualified": null, "image": "1f46b-1f3ff.png", "sheet_x": 20, - "sheet_y": 21, - "added_in": "12.1", + "sheet_y": 16, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23934,8 +24939,8 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.png", "sheet_x": 20, - "sheet_y": 22, - "added_in": "12.1", + "sheet_y": 17, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23946,8 +24951,8 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.png", "sheet_x": 20, - "sheet_y": 23, - "added_in": "12.1", + "sheet_y": 18, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23958,8 +24963,8 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.png", "sheet_x": 20, - "sheet_y": 24, - "added_in": "12.1", + "sheet_y": 19, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23970,8 +24975,8 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.png", "sheet_x": 20, - "sheet_y": 25, - "added_in": "12.1", + "sheet_y": 20, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23982,8 +24987,8 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.png", "sheet_x": 20, - "sheet_y": 26, - "added_in": "12.1", + "sheet_y": 21, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -23994,8 +24999,8 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.png", "sheet_x": 20, - "sheet_y": 27, - "added_in": "12.1", + "sheet_y": 22, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24006,8 +25011,8 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.png", "sheet_x": 20, - "sheet_y": 28, - "added_in": "12.1", + "sheet_y": 23, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24018,8 +25023,8 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.png", "sheet_x": 20, - "sheet_y": 29, - "added_in": "12.1", + "sheet_y": 24, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24030,8 +25035,8 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.png", "sheet_x": 20, - "sheet_y": 30, - "added_in": "12.1", + "sheet_y": 25, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24042,8 +25047,8 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.png", "sheet_x": 20, - "sheet_y": 31, - "added_in": "12.1", + "sheet_y": 26, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24054,8 +25059,8 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.png", "sheet_x": 20, - "sheet_y": 32, - "added_in": "12.1", + "sheet_y": 27, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24066,8 +25071,8 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.png", "sheet_x": 20, - "sheet_y": 33, - "added_in": "12.1", + "sheet_y": 28, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24078,8 +25083,8 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.png", "sheet_x": 20, - "sheet_y": 34, - "added_in": "12.1", + "sheet_y": 29, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24090,8 +25095,8 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.png", "sheet_x": 20, - "sheet_y": 35, - "added_in": "12.1", + "sheet_y": 30, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24102,8 +25107,8 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.png", "sheet_x": 20, - "sheet_y": 36, - "added_in": "12.1", + "sheet_y": 31, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24114,8 +25119,8 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.png", "sheet_x": 20, - "sheet_y": 37, - "added_in": "12.1", + "sheet_y": 32, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24126,8 +25131,8 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.png", "sheet_x": 20, - "sheet_y": 38, - "added_in": "12.1", + "sheet_y": 33, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24138,8 +25143,8 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.png", "sheet_x": 20, - "sheet_y": 39, - "added_in": "12.1", + "sheet_y": 34, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24150,8 +25155,8 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.png", "sheet_x": 20, - "sheet_y": 40, - "added_in": "12.1", + "sheet_y": 35, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24162,8 +25167,8 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.png", "sheet_x": 20, - "sheet_y": 41, - "added_in": "12.1", + "sheet_y": 36, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24181,7 +25186,7 @@ "google": null, "image": "1f46c.png", "sheet_x": 20, - "sheet_y": 42, + "sheet_y": 37, "short_name": "two_men_holding_hands", "short_names": [ "two_men_holding_hands", @@ -24190,8 +25195,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 296, - "added_in": "2.0", + "subcategory": "family", + "sort_order": 459, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24202,8 +25208,8 @@ "non_qualified": null, "image": "1f46c-1f3fb.png", "sheet_x": 20, - "sheet_y": 43, - "added_in": "12.1", + "sheet_y": 38, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24214,8 +25220,8 @@ "non_qualified": null, "image": "1f46c-1f3fc.png", "sheet_x": 20, - "sheet_y": 44, - "added_in": "12.1", + "sheet_y": 39, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24226,8 +25232,8 @@ "non_qualified": null, "image": "1f46c-1f3fd.png", "sheet_x": 20, - "sheet_y": 45, - "added_in": "12.1", + "sheet_y": 40, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24238,8 +25244,8 @@ "non_qualified": null, "image": "1f46c-1f3fe.png", "sheet_x": 20, - "sheet_y": 46, - "added_in": "12.1", + "sheet_y": 41, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24250,8 +25256,8 @@ "non_qualified": null, "image": "1f46c-1f3ff.png", "sheet_x": 20, - "sheet_y": 47, - "added_in": "12.1", + "sheet_y": 42, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24262,10 +25268,10 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.png", "sheet_x": 20, - "sheet_y": 48, + "sheet_y": 43, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24274,10 +25280,10 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.png", "sheet_x": 20, - "sheet_y": 49, + "sheet_y": 44, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24286,10 +25292,10 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.png", "sheet_x": 20, - "sheet_y": 50, + "sheet_y": 45, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24298,10 +25304,10 @@ "non_qualified": null, "image": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.png", "sheet_x": 20, - "sheet_y": 51, + "sheet_y": 46, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24310,8 +25316,8 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.png", "sheet_x": 20, - "sheet_y": 52, - "added_in": "12.1", + "sheet_y": 47, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24322,10 +25328,10 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.png", "sheet_x": 20, - "sheet_y": 53, + "sheet_y": 48, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24334,10 +25340,10 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.png", "sheet_x": 20, - "sheet_y": 54, + "sheet_y": 49, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24346,10 +25352,10 @@ "non_qualified": null, "image": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.png", "sheet_x": 20, - "sheet_y": 55, + "sheet_y": 50, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24358,8 +25364,8 @@ "non_qualified": null, "image": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.png", "sheet_x": 20, - "sheet_y": 56, - "added_in": "12.1", + "sheet_y": 51, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24369,9 +25375,9 @@ "unified": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FC", "non_qualified": null, "image": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.png", - "sheet_x": 21, - "sheet_y": 0, - "added_in": "12.1", + "sheet_x": 20, + "sheet_y": 52, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24381,11 +25387,11 @@ "unified": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FE", "non_qualified": null, "image": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.png", - "sheet_x": 21, - "sheet_y": 1, + "sheet_x": 20, + "sheet_y": 53, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24393,11 +25399,11 @@ "unified": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FF", "non_qualified": null, "image": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.png", - "sheet_x": 21, - "sheet_y": 2, + "sheet_x": 20, + "sheet_y": 54, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24405,9 +25411,9 @@ "unified": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FB", "non_qualified": null, "image": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.png", - "sheet_x": 21, - "sheet_y": 3, - "added_in": "12.1", + "sheet_x": 20, + "sheet_y": 55, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24417,9 +25423,9 @@ "unified": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FC", "non_qualified": null, "image": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.png", - "sheet_x": 21, - "sheet_y": 4, - "added_in": "12.1", + "sheet_x": 20, + "sheet_y": 56, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24429,9 +25435,9 @@ "unified": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FD", "non_qualified": null, "image": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.png", - "sheet_x": 21, - "sheet_y": 5, - "added_in": "12.1", + "sheet_x": 20, + "sheet_y": 57, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24442,10 +25448,10 @@ "non_qualified": null, "image": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.png", "sheet_x": 21, - "sheet_y": 6, + "sheet_y": 0, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24454,8 +25460,8 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.png", "sheet_x": 21, - "sheet_y": 7, - "added_in": "12.1", + "sheet_y": 1, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24466,8 +25472,8 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.png", "sheet_x": 21, - "sheet_y": 8, - "added_in": "12.1", + "sheet_y": 2, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24478,8 +25484,8 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.png", "sheet_x": 21, - "sheet_y": 9, - "added_in": "12.1", + "sheet_y": 3, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24490,8 +25496,8 @@ "non_qualified": null, "image": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.png", "sheet_x": 21, - "sheet_y": 10, - "added_in": "12.1", + "sheet_y": 4, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24509,7 +25515,7 @@ "google": null, "image": "1f46d.png", "sheet_x": 21, - "sheet_y": 11, + "sheet_y": 5, "short_name": "two_women_holding_hands", "short_names": [ "two_women_holding_hands", @@ -24518,8 +25524,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 294, - "added_in": "2.0", + "subcategory": "family", + "sort_order": 457, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24530,8 +25537,8 @@ "non_qualified": null, "image": "1f46d-1f3fb.png", "sheet_x": 21, - "sheet_y": 12, - "added_in": "12.1", + "sheet_y": 6, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24542,8 +25549,8 @@ "non_qualified": null, "image": "1f46d-1f3fc.png", "sheet_x": 21, - "sheet_y": 13, - "added_in": "12.1", + "sheet_y": 7, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24554,8 +25561,8 @@ "non_qualified": null, "image": "1f46d-1f3fd.png", "sheet_x": 21, - "sheet_y": 14, - "added_in": "12.1", + "sheet_y": 8, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24566,8 +25573,8 @@ "non_qualified": null, "image": "1f46d-1f3fe.png", "sheet_x": 21, - "sheet_y": 15, - "added_in": "12.1", + "sheet_y": 9, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24578,8 +25585,8 @@ "non_qualified": null, "image": "1f46d-1f3ff.png", "sheet_x": 21, - "sheet_y": 16, - "added_in": "12.1", + "sheet_y": 10, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24590,10 +25597,10 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.png", "sheet_x": 21, - "sheet_y": 17, + "sheet_y": 11, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24602,10 +25609,10 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.png", "sheet_x": 21, - "sheet_y": 18, + "sheet_y": 12, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24614,10 +25621,10 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.png", "sheet_x": 21, - "sheet_y": 19, + "sheet_y": 13, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24626,10 +25633,10 @@ "non_qualified": null, "image": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.png", "sheet_x": 21, - "sheet_y": 20, + "sheet_y": 14, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24638,8 +25645,8 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.png", "sheet_x": 21, - "sheet_y": 21, - "added_in": "12.1", + "sheet_y": 15, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24650,10 +25657,10 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.png", "sheet_x": 21, - "sheet_y": 22, + "sheet_y": 16, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24662,10 +25669,10 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.png", "sheet_x": 21, - "sheet_y": 23, + "sheet_y": 17, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24674,10 +25681,10 @@ "non_qualified": null, "image": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.png", "sheet_x": 21, - "sheet_y": 24, + "sheet_y": 18, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24686,8 +25693,8 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.png", "sheet_x": 21, - "sheet_y": 25, - "added_in": "12.1", + "sheet_y": 19, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24698,8 +25705,8 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.png", "sheet_x": 21, - "sheet_y": 26, - "added_in": "12.1", + "sheet_y": 20, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24710,10 +25717,10 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.png", "sheet_x": 21, - "sheet_y": 27, + "sheet_y": 21, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24722,10 +25729,10 @@ "non_qualified": null, "image": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.png", "sheet_x": 21, - "sheet_y": 28, + "sheet_y": 22, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24734,8 +25741,8 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.png", "sheet_x": 21, - "sheet_y": 29, - "added_in": "12.1", + "sheet_y": 23, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24746,8 +25753,8 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.png", "sheet_x": 21, - "sheet_y": 30, - "added_in": "12.1", + "sheet_y": 24, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24758,8 +25765,8 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.png", "sheet_x": 21, - "sheet_y": 31, - "added_in": "12.1", + "sheet_y": 25, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24770,10 +25777,10 @@ "non_qualified": null, "image": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.png", "sheet_x": 21, - "sheet_y": 32, + "sheet_y": 26, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -24782,8 +25789,8 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.png", "sheet_x": 21, - "sheet_y": 33, - "added_in": "12.1", + "sheet_y": 27, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24794,8 +25801,8 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.png", "sheet_x": 21, - "sheet_y": 34, - "added_in": "12.1", + "sheet_y": 28, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24806,8 +25813,8 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.png", "sheet_x": 21, - "sheet_y": 35, - "added_in": "12.1", + "sheet_y": 29, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24818,8 +25825,8 @@ "non_qualified": null, "image": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.png", "sheet_x": 21, - "sheet_y": 36, - "added_in": "12.1", + "sheet_y": 30, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -24828,7 +25835,7 @@ } }, { - "name": null, + "name": "WOMAN POLICE OFFICER", "unified": "1F46E-200D-2640-FE0F", "non_qualified": "1F46E-200D-2640", "docomo": null, @@ -24837,7 +25844,7 @@ "google": null, "image": "1f46e-200d-2640-fe0f.png", "sheet_x": 21, - "sheet_y": 37, + "sheet_y": 31, "short_name": "female-police-officer", "short_names": [ "female-police-officer" @@ -24845,7 +25852,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 155, + "subcategory": "person-role", + "sort_order": 309, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -24857,7 +25865,7 @@ "non_qualified": "1F46E-1F3FB-200D-2640", "image": "1f46e-1f3fb-200d-2640-fe0f.png", "sheet_x": 21, - "sheet_y": 38, + "sheet_y": 32, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -24869,7 +25877,7 @@ "non_qualified": "1F46E-1F3FC-200D-2640", "image": "1f46e-1f3fc-200d-2640-fe0f.png", "sheet_x": 21, - "sheet_y": 39, + "sheet_y": 33, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -24881,7 +25889,7 @@ "non_qualified": "1F46E-1F3FD-200D-2640", "image": "1f46e-1f3fd-200d-2640-fe0f.png", "sheet_x": 21, - "sheet_y": 40, + "sheet_y": 34, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -24893,7 +25901,7 @@ "non_qualified": "1F46E-1F3FE-200D-2640", "image": "1f46e-1f3fe-200d-2640-fe0f.png", "sheet_x": 21, - "sheet_y": 41, + "sheet_y": 35, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -24905,7 +25913,7 @@ "non_qualified": "1F46E-1F3FF-200D-2640", "image": "1f46e-1f3ff-200d-2640-fe0f.png", "sheet_x": 21, - "sheet_y": 42, + "sheet_y": 36, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -24915,7 +25923,7 @@ } }, { - "name": null, + "name": "MAN POLICE OFFICER", "unified": "1F46E-200D-2642-FE0F", "non_qualified": "1F46E-200D-2642", "docomo": null, @@ -24924,7 +25932,7 @@ "google": null, "image": "1f46e-200d-2642-fe0f.png", "sheet_x": 21, - "sheet_y": 43, + "sheet_y": 37, "short_name": "male-police-officer", "short_names": [ "male-police-officer" @@ -24932,7 +25940,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 154, + "subcategory": "person-role", + "sort_order": 308, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -24944,7 +25953,7 @@ "non_qualified": "1F46E-1F3FB-200D-2642", "image": "1f46e-1f3fb-200d-2642-fe0f.png", "sheet_x": 21, - "sheet_y": 44, + "sheet_y": 38, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -24956,7 +25965,7 @@ "non_qualified": "1F46E-1F3FC-200D-2642", "image": "1f46e-1f3fc-200d-2642-fe0f.png", "sheet_x": 21, - "sheet_y": 45, + "sheet_y": 39, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -24968,7 +25977,7 @@ "non_qualified": "1F46E-1F3FD-200D-2642", "image": "1f46e-1f3fd-200d-2642-fe0f.png", "sheet_x": 21, - "sheet_y": 46, + "sheet_y": 40, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -24980,7 +25989,7 @@ "non_qualified": "1F46E-1F3FE-200D-2642", "image": "1f46e-1f3fe-200d-2642-fe0f.png", "sheet_x": 21, - "sheet_y": 47, + "sheet_y": 41, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -24992,7 +26001,7 @@ "non_qualified": "1F46E-1F3FF-200D-2642", "image": "1f46e-1f3ff-200d-2642-fe0f.png", "sheet_x": 21, - "sheet_y": 48, + "sheet_y": 42, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25012,7 +26021,7 @@ "google": "FE1A1", "image": "1f46e.png", "sheet_x": 21, - "sheet_y": 49, + "sheet_y": 43, "short_name": "cop", "short_names": [ "cop" @@ -25020,78 +26029,79 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 153, - "added_in": "2.0", + "subcategory": "person-role", + "sort_order": 307, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F46E-1F3FB", "non_qualified": null, "image": "1f46e-1f3fb.png", "sheet_x": 21, - "sheet_y": 50, - "added_in": "2.0", + "sheet_y": 44, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F46E-1F3FC", "non_qualified": null, "image": "1f46e-1f3fc.png", "sheet_x": 21, - "sheet_y": 51, - "added_in": "2.0", + "sheet_y": 45, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F46E-1F3FD", "non_qualified": null, "image": "1f46e-1f3fd.png", "sheet_x": 21, - "sheet_y": 52, - "added_in": "2.0", + "sheet_y": 46, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F46E-1F3FE", "non_qualified": null, "image": "1f46e-1f3fe.png", "sheet_x": 21, - "sheet_y": 53, - "added_in": "2.0", + "sheet_y": 47, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F46E-1F3FF", "non_qualified": null, "image": "1f46e-1f3ff.png", "sheet_x": 21, - "sheet_y": 54, - "added_in": "2.0", + "sheet_y": 48, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F46E-200D-2642-FE0F" }, { - "name": null, + "name": "WOMEN WITH BUNNY EARS", "unified": "1F46F-200D-2640-FE0F", "non_qualified": "1F46F-200D-2640", "docomo": null, @@ -25100,7 +26110,7 @@ "google": null, "image": "1f46f-200d-2640-fe0f.png", "sheet_x": 21, - "sheet_y": 55, + "sheet_y": 49, "short_name": "woman-with-bunny-ears-partying", "short_names": [ "woman-with-bunny-ears-partying" @@ -25108,7 +26118,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 238, + "subcategory": "person-activity", + "sort_order": 401, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25117,7 +26128,7 @@ "obsoletes": "1F46F" }, { - "name": null, + "name": "MEN WITH BUNNY EARS", "unified": "1F46F-200D-2642-FE0F", "non_qualified": "1F46F-200D-2642", "docomo": null, @@ -25126,7 +26137,7 @@ "google": null, "image": "1f46f-200d-2642-fe0f.png", "sheet_x": 21, - "sheet_y": 56, + "sheet_y": 50, "short_name": "man-with-bunny-ears-partying", "short_names": [ "man-with-bunny-ears-partying" @@ -25134,7 +26145,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 237, + "subcategory": "person-activity", + "sort_order": 400, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25150,8 +26162,8 @@ "softbank": "E429", "google": "FE1A2", "image": "1f46f.png", - "sheet_x": 22, - "sheet_y": 0, + "sheet_x": 21, + "sheet_y": 51, "short_name": "dancers", "short_names": [ "dancers" @@ -25159,14 +26171,191 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 236, - "added_in": "2.0", + "subcategory": "person-activity", + "sort_order": 399, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, "obsoleted_by": "1F46F-200D-2640-FE0F" }, + { + "name": "WOMAN WITH VEIL", + "unified": "1F470-200D-2640-FE0F", + "non_qualified": "1F470-200D-2640", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f470-200d-2640-fe0f.png", + "sheet_x": 21, + "sheet_y": 52, + "short_name": "woman_with_veil", + "short_names": [ + "woman_with_veil" + ], + "text": null, + "texts": null, + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 332, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1F470-1F3FB-200D-2640-FE0F", + "non_qualified": "1F470-1F3FB-200D-2640", + "image": "1f470-1f3fb-200d-2640-fe0f.png", + "sheet_x": 21, + "sheet_y": 53, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F470-1F3FC-200D-2640-FE0F", + "non_qualified": "1F470-1F3FC-200D-2640", + "image": "1f470-1f3fc-200d-2640-fe0f.png", + "sheet_x": 21, + "sheet_y": 54, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F470-1F3FD-200D-2640-FE0F", + "non_qualified": "1F470-1F3FD-200D-2640", + "image": "1f470-1f3fd-200d-2640-fe0f.png", + "sheet_x": 21, + "sheet_y": 55, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F470-1F3FE-200D-2640-FE0F", + "non_qualified": "1F470-1F3FE-200D-2640", + "image": "1f470-1f3fe-200d-2640-fe0f.png", + "sheet_x": 21, + "sheet_y": 56, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F470-1F3FF-200D-2640-FE0F", + "non_qualified": "1F470-1F3FF-200D-2640", + "image": "1f470-1f3ff-200d-2640-fe0f.png", + "sheet_x": 21, + "sheet_y": 57, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } + }, + { + "name": "MAN WITH VEIL", + "unified": "1F470-200D-2642-FE0F", + "non_qualified": "1F470-200D-2642", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f470-200d-2642-fe0f.png", + "sheet_x": 22, + "sheet_y": 0, + "short_name": "man_with_veil", + "short_names": [ + "man_with_veil" + ], + "text": null, + "texts": null, + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 331, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1F470-1F3FB-200D-2642-FE0F", + "non_qualified": "1F470-1F3FB-200D-2642", + "image": "1f470-1f3fb-200d-2642-fe0f.png", + "sheet_x": 22, + "sheet_y": 1, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F470-1F3FC-200D-2642-FE0F", + "non_qualified": "1F470-1F3FC-200D-2642", + "image": "1f470-1f3fc-200d-2642-fe0f.png", + "sheet_x": 22, + "sheet_y": 2, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F470-1F3FD-200D-2642-FE0F", + "non_qualified": "1F470-1F3FD-200D-2642", + "image": "1f470-1f3fd-200d-2642-fe0f.png", + "sheet_x": 22, + "sheet_y": 3, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F470-1F3FE-200D-2642-FE0F", + "non_qualified": "1F470-1F3FE-200D-2642", + "image": "1f470-1f3fe-200d-2642-fe0f.png", + "sheet_x": 22, + "sheet_y": 4, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F470-1F3FF-200D-2642-FE0F", + "non_qualified": "1F470-1F3FF-200D-2642", + "image": "1f470-1f3ff-200d-2642-fe0f.png", + "sheet_x": 22, + "sheet_y": 5, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } + }, { "name": "BRIDE WITH VEIL", "unified": "1F470", @@ -25177,7 +26366,7 @@ "google": "FE1A3", "image": "1f470.png", "sheet_x": 22, - "sheet_y": 1, + "sheet_y": 6, "short_name": "bride_with_veil", "short_names": [ "bride_with_veil" @@ -25185,8 +26374,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 173, - "added_in": "2.0", + "subcategory": "person-role", + "sort_order": 330, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25197,8 +26387,8 @@ "non_qualified": null, "image": "1f470-1f3fb.png", "sheet_x": 22, - "sheet_y": 2, - "added_in": "2.0", + "sheet_y": 7, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25209,8 +26399,8 @@ "non_qualified": null, "image": "1f470-1f3fc.png", "sheet_x": 22, - "sheet_y": 3, - "added_in": "2.0", + "sheet_y": 8, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25221,8 +26411,8 @@ "non_qualified": null, "image": "1f470-1f3fd.png", "sheet_x": 22, - "sheet_y": 4, - "added_in": "2.0", + "sheet_y": 9, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25233,8 +26423,8 @@ "non_qualified": null, "image": "1f470-1f3fe.png", "sheet_x": 22, - "sheet_y": 5, - "added_in": "2.0", + "sheet_y": 10, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25245,8 +26435,8 @@ "non_qualified": null, "image": "1f470-1f3ff.png", "sheet_x": 22, - "sheet_y": 6, - "added_in": "2.0", + "sheet_y": 11, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25255,7 +26445,7 @@ } }, { - "name": null, + "name": "WOMAN: BLOND HAIR", "unified": "1F471-200D-2640-FE0F", "non_qualified": "1F471-200D-2640", "docomo": null, @@ -25264,7 +26454,7 @@ "google": null, "image": "1f471-200d-2640-fe0f.png", "sheet_x": 22, - "sheet_y": 7, + "sheet_y": 12, "short_name": "blond-haired-woman", "short_names": [ "blond-haired-woman" @@ -25272,7 +26462,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 70, + "subcategory": "person", + "sort_order": 224, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25284,7 +26475,7 @@ "non_qualified": "1F471-1F3FB-200D-2640", "image": "1f471-1f3fb-200d-2640-fe0f.png", "sheet_x": 22, - "sheet_y": 8, + "sheet_y": 13, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25296,7 +26487,7 @@ "non_qualified": "1F471-1F3FC-200D-2640", "image": "1f471-1f3fc-200d-2640-fe0f.png", "sheet_x": 22, - "sheet_y": 9, + "sheet_y": 14, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25308,7 +26499,7 @@ "non_qualified": "1F471-1F3FD-200D-2640", "image": "1f471-1f3fd-200d-2640-fe0f.png", "sheet_x": 22, - "sheet_y": 10, + "sheet_y": 15, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25320,7 +26511,7 @@ "non_qualified": "1F471-1F3FE-200D-2640", "image": "1f471-1f3fe-200d-2640-fe0f.png", "sheet_x": 22, - "sheet_y": 11, + "sheet_y": 16, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25332,7 +26523,7 @@ "non_qualified": "1F471-1F3FF-200D-2640", "image": "1f471-1f3ff-200d-2640-fe0f.png", "sheet_x": 22, - "sheet_y": 12, + "sheet_y": 17, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25342,7 +26533,7 @@ } }, { - "name": null, + "name": "MAN: BLOND HAIR", "unified": "1F471-200D-2642-FE0F", "non_qualified": "1F471-200D-2642", "docomo": null, @@ -25351,7 +26542,7 @@ "google": null, "image": "1f471-200d-2642-fe0f.png", "sheet_x": 22, - "sheet_y": 13, + "sheet_y": 18, "short_name": "blond-haired-man", "short_names": [ "blond-haired-man" @@ -25359,7 +26550,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 71, + "subcategory": "person", + "sort_order": 225, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25371,7 +26563,7 @@ "non_qualified": "1F471-1F3FB-200D-2642", "image": "1f471-1f3fb-200d-2642-fe0f.png", "sheet_x": 22, - "sheet_y": 14, + "sheet_y": 19, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25383,7 +26575,7 @@ "non_qualified": "1F471-1F3FC-200D-2642", "image": "1f471-1f3fc-200d-2642-fe0f.png", "sheet_x": 22, - "sheet_y": 15, + "sheet_y": 20, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25395,7 +26587,7 @@ "non_qualified": "1F471-1F3FD-200D-2642", "image": "1f471-1f3fd-200d-2642-fe0f.png", "sheet_x": 22, - "sheet_y": 16, + "sheet_y": 21, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25407,7 +26599,7 @@ "non_qualified": "1F471-1F3FE-200D-2642", "image": "1f471-1f3fe-200d-2642-fe0f.png", "sheet_x": 22, - "sheet_y": 17, + "sheet_y": 22, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25419,7 +26611,7 @@ "non_qualified": "1F471-1F3FF-200D-2642", "image": "1f471-1f3ff-200d-2642-fe0f.png", "sheet_x": 22, - "sheet_y": 18, + "sheet_y": 23, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25439,7 +26631,7 @@ "google": "FE1A4", "image": "1f471.png", "sheet_x": 22, - "sheet_y": 19, + "sheet_y": 24, "short_name": "person_with_blond_hair", "short_names": [ "person_with_blond_hair" @@ -25447,72 +26639,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 54, - "added_in": "2.0", + "subcategory": "person", + "sort_order": 208, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F471-1F3FB", "non_qualified": null, "image": "1f471-1f3fb.png", "sheet_x": 22, - "sheet_y": 20, - "added_in": "2.0", + "sheet_y": 25, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F471-1F3FC", "non_qualified": null, "image": "1f471-1f3fc.png", "sheet_x": 22, - "sheet_y": 21, - "added_in": "2.0", + "sheet_y": 26, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F471-1F3FD", "non_qualified": null, "image": "1f471-1f3fd.png", "sheet_x": 22, - "sheet_y": 22, - "added_in": "2.0", + "sheet_y": 27, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F471-1F3FE", "non_qualified": null, "image": "1f471-1f3fe.png", "sheet_x": 22, - "sheet_y": 23, - "added_in": "2.0", + "sheet_y": 28, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F471-1F3FF", "non_qualified": null, "image": "1f471-1f3ff.png", "sheet_x": 22, - "sheet_y": 24, - "added_in": "2.0", + "sheet_y": 29, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F471-200D-2642-FE0F" @@ -25527,7 +26720,7 @@ "google": "FE1A5", "image": "1f472.png", "sheet_x": 22, - "sheet_y": 25, + "sheet_y": 30, "short_name": "man_with_gua_pi_mao", "short_names": [ "man_with_gua_pi_mao" @@ -25535,8 +26728,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 170, - "added_in": "2.0", + "subcategory": "person-role", + "sort_order": 325, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25547,8 +26741,8 @@ "non_qualified": null, "image": "1f472-1f3fb.png", "sheet_x": 22, - "sheet_y": 26, - "added_in": "2.0", + "sheet_y": 31, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25559,8 +26753,8 @@ "non_qualified": null, "image": "1f472-1f3fc.png", "sheet_x": 22, - "sheet_y": 27, - "added_in": "2.0", + "sheet_y": 32, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25571,8 +26765,8 @@ "non_qualified": null, "image": "1f472-1f3fd.png", "sheet_x": 22, - "sheet_y": 28, - "added_in": "2.0", + "sheet_y": 33, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25583,8 +26777,8 @@ "non_qualified": null, "image": "1f472-1f3fe.png", "sheet_x": 22, - "sheet_y": 29, - "added_in": "2.0", + "sheet_y": 34, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25595,8 +26789,8 @@ "non_qualified": null, "image": "1f472-1f3ff.png", "sheet_x": 22, - "sheet_y": 30, - "added_in": "2.0", + "sheet_y": 35, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25605,7 +26799,7 @@ } }, { - "name": null, + "name": "WOMAN WEARING TURBAN", "unified": "1F473-200D-2640-FE0F", "non_qualified": "1F473-200D-2640", "docomo": null, @@ -25614,7 +26808,7 @@ "google": null, "image": "1f473-200d-2640-fe0f.png", "sheet_x": 22, - "sheet_y": 31, + "sheet_y": 36, "short_name": "woman-wearing-turban", "short_names": [ "woman-wearing-turban" @@ -25622,7 +26816,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 169, + "subcategory": "person-role", + "sort_order": 324, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25634,7 +26829,7 @@ "non_qualified": "1F473-1F3FB-200D-2640", "image": "1f473-1f3fb-200d-2640-fe0f.png", "sheet_x": 22, - "sheet_y": 32, + "sheet_y": 37, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25646,7 +26841,7 @@ "non_qualified": "1F473-1F3FC-200D-2640", "image": "1f473-1f3fc-200d-2640-fe0f.png", "sheet_x": 22, - "sheet_y": 33, + "sheet_y": 38, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25658,7 +26853,7 @@ "non_qualified": "1F473-1F3FD-200D-2640", "image": "1f473-1f3fd-200d-2640-fe0f.png", "sheet_x": 22, - "sheet_y": 34, + "sheet_y": 39, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25670,7 +26865,7 @@ "non_qualified": "1F473-1F3FE-200D-2640", "image": "1f473-1f3fe-200d-2640-fe0f.png", "sheet_x": 22, - "sheet_y": 35, + "sheet_y": 40, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25682,7 +26877,7 @@ "non_qualified": "1F473-1F3FF-200D-2640", "image": "1f473-1f3ff-200d-2640-fe0f.png", "sheet_x": 22, - "sheet_y": 36, + "sheet_y": 41, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25692,7 +26887,7 @@ } }, { - "name": null, + "name": "MAN WEARING TURBAN", "unified": "1F473-200D-2642-FE0F", "non_qualified": "1F473-200D-2642", "docomo": null, @@ -25701,7 +26896,7 @@ "google": null, "image": "1f473-200d-2642-fe0f.png", "sheet_x": 22, - "sheet_y": 37, + "sheet_y": 42, "short_name": "man-wearing-turban", "short_names": [ "man-wearing-turban" @@ -25709,7 +26904,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 168, + "subcategory": "person-role", + "sort_order": 323, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25721,7 +26917,7 @@ "non_qualified": "1F473-1F3FB-200D-2642", "image": "1f473-1f3fb-200d-2642-fe0f.png", "sheet_x": 22, - "sheet_y": 38, + "sheet_y": 43, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25733,7 +26929,7 @@ "non_qualified": "1F473-1F3FC-200D-2642", "image": "1f473-1f3fc-200d-2642-fe0f.png", "sheet_x": 22, - "sheet_y": 39, + "sheet_y": 44, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25745,7 +26941,7 @@ "non_qualified": "1F473-1F3FD-200D-2642", "image": "1f473-1f3fd-200d-2642-fe0f.png", "sheet_x": 22, - "sheet_y": 40, + "sheet_y": 45, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25757,7 +26953,7 @@ "non_qualified": "1F473-1F3FE-200D-2642", "image": "1f473-1f3fe-200d-2642-fe0f.png", "sheet_x": 22, - "sheet_y": 41, + "sheet_y": 46, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25769,7 +26965,7 @@ "non_qualified": "1F473-1F3FF-200D-2642", "image": "1f473-1f3ff-200d-2642-fe0f.png", "sheet_x": 22, - "sheet_y": 42, + "sheet_y": 47, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -25789,7 +26985,7 @@ "google": "FE1A6", "image": "1f473.png", "sheet_x": 22, - "sheet_y": 43, + "sheet_y": 48, "short_name": "man_with_turban", "short_names": [ "man_with_turban" @@ -25797,72 +26993,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 167, - "added_in": "2.0", + "subcategory": "person-role", + "sort_order": 322, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F473-1F3FB", "non_qualified": null, "image": "1f473-1f3fb.png", "sheet_x": 22, - "sheet_y": 44, - "added_in": "2.0", + "sheet_y": 49, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F473-1F3FC", "non_qualified": null, "image": "1f473-1f3fc.png", "sheet_x": 22, - "sheet_y": 45, - "added_in": "2.0", + "sheet_y": 50, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F473-1F3FD", "non_qualified": null, "image": "1f473-1f3fd.png", "sheet_x": 22, - "sheet_y": 46, - "added_in": "2.0", + "sheet_y": 51, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F473-1F3FE", "non_qualified": null, "image": "1f473-1f3fe.png", "sheet_x": 22, - "sheet_y": 47, - "added_in": "2.0", + "sheet_y": 52, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F473-1F3FF", "non_qualified": null, "image": "1f473-1f3ff.png", "sheet_x": 22, - "sheet_y": 48, - "added_in": "2.0", + "sheet_y": 53, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F473-200D-2642-FE0F" @@ -25877,7 +27074,7 @@ "google": "FE1A7", "image": "1f474.png", "sheet_x": 22, - "sheet_y": 49, + "sheet_y": 54, "short_name": "older_man", "short_names": [ "older_man" @@ -25885,8 +27082,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 73, - "added_in": "2.0", + "subcategory": "person", + "sort_order": 227, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25897,8 +27095,8 @@ "non_qualified": null, "image": "1f474-1f3fb.png", "sheet_x": 22, - "sheet_y": 50, - "added_in": "2.0", + "sheet_y": 55, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25909,8 +27107,8 @@ "non_qualified": null, "image": "1f474-1f3fc.png", "sheet_x": 22, - "sheet_y": 51, - "added_in": "2.0", + "sheet_y": 56, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25921,8 +27119,8 @@ "non_qualified": null, "image": "1f474-1f3fd.png", "sheet_x": 22, - "sheet_y": 52, - "added_in": "2.0", + "sheet_y": 57, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25932,9 +27130,9 @@ "unified": "1F474-1F3FE", "non_qualified": null, "image": "1f474-1f3fe.png", - "sheet_x": 22, - "sheet_y": 53, - "added_in": "2.0", + "sheet_x": 23, + "sheet_y": 0, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25944,9 +27142,9 @@ "unified": "1F474-1F3FF", "non_qualified": null, "image": "1f474-1f3ff.png", - "sheet_x": 22, - "sheet_y": 54, - "added_in": "2.0", + "sheet_x": 23, + "sheet_y": 1, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25963,8 +27161,8 @@ "softbank": "E519", "google": "FE1A8", "image": "1f475.png", - "sheet_x": 22, - "sheet_y": 55, + "sheet_x": 23, + "sheet_y": 2, "short_name": "older_woman", "short_names": [ "older_woman" @@ -25972,8 +27170,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 74, - "added_in": "2.0", + "subcategory": "person", + "sort_order": 228, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25983,9 +27182,9 @@ "unified": "1F475-1F3FB", "non_qualified": null, "image": "1f475-1f3fb.png", - "sheet_x": 22, - "sheet_y": 56, - "added_in": "2.0", + "sheet_x": 23, + "sheet_y": 3, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -25996,8 +27195,8 @@ "non_qualified": null, "image": "1f475-1f3fc.png", "sheet_x": 23, - "sheet_y": 0, - "added_in": "2.0", + "sheet_y": 4, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26008,8 +27207,8 @@ "non_qualified": null, "image": "1f475-1f3fd.png", "sheet_x": 23, - "sheet_y": 1, - "added_in": "2.0", + "sheet_y": 5, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26020,8 +27219,8 @@ "non_qualified": null, "image": "1f475-1f3fe.png", "sheet_x": 23, - "sheet_y": 2, - "added_in": "2.0", + "sheet_y": 6, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26032,8 +27231,8 @@ "non_qualified": null, "image": "1f475-1f3ff.png", "sheet_x": 23, - "sheet_y": 3, - "added_in": "2.0", + "sheet_y": 7, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26051,7 +27250,7 @@ "google": "FE1A9", "image": "1f476.png", "sheet_x": 23, - "sheet_y": 4, + "sheet_y": 8, "short_name": "baby", "short_names": [ "baby" @@ -26059,8 +27258,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 49, - "added_in": "2.0", + "subcategory": "person", + "sort_order": 203, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26071,8 +27271,8 @@ "non_qualified": null, "image": "1f476-1f3fb.png", "sheet_x": 23, - "sheet_y": 5, - "added_in": "2.0", + "sheet_y": 9, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26083,8 +27283,8 @@ "non_qualified": null, "image": "1f476-1f3fc.png", "sheet_x": 23, - "sheet_y": 6, - "added_in": "2.0", + "sheet_y": 10, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26095,8 +27295,8 @@ "non_qualified": null, "image": "1f476-1f3fd.png", "sheet_x": 23, - "sheet_y": 7, - "added_in": "2.0", + "sheet_y": 11, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26107,8 +27307,8 @@ "non_qualified": null, "image": "1f476-1f3fe.png", "sheet_x": 23, - "sheet_y": 8, - "added_in": "2.0", + "sheet_y": 12, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26119,8 +27319,8 @@ "non_qualified": null, "image": "1f476-1f3ff.png", "sheet_x": 23, - "sheet_y": 9, - "added_in": "2.0", + "sheet_y": 13, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26129,7 +27329,7 @@ } }, { - "name": null, + "name": "WOMAN CONSTRUCTION WORKER", "unified": "1F477-200D-2640-FE0F", "non_qualified": "1F477-200D-2640", "docomo": null, @@ -26138,7 +27338,7 @@ "google": null, "image": "1f477-200d-2640-fe0f.png", "sheet_x": 23, - "sheet_y": 10, + "sheet_y": 14, "short_name": "female-construction-worker", "short_names": [ "female-construction-worker" @@ -26146,7 +27346,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 164, + "subcategory": "person-role", + "sort_order": 319, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26158,7 +27359,7 @@ "non_qualified": "1F477-1F3FB-200D-2640", "image": "1f477-1f3fb-200d-2640-fe0f.png", "sheet_x": 23, - "sheet_y": 11, + "sheet_y": 15, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26170,7 +27371,7 @@ "non_qualified": "1F477-1F3FC-200D-2640", "image": "1f477-1f3fc-200d-2640-fe0f.png", "sheet_x": 23, - "sheet_y": 12, + "sheet_y": 16, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26182,7 +27383,7 @@ "non_qualified": "1F477-1F3FD-200D-2640", "image": "1f477-1f3fd-200d-2640-fe0f.png", "sheet_x": 23, - "sheet_y": 13, + "sheet_y": 17, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26194,7 +27395,7 @@ "non_qualified": "1F477-1F3FE-200D-2640", "image": "1f477-1f3fe-200d-2640-fe0f.png", "sheet_x": 23, - "sheet_y": 14, + "sheet_y": 18, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26206,7 +27407,7 @@ "non_qualified": "1F477-1F3FF-200D-2640", "image": "1f477-1f3ff-200d-2640-fe0f.png", "sheet_x": 23, - "sheet_y": 15, + "sheet_y": 19, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26216,7 +27417,7 @@ } }, { - "name": null, + "name": "MAN CONSTRUCTION WORKER", "unified": "1F477-200D-2642-FE0F", "non_qualified": "1F477-200D-2642", "docomo": null, @@ -26225,7 +27426,7 @@ "google": null, "image": "1f477-200d-2642-fe0f.png", "sheet_x": 23, - "sheet_y": 16, + "sheet_y": 20, "short_name": "male-construction-worker", "short_names": [ "male-construction-worker" @@ -26233,7 +27434,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 163, + "subcategory": "person-role", + "sort_order": 318, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26245,7 +27447,7 @@ "non_qualified": "1F477-1F3FB-200D-2642", "image": "1f477-1f3fb-200d-2642-fe0f.png", "sheet_x": 23, - "sheet_y": 17, + "sheet_y": 21, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26257,7 +27459,7 @@ "non_qualified": "1F477-1F3FC-200D-2642", "image": "1f477-1f3fc-200d-2642-fe0f.png", "sheet_x": 23, - "sheet_y": 18, + "sheet_y": 22, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26269,7 +27471,7 @@ "non_qualified": "1F477-1F3FD-200D-2642", "image": "1f477-1f3fd-200d-2642-fe0f.png", "sheet_x": 23, - "sheet_y": 19, + "sheet_y": 23, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26281,7 +27483,7 @@ "non_qualified": "1F477-1F3FE-200D-2642", "image": "1f477-1f3fe-200d-2642-fe0f.png", "sheet_x": 23, - "sheet_y": 20, + "sheet_y": 24, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26293,7 +27495,7 @@ "non_qualified": "1F477-1F3FF-200D-2642", "image": "1f477-1f3ff-200d-2642-fe0f.png", "sheet_x": 23, - "sheet_y": 21, + "sheet_y": 25, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26313,7 +27515,7 @@ "google": "FE1AA", "image": "1f477.png", "sheet_x": 23, - "sheet_y": 22, + "sheet_y": 26, "short_name": "construction_worker", "short_names": [ "construction_worker" @@ -26321,72 +27523,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 162, - "added_in": "2.0", + "subcategory": "person-role", + "sort_order": 317, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F477-1F3FB", "non_qualified": null, "image": "1f477-1f3fb.png", "sheet_x": 23, - "sheet_y": 23, - "added_in": "2.0", + "sheet_y": 27, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F477-1F3FC", "non_qualified": null, "image": "1f477-1f3fc.png", "sheet_x": 23, - "sheet_y": 24, - "added_in": "2.0", + "sheet_y": 28, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F477-1F3FD", "non_qualified": null, "image": "1f477-1f3fd.png", "sheet_x": 23, - "sheet_y": 25, - "added_in": "2.0", + "sheet_y": 29, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F477-1F3FE", "non_qualified": null, "image": "1f477-1f3fe.png", "sheet_x": 23, - "sheet_y": 26, - "added_in": "2.0", + "sheet_y": 30, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F477-1F3FF", "non_qualified": null, "image": "1f477-1f3ff.png", "sheet_x": 23, - "sheet_y": 27, - "added_in": "2.0", + "sheet_y": 31, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F477-200D-2642-FE0F" @@ -26401,7 +27604,7 @@ "google": "FE1AB", "image": "1f478.png", "sheet_x": 23, - "sheet_y": 28, + "sheet_y": 32, "short_name": "princess", "short_names": [ "princess" @@ -26409,8 +27612,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 166, - "added_in": "2.0", + "subcategory": "person-role", + "sort_order": 321, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26421,8 +27625,8 @@ "non_qualified": null, "image": "1f478-1f3fb.png", "sheet_x": 23, - "sheet_y": 29, - "added_in": "2.0", + "sheet_y": 33, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26433,8 +27637,8 @@ "non_qualified": null, "image": "1f478-1f3fc.png", "sheet_x": 23, - "sheet_y": 30, - "added_in": "2.0", + "sheet_y": 34, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26445,8 +27649,8 @@ "non_qualified": null, "image": "1f478-1f3fd.png", "sheet_x": 23, - "sheet_y": 31, - "added_in": "2.0", + "sheet_y": 35, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26457,8 +27661,8 @@ "non_qualified": null, "image": "1f478-1f3fe.png", "sheet_x": 23, - "sheet_y": 32, - "added_in": "2.0", + "sheet_y": 36, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26469,8 +27673,8 @@ "non_qualified": null, "image": "1f478-1f3ff.png", "sheet_x": 23, - "sheet_y": 33, - "added_in": "2.0", + "sheet_y": 37, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26488,7 +27692,7 @@ "google": "FE1AC", "image": "1f479.png", "sheet_x": 23, - "sheet_y": 34, + "sheet_y": 38, "short_name": "japanese_ogre", "short_names": [ "japanese_ogre" @@ -26496,8 +27700,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 97, - "added_in": "2.0", + "subcategory": "face-costume", + "sort_order": 99, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26513,7 +27718,7 @@ "google": "FE1AD", "image": "1f47a.png", "sheet_x": 23, - "sheet_y": 35, + "sheet_y": 39, "short_name": "japanese_goblin", "short_names": [ "japanese_goblin" @@ -26521,8 +27726,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 98, - "added_in": "2.0", + "subcategory": "face-costume", + "sort_order": 100, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26538,7 +27744,7 @@ "google": "FE1AE", "image": "1f47b.png", "sheet_x": 23, - "sheet_y": 36, + "sheet_y": 40, "short_name": "ghost", "short_names": [ "ghost" @@ -26546,8 +27752,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 99, - "added_in": "2.0", + "subcategory": "face-costume", + "sort_order": 101, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26563,7 +27770,7 @@ "google": "FE1AF", "image": "1f47c.png", "sheet_x": 23, - "sheet_y": 37, + "sheet_y": 41, "short_name": "angel", "short_names": [ "angel" @@ -26571,8 +27778,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 176, - "added_in": "2.0", + "subcategory": "person-fantasy", + "sort_order": 338, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26583,8 +27791,8 @@ "non_qualified": null, "image": "1f47c-1f3fb.png", "sheet_x": 23, - "sheet_y": 38, - "added_in": "2.0", + "sheet_y": 42, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26595,8 +27803,8 @@ "non_qualified": null, "image": "1f47c-1f3fc.png", "sheet_x": 23, - "sheet_y": 39, - "added_in": "2.0", + "sheet_y": 43, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26607,8 +27815,8 @@ "non_qualified": null, "image": "1f47c-1f3fd.png", "sheet_x": 23, - "sheet_y": 40, - "added_in": "2.0", + "sheet_y": 44, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26619,8 +27827,8 @@ "non_qualified": null, "image": "1f47c-1f3fe.png", "sheet_x": 23, - "sheet_y": 41, - "added_in": "2.0", + "sheet_y": 45, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26631,8 +27839,8 @@ "non_qualified": null, "image": "1f47c-1f3ff.png", "sheet_x": 23, - "sheet_y": 42, - "added_in": "2.0", + "sheet_y": 46, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26650,7 +27858,7 @@ "google": "FE1B0", "image": "1f47d.png", "sheet_x": 23, - "sheet_y": 43, + "sheet_y": 47, "short_name": "alien", "short_names": [ "alien" @@ -26658,8 +27866,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 100, - "added_in": "2.0", + "subcategory": "face-costume", + "sort_order": 102, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26675,7 +27884,7 @@ "google": "FE1B1", "image": "1f47e.png", "sheet_x": 23, - "sheet_y": 44, + "sheet_y": 48, "short_name": "space_invader", "short_names": [ "space_invader" @@ -26683,8 +27892,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 101, - "added_in": "2.0", + "subcategory": "face-costume", + "sort_order": 103, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26700,7 +27910,7 @@ "google": "FE1B2", "image": "1f47f.png", "sheet_x": 23, - "sheet_y": 45, + "sheet_y": 49, "short_name": "imp", "short_names": [ "imp" @@ -26708,8 +27918,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 92, - "added_in": "2.0", + "subcategory": "face-negative", + "sort_order": 94, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -26725,7 +27936,7 @@ "google": "FE1B3", "image": "1f480.png", "sheet_x": 23, - "sheet_y": 46, + "sheet_y": 50, "short_name": "skull", "short_names": [ "skull" @@ -26733,15 +27944,16 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 93, - "added_in": "2.0", + "subcategory": "face-negative", + "sort_order": 95, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WOMAN TIPPING HAND", "unified": "1F481-200D-2640-FE0F", "non_qualified": "1F481-200D-2640", "docomo": null, @@ -26750,7 +27962,7 @@ "google": null, "image": "1f481-200d-2640-fe0f.png", "sheet_x": 23, - "sheet_y": 47, + "sheet_y": 51, "short_name": "woman-tipping-hand", "short_names": [ "woman-tipping-hand" @@ -26758,7 +27970,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 89, + "subcategory": "person-gesture", + "sort_order": 243, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26770,7 +27983,7 @@ "non_qualified": "1F481-1F3FB-200D-2640", "image": "1f481-1f3fb-200d-2640-fe0f.png", "sheet_x": 23, - "sheet_y": 48, + "sheet_y": 52, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26782,7 +27995,7 @@ "non_qualified": "1F481-1F3FC-200D-2640", "image": "1f481-1f3fc-200d-2640-fe0f.png", "sheet_x": 23, - "sheet_y": 49, + "sheet_y": 53, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26794,7 +28007,7 @@ "non_qualified": "1F481-1F3FD-200D-2640", "image": "1f481-1f3fd-200d-2640-fe0f.png", "sheet_x": 23, - "sheet_y": 50, + "sheet_y": 54, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26806,7 +28019,7 @@ "non_qualified": "1F481-1F3FE-200D-2640", "image": "1f481-1f3fe-200d-2640-fe0f.png", "sheet_x": 23, - "sheet_y": 51, + "sheet_y": 55, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26818,7 +28031,7 @@ "non_qualified": "1F481-1F3FF-200D-2640", "image": "1f481-1f3ff-200d-2640-fe0f.png", "sheet_x": 23, - "sheet_y": 52, + "sheet_y": 56, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26829,7 +28042,7 @@ "obsoletes": "1F481" }, { - "name": null, + "name": "MAN TIPPING HAND", "unified": "1F481-200D-2642-FE0F", "non_qualified": "1F481-200D-2642", "docomo": null, @@ -26838,7 +28051,7 @@ "google": null, "image": "1f481-200d-2642-fe0f.png", "sheet_x": 23, - "sheet_y": 53, + "sheet_y": 57, "short_name": "man-tipping-hand", "short_names": [ "man-tipping-hand" @@ -26846,7 +28059,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 88, + "subcategory": "person-gesture", + "sort_order": 242, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26857,8 +28071,8 @@ "unified": "1F481-1F3FB-200D-2642-FE0F", "non_qualified": "1F481-1F3FB-200D-2642", "image": "1f481-1f3fb-200d-2642-fe0f.png", - "sheet_x": 23, - "sheet_y": 54, + "sheet_x": 24, + "sheet_y": 0, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26869,8 +28083,8 @@ "unified": "1F481-1F3FC-200D-2642-FE0F", "non_qualified": "1F481-1F3FC-200D-2642", "image": "1f481-1f3fc-200d-2642-fe0f.png", - "sheet_x": 23, - "sheet_y": 55, + "sheet_x": 24, + "sheet_y": 1, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26881,8 +28095,8 @@ "unified": "1F481-1F3FD-200D-2642-FE0F", "non_qualified": "1F481-1F3FD-200D-2642", "image": "1f481-1f3fd-200d-2642-fe0f.png", - "sheet_x": 23, - "sheet_y": 56, + "sheet_x": 24, + "sheet_y": 2, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26894,7 +28108,7 @@ "non_qualified": "1F481-1F3FE-200D-2642", "image": "1f481-1f3fe-200d-2642-fe0f.png", "sheet_x": 24, - "sheet_y": 0, + "sheet_y": 3, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26906,7 +28120,7 @@ "non_qualified": "1F481-1F3FF-200D-2642", "image": "1f481-1f3ff-200d-2642-fe0f.png", "sheet_x": 24, - "sheet_y": 1, + "sheet_y": 4, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -26925,7 +28139,7 @@ "google": "FE1B4", "image": "1f481.png", "sheet_x": 24, - "sheet_y": 2, + "sheet_y": 5, "short_name": "information_desk_person", "short_names": [ "information_desk_person" @@ -26933,78 +28147,79 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 87, - "added_in": "2.0", + "subcategory": "person-gesture", + "sort_order": 241, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F481-1F3FB", "non_qualified": null, "image": "1f481-1f3fb.png", "sheet_x": 24, - "sheet_y": 3, - "added_in": "2.0", + "sheet_y": 6, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F481-1F3FC", "non_qualified": null, "image": "1f481-1f3fc.png", "sheet_x": 24, - "sheet_y": 4, - "added_in": "2.0", + "sheet_y": 7, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F481-1F3FD", "non_qualified": null, "image": "1f481-1f3fd.png", "sheet_x": 24, - "sheet_y": 5, - "added_in": "2.0", + "sheet_y": 8, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F481-1F3FE", "non_qualified": null, "image": "1f481-1f3fe.png", "sheet_x": 24, - "sheet_y": 6, - "added_in": "2.0", + "sheet_y": 9, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F481-1F3FF", "non_qualified": null, "image": "1f481-1f3ff.png", "sheet_x": 24, - "sheet_y": 7, - "added_in": "2.0", + "sheet_y": 10, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F481-200D-2640-FE0F" }, { - "name": null, + "name": "WOMAN GUARD", "unified": "1F482-200D-2640-FE0F", "non_qualified": "1F482-200D-2640", "docomo": null, @@ -27013,7 +28228,7 @@ "google": null, "image": "1f482-200d-2640-fe0f.png", "sheet_x": 24, - "sheet_y": 8, + "sheet_y": 11, "short_name": "female-guard", "short_names": [ "female-guard" @@ -27021,7 +28236,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 161, + "subcategory": "person-role", + "sort_order": 315, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27033,7 +28249,7 @@ "non_qualified": "1F482-1F3FB-200D-2640", "image": "1f482-1f3fb-200d-2640-fe0f.png", "sheet_x": 24, - "sheet_y": 9, + "sheet_y": 12, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27045,7 +28261,7 @@ "non_qualified": "1F482-1F3FC-200D-2640", "image": "1f482-1f3fc-200d-2640-fe0f.png", "sheet_x": 24, - "sheet_y": 10, + "sheet_y": 13, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27057,7 +28273,7 @@ "non_qualified": "1F482-1F3FD-200D-2640", "image": "1f482-1f3fd-200d-2640-fe0f.png", "sheet_x": 24, - "sheet_y": 11, + "sheet_y": 14, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27069,7 +28285,7 @@ "non_qualified": "1F482-1F3FE-200D-2640", "image": "1f482-1f3fe-200d-2640-fe0f.png", "sheet_x": 24, - "sheet_y": 12, + "sheet_y": 15, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27081,7 +28297,7 @@ "non_qualified": "1F482-1F3FF-200D-2640", "image": "1f482-1f3ff-200d-2640-fe0f.png", "sheet_x": 24, - "sheet_y": 13, + "sheet_y": 16, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27091,7 +28307,7 @@ } }, { - "name": null, + "name": "MAN GUARD", "unified": "1F482-200D-2642-FE0F", "non_qualified": "1F482-200D-2642", "docomo": null, @@ -27100,7 +28316,7 @@ "google": null, "image": "1f482-200d-2642-fe0f.png", "sheet_x": 24, - "sheet_y": 14, + "sheet_y": 17, "short_name": "male-guard", "short_names": [ "male-guard" @@ -27108,7 +28324,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 160, + "subcategory": "person-role", + "sort_order": 314, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27120,7 +28337,7 @@ "non_qualified": "1F482-1F3FB-200D-2642", "image": "1f482-1f3fb-200d-2642-fe0f.png", "sheet_x": 24, - "sheet_y": 15, + "sheet_y": 18, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27132,7 +28349,7 @@ "non_qualified": "1F482-1F3FC-200D-2642", "image": "1f482-1f3fc-200d-2642-fe0f.png", "sheet_x": 24, - "sheet_y": 16, + "sheet_y": 19, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27144,7 +28361,7 @@ "non_qualified": "1F482-1F3FD-200D-2642", "image": "1f482-1f3fd-200d-2642-fe0f.png", "sheet_x": 24, - "sheet_y": 17, + "sheet_y": 20, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27156,7 +28373,7 @@ "non_qualified": "1F482-1F3FE-200D-2642", "image": "1f482-1f3fe-200d-2642-fe0f.png", "sheet_x": 24, - "sheet_y": 18, + "sheet_y": 21, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27168,7 +28385,7 @@ "non_qualified": "1F482-1F3FF-200D-2642", "image": "1f482-1f3ff-200d-2642-fe0f.png", "sheet_x": 24, - "sheet_y": 19, + "sheet_y": 22, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27188,7 +28405,7 @@ "google": "FE1B5", "image": "1f482.png", "sheet_x": 24, - "sheet_y": 20, + "sheet_y": 23, "short_name": "guardsman", "short_names": [ "guardsman" @@ -27196,72 +28413,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 159, - "added_in": "2.0", + "subcategory": "person-role", + "sort_order": 313, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F482-1F3FB", "non_qualified": null, "image": "1f482-1f3fb.png", "sheet_x": 24, - "sheet_y": 21, - "added_in": "2.0", + "sheet_y": 24, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F482-1F3FC", "non_qualified": null, "image": "1f482-1f3fc.png", "sheet_x": 24, - "sheet_y": 22, - "added_in": "2.0", + "sheet_y": 25, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F482-1F3FD", "non_qualified": null, "image": "1f482-1f3fd.png", "sheet_x": 24, - "sheet_y": 23, - "added_in": "2.0", + "sheet_y": 26, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F482-1F3FE", "non_qualified": null, "image": "1f482-1f3fe.png", "sheet_x": 24, - "sheet_y": 24, - "added_in": "2.0", + "sheet_y": 27, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F482-1F3FF", "non_qualified": null, "image": "1f482-1f3ff.png", "sheet_x": 24, - "sheet_y": 25, - "added_in": "2.0", + "sheet_y": 28, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F482-200D-2642-FE0F" @@ -27276,7 +28494,7 @@ "google": "FE1B6", "image": "1f483.png", "sheet_x": 24, - "sheet_y": 26, + "sheet_y": 29, "short_name": "dancer", "short_names": [ "dancer" @@ -27284,8 +28502,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 233, - "added_in": "2.0", + "subcategory": "person-activity", + "sort_order": 396, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -27296,8 +28515,8 @@ "non_qualified": null, "image": "1f483-1f3fb.png", "sheet_x": 24, - "sheet_y": 27, - "added_in": "2.0", + "sheet_y": 30, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -27308,8 +28527,8 @@ "non_qualified": null, "image": "1f483-1f3fc.png", "sheet_x": 24, - "sheet_y": 28, - "added_in": "2.0", + "sheet_y": 31, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -27320,8 +28539,8 @@ "non_qualified": null, "image": "1f483-1f3fd.png", "sheet_x": 24, - "sheet_y": 29, - "added_in": "2.0", + "sheet_y": 32, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -27332,8 +28551,8 @@ "non_qualified": null, "image": "1f483-1f3fe.png", "sheet_x": 24, - "sheet_y": 30, - "added_in": "2.0", + "sheet_y": 33, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -27344,8 +28563,8 @@ "non_qualified": null, "image": "1f483-1f3ff.png", "sheet_x": 24, - "sheet_y": 31, - "added_in": "2.0", + "sheet_y": 34, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -27363,7 +28582,7 @@ "google": "FE195", "image": "1f484.png", "sheet_x": 24, - "sheet_y": 32, + "sheet_y": 35, "short_name": "lipstick", "short_names": [ "lipstick" @@ -27371,8 +28590,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 41, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1114, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -27388,7 +28608,7 @@ "google": "FE196", "image": "1f485.png", "sheet_x": 24, - "sheet_y": 33, + "sheet_y": 36, "short_name": "nail_care", "short_names": [ "nail_care" @@ -27396,8 +28616,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 32, - "added_in": "2.0", + "subcategory": "hand-prop", + "sort_order": 184, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -27408,8 +28629,8 @@ "non_qualified": null, "image": "1f485-1f3fb.png", "sheet_x": 24, - "sheet_y": 34, - "added_in": "2.0", + "sheet_y": 37, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -27420,8 +28641,8 @@ "non_qualified": null, "image": "1f485-1f3fc.png", "sheet_x": 24, - "sheet_y": 35, - "added_in": "2.0", + "sheet_y": 38, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -27432,8 +28653,8 @@ "non_qualified": null, "image": "1f485-1f3fd.png", "sheet_x": 24, - "sheet_y": 36, - "added_in": "2.0", + "sheet_y": 39, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -27444,8 +28665,8 @@ "non_qualified": null, "image": "1f485-1f3fe.png", "sheet_x": 24, - "sheet_y": 37, - "added_in": "2.0", + "sheet_y": 40, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -27456,8 +28677,8 @@ "non_qualified": null, "image": "1f485-1f3ff.png", "sheet_x": 24, - "sheet_y": 38, - "added_in": "2.0", + "sheet_y": 41, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -27466,7 +28687,7 @@ } }, { - "name": null, + "name": "WOMAN GETTING MASSAGE", "unified": "1F486-200D-2640-FE0F", "non_qualified": "1F486-200D-2640", "docomo": null, @@ -27475,7 +28696,7 @@ "google": null, "image": "1f486-200d-2640-fe0f.png", "sheet_x": 24, - "sheet_y": 39, + "sheet_y": 42, "short_name": "woman-getting-massage", "short_names": [ "woman-getting-massage" @@ -27483,7 +28704,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 208, + "subcategory": "person-activity", + "sort_order": 371, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27495,7 +28717,7 @@ "non_qualified": "1F486-1F3FB-200D-2640", "image": "1f486-1f3fb-200d-2640-fe0f.png", "sheet_x": 24, - "sheet_y": 40, + "sheet_y": 43, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27507,7 +28729,7 @@ "non_qualified": "1F486-1F3FC-200D-2640", "image": "1f486-1f3fc-200d-2640-fe0f.png", "sheet_x": 24, - "sheet_y": 41, + "sheet_y": 44, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27519,7 +28741,7 @@ "non_qualified": "1F486-1F3FD-200D-2640", "image": "1f486-1f3fd-200d-2640-fe0f.png", "sheet_x": 24, - "sheet_y": 42, + "sheet_y": 45, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27531,7 +28753,7 @@ "non_qualified": "1F486-1F3FE-200D-2640", "image": "1f486-1f3fe-200d-2640-fe0f.png", "sheet_x": 24, - "sheet_y": 43, + "sheet_y": 46, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27543,7 +28765,7 @@ "non_qualified": "1F486-1F3FF-200D-2640", "image": "1f486-1f3ff-200d-2640-fe0f.png", "sheet_x": 24, - "sheet_y": 44, + "sheet_y": 47, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27554,7 +28776,7 @@ "obsoletes": "1F486" }, { - "name": null, + "name": "MAN GETTING MASSAGE", "unified": "1F486-200D-2642-FE0F", "non_qualified": "1F486-200D-2642", "docomo": null, @@ -27563,7 +28785,7 @@ "google": null, "image": "1f486-200d-2642-fe0f.png", "sheet_x": 24, - "sheet_y": 45, + "sheet_y": 48, "short_name": "man-getting-massage", "short_names": [ "man-getting-massage" @@ -27571,7 +28793,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 207, + "subcategory": "person-activity", + "sort_order": 370, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27583,7 +28806,7 @@ "non_qualified": "1F486-1F3FB-200D-2642", "image": "1f486-1f3fb-200d-2642-fe0f.png", "sheet_x": 24, - "sheet_y": 46, + "sheet_y": 49, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27595,7 +28818,7 @@ "non_qualified": "1F486-1F3FC-200D-2642", "image": "1f486-1f3fc-200d-2642-fe0f.png", "sheet_x": 24, - "sheet_y": 47, + "sheet_y": 50, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27607,7 +28830,7 @@ "non_qualified": "1F486-1F3FD-200D-2642", "image": "1f486-1f3fd-200d-2642-fe0f.png", "sheet_x": 24, - "sheet_y": 48, + "sheet_y": 51, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27619,7 +28842,7 @@ "non_qualified": "1F486-1F3FE-200D-2642", "image": "1f486-1f3fe-200d-2642-fe0f.png", "sheet_x": 24, - "sheet_y": 49, + "sheet_y": 52, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27631,7 +28854,7 @@ "non_qualified": "1F486-1F3FF-200D-2642", "image": "1f486-1f3ff-200d-2642-fe0f.png", "sheet_x": 24, - "sheet_y": 50, + "sheet_y": 53, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27650,7 +28873,7 @@ "google": "FE197", "image": "1f486.png", "sheet_x": 24, - "sheet_y": 51, + "sheet_y": 54, "short_name": "massage", "short_names": [ "massage" @@ -27658,78 +28881,79 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 206, - "added_in": "2.0", + "subcategory": "person-activity", + "sort_order": 369, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F486-1F3FB", "non_qualified": null, "image": "1f486-1f3fb.png", "sheet_x": 24, - "sheet_y": 52, - "added_in": "2.0", + "sheet_y": 55, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F486-1F3FC", "non_qualified": null, "image": "1f486-1f3fc.png", "sheet_x": 24, - "sheet_y": 53, - "added_in": "2.0", + "sheet_y": 56, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F486-1F3FD", "non_qualified": null, "image": "1f486-1f3fd.png", "sheet_x": 24, - "sheet_y": 54, - "added_in": "2.0", + "sheet_y": 57, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F486-1F3FE", "non_qualified": null, "image": "1f486-1f3fe.png", - "sheet_x": 24, - "sheet_y": 55, - "added_in": "2.0", + "sheet_x": 25, + "sheet_y": 0, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F486-1F3FF", "non_qualified": null, "image": "1f486-1f3ff.png", - "sheet_x": 24, - "sheet_y": 56, - "added_in": "2.0", + "sheet_x": 25, + "sheet_y": 1, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F486-200D-2640-FE0F" }, { - "name": null, + "name": "WOMAN GETTING HAIRCUT", "unified": "1F487-200D-2640-FE0F", "non_qualified": "1F487-200D-2640", "docomo": null, @@ -27738,7 +28962,7 @@ "google": null, "image": "1f487-200d-2640-fe0f.png", "sheet_x": 25, - "sheet_y": 0, + "sheet_y": 2, "short_name": "woman-getting-haircut", "short_names": [ "woman-getting-haircut" @@ -27746,7 +28970,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 211, + "subcategory": "person-activity", + "sort_order": 374, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27758,7 +28983,7 @@ "non_qualified": "1F487-1F3FB-200D-2640", "image": "1f487-1f3fb-200d-2640-fe0f.png", "sheet_x": 25, - "sheet_y": 1, + "sheet_y": 3, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27770,7 +28995,7 @@ "non_qualified": "1F487-1F3FC-200D-2640", "image": "1f487-1f3fc-200d-2640-fe0f.png", "sheet_x": 25, - "sheet_y": 2, + "sheet_y": 4, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27782,7 +29007,7 @@ "non_qualified": "1F487-1F3FD-200D-2640", "image": "1f487-1f3fd-200d-2640-fe0f.png", "sheet_x": 25, - "sheet_y": 3, + "sheet_y": 5, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27794,7 +29019,7 @@ "non_qualified": "1F487-1F3FE-200D-2640", "image": "1f487-1f3fe-200d-2640-fe0f.png", "sheet_x": 25, - "sheet_y": 4, + "sheet_y": 6, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27806,7 +29031,7 @@ "non_qualified": "1F487-1F3FF-200D-2640", "image": "1f487-1f3ff-200d-2640-fe0f.png", "sheet_x": 25, - "sheet_y": 5, + "sheet_y": 7, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27817,7 +29042,7 @@ "obsoletes": "1F487" }, { - "name": null, + "name": "MAN GETTING HAIRCUT", "unified": "1F487-200D-2642-FE0F", "non_qualified": "1F487-200D-2642", "docomo": null, @@ -27826,7 +29051,7 @@ "google": null, "image": "1f487-200d-2642-fe0f.png", "sheet_x": 25, - "sheet_y": 6, + "sheet_y": 8, "short_name": "man-getting-haircut", "short_names": [ "man-getting-haircut" @@ -27834,7 +29059,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 210, + "subcategory": "person-activity", + "sort_order": 373, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27846,7 +29072,7 @@ "non_qualified": "1F487-1F3FB-200D-2642", "image": "1f487-1f3fb-200d-2642-fe0f.png", "sheet_x": 25, - "sheet_y": 7, + "sheet_y": 9, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27858,7 +29084,7 @@ "non_qualified": "1F487-1F3FC-200D-2642", "image": "1f487-1f3fc-200d-2642-fe0f.png", "sheet_x": 25, - "sheet_y": 8, + "sheet_y": 10, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27870,7 +29096,7 @@ "non_qualified": "1F487-1F3FD-200D-2642", "image": "1f487-1f3fd-200d-2642-fe0f.png", "sheet_x": 25, - "sheet_y": 9, + "sheet_y": 11, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27882,7 +29108,7 @@ "non_qualified": "1F487-1F3FE-200D-2642", "image": "1f487-1f3fe-200d-2642-fe0f.png", "sheet_x": 25, - "sheet_y": 10, + "sheet_y": 12, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27894,7 +29120,7 @@ "non_qualified": "1F487-1F3FF-200D-2642", "image": "1f487-1f3ff-200d-2642-fe0f.png", "sheet_x": 25, - "sheet_y": 11, + "sheet_y": 13, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -27913,7 +29139,7 @@ "google": "FE198", "image": "1f487.png", "sheet_x": 25, - "sheet_y": 12, + "sheet_y": 14, "short_name": "haircut", "short_names": [ "haircut" @@ -27921,72 +29147,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 209, - "added_in": "2.0", + "subcategory": "person-activity", + "sort_order": 372, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F487-1F3FB", "non_qualified": null, "image": "1f487-1f3fb.png", "sheet_x": 25, - "sheet_y": 13, - "added_in": "2.0", + "sheet_y": 15, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F487-1F3FC", "non_qualified": null, "image": "1f487-1f3fc.png", "sheet_x": 25, - "sheet_y": 14, - "added_in": "2.0", + "sheet_y": 16, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F487-1F3FD", "non_qualified": null, "image": "1f487-1f3fd.png", "sheet_x": 25, - "sheet_y": 15, - "added_in": "2.0", + "sheet_y": 17, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F487-1F3FE", "non_qualified": null, "image": "1f487-1f3fe.png", "sheet_x": 25, - "sheet_y": 16, - "added_in": "2.0", + "sheet_y": 18, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F487-1F3FF", "non_qualified": null, "image": "1f487-1f3ff.png", "sheet_x": 25, - "sheet_y": 17, - "added_in": "2.0", + "sheet_y": 19, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F487-200D-2640-FE0F" @@ -28001,7 +29228,7 @@ "google": "FE199", "image": "1f488.png", "sheet_x": 25, - "sheet_y": 18, + "sheet_y": 20, "short_name": "barber", "short_names": [ "barber" @@ -28009,8 +29236,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 61, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 836, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28026,7 +29254,7 @@ "google": "FE509", "image": "1f489.png", "sheet_x": 25, - "sheet_y": 19, + "sheet_y": 21, "short_name": "syringe", "short_names": [ "syringe" @@ -28034,8 +29262,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 208, - "added_in": "2.0", + "subcategory": "medical", + "sort_order": 1287, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28051,7 +29280,7 @@ "google": "FE50A", "image": "1f48a.png", "sheet_x": 25, - "sheet_y": 20, + "sheet_y": 22, "short_name": "pill", "short_names": [ "pill" @@ -28059,8 +29288,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 210, - "added_in": "2.0", + "subcategory": "medical", + "sort_order": 1289, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28076,7 +29306,7 @@ "google": "FE823", "image": "1f48b.png", "sheet_x": 25, - "sheet_y": 21, + "sheet_y": 23, "short_name": "kiss", "short_names": [ "kiss" @@ -28084,8 +29314,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 115, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 117, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28101,7 +29332,7 @@ "google": "FE824", "image": "1f48c.png", "sheet_x": 25, - "sheet_y": 22, + "sheet_y": 24, "short_name": "love_letter", "short_names": [ "love_letter" @@ -28109,8 +29340,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 116, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 118, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28126,7 +29358,7 @@ "google": "FE825", "image": "1f48d.png", "sheet_x": 25, - "sheet_y": 23, + "sheet_y": 25, "short_name": "ring", "short_names": [ "ring" @@ -28134,8 +29366,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 42, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1115, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28151,7 +29384,7 @@ "google": "FE826", "image": "1f48e.png", "sheet_x": 25, - "sheet_y": 24, + "sheet_y": 26, "short_name": "gem", "short_names": [ "gem" @@ -28159,8 +29392,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 43, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1116, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28176,7 +29410,7 @@ "google": "FE827", "image": "1f48f.png", "sheet_x": 25, - "sheet_y": 25, + "sheet_y": 27, "short_name": "couplekiss", "short_names": [ "couplekiss" @@ -28184,8 +29418,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 297, - "added_in": "2.0", + "subcategory": "family", + "sort_order": 460, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28202,7 +29437,7 @@ "google": "FE828", "image": "1f490.png", "sheet_x": 25, - "sheet_y": 26, + "sheet_y": 28, "short_name": "bouquet", "short_names": [ "bouquet" @@ -28210,8 +29445,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 106, - "added_in": "2.0", + "subcategory": "plant-flower", + "sort_order": 621, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28227,7 +29463,7 @@ "google": "FE829", "image": "1f491.png", "sheet_x": 25, - "sheet_y": 27, + "sheet_y": 29, "short_name": "couple_with_heart", "short_names": [ "couple_with_heart" @@ -28235,8 +29471,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 301, - "added_in": "2.0", + "subcategory": "family", + "sort_order": 464, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28253,7 +29490,7 @@ "google": "FE82A", "image": "1f492.png", "sheet_x": 25, - "sheet_y": 28, + "sheet_y": 30, "short_name": "wedding", "short_names": [ "wedding" @@ -28261,8 +29498,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 38, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 813, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28278,7 +29516,7 @@ "google": "FEB0D", "image": "1f493.png", "sheet_x": 25, - "sheet_y": 29, + "sheet_y": 31, "short_name": "heartbeat", "short_names": [ "heartbeat" @@ -28286,8 +29524,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 121, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 123, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28303,7 +29542,7 @@ "google": "FEB0E", "image": "1f494.png", "sheet_x": 25, - "sheet_y": 30, + "sheet_y": 32, "short_name": "broken_heart", "short_names": [ "broken_heart" @@ -28313,8 +29552,9 @@ "<\/3" ], "category": "Smileys & Emotion", - "sort_order": 126, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 128, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28330,7 +29570,7 @@ "google": "FEB0F", "image": "1f495.png", "sheet_x": 25, - "sheet_y": 31, + "sheet_y": 33, "short_name": "two_hearts", "short_names": [ "two_hearts" @@ -28338,8 +29578,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 123, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 125, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28355,7 +29596,7 @@ "google": "FEB10", "image": "1f496.png", "sheet_x": 25, - "sheet_y": 32, + "sheet_y": 34, "short_name": "sparkling_heart", "short_names": [ "sparkling_heart" @@ -28363,8 +29604,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 119, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 121, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28380,7 +29622,7 @@ "google": "FEB11", "image": "1f497.png", "sheet_x": 25, - "sheet_y": 33, + "sheet_y": 35, "short_name": "heartpulse", "short_names": [ "heartpulse" @@ -28388,8 +29630,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 120, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 122, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28405,7 +29648,7 @@ "google": "FEB12", "image": "1f498.png", "sheet_x": 25, - "sheet_y": 34, + "sheet_y": 36, "short_name": "cupid", "short_names": [ "cupid" @@ -28413,8 +29656,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 117, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 119, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28430,7 +29674,7 @@ "google": "FEB13", "image": "1f499.png", "sheet_x": 25, - "sheet_y": 35, + "sheet_y": 37, "short_name": "blue_heart", "short_names": [ "blue_heart" @@ -28438,8 +29682,9 @@ "text": "<3", "texts": null, "category": "Smileys & Emotion", - "sort_order": 131, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 133, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28455,7 +29700,7 @@ "google": "FEB14", "image": "1f49a.png", "sheet_x": 25, - "sheet_y": 36, + "sheet_y": 38, "short_name": "green_heart", "short_names": [ "green_heart" @@ -28463,8 +29708,9 @@ "text": "<3", "texts": null, "category": "Smileys & Emotion", - "sort_order": 130, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 132, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28480,7 +29726,7 @@ "google": "FEB15", "image": "1f49b.png", "sheet_x": 25, - "sheet_y": 37, + "sheet_y": 39, "short_name": "yellow_heart", "short_names": [ "yellow_heart" @@ -28488,8 +29734,9 @@ "text": "<3", "texts": null, "category": "Smileys & Emotion", - "sort_order": 129, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 131, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28505,7 +29752,7 @@ "google": "FEB16", "image": "1f49c.png", "sheet_x": 25, - "sheet_y": 38, + "sheet_y": 40, "short_name": "purple_heart", "short_names": [ "purple_heart" @@ -28513,8 +29760,9 @@ "text": "<3", "texts": null, "category": "Smileys & Emotion", - "sort_order": 132, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 134, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28530,7 +29778,7 @@ "google": "FEB17", "image": "1f49d.png", "sheet_x": 25, - "sheet_y": 39, + "sheet_y": 41, "short_name": "gift_heart", "short_names": [ "gift_heart" @@ -28538,8 +29786,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 118, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 120, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28555,7 +29804,7 @@ "google": "FEB18", "image": "1f49e.png", "sheet_x": 25, - "sheet_y": 40, + "sheet_y": 42, "short_name": "revolving_hearts", "short_names": [ "revolving_hearts" @@ -28563,8 +29812,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 122, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 124, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28580,7 +29830,7 @@ "google": "FEB19", "image": "1f49f.png", "sheet_x": 25, - "sheet_y": 41, + "sheet_y": 43, "short_name": "heart_decoration", "short_names": [ "heart_decoration" @@ -28588,8 +29838,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 124, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 126, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28605,7 +29856,7 @@ "google": "FEB55", "image": "1f4a0.png", "sheet_x": 25, - "sheet_y": 42, + "sheet_y": 44, "short_name": "diamond_shape_with_a_dot_inside", "short_names": [ "diamond_shape_with_a_dot_inside" @@ -28613,8 +29864,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 214, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1538, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28630,7 +29882,7 @@ "google": "FEB56", "image": "1f4a1.png", "sheet_x": 25, - "sheet_y": 43, + "sheet_y": 45, "short_name": "bulb", "short_names": [ "bulb" @@ -28638,8 +29890,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 100, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1175, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28655,7 +29908,7 @@ "google": "FEB57", "image": "1f4a2.png", "sheet_x": 25, - "sheet_y": 44, + "sheet_y": 46, "short_name": "anger", "short_names": [ "anger" @@ -28663,8 +29916,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 137, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 139, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28680,7 +29934,7 @@ "google": "FEB58", "image": "1f4a3.png", "sheet_x": 25, - "sheet_y": 45, + "sheet_y": 47, "short_name": "bomb", "short_names": [ "bomb" @@ -28688,8 +29942,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 143, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 145, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28705,7 +29960,7 @@ "google": "FEB59", "image": "1f4a4.png", "sheet_x": 25, - "sheet_y": 46, + "sheet_y": 48, "short_name": "zzz", "short_names": [ "zzz" @@ -28713,8 +29968,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 149, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 151, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28730,7 +29986,7 @@ "google": "FEB5A", "image": "1f4a5.png", "sheet_x": 25, - "sheet_y": 47, + "sheet_y": 49, "short_name": "boom", "short_names": [ "boom", @@ -28739,8 +29995,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 138, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 140, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28756,7 +30013,7 @@ "google": "FEB5B", "image": "1f4a6.png", "sheet_x": 25, - "sheet_y": 48, + "sheet_y": 50, "short_name": "sweat_drops", "short_names": [ "sweat_drops" @@ -28764,8 +30021,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 140, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 142, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28781,7 +30039,7 @@ "google": "FEB5C", "image": "1f4a7.png", "sheet_x": 25, - "sheet_y": 49, + "sheet_y": 51, "short_name": "droplet", "short_names": [ "droplet" @@ -28789,8 +30047,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 209, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 986, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28806,7 +30065,7 @@ "google": "FEB5D", "image": "1f4a8.png", "sheet_x": 25, - "sheet_y": 50, + "sheet_y": 52, "short_name": "dash", "short_names": [ "dash" @@ -28814,8 +30073,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 141, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 143, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28831,7 +30091,7 @@ "google": "FE4F4", "image": "1f4a9.png", "sheet_x": 25, - "sheet_y": 51, + "sheet_y": 53, "short_name": "hankey", "short_names": [ "hankey", @@ -28841,8 +30101,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 95, - "added_in": "2.0", + "subcategory": "face-costume", + "sort_order": 97, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28858,7 +30119,7 @@ "google": "FEB5E", "image": "1f4aa.png", "sheet_x": 25, - "sheet_y": 52, + "sheet_y": 54, "short_name": "muscle", "short_names": [ "muscle" @@ -28866,8 +30127,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 34, - "added_in": "2.0", + "subcategory": "body-parts", + "sort_order": 186, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28878,8 +30140,8 @@ "non_qualified": null, "image": "1f4aa-1f3fb.png", "sheet_x": 25, - "sheet_y": 53, - "added_in": "2.0", + "sheet_y": 55, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28890,8 +30152,8 @@ "non_qualified": null, "image": "1f4aa-1f3fc.png", "sheet_x": 25, - "sheet_y": 54, - "added_in": "2.0", + "sheet_y": 56, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28902,8 +30164,8 @@ "non_qualified": null, "image": "1f4aa-1f3fd.png", "sheet_x": 25, - "sheet_y": 55, - "added_in": "2.0", + "sheet_y": 57, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28913,9 +30175,9 @@ "unified": "1F4AA-1F3FE", "non_qualified": null, "image": "1f4aa-1f3fe.png", - "sheet_x": 25, - "sheet_y": 56, - "added_in": "2.0", + "sheet_x": 26, + "sheet_y": 0, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28926,8 +30188,8 @@ "non_qualified": null, "image": "1f4aa-1f3ff.png", "sheet_x": 26, - "sheet_y": 0, - "added_in": "2.0", + "sheet_y": 1, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28945,7 +30207,7 @@ "google": "FEB5F", "image": "1f4ab.png", "sheet_x": 26, - "sheet_y": 1, + "sheet_y": 2, "short_name": "dizzy", "short_names": [ "dizzy" @@ -28953,8 +30215,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 139, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 141, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28970,7 +30233,7 @@ "google": "FE532", "image": "1f4ac.png", "sheet_x": 26, - "sheet_y": 2, + "sheet_y": 3, "short_name": "speech_balloon", "short_names": [ "speech_balloon" @@ -28978,8 +30241,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 144, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 146, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -28995,7 +30259,7 @@ "google": null, "image": "1f4ad.png", "sheet_x": 26, - "sheet_y": 3, + "sheet_y": 4, "short_name": "thought_balloon", "short_names": [ "thought_balloon" @@ -29003,8 +30267,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 148, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 150, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29020,7 +30285,7 @@ "google": "FEB7A", "image": "1f4ae.png", "sheet_x": 26, - "sheet_y": 4, + "sheet_y": 5, "short_name": "white_flower", "short_names": [ "white_flower" @@ -29028,8 +30293,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 108, - "added_in": "2.0", + "subcategory": "plant-flower", + "sort_order": 623, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29045,7 +30311,7 @@ "google": "FEB7B", "image": "1f4af.png", "sheet_x": 26, - "sheet_y": 5, + "sheet_y": 6, "short_name": "100", "short_names": [ "100" @@ -29053,8 +30319,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 136, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 138, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29070,7 +30337,7 @@ "google": "FE4DD", "image": "1f4b0.png", "sheet_x": 26, - "sheet_y": 6, + "sheet_y": 7, "short_name": "moneybag", "short_names": [ "moneybag" @@ -29078,8 +30345,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 121, - "added_in": "2.0", + "subcategory": "money", + "sort_order": 1196, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29095,16 +30363,17 @@ "google": "FE4DE", "image": "1f4b1.png", "sheet_x": 26, - "sheet_y": 7, + "sheet_y": 8, "short_name": "currency_exchange", "short_names": [ "currency_exchange" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 130, - "added_in": "2.0", + "category": "Symbols", + "subcategory": "currency", + "sort_order": 1433, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29120,16 +30389,17 @@ "google": "FE4E0", "image": "1f4b2.png", "sheet_x": 26, - "sheet_y": 8, + "sheet_y": 9, "short_name": "heavy_dollar_sign", "short_names": [ "heavy_dollar_sign" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 131, - "added_in": "2.0", + "category": "Symbols", + "subcategory": "currency", + "sort_order": 1434, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29145,7 +30415,7 @@ "google": "FE4E1", "image": "1f4b3.png", "sheet_x": 26, - "sheet_y": 9, + "sheet_y": 10, "short_name": "credit_card", "short_names": [ "credit_card" @@ -29153,8 +30423,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 127, - "added_in": "2.0", + "subcategory": "money", + "sort_order": 1203, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29170,7 +30441,7 @@ "google": "FE4E2", "image": "1f4b4.png", "sheet_x": 26, - "sheet_y": 10, + "sheet_y": 11, "short_name": "yen", "short_names": [ "yen" @@ -29178,8 +30449,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 122, - "added_in": "2.0", + "subcategory": "money", + "sort_order": 1198, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29195,7 +30467,7 @@ "google": "FE4E3", "image": "1f4b5.png", "sheet_x": 26, - "sheet_y": 11, + "sheet_y": 12, "short_name": "dollar", "short_names": [ "dollar" @@ -29203,8 +30475,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 123, - "added_in": "2.0", + "subcategory": "money", + "sort_order": 1199, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29220,7 +30493,7 @@ "google": null, "image": "1f4b6.png", "sheet_x": 26, - "sheet_y": 12, + "sheet_y": 13, "short_name": "euro", "short_names": [ "euro" @@ -29228,8 +30501,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 124, - "added_in": "2.0", + "subcategory": "money", + "sort_order": 1200, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29245,7 +30519,7 @@ "google": null, "image": "1f4b7.png", "sheet_x": 26, - "sheet_y": 13, + "sheet_y": 14, "short_name": "pound", "short_names": [ "pound" @@ -29253,8 +30527,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 125, - "added_in": "2.0", + "subcategory": "money", + "sort_order": 1201, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29270,7 +30545,7 @@ "google": "FE4E4", "image": "1f4b8.png", "sheet_x": 26, - "sheet_y": 14, + "sheet_y": 15, "short_name": "money_with_wings", "short_names": [ "money_with_wings" @@ -29278,8 +30553,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 126, - "added_in": "2.0", + "subcategory": "money", + "sort_order": 1202, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29295,7 +30571,7 @@ "google": "FE4DF", "image": "1f4b9.png", "sheet_x": 26, - "sheet_y": 15, + "sheet_y": 16, "short_name": "chart", "short_names": [ "chart" @@ -29303,8 +30579,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 129, - "added_in": "2.0", + "subcategory": "money", + "sort_order": 1205, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29320,7 +30597,7 @@ "google": "FE537", "image": "1f4ba.png", "sheet_x": 26, - "sheet_y": 16, + "sheet_y": 17, "short_name": "seat", "short_names": [ "seat" @@ -29328,8 +30605,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 123, - "added_in": "2.0", + "subcategory": "transport-air", + "sort_order": 900, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29345,7 +30623,7 @@ "google": "FE538", "image": "1f4bb.png", "sheet_x": 26, - "sheet_y": 17, + "sheet_y": 18, "short_name": "computer", "short_names": [ "computer" @@ -29353,8 +30631,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 77, - "added_in": "2.0", + "subcategory": "computer", + "sort_order": 1152, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29370,7 +30649,7 @@ "google": "FE53B", "image": "1f4bc.png", "sheet_x": 26, - "sheet_y": 18, + "sheet_y": 19, "short_name": "briefcase", "short_names": [ "briefcase" @@ -29378,8 +30657,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 152, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1226, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29395,7 +30675,7 @@ "google": "FE53C", "image": "1f4bd.png", "sheet_x": 26, - "sheet_y": 19, + "sheet_y": 20, "short_name": "minidisc", "short_names": [ "minidisc" @@ -29403,8 +30683,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 83, - "added_in": "2.0", + "subcategory": "computer", + "sort_order": 1158, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29420,7 +30701,7 @@ "google": "FE53D", "image": "1f4be.png", "sheet_x": 26, - "sheet_y": 20, + "sheet_y": 21, "short_name": "floppy_disk", "short_names": [ "floppy_disk" @@ -29428,8 +30709,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 84, - "added_in": "2.0", + "subcategory": "computer", + "sort_order": 1159, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29445,7 +30727,7 @@ "google": "FE81D", "image": "1f4bf.png", "sheet_x": 26, - "sheet_y": 21, + "sheet_y": 22, "short_name": "cd", "short_names": [ "cd" @@ -29453,8 +30735,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 85, - "added_in": "2.0", + "subcategory": "computer", + "sort_order": 1160, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29470,7 +30753,7 @@ "google": "FE81E", "image": "1f4c0.png", "sheet_x": 26, - "sheet_y": 22, + "sheet_y": 23, "short_name": "dvd", "short_names": [ "dvd" @@ -29478,8 +30761,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 86, - "added_in": "2.0", + "subcategory": "computer", + "sort_order": 1161, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29495,7 +30779,7 @@ "google": "FE543", "image": "1f4c1.png", "sheet_x": 26, - "sheet_y": 23, + "sheet_y": 24, "short_name": "file_folder", "short_names": [ "file_folder" @@ -29503,8 +30787,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 153, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1227, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29520,7 +30805,7 @@ "google": "FE544", "image": "1f4c2.png", "sheet_x": 26, - "sheet_y": 24, + "sheet_y": 25, "short_name": "open_file_folder", "short_names": [ "open_file_folder" @@ -29528,8 +30813,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 154, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1228, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29545,7 +30831,7 @@ "google": "FE540", "image": "1f4c3.png", "sheet_x": 26, - "sheet_y": 25, + "sheet_y": 26, "short_name": "page_with_curl", "short_names": [ "page_with_curl" @@ -29553,8 +30839,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 113, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1188, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29570,7 +30857,7 @@ "google": "FE541", "image": "1f4c4.png", "sheet_x": 26, - "sheet_y": 26, + "sheet_y": 27, "short_name": "page_facing_up", "short_names": [ "page_facing_up" @@ -29578,8 +30865,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 115, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1190, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29595,7 +30883,7 @@ "google": "FE542", "image": "1f4c5.png", "sheet_x": 26, - "sheet_y": 27, + "sheet_y": 28, "short_name": "date", "short_names": [ "date" @@ -29603,8 +30891,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 156, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1230, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29620,7 +30909,7 @@ "google": "FE549", "image": "1f4c6.png", "sheet_x": 26, - "sheet_y": 28, + "sheet_y": 29, "short_name": "calendar", "short_names": [ "calendar" @@ -29628,8 +30917,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 157, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1231, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29645,7 +30935,7 @@ "google": "FE54D", "image": "1f4c7.png", "sheet_x": 26, - "sheet_y": 29, + "sheet_y": 30, "short_name": "card_index", "short_names": [ "card_index" @@ -29653,8 +30943,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 160, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1234, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29670,7 +30961,7 @@ "google": "FE54B", "image": "1f4c8.png", "sheet_x": 26, - "sheet_y": 30, + "sheet_y": 31, "short_name": "chart_with_upwards_trend", "short_names": [ "chart_with_upwards_trend" @@ -29678,8 +30969,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 161, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1235, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29695,7 +30987,7 @@ "google": "FE54C", "image": "1f4c9.png", "sheet_x": 26, - "sheet_y": 31, + "sheet_y": 32, "short_name": "chart_with_downwards_trend", "short_names": [ "chart_with_downwards_trend" @@ -29703,8 +30995,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 162, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1236, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29720,7 +31013,7 @@ "google": "FE54A", "image": "1f4ca.png", "sheet_x": 26, - "sheet_y": 32, + "sheet_y": 33, "short_name": "bar_chart", "short_names": [ "bar_chart" @@ -29728,8 +31021,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 163, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1237, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29745,7 +31039,7 @@ "google": "FE548", "image": "1f4cb.png", "sheet_x": 26, - "sheet_y": 33, + "sheet_y": 34, "short_name": "clipboard", "short_names": [ "clipboard" @@ -29753,8 +31047,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 164, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1238, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29770,7 +31065,7 @@ "google": "FE54E", "image": "1f4cc.png", "sheet_x": 26, - "sheet_y": 34, + "sheet_y": 35, "short_name": "pushpin", "short_names": [ "pushpin" @@ -29778,8 +31073,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 165, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1239, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29795,7 +31091,7 @@ "google": "FE53F", "image": "1f4cd.png", "sheet_x": 26, - "sheet_y": 35, + "sheet_y": 36, "short_name": "round_pushpin", "short_names": [ "round_pushpin" @@ -29803,8 +31099,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 166, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1240, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29820,7 +31117,7 @@ "google": "FE53A", "image": "1f4ce.png", "sheet_x": 26, - "sheet_y": 36, + "sheet_y": 37, "short_name": "paperclip", "short_names": [ "paperclip" @@ -29828,8 +31125,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 167, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1241, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29845,7 +31143,7 @@ "google": "FE550", "image": "1f4cf.png", "sheet_x": 26, - "sheet_y": 37, + "sheet_y": 38, "short_name": "straight_ruler", "short_names": [ "straight_ruler" @@ -29853,8 +31151,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 169, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1243, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29870,7 +31169,7 @@ "google": "FE551", "image": "1f4d0.png", "sheet_x": 26, - "sheet_y": 38, + "sheet_y": 39, "short_name": "triangular_ruler", "short_names": [ "triangular_ruler" @@ -29878,8 +31177,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 170, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1244, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29895,7 +31195,7 @@ "google": "FE552", "image": "1f4d1.png", "sheet_x": 26, - "sheet_y": 39, + "sheet_y": 40, "short_name": "bookmark_tabs", "short_names": [ "bookmark_tabs" @@ -29903,8 +31203,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 118, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1193, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29920,7 +31221,7 @@ "google": "FE54F", "image": "1f4d2.png", "sheet_x": 26, - "sheet_y": 40, + "sheet_y": 41, "short_name": "ledger", "short_names": [ "ledger" @@ -29928,8 +31229,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 112, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1187, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29945,7 +31247,7 @@ "google": "FE545", "image": "1f4d3.png", "sheet_x": 26, - "sheet_y": 41, + "sheet_y": 42, "short_name": "notebook", "short_names": [ "notebook" @@ -29953,8 +31255,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 111, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1186, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29970,7 +31273,7 @@ "google": "FE547", "image": "1f4d4.png", "sheet_x": 26, - "sheet_y": 42, + "sheet_y": 43, "short_name": "notebook_with_decorative_cover", "short_names": [ "notebook_with_decorative_cover" @@ -29978,8 +31281,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 104, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1179, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -29995,7 +31299,7 @@ "google": "FE502", "image": "1f4d5.png", "sheet_x": 26, - "sheet_y": 43, + "sheet_y": 44, "short_name": "closed_book", "short_names": [ "closed_book" @@ -30003,8 +31307,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 105, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1180, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30020,7 +31325,7 @@ "google": "FE546", "image": "1f4d6.png", "sheet_x": 26, - "sheet_y": 44, + "sheet_y": 45, "short_name": "book", "short_names": [ "book", @@ -30029,8 +31334,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 106, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1181, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30046,7 +31352,7 @@ "google": "FE4FF", "image": "1f4d7.png", "sheet_x": 26, - "sheet_y": 45, + "sheet_y": 46, "short_name": "green_book", "short_names": [ "green_book" @@ -30054,8 +31360,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 107, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1182, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30071,7 +31378,7 @@ "google": "FE500", "image": "1f4d8.png", "sheet_x": 26, - "sheet_y": 46, + "sheet_y": 47, "short_name": "blue_book", "short_names": [ "blue_book" @@ -30079,8 +31386,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 108, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1183, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30096,7 +31404,7 @@ "google": "FE501", "image": "1f4d9.png", "sheet_x": 26, - "sheet_y": 47, + "sheet_y": 48, "short_name": "orange_book", "short_names": [ "orange_book" @@ -30104,8 +31412,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 109, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1184, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30121,7 +31430,7 @@ "google": "FE503", "image": "1f4da.png", "sheet_x": 26, - "sheet_y": 48, + "sheet_y": 49, "short_name": "books", "short_names": [ "books" @@ -30129,8 +31438,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 110, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1185, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30146,7 +31456,7 @@ "google": "FE504", "image": "1f4db.png", "sheet_x": 26, - "sheet_y": 49, + "sheet_y": 50, "short_name": "name_badge", "short_names": [ "name_badge" @@ -30154,8 +31464,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 104, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1439, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30171,7 +31482,7 @@ "google": "FE4FD", "image": "1f4dc.png", "sheet_x": 26, - "sheet_y": 50, + "sheet_y": 51, "short_name": "scroll", "short_names": [ "scroll" @@ -30179,8 +31490,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 114, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1189, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30196,7 +31508,7 @@ "google": "FE527", "image": "1f4dd.png", "sheet_x": 26, - "sheet_y": 51, + "sheet_y": 52, "short_name": "memo", "short_names": [ "memo", @@ -30205,8 +31517,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 151, - "added_in": "2.0", + "subcategory": "writing", + "sort_order": 1225, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30222,7 +31535,7 @@ "google": "FE524", "image": "1f4de.png", "sheet_x": 26, - "sheet_y": 52, + "sheet_y": 53, "short_name": "telephone_receiver", "short_names": [ "telephone_receiver" @@ -30230,8 +31543,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 72, - "added_in": "2.0", + "subcategory": "phone", + "sort_order": 1147, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30247,7 +31561,7 @@ "google": "FE522", "image": "1f4df.png", "sheet_x": 26, - "sheet_y": 53, + "sheet_y": 54, "short_name": "pager", "short_names": [ "pager" @@ -30255,8 +31569,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 73, - "added_in": "2.0", + "subcategory": "phone", + "sort_order": 1148, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30272,7 +31587,7 @@ "google": "FE528", "image": "1f4e0.png", "sheet_x": 26, - "sheet_y": 54, + "sheet_y": 55, "short_name": "fax", "short_names": [ "fax" @@ -30280,8 +31595,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 74, - "added_in": "2.0", + "subcategory": "phone", + "sort_order": 1149, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30297,7 +31613,7 @@ "google": "FE531", "image": "1f4e1.png", "sheet_x": 26, - "sheet_y": 55, + "sheet_y": 56, "short_name": "satellite_antenna", "short_names": [ "satellite_antenna" @@ -30305,8 +31621,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 207, - "added_in": "2.0", + "subcategory": "science", + "sort_order": 1286, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30322,7 +31639,7 @@ "google": "FE52F", "image": "1f4e2.png", "sheet_x": 26, - "sheet_y": 56, + "sheet_y": 57, "short_name": "loudspeaker", "short_names": [ "loudspeaker" @@ -30330,8 +31647,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 48, - "added_in": "2.0", + "subcategory": "sound", + "sort_order": 1121, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30355,8 +31673,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 49, - "added_in": "2.0", + "subcategory": "sound", + "sort_order": 1122, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30380,8 +31699,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 136, - "added_in": "2.0", + "subcategory": "mail", + "sort_order": 1210, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30405,8 +31725,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 137, - "added_in": "2.0", + "subcategory": "mail", + "sort_order": 1211, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30430,8 +31751,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 138, - "added_in": "2.0", + "subcategory": "mail", + "sort_order": 1212, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30455,8 +31777,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 133, - "added_in": "2.0", + "subcategory": "mail", + "sort_order": 1207, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30480,8 +31803,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 134, - "added_in": "2.0", + "subcategory": "mail", + "sort_order": 1208, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30505,8 +31829,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 135, - "added_in": "2.0", + "subcategory": "mail", + "sort_order": 1209, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30530,8 +31855,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 140, - "added_in": "2.0", + "subcategory": "mail", + "sort_order": 1214, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30555,8 +31881,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 139, - "added_in": "2.0", + "subcategory": "mail", + "sort_order": 1213, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30580,8 +31907,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 141, - "added_in": "2.0", + "subcategory": "mail", + "sort_order": 1215, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30605,8 +31933,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 142, - "added_in": "2.0", + "subcategory": "mail", + "sort_order": 1216, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30630,8 +31959,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 143, - "added_in": "2.0", + "subcategory": "mail", + "sort_order": 1217, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30655,8 +31985,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 50, - "added_in": "2.0", + "subcategory": "sound", + "sort_order": 1123, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30680,8 +32011,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 116, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1191, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30705,8 +32037,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 69, - "added_in": "2.0", + "subcategory": "phone", + "sort_order": 1144, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30730,8 +32063,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 70, - "added_in": "2.0", + "subcategory": "phone", + "sort_order": 1145, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30755,8 +32089,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 95, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1416, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30780,8 +32115,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 96, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1417, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30805,8 +32141,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 23, - "added_in": "2.0", + "subcategory": "warning", + "sort_order": 1344, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30830,8 +32167,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 94, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1415, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30855,8 +32193,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 93, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1168, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30880,8 +32219,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 94, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1169, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30905,8 +32245,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 95, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1170, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30930,8 +32271,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 92, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1167, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30955,8 +32297,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 61, - "added_in": "2.0", + "subcategory": "music", + "sort_order": 1134, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -30980,15 +32323,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 96, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1171, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "FILM PROJECTOR", "unified": "1F4FD-FE0F", "non_qualified": "1F4FD", "docomo": null, @@ -31005,8 +32349,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 90, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1165, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31030,8 +32375,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 40, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1113, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31055,8 +32401,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 73, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1394, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31080,8 +32427,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 74, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1395, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31105,8 +32453,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 75, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1396, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31130,8 +32479,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 41, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1362, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31155,8 +32505,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 42, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1363, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31180,8 +32531,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 92, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1413, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31205,8 +32557,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 93, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1414, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31230,8 +32583,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 44, - "added_in": "2.0", + "subcategory": "sound", + "sort_order": 1117, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31255,8 +32609,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 45, - "added_in": "2.0", + "subcategory": "sound", + "sort_order": 1118, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31280,8 +32635,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 46, - "added_in": "2.0", + "subcategory": "sound", + "sort_order": 1119, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31305,8 +32661,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 47, - "added_in": "2.0", + "subcategory": "sound", + "sort_order": 1120, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31330,8 +32687,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 75, - "added_in": "2.0", + "subcategory": "computer", + "sort_order": 1150, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31355,8 +32713,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 76, - "added_in": "2.0", + "subcategory": "computer", + "sort_order": 1151, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31380,8 +32739,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 97, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1172, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31405,8 +32765,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 98, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1173, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31430,8 +32791,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 177, - "added_in": "2.0", + "subcategory": "lock", + "sort_order": 1251, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31455,8 +32817,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 178, - "added_in": "2.0", + "subcategory": "lock", + "sort_order": 1252, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31480,8 +32843,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 179, - "added_in": "2.0", + "subcategory": "lock", + "sort_order": 1253, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31505,8 +32869,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 175, - "added_in": "2.0", + "subcategory": "lock", + "sort_order": 1249, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31530,8 +32895,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 176, - "added_in": "2.0", + "subcategory": "lock", + "sort_order": 1250, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31555,8 +32921,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 51, - "added_in": "2.0", + "subcategory": "sound", + "sort_order": 1124, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31580,8 +32947,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 52, - "added_in": "2.0", + "subcategory": "sound", + "sort_order": 1125, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31605,8 +32973,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 119, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1194, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31630,8 +32999,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 197, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1274, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31655,8 +33025,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 215, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1539, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31680,8 +33051,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 43, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1364, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31705,8 +33077,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 44, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1365, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31730,8 +33103,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 45, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1366, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31755,8 +33129,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 46, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1367, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31771,8 +33146,8 @@ "softbank": "E24C", "google": "FEB42", "image": "1f51d.png", - "sheet_x": 28, - "sheet_y": 0, + "sheet_x": 27, + "sheet_y": 57, "short_name": "top", "short_names": [ "top" @@ -31780,8 +33155,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 47, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1368, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31797,7 +33173,7 @@ "google": "FEB25", "image": "1f51e.png", "sheet_x": 28, - "sheet_y": 1, + "sheet_y": 0, "short_name": "underage", "short_names": [ "underage" @@ -31805,8 +33181,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 24, - "added_in": "2.0", + "subcategory": "warning", + "sort_order": 1345, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31822,7 +33199,7 @@ "google": "FE83B", "image": "1f51f.png", "sheet_x": 28, - "sheet_y": 2, + "sheet_y": 1, "short_name": "keycap_ten", "short_names": [ "keycap_ten" @@ -31830,8 +33207,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 144, - "added_in": "2.0", + "subcategory": "keycap", + "sort_order": 1468, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31847,7 +33225,7 @@ "google": "FEB7C", "image": "1f520.png", "sheet_x": 28, - "sheet_y": 3, + "sheet_y": 2, "short_name": "capital_abcd", "short_names": [ "capital_abcd" @@ -31855,8 +33233,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 145, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1469, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31872,7 +33251,7 @@ "google": "FEB7D", "image": "1f521.png", "sheet_x": 28, - "sheet_y": 4, + "sheet_y": 3, "short_name": "abcd", "short_names": [ "abcd" @@ -31880,8 +33259,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 146, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1470, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31897,7 +33277,7 @@ "google": "FEB7E", "image": "1f522.png", "sheet_x": 28, - "sheet_y": 5, + "sheet_y": 4, "short_name": "1234", "short_names": [ "1234" @@ -31905,8 +33285,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 147, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1471, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31922,7 +33303,7 @@ "google": "FEB7F", "image": "1f523.png", "sheet_x": 28, - "sheet_y": 6, + "sheet_y": 5, "short_name": "symbols", "short_names": [ "symbols" @@ -31930,8 +33311,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 148, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1472, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31947,7 +33329,7 @@ "google": "FEB80", "image": "1f524.png", "sheet_x": 28, - "sheet_y": 7, + "sheet_y": 6, "short_name": "abc", "short_names": [ "abc" @@ -31955,8 +33337,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 149, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1473, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31972,7 +33355,7 @@ "google": "FE4F6", "image": "1f525.png", "sheet_x": 28, - "sheet_y": 8, + "sheet_y": 7, "short_name": "fire", "short_names": [ "fire" @@ -31980,8 +33363,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 208, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 985, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -31997,7 +33381,7 @@ "google": "FE4FB", "image": "1f526.png", "sheet_x": 28, - "sheet_y": 9, + "sheet_y": 8, "short_name": "flashlight", "short_names": [ "flashlight" @@ -32005,8 +33389,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 101, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1176, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32022,7 +33407,7 @@ "google": "FE4C9", "image": "1f527.png", "sheet_x": 28, - "sheet_y": 10, + "sheet_y": 9, "short_name": "wrench", "short_names": [ "wrench" @@ -32030,8 +33415,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 191, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1267, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32047,7 +33433,7 @@ "google": "FE4CA", "image": "1f528.png", "sheet_x": 28, - "sheet_y": 11, + "sheet_y": 10, "short_name": "hammer", "short_names": [ "hammer" @@ -32055,8 +33441,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 181, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1255, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32072,7 +33459,7 @@ "google": "FE4CB", "image": "1f529.png", "sheet_x": 28, - "sheet_y": 12, + "sheet_y": 11, "short_name": "nut_and_bolt", "short_names": [ "nut_and_bolt" @@ -32080,8 +33467,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 192, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1269, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32097,7 +33485,7 @@ "google": "FE4FA", "image": "1f52a.png", "sheet_x": 28, - "sheet_y": 13, + "sheet_y": 12, "short_name": "hocho", "short_names": [ "hocho", @@ -32106,8 +33494,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 120, - "added_in": "2.0", + "subcategory": "dishware", + "sort_order": 771, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32123,7 +33512,7 @@ "google": "FE4F5", "image": "1f52b.png", "sheet_x": 28, - "sheet_y": 14, + "sheet_y": 13, "short_name": "gun", "short_names": [ "gun" @@ -32131,8 +33520,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 188, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1262, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32148,7 +33538,7 @@ "google": null, "image": "1f52c.png", "sheet_x": 28, - "sheet_y": 15, + "sheet_y": 14, "short_name": "microscope", "short_names": [ "microscope" @@ -32156,8 +33546,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 205, - "added_in": "2.0", + "subcategory": "science", + "sort_order": 1284, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32173,7 +33564,7 @@ "google": null, "image": "1f52d.png", "sheet_x": 28, - "sheet_y": 16, + "sheet_y": 15, "short_name": "telescope", "short_names": [ "telescope" @@ -32181,8 +33572,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 206, - "added_in": "2.0", + "subcategory": "science", + "sort_order": 1285, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32198,7 +33590,7 @@ "google": "FE4F7", "image": "1f52e.png", "sheet_x": 28, - "sheet_y": 17, + "sheet_y": 16, "short_name": "crystal_ball", "short_names": [ "crystal_ball" @@ -32206,8 +33598,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 59, - "added_in": "2.0", + "subcategory": "game", + "sort_order": 1046, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32223,7 +33616,7 @@ "google": "FE4F8", "image": "1f52f.png", "sheet_x": 28, - "sheet_y": 18, + "sheet_y": 17, "short_name": "six_pointed_star", "short_names": [ "six_pointed_star" @@ -32231,8 +33624,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 59, - "added_in": "2.0", + "subcategory": "religion", + "sort_order": 1380, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32248,7 +33642,7 @@ "google": "FE044", "image": "1f530.png", "sheet_x": 28, - "sheet_y": 19, + "sheet_y": 18, "short_name": "beginner", "short_names": [ "beginner" @@ -32256,8 +33650,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 105, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1440, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32273,7 +33668,7 @@ "google": "FE4D2", "image": "1f531.png", "sheet_x": 28, - "sheet_y": 20, + "sheet_y": 19, "short_name": "trident", "short_names": [ "trident" @@ -32281,8 +33676,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 103, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1438, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32298,7 +33694,7 @@ "google": "FEB64", "image": "1f532.png", "sheet_x": 28, - "sheet_y": 21, + "sheet_y": 20, "short_name": "black_square_button", "short_names": [ "black_square_button" @@ -32306,8 +33702,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 217, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1541, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32323,7 +33720,7 @@ "google": "FEB67", "image": "1f533.png", "sheet_x": 28, - "sheet_y": 22, + "sheet_y": 21, "short_name": "white_square_button", "short_names": [ "white_square_button" @@ -32331,8 +33728,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 216, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1540, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32348,7 +33746,7 @@ "google": "FEB63", "image": "1f534.png", "sheet_x": 28, - "sheet_y": 23, + "sheet_y": 22, "short_name": "red_circle", "short_names": [ "red_circle" @@ -32356,8 +33754,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 184, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1508, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32373,7 +33772,7 @@ "google": "FEB64", "image": "1f535.png", "sheet_x": 28, - "sheet_y": 24, + "sheet_y": 23, "short_name": "large_blue_circle", "short_names": [ "large_blue_circle" @@ -32381,8 +33780,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 188, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1512, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32398,7 +33798,7 @@ "google": "FEB73", "image": "1f536.png", "sheet_x": 28, - "sheet_y": 25, + "sheet_y": 24, "short_name": "large_orange_diamond", "short_names": [ "large_orange_diamond" @@ -32406,8 +33806,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 208, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1532, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32423,7 +33824,7 @@ "google": "FEB74", "image": "1f537.png", "sheet_x": 28, - "sheet_y": 26, + "sheet_y": 25, "short_name": "large_blue_diamond", "short_names": [ "large_blue_diamond" @@ -32431,8 +33832,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 209, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1533, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32448,7 +33850,7 @@ "google": "FEB75", "image": "1f538.png", "sheet_x": 28, - "sheet_y": 27, + "sheet_y": 26, "short_name": "small_orange_diamond", "short_names": [ "small_orange_diamond" @@ -32456,8 +33858,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 210, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1534, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32473,7 +33876,7 @@ "google": "FEB76", "image": "1f539.png", "sheet_x": 28, - "sheet_y": 28, + "sheet_y": 27, "short_name": "small_blue_diamond", "short_names": [ "small_blue_diamond" @@ -32481,8 +33884,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 211, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1535, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32498,7 +33902,7 @@ "google": "FEB78", "image": "1f53a.png", "sheet_x": 28, - "sheet_y": 29, + "sheet_y": 28, "short_name": "small_red_triangle", "short_names": [ "small_red_triangle" @@ -32506,8 +33910,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 212, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1536, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32523,7 +33928,7 @@ "google": "FEB79", "image": "1f53b.png", "sheet_x": 28, - "sheet_y": 30, + "sheet_y": 29, "short_name": "small_red_triangle_down", "short_names": [ "small_red_triangle_down" @@ -32531,8 +33936,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 213, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1537, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32548,7 +33954,7 @@ "google": "FEB01", "image": "1f53c.png", "sheet_x": 28, - "sheet_y": 31, + "sheet_y": 30, "short_name": "arrow_up_small", "short_names": [ "arrow_up_small" @@ -32556,8 +33962,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 83, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1404, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32573,7 +33980,7 @@ "google": "FEB00", "image": "1f53d.png", "sheet_x": 28, - "sheet_y": 32, + "sheet_y": 31, "short_name": "arrow_down_small", "short_names": [ "arrow_down_small" @@ -32581,15 +33988,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 85, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1406, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "OM", "unified": "1F549-FE0F", "non_qualified": "1F549", "docomo": null, @@ -32598,7 +34006,7 @@ "google": null, "image": "1f549-fe0f.png", "sheet_x": 28, - "sheet_y": 33, + "sheet_y": 32, "short_name": "om_symbol", "short_names": [ "om_symbol" @@ -32606,15 +34014,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 50, - "added_in": "2.0", + "subcategory": "religion", + "sort_order": 1371, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "DOVE", "unified": "1F54A-FE0F", "non_qualified": "1F54A", "docomo": null, @@ -32623,7 +34032,7 @@ "google": null, "image": "1f54a-fe0f.png", "sheet_x": 28, - "sheet_y": 34, + "sheet_y": 33, "short_name": "dove_of_peace", "short_names": [ "dove_of_peace" @@ -32631,8 +34040,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 68, - "added_in": "2.0", + "subcategory": "animal-bird", + "sort_order": 576, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32648,7 +34058,7 @@ "google": null, "image": "1f54b.png", "sheet_x": 28, - "sheet_y": 35, + "sheet_y": 34, "short_name": "kaaba", "short_names": [ "kaaba" @@ -32656,8 +34066,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 46, - "added_in": "2.0", + "subcategory": "place-religious", + "sort_order": 821, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32673,7 +34084,7 @@ "google": null, "image": "1f54c.png", "sheet_x": 28, - "sheet_y": 36, + "sheet_y": 35, "short_name": "mosque", "short_names": [ "mosque" @@ -32681,8 +34092,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 42, - "added_in": "2.0", + "subcategory": "place-religious", + "sort_order": 817, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32698,7 +34110,7 @@ "google": null, "image": "1f54d.png", "sheet_x": 28, - "sheet_y": 37, + "sheet_y": 36, "short_name": "synagogue", "short_names": [ "synagogue" @@ -32706,8 +34118,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 44, - "added_in": "2.0", + "subcategory": "place-religious", + "sort_order": 819, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32723,7 +34136,7 @@ "google": null, "image": "1f54e.png", "sheet_x": 28, - "sheet_y": 38, + "sheet_y": 37, "short_name": "menorah_with_nine_branches", "short_names": [ "menorah_with_nine_branches" @@ -32731,8 +34144,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 58, - "added_in": "2.0", + "subcategory": "religion", + "sort_order": 1379, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32748,7 +34162,7 @@ "google": "FE01E", "image": "1f550.png", "sheet_x": 28, - "sheet_y": 39, + "sheet_y": 38, "short_name": "clock1", "short_names": [ "clock1" @@ -32756,8 +34170,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 142, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 919, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32773,7 +34188,7 @@ "google": "FE01F", "image": "1f551.png", "sheet_x": 28, - "sheet_y": 40, + "sheet_y": 39, "short_name": "clock2", "short_names": [ "clock2" @@ -32781,8 +34196,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 144, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 921, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32798,7 +34214,7 @@ "google": "FE020", "image": "1f552.png", "sheet_x": 28, - "sheet_y": 41, + "sheet_y": 40, "short_name": "clock3", "short_names": [ "clock3" @@ -32806,8 +34222,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 146, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 923, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32823,7 +34240,7 @@ "google": "FE021", "image": "1f553.png", "sheet_x": 28, - "sheet_y": 42, + "sheet_y": 41, "short_name": "clock4", "short_names": [ "clock4" @@ -32831,8 +34248,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 148, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 925, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32848,7 +34266,7 @@ "google": "FE022", "image": "1f554.png", "sheet_x": 28, - "sheet_y": 43, + "sheet_y": 42, "short_name": "clock5", "short_names": [ "clock5" @@ -32856,8 +34274,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 150, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 927, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32873,7 +34292,7 @@ "google": "FE023", "image": "1f555.png", "sheet_x": 28, - "sheet_y": 44, + "sheet_y": 43, "short_name": "clock6", "short_names": [ "clock6" @@ -32881,8 +34300,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 152, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 929, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32898,7 +34318,7 @@ "google": "FE024", "image": "1f556.png", "sheet_x": 28, - "sheet_y": 45, + "sheet_y": 44, "short_name": "clock7", "short_names": [ "clock7" @@ -32906,8 +34326,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 154, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 931, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32923,7 +34344,7 @@ "google": "FE025", "image": "1f557.png", "sheet_x": 28, - "sheet_y": 46, + "sheet_y": 45, "short_name": "clock8", "short_names": [ "clock8" @@ -32931,8 +34352,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 156, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 933, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32948,7 +34370,7 @@ "google": "FE026", "image": "1f558.png", "sheet_x": 28, - "sheet_y": 47, + "sheet_y": 46, "short_name": "clock9", "short_names": [ "clock9" @@ -32956,8 +34378,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 158, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 935, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32973,7 +34396,7 @@ "google": "FE027", "image": "1f559.png", "sheet_x": 28, - "sheet_y": 48, + "sheet_y": 47, "short_name": "clock10", "short_names": [ "clock10" @@ -32981,8 +34404,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 160, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 937, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -32998,7 +34422,7 @@ "google": "FE028", "image": "1f55a.png", "sheet_x": 28, - "sheet_y": 49, + "sheet_y": 48, "short_name": "clock11", "short_names": [ "clock11" @@ -33006,8 +34430,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 162, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 939, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33023,7 +34448,7 @@ "google": "FE029", "image": "1f55b.png", "sheet_x": 28, - "sheet_y": 50, + "sheet_y": 49, "short_name": "clock12", "short_names": [ "clock12" @@ -33031,8 +34456,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 140, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 917, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33048,7 +34474,7 @@ "google": null, "image": "1f55c.png", "sheet_x": 28, - "sheet_y": 51, + "sheet_y": 50, "short_name": "clock130", "short_names": [ "clock130" @@ -33056,8 +34482,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 143, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 920, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33073,7 +34500,7 @@ "google": null, "image": "1f55d.png", "sheet_x": 28, - "sheet_y": 52, + "sheet_y": 51, "short_name": "clock230", "short_names": [ "clock230" @@ -33081,8 +34508,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 145, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 922, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33098,7 +34526,7 @@ "google": null, "image": "1f55e.png", "sheet_x": 28, - "sheet_y": 53, + "sheet_y": 52, "short_name": "clock330", "short_names": [ "clock330" @@ -33106,8 +34534,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 147, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 924, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33123,7 +34552,7 @@ "google": null, "image": "1f55f.png", "sheet_x": 28, - "sheet_y": 54, + "sheet_y": 53, "short_name": "clock430", "short_names": [ "clock430" @@ -33131,8 +34560,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 149, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 926, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33148,7 +34578,7 @@ "google": null, "image": "1f560.png", "sheet_x": 28, - "sheet_y": 55, + "sheet_y": 54, "short_name": "clock530", "short_names": [ "clock530" @@ -33156,8 +34586,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 151, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 928, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33173,7 +34604,7 @@ "google": null, "image": "1f561.png", "sheet_x": 28, - "sheet_y": 56, + "sheet_y": 55, "short_name": "clock630", "short_names": [ "clock630" @@ -33181,8 +34612,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 153, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 930, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33197,8 +34629,8 @@ "softbank": null, "google": null, "image": "1f562.png", - "sheet_x": 29, - "sheet_y": 0, + "sheet_x": 28, + "sheet_y": 56, "short_name": "clock730", "short_names": [ "clock730" @@ -33206,8 +34638,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 155, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 932, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33222,8 +34655,8 @@ "softbank": null, "google": null, "image": "1f563.png", - "sheet_x": 29, - "sheet_y": 1, + "sheet_x": 28, + "sheet_y": 57, "short_name": "clock830", "short_names": [ "clock830" @@ -33231,8 +34664,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 157, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 934, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33248,7 +34682,7 @@ "google": null, "image": "1f564.png", "sheet_x": 29, - "sheet_y": 2, + "sheet_y": 0, "short_name": "clock930", "short_names": [ "clock930" @@ -33256,8 +34690,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 159, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 936, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33273,7 +34708,7 @@ "google": null, "image": "1f565.png", "sheet_x": 29, - "sheet_y": 3, + "sheet_y": 1, "short_name": "clock1030", "short_names": [ "clock1030" @@ -33281,8 +34716,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 161, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 938, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33298,7 +34734,7 @@ "google": null, "image": "1f566.png", "sheet_x": 29, - "sheet_y": 4, + "sheet_y": 2, "short_name": "clock1130", "short_names": [ "clock1130" @@ -33306,8 +34742,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 163, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 940, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33323,7 +34760,7 @@ "google": null, "image": "1f567.png", "sheet_x": 29, - "sheet_y": 5, + "sheet_y": 3, "short_name": "clock1230", "short_names": [ "clock1230" @@ -33331,15 +34768,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 141, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 918, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CANDLE", "unified": "1F56F-FE0F", "non_qualified": "1F56F", "docomo": null, @@ -33348,7 +34786,7 @@ "google": null, "image": "1f56f-fe0f.png", "sheet_x": 29, - "sheet_y": 6, + "sheet_y": 4, "short_name": "candle", "short_names": [ "candle" @@ -33356,15 +34794,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 99, - "added_in": "2.0", + "subcategory": "light & video", + "sort_order": 1174, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "MANTELPIECE CLOCK", "unified": "1F570-FE0F", "non_qualified": "1F570", "docomo": null, @@ -33373,7 +34812,7 @@ "google": null, "image": "1f570-fe0f.png", "sheet_x": 29, - "sheet_y": 7, + "sheet_y": 5, "short_name": "mantelpiece_clock", "short_names": [ "mantelpiece_clock" @@ -33381,15 +34820,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 139, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 916, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "HOLE", "unified": "1F573-FE0F", "non_qualified": "1F573", "docomo": null, @@ -33398,7 +34838,7 @@ "google": null, "image": "1f573-fe0f.png", "sheet_x": 29, - "sheet_y": 8, + "sheet_y": 6, "short_name": "hole", "short_names": [ "hole" @@ -33406,15 +34846,16 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 142, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 144, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "PERSON IN SUIT LEVITATING", "unified": "1F574-FE0F", "non_qualified": "1F574", "docomo": null, @@ -33423,7 +34864,7 @@ "google": null, "image": "1f574-fe0f.png", "sheet_x": 29, - "sheet_y": 9, + "sheet_y": 7, "short_name": "man_in_business_suit_levitating", "short_names": [ "man_in_business_suit_levitating" @@ -33431,8 +34872,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 235, - "added_in": "2.0", + "subcategory": "person-activity", + "sort_order": 398, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33443,7 +34885,7 @@ "non_qualified": null, "image": "1f574-1f3fb.png", "sheet_x": 29, - "sheet_y": 10, + "sheet_y": 8, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33455,7 +34897,7 @@ "non_qualified": null, "image": "1f574-1f3fc.png", "sheet_x": 29, - "sheet_y": 11, + "sheet_y": 9, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33467,7 +34909,7 @@ "non_qualified": null, "image": "1f574-1f3fd.png", "sheet_x": 29, - "sheet_y": 12, + "sheet_y": 10, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33479,7 +34921,7 @@ "non_qualified": null, "image": "1f574-1f3fe.png", "sheet_x": 29, - "sheet_y": 13, + "sheet_y": 11, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33491,7 +34933,7 @@ "non_qualified": null, "image": "1f574-1f3ff.png", "sheet_x": 29, - "sheet_y": 14, + "sheet_y": 12, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33501,7 +34943,7 @@ } }, { - "name": null, + "name": "WOMAN DETECTIVE", "unified": "1F575-FE0F-200D-2640-FE0F", "non_qualified": null, "docomo": null, @@ -33510,7 +34952,7 @@ "google": null, "image": "1f575-fe0f-200d-2640-fe0f.png", "sheet_x": 29, - "sheet_y": 15, + "sheet_y": 13, "short_name": "female-detective", "short_names": [ "female-detective" @@ -33518,7 +34960,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 158, + "subcategory": "person-role", + "sort_order": 312, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33530,7 +34973,7 @@ "non_qualified": "1F575-1F3FB-200D-2640", "image": "1f575-1f3fb-200d-2640-fe0f.png", "sheet_x": 29, - "sheet_y": 16, + "sheet_y": 14, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33542,7 +34985,7 @@ "non_qualified": "1F575-1F3FC-200D-2640", "image": "1f575-1f3fc-200d-2640-fe0f.png", "sheet_x": 29, - "sheet_y": 17, + "sheet_y": 15, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33554,7 +34997,7 @@ "non_qualified": "1F575-1F3FD-200D-2640", "image": "1f575-1f3fd-200d-2640-fe0f.png", "sheet_x": 29, - "sheet_y": 18, + "sheet_y": 16, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33566,7 +35009,7 @@ "non_qualified": "1F575-1F3FE-200D-2640", "image": "1f575-1f3fe-200d-2640-fe0f.png", "sheet_x": 29, - "sheet_y": 19, + "sheet_y": 17, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33578,7 +35021,7 @@ "non_qualified": "1F575-1F3FF-200D-2640", "image": "1f575-1f3ff-200d-2640-fe0f.png", "sheet_x": 29, - "sheet_y": 20, + "sheet_y": 18, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33588,7 +35031,7 @@ } }, { - "name": null, + "name": "MAN DETECTIVE", "unified": "1F575-FE0F-200D-2642-FE0F", "non_qualified": null, "docomo": null, @@ -33597,7 +35040,7 @@ "google": null, "image": "1f575-fe0f-200d-2642-fe0f.png", "sheet_x": 29, - "sheet_y": 21, + "sheet_y": 19, "short_name": "male-detective", "short_names": [ "male-detective" @@ -33605,7 +35048,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 157, + "subcategory": "person-role", + "sort_order": 311, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33617,7 +35061,7 @@ "non_qualified": "1F575-1F3FB-200D-2642", "image": "1f575-1f3fb-200d-2642-fe0f.png", "sheet_x": 29, - "sheet_y": 22, + "sheet_y": 20, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33629,7 +35073,7 @@ "non_qualified": "1F575-1F3FC-200D-2642", "image": "1f575-1f3fc-200d-2642-fe0f.png", "sheet_x": 29, - "sheet_y": 23, + "sheet_y": 21, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33641,7 +35085,7 @@ "non_qualified": "1F575-1F3FD-200D-2642", "image": "1f575-1f3fd-200d-2642-fe0f.png", "sheet_x": 29, - "sheet_y": 24, + "sheet_y": 22, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33653,7 +35097,7 @@ "non_qualified": "1F575-1F3FE-200D-2642", "image": "1f575-1f3fe-200d-2642-fe0f.png", "sheet_x": 29, - "sheet_y": 25, + "sheet_y": 23, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33665,7 +35109,7 @@ "non_qualified": "1F575-1F3FF-200D-2642", "image": "1f575-1f3ff-200d-2642-fe0f.png", "sheet_x": 29, - "sheet_y": 26, + "sheet_y": 24, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -33676,7 +35120,7 @@ "obsoletes": "1F575-FE0F" }, { - "name": null, + "name": "DETECTIVE", "unified": "1F575-FE0F", "non_qualified": "1F575", "docomo": null, @@ -33685,7 +35129,7 @@ "google": null, "image": "1f575-fe0f.png", "sheet_x": 29, - "sheet_y": 27, + "sheet_y": 25, "short_name": "sleuth_or_spy", "short_names": [ "sleuth_or_spy" @@ -33693,78 +35137,79 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 156, - "added_in": "2.0", + "subcategory": "person-role", + "sort_order": 310, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F575-1F3FB", "non_qualified": null, "image": "1f575-1f3fb.png", "sheet_x": 29, - "sheet_y": 28, + "sheet_y": 26, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F575-1F3FC", "non_qualified": null, "image": "1f575-1f3fc.png", "sheet_x": 29, - "sheet_y": 29, + "sheet_y": 27, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F575-1F3FD", "non_qualified": null, "image": "1f575-1f3fd.png", "sheet_x": 29, - "sheet_y": 30, + "sheet_y": 28, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F575-1F3FE", "non_qualified": null, "image": "1f575-1f3fe.png", "sheet_x": 29, - "sheet_y": 31, + "sheet_y": 29, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F575-1F3FF", "non_qualified": null, "image": "1f575-1f3ff.png", "sheet_x": 29, - "sheet_y": 32, + "sheet_y": 30, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F575-FE0F-200D-2642-FE0F" }, { - "name": null, + "name": "SUNGLASSES", "unified": "1F576-FE0F", "non_qualified": "1F576", "docomo": null, @@ -33773,7 +35218,7 @@ "google": null, "image": "1f576-fe0f.png", "sheet_x": 29, - "sheet_y": 33, + "sheet_y": 31, "short_name": "dark_sunglasses", "short_names": [ "dark_sunglasses" @@ -33781,15 +35226,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 2, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1073, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SPIDER", "unified": "1F577-FE0F", "non_qualified": "1F577", "docomo": null, @@ -33798,7 +35244,7 @@ "google": null, "image": "1f577-fe0f.png", "sheet_x": 29, - "sheet_y": 34, + "sheet_y": 32, "short_name": "spider", "short_names": [ "spider" @@ -33806,15 +35252,16 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 101, - "added_in": "2.0", + "subcategory": "animal-bug", + "sort_order": 614, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SPIDER WEB", "unified": "1F578-FE0F", "non_qualified": "1F578", "docomo": null, @@ -33823,7 +35270,7 @@ "google": null, "image": "1f578-fe0f.png", "sheet_x": 29, - "sheet_y": 35, + "sheet_y": 33, "short_name": "spider_web", "short_names": [ "spider_web" @@ -33831,15 +35278,16 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 102, - "added_in": "2.0", + "subcategory": "animal-bug", + "sort_order": 615, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "JOYSTICK", "unified": "1F579-FE0F", "non_qualified": "1F579", "docomo": null, @@ -33848,7 +35296,7 @@ "google": null, "image": "1f579-fe0f.png", "sheet_x": 29, - "sheet_y": 36, + "sheet_y": 34, "short_name": "joystick", "short_names": [ "joystick" @@ -33856,8 +35304,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 62, - "added_in": "2.0", + "subcategory": "game", + "sort_order": 1050, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33873,7 +35322,7 @@ "google": null, "image": "1f57a.png", "sheet_x": 29, - "sheet_y": 37, + "sheet_y": 35, "short_name": "man_dancing", "short_names": [ "man_dancing" @@ -33881,8 +35330,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 234, - "added_in": "4.0", + "subcategory": "person-activity", + "sort_order": 397, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33893,8 +35343,8 @@ "non_qualified": null, "image": "1f57a-1f3fb.png", "sheet_x": 29, - "sheet_y": 38, - "added_in": "4.0", + "sheet_y": 36, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33905,8 +35355,8 @@ "non_qualified": null, "image": "1f57a-1f3fc.png", "sheet_x": 29, - "sheet_y": 39, - "added_in": "4.0", + "sheet_y": 37, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33917,8 +35367,8 @@ "non_qualified": null, "image": "1f57a-1f3fd.png", "sheet_x": 29, - "sheet_y": 40, - "added_in": "4.0", + "sheet_y": 38, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33929,8 +35379,8 @@ "non_qualified": null, "image": "1f57a-1f3fe.png", "sheet_x": 29, - "sheet_y": 41, - "added_in": "4.0", + "sheet_y": 39, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33941,8 +35391,8 @@ "non_qualified": null, "image": "1f57a-1f3ff.png", "sheet_x": 29, - "sheet_y": 42, - "added_in": "4.0", + "sheet_y": 40, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -33951,7 +35401,7 @@ } }, { - "name": null, + "name": "LINKED PAPERCLIPS", "unified": "1F587-FE0F", "non_qualified": "1F587", "docomo": null, @@ -33960,7 +35410,7 @@ "google": null, "image": "1f587-fe0f.png", "sheet_x": 29, - "sheet_y": 43, + "sheet_y": 41, "short_name": "linked_paperclips", "short_names": [ "linked_paperclips" @@ -33968,15 +35418,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 168, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1242, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "PEN", "unified": "1F58A-FE0F", "non_qualified": "1F58A", "docomo": null, @@ -33985,7 +35436,7 @@ "google": null, "image": "1f58a-fe0f.png", "sheet_x": 29, - "sheet_y": 44, + "sheet_y": 42, "short_name": "lower_left_ballpoint_pen", "short_names": [ "lower_left_ballpoint_pen" @@ -33993,15 +35444,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 148, - "added_in": "2.0", + "subcategory": "writing", + "sort_order": 1222, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "FOUNTAIN PEN", "unified": "1F58B-FE0F", "non_qualified": "1F58B", "docomo": null, @@ -34010,7 +35462,7 @@ "google": null, "image": "1f58b-fe0f.png", "sheet_x": 29, - "sheet_y": 45, + "sheet_y": 43, "short_name": "lower_left_fountain_pen", "short_names": [ "lower_left_fountain_pen" @@ -34018,15 +35470,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 147, - "added_in": "2.0", + "subcategory": "writing", + "sort_order": 1221, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "PAINTBRUSH", "unified": "1F58C-FE0F", "non_qualified": "1F58C", "docomo": null, @@ -34035,7 +35488,7 @@ "google": null, "image": "1f58c-fe0f.png", "sheet_x": 29, - "sheet_y": 46, + "sheet_y": 44, "short_name": "lower_left_paintbrush", "short_names": [ "lower_left_paintbrush" @@ -34043,15 +35496,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 149, - "added_in": "2.0", + "subcategory": "writing", + "sort_order": 1223, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CRAYON", "unified": "1F58D-FE0F", "non_qualified": "1F58D", "docomo": null, @@ -34060,7 +35514,7 @@ "google": null, "image": "1f58d-fe0f.png", "sheet_x": 29, - "sheet_y": 47, + "sheet_y": 45, "short_name": "lower_left_crayon", "short_names": [ "lower_left_crayon" @@ -34068,15 +35522,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 150, - "added_in": "2.0", + "subcategory": "writing", + "sort_order": 1224, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "HAND WITH FINGERS SPLAYED", "unified": "1F590-FE0F", "non_qualified": "1F590", "docomo": null, @@ -34085,7 +35540,7 @@ "google": null, "image": "1f590-fe0f.png", "sheet_x": 29, - "sheet_y": 48, + "sheet_y": 46, "short_name": "raised_hand_with_fingers_splayed", "short_names": [ "raised_hand_with_fingers_splayed" @@ -34093,8 +35548,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 3, - "added_in": "2.0", + "subcategory": "hand-fingers-open", + "sort_order": 154, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34105,8 +35561,8 @@ "non_qualified": null, "image": "1f590-1f3fb.png", "sheet_x": 29, - "sheet_y": 49, - "added_in": "2.0", + "sheet_y": 47, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34117,8 +35573,8 @@ "non_qualified": null, "image": "1f590-1f3fc.png", "sheet_x": 29, - "sheet_y": 50, - "added_in": "2.0", + "sheet_y": 48, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34129,8 +35585,8 @@ "non_qualified": null, "image": "1f590-1f3fd.png", "sheet_x": 29, - "sheet_y": 51, - "added_in": "2.0", + "sheet_y": 49, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34141,8 +35597,8 @@ "non_qualified": null, "image": "1f590-1f3fe.png", "sheet_x": 29, - "sheet_y": 52, - "added_in": "2.0", + "sheet_y": 50, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34153,8 +35609,8 @@ "non_qualified": null, "image": "1f590-1f3ff.png", "sheet_x": 29, - "sheet_y": 53, - "added_in": "2.0", + "sheet_y": 51, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34172,7 +35628,7 @@ "google": null, "image": "1f595.png", "sheet_x": 29, - "sheet_y": 54, + "sheet_y": 52, "short_name": "middle_finger", "short_names": [ "middle_finger", @@ -34181,8 +35637,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 16, - "added_in": "2.0", + "subcategory": "hand-single-finger", + "sort_order": 168, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34193,8 +35650,8 @@ "non_qualified": null, "image": "1f595-1f3fb.png", "sheet_x": 29, - "sheet_y": 55, - "added_in": "2.0", + "sheet_y": 53, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34205,8 +35662,8 @@ "non_qualified": null, "image": "1f595-1f3fc.png", "sheet_x": 29, - "sheet_y": 56, - "added_in": "2.0", + "sheet_y": 54, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34216,9 +35673,9 @@ "unified": "1F595-1F3FD", "non_qualified": null, "image": "1f595-1f3fd.png", - "sheet_x": 30, - "sheet_y": 0, - "added_in": "2.0", + "sheet_x": 29, + "sheet_y": 55, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34228,9 +35685,9 @@ "unified": "1F595-1F3FE", "non_qualified": null, "image": "1f595-1f3fe.png", - "sheet_x": 30, - "sheet_y": 1, - "added_in": "2.0", + "sheet_x": 29, + "sheet_y": 56, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34240,9 +35697,9 @@ "unified": "1F595-1F3FF", "non_qualified": null, "image": "1f595-1f3ff.png", - "sheet_x": 30, - "sheet_y": 2, - "added_in": "2.0", + "sheet_x": 29, + "sheet_y": 57, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34260,7 +35717,7 @@ "google": null, "image": "1f596.png", "sheet_x": 30, - "sheet_y": 3, + "sheet_y": 0, "short_name": "spock-hand", "short_names": [ "spock-hand" @@ -34268,8 +35725,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 5, - "added_in": "2.0", + "subcategory": "hand-fingers-open", + "sort_order": 156, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34280,8 +35738,8 @@ "non_qualified": null, "image": "1f596-1f3fb.png", "sheet_x": 30, - "sheet_y": 4, - "added_in": "2.0", + "sheet_y": 1, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34292,8 +35750,8 @@ "non_qualified": null, "image": "1f596-1f3fc.png", "sheet_x": 30, - "sheet_y": 5, - "added_in": "2.0", + "sheet_y": 2, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34304,8 +35762,8 @@ "non_qualified": null, "image": "1f596-1f3fd.png", "sheet_x": 30, - "sheet_y": 6, - "added_in": "2.0", + "sheet_y": 3, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34316,8 +35774,8 @@ "non_qualified": null, "image": "1f596-1f3fe.png", "sheet_x": 30, - "sheet_y": 7, - "added_in": "2.0", + "sheet_y": 4, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34328,8 +35786,8 @@ "non_qualified": null, "image": "1f596-1f3ff.png", "sheet_x": 30, - "sheet_y": 8, - "added_in": "2.0", + "sheet_y": 5, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34347,7 +35805,7 @@ "google": null, "image": "1f5a4.png", "sheet_x": 30, - "sheet_y": 9, + "sheet_y": 6, "short_name": "black_heart", "short_names": [ "black_heart" @@ -34355,15 +35813,16 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 134, - "added_in": "4.0", + "subcategory": "emotion", + "sort_order": 136, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "DESKTOP COMPUTER", "unified": "1F5A5-FE0F", "non_qualified": "1F5A5", "docomo": null, @@ -34372,7 +35831,7 @@ "google": null, "image": "1f5a5-fe0f.png", "sheet_x": 30, - "sheet_y": 10, + "sheet_y": 7, "short_name": "desktop_computer", "short_names": [ "desktop_computer" @@ -34380,15 +35839,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 78, - "added_in": "2.0", + "subcategory": "computer", + "sort_order": 1153, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "PRINTER", "unified": "1F5A8-FE0F", "non_qualified": "1F5A8", "docomo": null, @@ -34397,7 +35857,7 @@ "google": null, "image": "1f5a8-fe0f.png", "sheet_x": 30, - "sheet_y": 11, + "sheet_y": 8, "short_name": "printer", "short_names": [ "printer" @@ -34405,15 +35865,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 79, - "added_in": "2.0", + "subcategory": "computer", + "sort_order": 1154, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "COMPUTER MOUSE", "unified": "1F5B1-FE0F", "non_qualified": "1F5B1", "docomo": null, @@ -34422,7 +35883,7 @@ "google": null, "image": "1f5b1-fe0f.png", "sheet_x": 30, - "sheet_y": 12, + "sheet_y": 9, "short_name": "three_button_mouse", "short_names": [ "three_button_mouse" @@ -34430,15 +35891,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 81, - "added_in": "2.0", + "subcategory": "computer", + "sort_order": 1156, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "TRACKBALL", "unified": "1F5B2-FE0F", "non_qualified": "1F5B2", "docomo": null, @@ -34447,7 +35909,7 @@ "google": null, "image": "1f5b2-fe0f.png", "sheet_x": 30, - "sheet_y": 13, + "sheet_y": 10, "short_name": "trackball", "short_names": [ "trackball" @@ -34455,15 +35917,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 82, - "added_in": "2.0", + "subcategory": "computer", + "sort_order": 1157, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "FRAMED PICTURE", "unified": "1F5BC-FE0F", "non_qualified": "1F5BC", "docomo": null, @@ -34472,7 +35935,7 @@ "google": null, "image": "1f5bc-fe0f.png", "sheet_x": 30, - "sheet_y": 14, + "sheet_y": 11, "short_name": "frame_with_picture", "short_names": [ "frame_with_picture" @@ -34480,15 +35943,16 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 76, - "added_in": "2.0", + "subcategory": "arts & crafts", + "sort_order": 1066, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CARD INDEX DIVIDERS", "unified": "1F5C2-FE0F", "non_qualified": "1F5C2", "docomo": null, @@ -34497,7 +35961,7 @@ "google": null, "image": "1f5c2-fe0f.png", "sheet_x": 30, - "sheet_y": 15, + "sheet_y": 12, "short_name": "card_index_dividers", "short_names": [ "card_index_dividers" @@ -34505,15 +35969,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 155, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1229, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CARD FILE BOX", "unified": "1F5C3-FE0F", "non_qualified": "1F5C3", "docomo": null, @@ -34522,7 +35987,7 @@ "google": null, "image": "1f5c3-fe0f.png", "sheet_x": 30, - "sheet_y": 16, + "sheet_y": 13, "short_name": "card_file_box", "short_names": [ "card_file_box" @@ -34530,15 +35995,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 172, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1246, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "FILE CABINET", "unified": "1F5C4-FE0F", "non_qualified": "1F5C4", "docomo": null, @@ -34547,7 +36013,7 @@ "google": null, "image": "1f5c4-fe0f.png", "sheet_x": 30, - "sheet_y": 17, + "sheet_y": 14, "short_name": "file_cabinet", "short_names": [ "file_cabinet" @@ -34555,15 +36021,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 173, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1247, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WASTEBASKET", "unified": "1F5D1-FE0F", "non_qualified": "1F5D1", "docomo": null, @@ -34572,7 +36039,7 @@ "google": null, "image": "1f5d1-fe0f.png", "sheet_x": 30, - "sheet_y": 18, + "sheet_y": 15, "short_name": "wastebasket", "short_names": [ "wastebasket" @@ -34580,15 +36047,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 174, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1248, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SPIRAL NOTEPAD", "unified": "1F5D2-FE0F", "non_qualified": "1F5D2", "docomo": null, @@ -34597,7 +36065,7 @@ "google": null, "image": "1f5d2-fe0f.png", "sheet_x": 30, - "sheet_y": 19, + "sheet_y": 16, "short_name": "spiral_note_pad", "short_names": [ "spiral_note_pad" @@ -34605,15 +36073,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 158, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1232, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SPIRAL CALENDAR", "unified": "1F5D3-FE0F", "non_qualified": "1F5D3", "docomo": null, @@ -34622,7 +36091,7 @@ "google": null, "image": "1f5d3-fe0f.png", "sheet_x": 30, - "sheet_y": 20, + "sheet_y": 17, "short_name": "spiral_calendar_pad", "short_names": [ "spiral_calendar_pad" @@ -34630,15 +36099,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 159, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1233, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CLAMP", "unified": "1F5DC-FE0F", "non_qualified": "1F5DC", "docomo": null, @@ -34647,7 +36117,7 @@ "google": null, "image": "1f5dc-fe0f.png", "sheet_x": 30, - "sheet_y": 21, + "sheet_y": 18, "short_name": "compression", "short_names": [ "compression" @@ -34655,15 +36125,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 194, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1271, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "OLD KEY", "unified": "1F5DD-FE0F", "non_qualified": "1F5DD", "docomo": null, @@ -34672,7 +36143,7 @@ "google": null, "image": "1f5dd-fe0f.png", "sheet_x": 30, - "sheet_y": 22, + "sheet_y": 19, "short_name": "old_key", "short_names": [ "old_key" @@ -34680,15 +36151,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 180, - "added_in": "2.0", + "subcategory": "lock", + "sort_order": 1254, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "ROLLED-UP NEWSPAPER", "unified": "1F5DE-FE0F", "non_qualified": "1F5DE", "docomo": null, @@ -34697,7 +36169,7 @@ "google": null, "image": "1f5de-fe0f.png", "sheet_x": 30, - "sheet_y": 23, + "sheet_y": 20, "short_name": "rolled_up_newspaper", "short_names": [ "rolled_up_newspaper" @@ -34705,15 +36177,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 117, - "added_in": "2.0", + "subcategory": "book-paper", + "sort_order": 1192, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "DAGGER", "unified": "1F5E1-FE0F", "non_qualified": "1F5E1", "docomo": null, @@ -34722,7 +36195,7 @@ "google": null, "image": "1f5e1-fe0f.png", "sheet_x": 30, - "sheet_y": 24, + "sheet_y": 21, "short_name": "dagger_knife", "short_names": [ "dagger_knife" @@ -34730,15 +36203,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 186, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1260, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SPEAKING HEAD", "unified": "1F5E3-FE0F", "non_qualified": "1F5E3", "docomo": null, @@ -34747,7 +36221,7 @@ "google": null, "image": "1f5e3-fe0f.png", "sheet_x": 30, - "sheet_y": 25, + "sheet_y": 22, "short_name": "speaking_head_in_silhouette", "short_names": [ "speaking_head_in_silhouette" @@ -34755,15 +36229,16 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 331, - "added_in": "2.0", + "subcategory": "person-symbol", + "sort_order": 494, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "LEFT SPEECH BUBBLE", "unified": "1F5E8-FE0F", "non_qualified": "1F5E8", "docomo": null, @@ -34772,7 +36247,7 @@ "google": null, "image": "1f5e8-fe0f.png", "sheet_x": 30, - "sheet_y": 26, + "sheet_y": 23, "short_name": "left_speech_bubble", "short_names": [ "left_speech_bubble" @@ -34780,7 +36255,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 146, + "subcategory": "emotion", + "sort_order": 148, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, @@ -34788,7 +36264,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "RIGHT ANGER BUBBLE", "unified": "1F5EF-FE0F", "non_qualified": "1F5EF", "docomo": null, @@ -34797,7 +36273,7 @@ "google": null, "image": "1f5ef-fe0f.png", "sheet_x": 30, - "sheet_y": 27, + "sheet_y": 24, "short_name": "right_anger_bubble", "short_names": [ "right_anger_bubble" @@ -34805,15 +36281,16 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 147, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 149, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "BALLOT BOX WITH BALLOT", "unified": "1F5F3-FE0F", "non_qualified": "1F5F3", "docomo": null, @@ -34822,7 +36299,7 @@ "google": null, "image": "1f5f3-fe0f.png", "sheet_x": 30, - "sheet_y": 28, + "sheet_y": 25, "short_name": "ballot_box_with_ballot", "short_names": [ "ballot_box_with_ballot" @@ -34830,15 +36307,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 144, - "added_in": "2.0", + "subcategory": "mail", + "sort_order": 1218, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WORLD MAP", "unified": "1F5FA-FE0F", "non_qualified": "1F5FA", "docomo": null, @@ -34847,7 +36325,7 @@ "google": null, "image": "1f5fa-fe0f.png", "sheet_x": 30, - "sheet_y": 29, + "sheet_y": 26, "short_name": "world_map", "short_names": [ "world_map" @@ -34855,8 +36333,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 5, - "added_in": "2.0", + "subcategory": "place-map", + "sort_order": 777, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34872,7 +36351,7 @@ "google": "FE4C3", "image": "1f5fb.png", "sheet_x": 30, - "sheet_y": 30, + "sheet_y": 27, "short_name": "mount_fuji", "short_names": [ "mount_fuji" @@ -34880,8 +36359,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 11, - "added_in": "2.0", + "subcategory": "place-geographic", + "sort_order": 783, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34897,7 +36377,7 @@ "google": "FE4C4", "image": "1f5fc.png", "sheet_x": 30, - "sheet_y": 31, + "sheet_y": 28, "short_name": "tokyo_tower", "short_names": [ "tokyo_tower" @@ -34905,8 +36385,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 39, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 814, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34922,7 +36403,7 @@ "google": "FE4C6", "image": "1f5fd.png", "sheet_x": 30, - "sheet_y": 32, + "sheet_y": 29, "short_name": "statue_of_liberty", "short_names": [ "statue_of_liberty" @@ -34930,8 +36411,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 40, - "added_in": "2.0", + "subcategory": "place-building", + "sort_order": 815, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34947,7 +36429,7 @@ "google": "FE4C7", "image": "1f5fe.png", "sheet_x": 30, - "sheet_y": 33, + "sheet_y": 30, "short_name": "japan", "short_names": [ "japan" @@ -34955,8 +36437,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 6, - "added_in": "2.0", + "subcategory": "place-map", + "sort_order": 778, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34972,7 +36455,7 @@ "google": "FE4C8", "image": "1f5ff.png", "sheet_x": 30, - "sheet_y": 34, + "sheet_y": 31, "short_name": "moyai", "short_names": [ "moyai" @@ -34980,8 +36463,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 233, - "added_in": "2.0", + "subcategory": "other-object", + "sort_order": 1320, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -34997,7 +36481,7 @@ "google": null, "image": "1f600.png", "sheet_x": 30, - "sheet_y": 35, + "sheet_y": 32, "short_name": "grinning", "short_names": [ "grinning" @@ -35005,8 +36489,9 @@ "text": ":D", "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-smiling", "sort_order": 1, - "added_in": "2.0", + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35022,7 +36507,7 @@ "google": "FE333", "image": "1f601.png", "sheet_x": 30, - "sheet_y": 36, + "sheet_y": 33, "short_name": "grin", "short_names": [ "grin" @@ -35030,8 +36515,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-smiling", "sort_order": 4, - "added_in": "2.0", + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35047,7 +36533,7 @@ "google": "FE334", "image": "1f602.png", "sheet_x": 30, - "sheet_y": 37, + "sheet_y": 34, "short_name": "joy", "short_names": [ "joy" @@ -35055,8 +36541,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-smiling", "sort_order": 8, - "added_in": "2.0", + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35072,7 +36559,7 @@ "google": "FE330", "image": "1f603.png", "sheet_x": 30, - "sheet_y": 38, + "sheet_y": 35, "short_name": "smiley", "short_names": [ "smiley" @@ -35083,8 +36570,9 @@ "=-)" ], "category": "Smileys & Emotion", + "subcategory": "face-smiling", "sort_order": 2, - "added_in": "2.0", + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35100,7 +36588,7 @@ "google": "FE338", "image": "1f604.png", "sheet_x": 30, - "sheet_y": 39, + "sheet_y": 36, "short_name": "smile", "short_names": [ "smile" @@ -35113,8 +36601,9 @@ ":-D" ], "category": "Smileys & Emotion", + "subcategory": "face-smiling", "sort_order": 3, - "added_in": "2.0", + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35130,7 +36619,7 @@ "google": "FE331", "image": "1f605.png", "sheet_x": 30, - "sheet_y": 40, + "sheet_y": 37, "short_name": "sweat_smile", "short_names": [ "sweat_smile" @@ -35138,8 +36627,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-smiling", "sort_order": 6, - "added_in": "2.0", + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35155,7 +36645,7 @@ "google": "FE332", "image": "1f606.png", "sheet_x": 30, - "sheet_y": 41, + "sheet_y": 38, "short_name": "laughing", "short_names": [ "laughing", @@ -35167,8 +36657,9 @@ ":->" ], "category": "Smileys & Emotion", + "subcategory": "face-smiling", "sort_order": 5, - "added_in": "2.0", + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35184,7 +36675,7 @@ "google": null, "image": "1f607.png", "sheet_x": 30, - "sheet_y": 42, + "sheet_y": 39, "short_name": "innocent", "short_names": [ "innocent" @@ -35192,8 +36683,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-smiling", "sort_order": 13, - "added_in": "2.0", + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35209,7 +36701,7 @@ "google": null, "image": "1f608.png", "sheet_x": 30, - "sheet_y": 43, + "sheet_y": 40, "short_name": "smiling_imp", "short_names": [ "smiling_imp" @@ -35217,8 +36709,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 91, - "added_in": "2.0", + "subcategory": "face-negative", + "sort_order": 93, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35234,7 +36727,7 @@ "google": "FE347", "image": "1f609.png", "sheet_x": 30, - "sheet_y": 44, + "sheet_y": 41, "short_name": "wink", "short_names": [ "wink" @@ -35245,8 +36738,9 @@ ";-)" ], "category": "Smileys & Emotion", + "subcategory": "face-smiling", "sort_order": 11, - "added_in": "2.0", + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35262,7 +36756,7 @@ "google": "FE335", "image": "1f60a.png", "sheet_x": 30, - "sheet_y": 45, + "sheet_y": 42, "short_name": "blush", "short_names": [ "blush" @@ -35270,8 +36764,9 @@ "text": ":)", "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-smiling", "sort_order": 12, - "added_in": "2.0", + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35287,7 +36782,7 @@ "google": "FE32B", "image": "1f60b.png", "sheet_x": 30, - "sheet_y": 46, + "sheet_y": 43, "short_name": "yum", "short_names": [ "yum" @@ -35295,8 +36790,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 22, - "added_in": "2.0", + "subcategory": "face-tongue", + "sort_order": 23, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35312,7 +36808,7 @@ "google": "FE33E", "image": "1f60c.png", "sheet_x": 30, - "sheet_y": 47, + "sheet_y": 44, "short_name": "relieved", "short_names": [ "relieved" @@ -35320,8 +36816,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 42, - "added_in": "2.0", + "subcategory": "face-sleepy", + "sort_order": 43, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35337,7 +36834,7 @@ "google": "FE327", "image": "1f60d.png", "sheet_x": 30, - "sheet_y": 48, + "sheet_y": 45, "short_name": "heart_eyes", "short_names": [ "heart_eyes" @@ -35345,8 +36842,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-affection", "sort_order": 15, - "added_in": "2.0", + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35362,7 +36860,7 @@ "google": null, "image": "1f60e.png", "sheet_x": 30, - "sheet_y": 49, + "sheet_y": 46, "short_name": "sunglasses", "short_names": [ "sunglasses" @@ -35372,8 +36870,9 @@ "8)" ], "category": "Smileys & Emotion", - "sort_order": 60, - "added_in": "2.0", + "subcategory": "face-glasses", + "sort_order": 62, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35389,7 +36888,7 @@ "google": "FE343", "image": "1f60f.png", "sheet_x": 30, - "sheet_y": 50, + "sheet_y": 47, "short_name": "smirk", "short_names": [ "smirk" @@ -35397,8 +36896,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 37, - "added_in": "2.0", + "subcategory": "face-neutral-skeptical", + "sort_order": 38, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35414,7 +36914,7 @@ "google": null, "image": "1f610.png", "sheet_x": 30, - "sheet_y": 51, + "sheet_y": 48, "short_name": "neutral_face", "short_names": [ "neutral_face" @@ -35425,8 +36925,9 @@ ":-|" ], "category": "Smileys & Emotion", - "sort_order": 34, - "added_in": "2.0", + "subcategory": "face-neutral-skeptical", + "sort_order": 35, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35442,7 +36943,7 @@ "google": null, "image": "1f611.png", "sheet_x": 30, - "sheet_y": 52, + "sheet_y": 49, "short_name": "expressionless", "short_names": [ "expressionless" @@ -35450,8 +36951,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 35, - "added_in": "2.0", + "subcategory": "face-neutral-skeptical", + "sort_order": 36, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35467,7 +36969,7 @@ "google": "FE326", "image": "1f612.png", "sheet_x": 30, - "sheet_y": 53, + "sheet_y": 50, "short_name": "unamused", "short_names": [ "unamused" @@ -35475,8 +36977,9 @@ "text": ":(", "texts": null, "category": "Smileys & Emotion", - "sort_order": 38, - "added_in": "2.0", + "subcategory": "face-neutral-skeptical", + "sort_order": 39, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35492,7 +36995,7 @@ "google": "FE344", "image": "1f613.png", "sheet_x": 30, - "sheet_y": 54, + "sheet_y": 51, "short_name": "sweat", "short_names": [ "sweat" @@ -35500,8 +37003,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 83, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 85, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35517,7 +37021,7 @@ "google": "FE340", "image": "1f614.png", "sheet_x": 30, - "sheet_y": 55, + "sheet_y": 52, "short_name": "pensive", "short_names": [ "pensive" @@ -35525,8 +37029,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 43, - "added_in": "2.0", + "subcategory": "face-sleepy", + "sort_order": 44, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35542,7 +37047,7 @@ "google": null, "image": "1f615.png", "sheet_x": 30, - "sheet_y": 56, + "sheet_y": 53, "short_name": "confused", "short_names": [ "confused" @@ -35555,8 +37060,9 @@ ":-\/" ], "category": "Smileys & Emotion", - "sort_order": 63, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 65, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35571,8 +37077,8 @@ "softbank": "E407", "google": "FE33F", "image": "1f616.png", - "sheet_x": 31, - "sheet_y": 0, + "sheet_x": 30, + "sheet_y": 54, "short_name": "confounded", "short_names": [ "confounded" @@ -35580,8 +37086,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 80, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 82, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35596,8 +37103,8 @@ "softbank": null, "google": null, "image": "1f617.png", - "sheet_x": 31, - "sheet_y": 1, + "sheet_x": 30, + "sheet_y": 55, "short_name": "kissing", "short_names": [ "kissing" @@ -35605,8 +37112,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-affection", "sort_order": 18, - "added_in": "2.0", + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35621,8 +37129,8 @@ "softbank": "E418", "google": "FE32C", "image": "1f618.png", - "sheet_x": 31, - "sheet_y": 2, + "sheet_x": 30, + "sheet_y": 56, "short_name": "kissing_heart", "short_names": [ "kissing_heart" @@ -35633,8 +37141,9 @@ ":-*" ], "category": "Smileys & Emotion", + "subcategory": "face-affection", "sort_order": 17, - "added_in": "2.0", + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35649,8 +37158,8 @@ "softbank": null, "google": null, "image": "1f619.png", - "sheet_x": 31, - "sheet_y": 3, + "sheet_x": 30, + "sheet_y": 57, "short_name": "kissing_smiling_eyes", "short_names": [ "kissing_smiling_eyes" @@ -35658,8 +37167,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-affection", "sort_order": 21, - "added_in": "2.0", + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35675,7 +37185,7 @@ "google": "FE32D", "image": "1f61a.png", "sheet_x": 31, - "sheet_y": 4, + "sheet_y": 0, "short_name": "kissing_closed_eyes", "short_names": [ "kissing_closed_eyes" @@ -35683,8 +37193,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-affection", "sort_order": 20, - "added_in": "2.0", + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35700,7 +37211,7 @@ "google": null, "image": "1f61b.png", "sheet_x": 31, - "sheet_y": 5, + "sheet_y": 1, "short_name": "stuck_out_tongue", "short_names": [ "stuck_out_tongue" @@ -35715,8 +37226,9 @@ ":-b" ], "category": "Smileys & Emotion", - "sort_order": 23, - "added_in": "2.0", + "subcategory": "face-tongue", + "sort_order": 24, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35732,7 +37244,7 @@ "google": "FE329", "image": "1f61c.png", "sheet_x": 31, - "sheet_y": 6, + "sheet_y": 2, "short_name": "stuck_out_tongue_winking_eye", "short_names": [ "stuck_out_tongue_winking_eye" @@ -35747,8 +37259,9 @@ ";-P" ], "category": "Smileys & Emotion", - "sort_order": 24, - "added_in": "2.0", + "subcategory": "face-tongue", + "sort_order": 25, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35764,7 +37277,7 @@ "google": "FE32A", "image": "1f61d.png", "sheet_x": 31, - "sheet_y": 7, + "sheet_y": 3, "short_name": "stuck_out_tongue_closed_eyes", "short_names": [ "stuck_out_tongue_closed_eyes" @@ -35772,8 +37285,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 26, - "added_in": "2.0", + "subcategory": "face-tongue", + "sort_order": 27, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35789,7 +37303,7 @@ "google": "FE323", "image": "1f61e.png", "sheet_x": 31, - "sheet_y": 8, + "sheet_y": 4, "short_name": "disappointed", "short_names": [ "disappointed" @@ -35801,8 +37315,9 @@ ":-(" ], "category": "Smileys & Emotion", - "sort_order": 82, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 84, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35818,7 +37333,7 @@ "google": null, "image": "1f61f.png", "sheet_x": 31, - "sheet_y": 9, + "sheet_y": 5, "short_name": "worried", "short_names": [ "worried" @@ -35826,8 +37341,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 64, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 66, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35843,7 +37359,7 @@ "google": "FE320", "image": "1f620.png", "sheet_x": 31, - "sheet_y": 10, + "sheet_y": 6, "short_name": "angry", "short_names": [ "angry" @@ -35854,8 +37370,9 @@ ">:-(" ], "category": "Smileys & Emotion", - "sort_order": 89, - "added_in": "2.0", + "subcategory": "face-negative", + "sort_order": 91, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35871,7 +37388,7 @@ "google": "FE33D", "image": "1f621.png", "sheet_x": 31, - "sheet_y": 11, + "sheet_y": 7, "short_name": "rage", "short_names": [ "rage" @@ -35879,8 +37396,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 88, - "added_in": "2.0", + "subcategory": "face-negative", + "sort_order": 90, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35896,7 +37414,7 @@ "google": "FE339", "image": "1f622.png", "sheet_x": 31, - "sheet_y": 12, + "sheet_y": 8, "short_name": "cry", "short_names": [ "cry" @@ -35906,8 +37424,9 @@ ":'(" ], "category": "Smileys & Emotion", - "sort_order": 77, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 79, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35923,7 +37442,7 @@ "google": "FE33C", "image": "1f623.png", "sheet_x": 31, - "sheet_y": 13, + "sheet_y": 9, "short_name": "persevere", "short_names": [ "persevere" @@ -35931,8 +37450,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 81, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 83, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35948,7 +37468,7 @@ "google": "FE328", "image": "1f624.png", "sheet_x": 31, - "sheet_y": 14, + "sheet_y": 10, "short_name": "triumph", "short_names": [ "triumph" @@ -35956,8 +37476,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 87, - "added_in": "2.0", + "subcategory": "face-negative", + "sort_order": 89, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35973,7 +37494,7 @@ "google": "FE345", "image": "1f625.png", "sheet_x": 31, - "sheet_y": 15, + "sheet_y": 11, "short_name": "disappointed_relieved", "short_names": [ "disappointed_relieved" @@ -35981,8 +37502,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 76, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 78, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -35998,7 +37520,7 @@ "google": null, "image": "1f626.png", "sheet_x": 31, - "sheet_y": 16, + "sheet_y": 12, "short_name": "frowning", "short_names": [ "frowning" @@ -36006,8 +37528,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 72, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 74, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36023,7 +37546,7 @@ "google": null, "image": "1f627.png", "sheet_x": 31, - "sheet_y": 17, + "sheet_y": 13, "short_name": "anguished", "short_names": [ "anguished" @@ -36033,8 +37556,9 @@ "D:" ], "category": "Smileys & Emotion", - "sort_order": 73, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 75, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36050,7 +37574,7 @@ "google": "FE33B", "image": "1f628.png", "sheet_x": 31, - "sheet_y": 18, + "sheet_y": 14, "short_name": "fearful", "short_names": [ "fearful" @@ -36058,8 +37582,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 74, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 76, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36075,7 +37600,7 @@ "google": "FE321", "image": "1f629.png", "sheet_x": 31, - "sheet_y": 19, + "sheet_y": 15, "short_name": "weary", "short_names": [ "weary" @@ -36083,8 +37608,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 84, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 86, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36100,7 +37626,7 @@ "google": "FE342", "image": "1f62a.png", "sheet_x": 31, - "sheet_y": 20, + "sheet_y": 16, "short_name": "sleepy", "short_names": [ "sleepy" @@ -36108,8 +37634,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 44, - "added_in": "2.0", + "subcategory": "face-sleepy", + "sort_order": 45, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36125,7 +37652,7 @@ "google": "FE346", "image": "1f62b.png", "sheet_x": 31, - "sheet_y": 21, + "sheet_y": 17, "short_name": "tired_face", "short_names": [ "tired_face" @@ -36133,8 +37660,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 85, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 87, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36150,7 +37678,7 @@ "google": null, "image": "1f62c.png", "sheet_x": 31, - "sheet_y": 22, + "sheet_y": 18, "short_name": "grimacing", "short_names": [ "grimacing" @@ -36158,8 +37686,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 40, - "added_in": "2.0", + "subcategory": "face-neutral-skeptical", + "sort_order": 41, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36175,7 +37704,7 @@ "google": "FE33A", "image": "1f62d.png", "sheet_x": 31, - "sheet_y": 23, + "sheet_y": 19, "short_name": "sob", "short_names": [ "sob" @@ -36183,8 +37712,9 @@ "text": ":'(", "texts": null, "category": "Smileys & Emotion", - "sort_order": 78, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 80, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36200,7 +37730,7 @@ "google": null, "image": "1f62e.png", "sheet_x": 31, - "sheet_y": 24, + "sheet_y": 20, "short_name": "open_mouth", "short_names": [ "open_mouth" @@ -36213,8 +37743,9 @@ ":-O" ], "category": "Smileys & Emotion", - "sort_order": 67, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 69, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36230,7 +37761,7 @@ "google": null, "image": "1f62f.png", "sheet_x": 31, - "sheet_y": 25, + "sheet_y": 21, "short_name": "hushed", "short_names": [ "hushed" @@ -36238,8 +37769,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 68, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 70, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36255,7 +37787,7 @@ "google": "FE325", "image": "1f630.png", "sheet_x": 31, - "sheet_y": 26, + "sheet_y": 22, "short_name": "cold_sweat", "short_names": [ "cold_sweat" @@ -36263,8 +37795,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 75, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 77, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36280,7 +37813,7 @@ "google": "FE341", "image": "1f631.png", "sheet_x": 31, - "sheet_y": 27, + "sheet_y": 23, "short_name": "scream", "short_names": [ "scream" @@ -36288,8 +37821,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 79, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 81, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36305,7 +37839,7 @@ "google": "FE322", "image": "1f632.png", "sheet_x": 31, - "sheet_y": 28, + "sheet_y": 24, "short_name": "astonished", "short_names": [ "astonished" @@ -36313,8 +37847,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 69, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 71, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36330,7 +37865,7 @@ "google": "FE32F", "image": "1f633.png", "sheet_x": 31, - "sheet_y": 29, + "sheet_y": 25, "short_name": "flushed", "short_names": [ "flushed" @@ -36338,8 +37873,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 70, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 72, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36355,7 +37891,7 @@ "google": null, "image": "1f634.png", "sheet_x": 31, - "sheet_y": 30, + "sheet_y": 26, "short_name": "sleeping", "short_names": [ "sleeping" @@ -36363,8 +37899,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 46, - "added_in": "2.0", + "subcategory": "face-sleepy", + "sort_order": 47, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36380,7 +37917,7 @@ "google": "FE324", "image": "1f635.png", "sheet_x": 31, - "sheet_y": 31, + "sheet_y": 27, "short_name": "dizzy_face", "short_names": [ "dizzy_face" @@ -36388,8 +37925,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 56, - "added_in": "2.0", + "subcategory": "face-unwell", + "sort_order": 57, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36405,7 +37943,7 @@ "google": null, "image": "1f636.png", "sheet_x": 31, - "sheet_y": 32, + "sheet_y": 28, "short_name": "no_mouth", "short_names": [ "no_mouth" @@ -36413,8 +37951,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 36, - "added_in": "2.0", + "subcategory": "face-neutral-skeptical", + "sort_order": 37, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36430,7 +37969,7 @@ "google": "FE32E", "image": "1f637.png", "sheet_x": 31, - "sheet_y": 33, + "sheet_y": 29, "short_name": "mask", "short_names": [ "mask" @@ -36438,8 +37977,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 47, - "added_in": "2.0", + "subcategory": "face-unwell", + "sort_order": 48, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36455,7 +37995,7 @@ "google": "FE349", "image": "1f638.png", "sheet_x": 31, - "sheet_y": 34, + "sheet_y": 30, "short_name": "smile_cat", "short_names": [ "smile_cat" @@ -36463,8 +38003,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 104, - "added_in": "2.0", + "subcategory": "cat-face", + "sort_order": 106, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36480,7 +38021,7 @@ "google": "FE34A", "image": "1f639.png", "sheet_x": 31, - "sheet_y": 35, + "sheet_y": 31, "short_name": "joy_cat", "short_names": [ "joy_cat" @@ -36488,8 +38029,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 105, - "added_in": "2.0", + "subcategory": "cat-face", + "sort_order": 107, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36505,7 +38047,7 @@ "google": "FE348", "image": "1f63a.png", "sheet_x": 31, - "sheet_y": 36, + "sheet_y": 32, "short_name": "smiley_cat", "short_names": [ "smiley_cat" @@ -36513,8 +38055,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 103, - "added_in": "2.0", + "subcategory": "cat-face", + "sort_order": 105, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36530,7 +38073,7 @@ "google": "FE34C", "image": "1f63b.png", "sheet_x": 31, - "sheet_y": 37, + "sheet_y": 33, "short_name": "heart_eyes_cat", "short_names": [ "heart_eyes_cat" @@ -36538,8 +38081,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 106, - "added_in": "2.0", + "subcategory": "cat-face", + "sort_order": 108, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36555,7 +38099,7 @@ "google": "FE34F", "image": "1f63c.png", "sheet_x": 31, - "sheet_y": 38, + "sheet_y": 34, "short_name": "smirk_cat", "short_names": [ "smirk_cat" @@ -36563,8 +38107,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 107, - "added_in": "2.0", + "subcategory": "cat-face", + "sort_order": 109, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36580,7 +38125,7 @@ "google": "FE34B", "image": "1f63d.png", "sheet_x": 31, - "sheet_y": 39, + "sheet_y": 35, "short_name": "kissing_cat", "short_names": [ "kissing_cat" @@ -36588,8 +38133,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 108, - "added_in": "2.0", + "subcategory": "cat-face", + "sort_order": 110, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36605,7 +38151,7 @@ "google": "FE34E", "image": "1f63e.png", "sheet_x": 31, - "sheet_y": 40, + "sheet_y": 36, "short_name": "pouting_cat", "short_names": [ "pouting_cat" @@ -36613,8 +38159,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 111, - "added_in": "2.0", + "subcategory": "cat-face", + "sort_order": 113, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36630,7 +38177,7 @@ "google": "FE34D", "image": "1f63f.png", "sheet_x": 31, - "sheet_y": 41, + "sheet_y": 37, "short_name": "crying_cat_face", "short_names": [ "crying_cat_face" @@ -36638,8 +38185,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 110, - "added_in": "2.0", + "subcategory": "cat-face", + "sort_order": 112, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36655,7 +38203,7 @@ "google": "FE350", "image": "1f640.png", "sheet_x": 31, - "sheet_y": 42, + "sheet_y": 38, "short_name": "scream_cat", "short_names": [ "scream_cat" @@ -36663,8 +38211,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 109, - "added_in": "2.0", + "subcategory": "cat-face", + "sort_order": 111, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36680,7 +38229,7 @@ "google": null, "image": "1f641.png", "sheet_x": 31, - "sheet_y": 43, + "sheet_y": 39, "short_name": "slightly_frowning_face", "short_names": [ "slightly_frowning_face" @@ -36688,8 +38237,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 65, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 67, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36705,7 +38255,7 @@ "google": null, "image": "1f642.png", "sheet_x": 31, - "sheet_y": 44, + "sheet_y": 40, "short_name": "slightly_smiling_face", "short_names": [ "slightly_smiling_face" @@ -36717,8 +38267,9 @@ ":-)" ], "category": "Smileys & Emotion", + "subcategory": "face-smiling", "sort_order": 9, - "added_in": "2.0", + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36734,7 +38285,7 @@ "google": null, "image": "1f643.png", "sheet_x": 31, - "sheet_y": 45, + "sheet_y": 41, "short_name": "upside_down_face", "short_names": [ "upside_down_face" @@ -36742,8 +38293,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-smiling", "sort_order": 10, - "added_in": "2.0", + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -36759,7 +38311,7 @@ "google": null, "image": "1f644.png", "sheet_x": 31, - "sheet_y": 46, + "sheet_y": 42, "short_name": "face_with_rolling_eyes", "short_names": [ "face_with_rolling_eyes" @@ -36767,15 +38319,16 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 39, - "added_in": "2.0", + "subcategory": "face-neutral-skeptical", + "sort_order": 40, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WOMAN GESTURING NO", "unified": "1F645-200D-2640-FE0F", "non_qualified": "1F645-200D-2640", "docomo": null, @@ -36784,7 +38337,7 @@ "google": null, "image": "1f645-200d-2640-fe0f.png", "sheet_x": 31, - "sheet_y": 47, + "sheet_y": 43, "short_name": "woman-gesturing-no", "short_names": [ "woman-gesturing-no" @@ -36792,7 +38345,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 83, + "subcategory": "person-gesture", + "sort_order": 237, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -36804,7 +38358,7 @@ "non_qualified": "1F645-1F3FB-200D-2640", "image": "1f645-1f3fb-200d-2640-fe0f.png", "sheet_x": 31, - "sheet_y": 48, + "sheet_y": 44, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -36816,7 +38370,7 @@ "non_qualified": "1F645-1F3FC-200D-2640", "image": "1f645-1f3fc-200d-2640-fe0f.png", "sheet_x": 31, - "sheet_y": 49, + "sheet_y": 45, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -36828,7 +38382,7 @@ "non_qualified": "1F645-1F3FD-200D-2640", "image": "1f645-1f3fd-200d-2640-fe0f.png", "sheet_x": 31, - "sheet_y": 50, + "sheet_y": 46, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -36840,7 +38394,7 @@ "non_qualified": "1F645-1F3FE-200D-2640", "image": "1f645-1f3fe-200d-2640-fe0f.png", "sheet_x": 31, - "sheet_y": 51, + "sheet_y": 47, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -36852,7 +38406,7 @@ "non_qualified": "1F645-1F3FF-200D-2640", "image": "1f645-1f3ff-200d-2640-fe0f.png", "sheet_x": 31, - "sheet_y": 52, + "sheet_y": 48, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -36863,7 +38417,7 @@ "obsoletes": "1F645" }, { - "name": null, + "name": "MAN GESTURING NO", "unified": "1F645-200D-2642-FE0F", "non_qualified": "1F645-200D-2642", "docomo": null, @@ -36872,7 +38426,7 @@ "google": null, "image": "1f645-200d-2642-fe0f.png", "sheet_x": 31, - "sheet_y": 53, + "sheet_y": 49, "short_name": "man-gesturing-no", "short_names": [ "man-gesturing-no" @@ -36880,7 +38434,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 82, + "subcategory": "person-gesture", + "sort_order": 236, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -36892,7 +38447,7 @@ "non_qualified": "1F645-1F3FB-200D-2642", "image": "1f645-1f3fb-200d-2642-fe0f.png", "sheet_x": 31, - "sheet_y": 54, + "sheet_y": 50, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -36904,7 +38459,7 @@ "non_qualified": "1F645-1F3FC-200D-2642", "image": "1f645-1f3fc-200d-2642-fe0f.png", "sheet_x": 31, - "sheet_y": 55, + "sheet_y": 51, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -36916,7 +38471,7 @@ "non_qualified": "1F645-1F3FD-200D-2642", "image": "1f645-1f3fd-200d-2642-fe0f.png", "sheet_x": 31, - "sheet_y": 56, + "sheet_y": 52, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -36927,8 +38482,8 @@ "unified": "1F645-1F3FE-200D-2642-FE0F", "non_qualified": "1F645-1F3FE-200D-2642", "image": "1f645-1f3fe-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 0, + "sheet_x": 31, + "sheet_y": 53, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -36939,8 +38494,8 @@ "unified": "1F645-1F3FF-200D-2642-FE0F", "non_qualified": "1F645-1F3FF-200D-2642", "image": "1f645-1f3ff-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 1, + "sheet_x": 31, + "sheet_y": 54, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -36958,8 +38513,8 @@ "softbank": "E423", "google": "FE351", "image": "1f645.png", - "sheet_x": 32, - "sheet_y": 2, + "sheet_x": 31, + "sheet_y": 55, "short_name": "no_good", "short_names": [ "no_good" @@ -36967,78 +38522,79 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 81, - "added_in": "2.0", + "subcategory": "person-gesture", + "sort_order": 235, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F645-1F3FB", "non_qualified": null, "image": "1f645-1f3fb.png", - "sheet_x": 32, - "sheet_y": 3, - "added_in": "2.0", + "sheet_x": 31, + "sheet_y": 56, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F645-1F3FC", "non_qualified": null, "image": "1f645-1f3fc.png", - "sheet_x": 32, - "sheet_y": 4, - "added_in": "2.0", + "sheet_x": 31, + "sheet_y": 57, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F645-1F3FD", "non_qualified": null, "image": "1f645-1f3fd.png", "sheet_x": 32, - "sheet_y": 5, - "added_in": "2.0", + "sheet_y": 0, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F645-1F3FE", "non_qualified": null, "image": "1f645-1f3fe.png", "sheet_x": 32, - "sheet_y": 6, - "added_in": "2.0", + "sheet_y": 1, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F645-1F3FF", "non_qualified": null, "image": "1f645-1f3ff.png", "sheet_x": 32, - "sheet_y": 7, - "added_in": "2.0", + "sheet_y": 2, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F645-200D-2640-FE0F" }, { - "name": null, + "name": "WOMAN GESTURING OK", "unified": "1F646-200D-2640-FE0F", "non_qualified": "1F646-200D-2640", "docomo": null, @@ -37047,7 +38603,7 @@ "google": null, "image": "1f646-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 8, + "sheet_y": 3, "short_name": "woman-gesturing-ok", "short_names": [ "woman-gesturing-ok" @@ -37055,7 +38611,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 86, + "subcategory": "person-gesture", + "sort_order": 240, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37067,7 +38624,7 @@ "non_qualified": "1F646-1F3FB-200D-2640", "image": "1f646-1f3fb-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 9, + "sheet_y": 4, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37079,7 +38636,7 @@ "non_qualified": "1F646-1F3FC-200D-2640", "image": "1f646-1f3fc-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 10, + "sheet_y": 5, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37091,7 +38648,7 @@ "non_qualified": "1F646-1F3FD-200D-2640", "image": "1f646-1f3fd-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 11, + "sheet_y": 6, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37103,7 +38660,7 @@ "non_qualified": "1F646-1F3FE-200D-2640", "image": "1f646-1f3fe-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 12, + "sheet_y": 7, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37115,7 +38672,7 @@ "non_qualified": "1F646-1F3FF-200D-2640", "image": "1f646-1f3ff-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 13, + "sheet_y": 8, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37126,7 +38683,7 @@ "obsoletes": "1F646" }, { - "name": null, + "name": "MAN GESTURING OK", "unified": "1F646-200D-2642-FE0F", "non_qualified": "1F646-200D-2642", "docomo": null, @@ -37135,7 +38692,7 @@ "google": null, "image": "1f646-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 14, + "sheet_y": 9, "short_name": "man-gesturing-ok", "short_names": [ "man-gesturing-ok" @@ -37143,7 +38700,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 85, + "subcategory": "person-gesture", + "sort_order": 239, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37155,7 +38713,7 @@ "non_qualified": "1F646-1F3FB-200D-2642", "image": "1f646-1f3fb-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 15, + "sheet_y": 10, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37167,7 +38725,7 @@ "non_qualified": "1F646-1F3FC-200D-2642", "image": "1f646-1f3fc-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 16, + "sheet_y": 11, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37179,7 +38737,7 @@ "non_qualified": "1F646-1F3FD-200D-2642", "image": "1f646-1f3fd-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 17, + "sheet_y": 12, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37191,7 +38749,7 @@ "non_qualified": "1F646-1F3FE-200D-2642", "image": "1f646-1f3fe-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 18, + "sheet_y": 13, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37203,7 +38761,7 @@ "non_qualified": "1F646-1F3FF-200D-2642", "image": "1f646-1f3ff-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 19, + "sheet_y": 14, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37222,7 +38780,7 @@ "google": "FE352", "image": "1f646.png", "sheet_x": 32, - "sheet_y": 20, + "sheet_y": 15, "short_name": "ok_woman", "short_names": [ "ok_woman" @@ -37230,78 +38788,79 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 84, - "added_in": "2.0", + "subcategory": "person-gesture", + "sort_order": 238, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F646-1F3FB", "non_qualified": null, "image": "1f646-1f3fb.png", "sheet_x": 32, - "sheet_y": 21, - "added_in": "2.0", + "sheet_y": 16, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F646-1F3FC", "non_qualified": null, "image": "1f646-1f3fc.png", "sheet_x": 32, - "sheet_y": 22, - "added_in": "2.0", + "sheet_y": 17, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F646-1F3FD", "non_qualified": null, "image": "1f646-1f3fd.png", "sheet_x": 32, - "sheet_y": 23, - "added_in": "2.0", + "sheet_y": 18, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F646-1F3FE", "non_qualified": null, "image": "1f646-1f3fe.png", "sheet_x": 32, - "sheet_y": 24, - "added_in": "2.0", + "sheet_y": 19, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F646-1F3FF", "non_qualified": null, "image": "1f646-1f3ff.png", "sheet_x": 32, - "sheet_y": 25, - "added_in": "2.0", + "sheet_y": 20, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F646-200D-2640-FE0F" }, { - "name": null, + "name": "WOMAN BOWING", "unified": "1F647-200D-2640-FE0F", "non_qualified": "1F647-200D-2640", "docomo": null, @@ -37310,7 +38869,7 @@ "google": null, "image": "1f647-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 26, + "sheet_y": 21, "short_name": "woman-bowing", "short_names": [ "woman-bowing" @@ -37318,7 +38877,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 98, + "subcategory": "person-gesture", + "sort_order": 252, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37330,7 +38890,7 @@ "non_qualified": "1F647-1F3FB-200D-2640", "image": "1f647-1f3fb-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 27, + "sheet_y": 22, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37342,7 +38902,7 @@ "non_qualified": "1F647-1F3FC-200D-2640", "image": "1f647-1f3fc-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 28, + "sheet_y": 23, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37354,7 +38914,7 @@ "non_qualified": "1F647-1F3FD-200D-2640", "image": "1f647-1f3fd-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 29, + "sheet_y": 24, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37366,7 +38926,7 @@ "non_qualified": "1F647-1F3FE-200D-2640", "image": "1f647-1f3fe-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 30, + "sheet_y": 25, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37378,7 +38938,7 @@ "non_qualified": "1F647-1F3FF-200D-2640", "image": "1f647-1f3ff-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 31, + "sheet_y": 26, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37388,7 +38948,7 @@ } }, { - "name": null, + "name": "MAN BOWING", "unified": "1F647-200D-2642-FE0F", "non_qualified": "1F647-200D-2642", "docomo": null, @@ -37397,7 +38957,7 @@ "google": null, "image": "1f647-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 32, + "sheet_y": 27, "short_name": "man-bowing", "short_names": [ "man-bowing" @@ -37405,7 +38965,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 97, + "subcategory": "person-gesture", + "sort_order": 251, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37417,7 +38978,7 @@ "non_qualified": "1F647-1F3FB-200D-2642", "image": "1f647-1f3fb-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 33, + "sheet_y": 28, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37429,7 +38990,7 @@ "non_qualified": "1F647-1F3FC-200D-2642", "image": "1f647-1f3fc-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 34, + "sheet_y": 29, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37441,7 +39002,7 @@ "non_qualified": "1F647-1F3FD-200D-2642", "image": "1f647-1f3fd-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 35, + "sheet_y": 30, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37453,7 +39014,7 @@ "non_qualified": "1F647-1F3FE-200D-2642", "image": "1f647-1f3fe-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 36, + "sheet_y": 31, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37465,7 +39026,7 @@ "non_qualified": "1F647-1F3FF-200D-2642", "image": "1f647-1f3ff-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 37, + "sheet_y": 32, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37485,7 +39046,7 @@ "google": "FE353", "image": "1f647.png", "sheet_x": 32, - "sheet_y": 38, + "sheet_y": 33, "short_name": "bow", "short_names": [ "bow" @@ -37493,72 +39054,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 96, - "added_in": "2.0", + "subcategory": "person-gesture", + "sort_order": 250, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F647-1F3FB", "non_qualified": null, "image": "1f647-1f3fb.png", "sheet_x": 32, - "sheet_y": 39, - "added_in": "2.0", + "sheet_y": 34, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F647-1F3FC", "non_qualified": null, "image": "1f647-1f3fc.png", "sheet_x": 32, - "sheet_y": 40, - "added_in": "2.0", + "sheet_y": 35, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F647-1F3FD", "non_qualified": null, "image": "1f647-1f3fd.png", "sheet_x": 32, - "sheet_y": 41, - "added_in": "2.0", + "sheet_y": 36, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F647-1F3FE", "non_qualified": null, "image": "1f647-1f3fe.png", "sheet_x": 32, - "sheet_y": 42, - "added_in": "2.0", + "sheet_y": 37, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F647-1F3FF", "non_qualified": null, "image": "1f647-1f3ff.png", "sheet_x": 32, - "sheet_y": 43, - "added_in": "2.0", + "sheet_y": 38, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F647-200D-2642-FE0F" @@ -37573,7 +39135,7 @@ "google": "FE354", "image": "1f648.png", "sheet_x": 32, - "sheet_y": 44, + "sheet_y": 39, "short_name": "see_no_evil", "short_names": [ "see_no_evil" @@ -37581,8 +39143,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 112, - "added_in": "2.0", + "subcategory": "monkey-face", + "sort_order": 114, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -37598,7 +39161,7 @@ "google": "FE356", "image": "1f649.png", "sheet_x": 32, - "sheet_y": 45, + "sheet_y": 40, "short_name": "hear_no_evil", "short_names": [ "hear_no_evil" @@ -37606,8 +39169,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 113, - "added_in": "2.0", + "subcategory": "monkey-face", + "sort_order": 115, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -37623,7 +39187,7 @@ "google": "FE355", "image": "1f64a.png", "sheet_x": 32, - "sheet_y": 46, + "sheet_y": 41, "short_name": "speak_no_evil", "short_names": [ "speak_no_evil" @@ -37631,15 +39195,16 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 114, - "added_in": "2.0", + "subcategory": "monkey-face", + "sort_order": 116, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WOMAN RAISING HAND", "unified": "1F64B-200D-2640-FE0F", "non_qualified": "1F64B-200D-2640", "docomo": null, @@ -37648,7 +39213,7 @@ "google": null, "image": "1f64b-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 47, + "sheet_y": 42, "short_name": "woman-raising-hand", "short_names": [ "woman-raising-hand" @@ -37656,7 +39221,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 92, + "subcategory": "person-gesture", + "sort_order": 246, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37668,7 +39234,7 @@ "non_qualified": "1F64B-1F3FB-200D-2640", "image": "1f64b-1f3fb-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 48, + "sheet_y": 43, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37680,7 +39246,7 @@ "non_qualified": "1F64B-1F3FC-200D-2640", "image": "1f64b-1f3fc-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 49, + "sheet_y": 44, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37692,7 +39258,7 @@ "non_qualified": "1F64B-1F3FD-200D-2640", "image": "1f64b-1f3fd-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 50, + "sheet_y": 45, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37704,7 +39270,7 @@ "non_qualified": "1F64B-1F3FE-200D-2640", "image": "1f64b-1f3fe-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 51, + "sheet_y": 46, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37716,7 +39282,7 @@ "non_qualified": "1F64B-1F3FF-200D-2640", "image": "1f64b-1f3ff-200d-2640-fe0f.png", "sheet_x": 32, - "sheet_y": 52, + "sheet_y": 47, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37727,7 +39293,7 @@ "obsoletes": "1F64B" }, { - "name": null, + "name": "MAN RAISING HAND", "unified": "1F64B-200D-2642-FE0F", "non_qualified": "1F64B-200D-2642", "docomo": null, @@ -37736,7 +39302,7 @@ "google": null, "image": "1f64b-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 53, + "sheet_y": 48, "short_name": "man-raising-hand", "short_names": [ "man-raising-hand" @@ -37744,7 +39310,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 91, + "subcategory": "person-gesture", + "sort_order": 245, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37756,7 +39323,7 @@ "non_qualified": "1F64B-1F3FB-200D-2642", "image": "1f64b-1f3fb-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 54, + "sheet_y": 49, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37768,7 +39335,7 @@ "non_qualified": "1F64B-1F3FC-200D-2642", "image": "1f64b-1f3fc-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 55, + "sheet_y": 50, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37780,7 +39347,7 @@ "non_qualified": "1F64B-1F3FD-200D-2642", "image": "1f64b-1f3fd-200d-2642-fe0f.png", "sheet_x": 32, - "sheet_y": 56, + "sheet_y": 51, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37791,8 +39358,8 @@ "unified": "1F64B-1F3FE-200D-2642-FE0F", "non_qualified": "1F64B-1F3FE-200D-2642", "image": "1f64b-1f3fe-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 0, + "sheet_x": 32, + "sheet_y": 52, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37803,8 +39370,8 @@ "unified": "1F64B-1F3FF-200D-2642-FE0F", "non_qualified": "1F64B-1F3FF-200D-2642", "image": "1f64b-1f3ff-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 1, + "sheet_x": 32, + "sheet_y": 53, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -37822,8 +39389,8 @@ "softbank": null, "google": "FE357", "image": "1f64b.png", - "sheet_x": 33, - "sheet_y": 2, + "sheet_x": 32, + "sheet_y": 54, "short_name": "raising_hand", "short_names": [ "raising_hand" @@ -37831,72 +39398,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 90, - "added_in": "2.0", + "subcategory": "person-gesture", + "sort_order": 244, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F64B-1F3FB", "non_qualified": null, "image": "1f64b-1f3fb.png", - "sheet_x": 33, - "sheet_y": 3, - "added_in": "2.0", + "sheet_x": 32, + "sheet_y": 55, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F64B-1F3FC", "non_qualified": null, "image": "1f64b-1f3fc.png", - "sheet_x": 33, - "sheet_y": 4, - "added_in": "2.0", + "sheet_x": 32, + "sheet_y": 56, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F64B-1F3FD", "non_qualified": null, "image": "1f64b-1f3fd.png", - "sheet_x": 33, - "sheet_y": 5, - "added_in": "2.0", + "sheet_x": 32, + "sheet_y": 57, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F64B-1F3FE", "non_qualified": null, "image": "1f64b-1f3fe.png", "sheet_x": 33, - "sheet_y": 6, - "added_in": "2.0", + "sheet_y": 0, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F64B-1F3FF", "non_qualified": null, "image": "1f64b-1f3ff.png", "sheet_x": 33, - "sheet_y": 7, - "added_in": "2.0", + "sheet_y": 1, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F64B-200D-2640-FE0F" @@ -37911,7 +39479,7 @@ "google": "FE358", "image": "1f64c.png", "sheet_x": 33, - "sheet_y": 8, + "sheet_y": 2, "short_name": "raised_hands", "short_names": [ "raised_hands" @@ -37919,8 +39487,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 26, - "added_in": "2.0", + "subcategory": "hands", + "sort_order": 178, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -37931,8 +39500,8 @@ "non_qualified": null, "image": "1f64c-1f3fb.png", "sheet_x": 33, - "sheet_y": 9, - "added_in": "2.0", + "sheet_y": 3, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -37943,8 +39512,8 @@ "non_qualified": null, "image": "1f64c-1f3fc.png", "sheet_x": 33, - "sheet_y": 10, - "added_in": "2.0", + "sheet_y": 4, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -37955,8 +39524,8 @@ "non_qualified": null, "image": "1f64c-1f3fd.png", "sheet_x": 33, - "sheet_y": 11, - "added_in": "2.0", + "sheet_y": 5, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -37967,8 +39536,8 @@ "non_qualified": null, "image": "1f64c-1f3fe.png", "sheet_x": 33, - "sheet_y": 12, - "added_in": "2.0", + "sheet_y": 6, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -37979,8 +39548,8 @@ "non_qualified": null, "image": "1f64c-1f3ff.png", "sheet_x": 33, - "sheet_y": 13, - "added_in": "2.0", + "sheet_y": 7, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -37989,7 +39558,7 @@ } }, { - "name": null, + "name": "WOMAN FROWNING", "unified": "1F64D-200D-2640-FE0F", "non_qualified": "1F64D-200D-2640", "docomo": null, @@ -37998,7 +39567,7 @@ "google": null, "image": "1f64d-200d-2640-fe0f.png", "sheet_x": 33, - "sheet_y": 14, + "sheet_y": 8, "short_name": "woman-frowning", "short_names": [ "woman-frowning" @@ -38006,7 +39575,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 77, + "subcategory": "person-gesture", + "sort_order": 231, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38018,7 +39588,7 @@ "non_qualified": "1F64D-1F3FB-200D-2640", "image": "1f64d-1f3fb-200d-2640-fe0f.png", "sheet_x": 33, - "sheet_y": 15, + "sheet_y": 9, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38030,7 +39600,7 @@ "non_qualified": "1F64D-1F3FC-200D-2640", "image": "1f64d-1f3fc-200d-2640-fe0f.png", "sheet_x": 33, - "sheet_y": 16, + "sheet_y": 10, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38042,7 +39612,7 @@ "non_qualified": "1F64D-1F3FD-200D-2640", "image": "1f64d-1f3fd-200d-2640-fe0f.png", "sheet_x": 33, - "sheet_y": 17, + "sheet_y": 11, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38054,7 +39624,7 @@ "non_qualified": "1F64D-1F3FE-200D-2640", "image": "1f64d-1f3fe-200d-2640-fe0f.png", "sheet_x": 33, - "sheet_y": 18, + "sheet_y": 12, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38066,7 +39636,7 @@ "non_qualified": "1F64D-1F3FF-200D-2640", "image": "1f64d-1f3ff-200d-2640-fe0f.png", "sheet_x": 33, - "sheet_y": 19, + "sheet_y": 13, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38077,7 +39647,7 @@ "obsoletes": "1F64D" }, { - "name": null, + "name": "MAN FROWNING", "unified": "1F64D-200D-2642-FE0F", "non_qualified": "1F64D-200D-2642", "docomo": null, @@ -38086,7 +39656,7 @@ "google": null, "image": "1f64d-200d-2642-fe0f.png", "sheet_x": 33, - "sheet_y": 20, + "sheet_y": 14, "short_name": "man-frowning", "short_names": [ "man-frowning" @@ -38094,7 +39664,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 76, + "subcategory": "person-gesture", + "sort_order": 230, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38106,7 +39677,7 @@ "non_qualified": "1F64D-1F3FB-200D-2642", "image": "1f64d-1f3fb-200d-2642-fe0f.png", "sheet_x": 33, - "sheet_y": 21, + "sheet_y": 15, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38118,7 +39689,7 @@ "non_qualified": "1F64D-1F3FC-200D-2642", "image": "1f64d-1f3fc-200d-2642-fe0f.png", "sheet_x": 33, - "sheet_y": 22, + "sheet_y": 16, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38130,7 +39701,7 @@ "non_qualified": "1F64D-1F3FD-200D-2642", "image": "1f64d-1f3fd-200d-2642-fe0f.png", "sheet_x": 33, - "sheet_y": 23, + "sheet_y": 17, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38142,7 +39713,7 @@ "non_qualified": "1F64D-1F3FE-200D-2642", "image": "1f64d-1f3fe-200d-2642-fe0f.png", "sheet_x": 33, - "sheet_y": 24, + "sheet_y": 18, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38154,7 +39725,7 @@ "non_qualified": "1F64D-1F3FF-200D-2642", "image": "1f64d-1f3ff-200d-2642-fe0f.png", "sheet_x": 33, - "sheet_y": 25, + "sheet_y": 19, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38173,7 +39744,7 @@ "google": "FE359", "image": "1f64d.png", "sheet_x": 33, - "sheet_y": 26, + "sheet_y": 20, "short_name": "person_frowning", "short_names": [ "person_frowning" @@ -38181,78 +39752,79 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 75, - "added_in": "2.0", + "subcategory": "person-gesture", + "sort_order": 229, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F64D-1F3FB", "non_qualified": null, "image": "1f64d-1f3fb.png", "sheet_x": 33, - "sheet_y": 27, - "added_in": "2.0", + "sheet_y": 21, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F64D-1F3FC", "non_qualified": null, "image": "1f64d-1f3fc.png", "sheet_x": 33, - "sheet_y": 28, - "added_in": "2.0", + "sheet_y": 22, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F64D-1F3FD", "non_qualified": null, "image": "1f64d-1f3fd.png", "sheet_x": 33, - "sheet_y": 29, - "added_in": "2.0", + "sheet_y": 23, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F64D-1F3FE", "non_qualified": null, "image": "1f64d-1f3fe.png", "sheet_x": 33, - "sheet_y": 30, - "added_in": "2.0", + "sheet_y": 24, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F64D-1F3FF", "non_qualified": null, "image": "1f64d-1f3ff.png", "sheet_x": 33, - "sheet_y": 31, - "added_in": "2.0", + "sheet_y": 25, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F64D-200D-2640-FE0F" }, { - "name": null, + "name": "WOMAN POUTING", "unified": "1F64E-200D-2640-FE0F", "non_qualified": "1F64E-200D-2640", "docomo": null, @@ -38261,7 +39833,7 @@ "google": null, "image": "1f64e-200d-2640-fe0f.png", "sheet_x": 33, - "sheet_y": 32, + "sheet_y": 26, "short_name": "woman-pouting", "short_names": [ "woman-pouting" @@ -38269,7 +39841,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 80, + "subcategory": "person-gesture", + "sort_order": 234, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38281,7 +39854,7 @@ "non_qualified": "1F64E-1F3FB-200D-2640", "image": "1f64e-1f3fb-200d-2640-fe0f.png", "sheet_x": 33, - "sheet_y": 33, + "sheet_y": 27, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38293,7 +39866,7 @@ "non_qualified": "1F64E-1F3FC-200D-2640", "image": "1f64e-1f3fc-200d-2640-fe0f.png", "sheet_x": 33, - "sheet_y": 34, + "sheet_y": 28, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38305,7 +39878,7 @@ "non_qualified": "1F64E-1F3FD-200D-2640", "image": "1f64e-1f3fd-200d-2640-fe0f.png", "sheet_x": 33, - "sheet_y": 35, + "sheet_y": 29, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38317,7 +39890,7 @@ "non_qualified": "1F64E-1F3FE-200D-2640", "image": "1f64e-1f3fe-200d-2640-fe0f.png", "sheet_x": 33, - "sheet_y": 36, + "sheet_y": 30, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38329,7 +39902,7 @@ "non_qualified": "1F64E-1F3FF-200D-2640", "image": "1f64e-1f3ff-200d-2640-fe0f.png", "sheet_x": 33, - "sheet_y": 37, + "sheet_y": 31, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38340,7 +39913,7 @@ "obsoletes": "1F64E" }, { - "name": null, + "name": "MAN POUTING", "unified": "1F64E-200D-2642-FE0F", "non_qualified": "1F64E-200D-2642", "docomo": null, @@ -38349,7 +39922,7 @@ "google": null, "image": "1f64e-200d-2642-fe0f.png", "sheet_x": 33, - "sheet_y": 38, + "sheet_y": 32, "short_name": "man-pouting", "short_names": [ "man-pouting" @@ -38357,7 +39930,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 79, + "subcategory": "person-gesture", + "sort_order": 233, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38369,7 +39943,7 @@ "non_qualified": "1F64E-1F3FB-200D-2642", "image": "1f64e-1f3fb-200d-2642-fe0f.png", "sheet_x": 33, - "sheet_y": 39, + "sheet_y": 33, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38381,7 +39955,7 @@ "non_qualified": "1F64E-1F3FC-200D-2642", "image": "1f64e-1f3fc-200d-2642-fe0f.png", "sheet_x": 33, - "sheet_y": 40, + "sheet_y": 34, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38393,7 +39967,7 @@ "non_qualified": "1F64E-1F3FD-200D-2642", "image": "1f64e-1f3fd-200d-2642-fe0f.png", "sheet_x": 33, - "sheet_y": 41, + "sheet_y": 35, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38405,7 +39979,7 @@ "non_qualified": "1F64E-1F3FE-200D-2642", "image": "1f64e-1f3fe-200d-2642-fe0f.png", "sheet_x": 33, - "sheet_y": 42, + "sheet_y": 36, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38417,7 +39991,7 @@ "non_qualified": "1F64E-1F3FF-200D-2642", "image": "1f64e-1f3ff-200d-2642-fe0f.png", "sheet_x": 33, - "sheet_y": 43, + "sheet_y": 37, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -38436,7 +40010,7 @@ "google": "FE35A", "image": "1f64e.png", "sheet_x": 33, - "sheet_y": 44, + "sheet_y": 38, "short_name": "person_with_pouting_face", "short_names": [ "person_with_pouting_face" @@ -38444,72 +40018,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 78, - "added_in": "2.0", + "subcategory": "person-gesture", + "sort_order": 232, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F64E-1F3FB", "non_qualified": null, "image": "1f64e-1f3fb.png", "sheet_x": 33, - "sheet_y": 45, - "added_in": "2.0", + "sheet_y": 39, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F64E-1F3FC", "non_qualified": null, "image": "1f64e-1f3fc.png", "sheet_x": 33, - "sheet_y": 46, - "added_in": "2.0", + "sheet_y": 40, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F64E-1F3FD", "non_qualified": null, "image": "1f64e-1f3fd.png", "sheet_x": 33, - "sheet_y": 47, - "added_in": "2.0", + "sheet_y": 41, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F64E-1F3FE", "non_qualified": null, "image": "1f64e-1f3fe.png", "sheet_x": 33, - "sheet_y": 48, - "added_in": "2.0", + "sheet_y": 42, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F64E-1F3FF", "non_qualified": null, "image": "1f64e-1f3ff.png", "sheet_x": 33, - "sheet_y": 49, - "added_in": "2.0", + "sheet_y": 43, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F64E-200D-2640-FE0F" @@ -38524,7 +40099,7 @@ "google": "FE35B", "image": "1f64f.png", "sheet_x": 33, - "sheet_y": 50, + "sheet_y": 44, "short_name": "pray", "short_names": [ "pray" @@ -38532,8 +40107,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 30, - "added_in": "2.0", + "subcategory": "hands", + "sort_order": 182, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38544,8 +40120,8 @@ "non_qualified": null, "image": "1f64f-1f3fb.png", "sheet_x": 33, - "sheet_y": 51, - "added_in": "2.0", + "sheet_y": 45, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38556,8 +40132,8 @@ "non_qualified": null, "image": "1f64f-1f3fc.png", "sheet_x": 33, - "sheet_y": 52, - "added_in": "2.0", + "sheet_y": 46, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38568,8 +40144,8 @@ "non_qualified": null, "image": "1f64f-1f3fd.png", "sheet_x": 33, - "sheet_y": 53, - "added_in": "2.0", + "sheet_y": 47, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38580,8 +40156,8 @@ "non_qualified": null, "image": "1f64f-1f3fe.png", "sheet_x": 33, - "sheet_y": 54, - "added_in": "2.0", + "sheet_y": 48, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38592,8 +40168,8 @@ "non_qualified": null, "image": "1f64f-1f3ff.png", "sheet_x": 33, - "sheet_y": 55, - "added_in": "2.0", + "sheet_y": 49, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38611,7 +40187,7 @@ "google": "FE7ED", "image": "1f680.png", "sheet_x": 33, - "sheet_y": 56, + "sheet_y": 50, "short_name": "rocket", "short_names": [ "rocket" @@ -38619,8 +40195,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 129, - "added_in": "2.0", + "subcategory": "transport-air", + "sort_order": 906, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38635,8 +40212,8 @@ "softbank": null, "google": null, "image": "1f681.png", - "sheet_x": 34, - "sheet_y": 0, + "sheet_x": 33, + "sheet_y": 51, "short_name": "helicopter", "short_names": [ "helicopter" @@ -38644,8 +40221,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 124, - "added_in": "2.0", + "subcategory": "transport-air", + "sort_order": 901, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38660,8 +40238,8 @@ "softbank": null, "google": null, "image": "1f682.png", - "sheet_x": 34, - "sheet_y": 1, + "sheet_x": 33, + "sheet_y": 52, "short_name": "steam_locomotive", "short_names": [ "steam_locomotive" @@ -38669,8 +40247,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 63, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 838, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38685,8 +40264,8 @@ "softbank": "E01E", "google": "FE7DF", "image": "1f683.png", - "sheet_x": 34, - "sheet_y": 2, + "sheet_x": 33, + "sheet_y": 53, "short_name": "railway_car", "short_names": [ "railway_car" @@ -38694,8 +40273,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 64, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 839, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38710,8 +40290,8 @@ "softbank": "E435", "google": "FE7E2", "image": "1f684.png", - "sheet_x": 34, - "sheet_y": 3, + "sheet_x": 33, + "sheet_y": 54, "short_name": "bullettrain_side", "short_names": [ "bullettrain_side" @@ -38719,8 +40299,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 65, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 840, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38735,8 +40316,8 @@ "softbank": "E01F", "google": "FE7E3", "image": "1f685.png", - "sheet_x": 34, - "sheet_y": 4, + "sheet_x": 33, + "sheet_y": 55, "short_name": "bullettrain_front", "short_names": [ "bullettrain_front" @@ -38744,8 +40325,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 66, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 841, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38760,8 +40342,8 @@ "softbank": null, "google": null, "image": "1f686.png", - "sheet_x": 34, - "sheet_y": 5, + "sheet_x": 33, + "sheet_y": 56, "short_name": "train2", "short_names": [ "train2" @@ -38769,8 +40351,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 67, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 842, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38785,8 +40368,8 @@ "softbank": "E434", "google": "FE7E0", "image": "1f687.png", - "sheet_x": 34, - "sheet_y": 6, + "sheet_x": 33, + "sheet_y": 57, "short_name": "metro", "short_names": [ "metro" @@ -38794,8 +40377,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 68, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 843, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38811,7 +40395,7 @@ "google": null, "image": "1f688.png", "sheet_x": 34, - "sheet_y": 7, + "sheet_y": 0, "short_name": "light_rail", "short_names": [ "light_rail" @@ -38819,8 +40403,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 69, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 844, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38836,7 +40421,7 @@ "google": "FE7EC", "image": "1f689.png", "sheet_x": 34, - "sheet_y": 8, + "sheet_y": 1, "short_name": "station", "short_names": [ "station" @@ -38844,8 +40429,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 70, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 845, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38861,7 +40447,7 @@ "google": null, "image": "1f68a.png", "sheet_x": 34, - "sheet_y": 9, + "sheet_y": 2, "short_name": "tram", "short_names": [ "tram" @@ -38869,8 +40455,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 71, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 846, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38886,7 +40473,7 @@ "google": null, "image": "1f68b.png", "sheet_x": 34, - "sheet_y": 10, + "sheet_y": 3, "short_name": "train", "short_names": [ "train" @@ -38894,8 +40481,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 74, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 849, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38911,7 +40499,7 @@ "google": "FE7E6", "image": "1f68c.png", "sheet_x": 34, - "sheet_y": 11, + "sheet_y": 4, "short_name": "bus", "short_names": [ "bus" @@ -38919,8 +40507,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 75, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 850, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38936,7 +40525,7 @@ "google": null, "image": "1f68d.png", "sheet_x": 34, - "sheet_y": 12, + "sheet_y": 5, "short_name": "oncoming_bus", "short_names": [ "oncoming_bus" @@ -38944,8 +40533,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 76, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 851, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38961,7 +40551,7 @@ "google": null, "image": "1f68e.png", "sheet_x": 34, - "sheet_y": 13, + "sheet_y": 6, "short_name": "trolleybus", "short_names": [ "trolleybus" @@ -38969,8 +40559,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 77, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 852, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -38986,7 +40577,7 @@ "google": "FE7E7", "image": "1f68f.png", "sheet_x": 34, - "sheet_y": 14, + "sheet_y": 7, "short_name": "busstop", "short_names": [ "busstop" @@ -38994,8 +40585,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 100, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 877, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39011,7 +40603,7 @@ "google": null, "image": "1f690.png", "sheet_x": 34, - "sheet_y": 15, + "sheet_y": 8, "short_name": "minibus", "short_names": [ "minibus" @@ -39019,8 +40611,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 78, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 853, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39036,7 +40629,7 @@ "google": "FE7F3", "image": "1f691.png", "sheet_x": 34, - "sheet_y": 16, + "sheet_y": 9, "short_name": "ambulance", "short_names": [ "ambulance" @@ -39044,8 +40637,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 79, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 854, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39061,7 +40655,7 @@ "google": "FE7F2", "image": "1f692.png", "sheet_x": 34, - "sheet_y": 17, + "sheet_y": 10, "short_name": "fire_engine", "short_names": [ "fire_engine" @@ -39069,8 +40663,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 80, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 855, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39086,7 +40681,7 @@ "google": "FE7F4", "image": "1f693.png", "sheet_x": 34, - "sheet_y": 18, + "sheet_y": 11, "short_name": "police_car", "short_names": [ "police_car" @@ -39094,8 +40689,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 81, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 856, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39111,7 +40707,7 @@ "google": null, "image": "1f694.png", "sheet_x": 34, - "sheet_y": 19, + "sheet_y": 12, "short_name": "oncoming_police_car", "short_names": [ "oncoming_police_car" @@ -39119,8 +40715,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 82, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 857, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39136,7 +40733,7 @@ "google": "FE7EF", "image": "1f695.png", "sheet_x": 34, - "sheet_y": 20, + "sheet_y": 13, "short_name": "taxi", "short_names": [ "taxi" @@ -39144,8 +40741,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 83, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 858, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39161,7 +40759,7 @@ "google": null, "image": "1f696.png", "sheet_x": 34, - "sheet_y": 21, + "sheet_y": 14, "short_name": "oncoming_taxi", "short_names": [ "oncoming_taxi" @@ -39169,8 +40767,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 84, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 859, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39186,7 +40785,7 @@ "google": "FE7E4", "image": "1f697.png", "sheet_x": 34, - "sheet_y": 22, + "sheet_y": 15, "short_name": "car", "short_names": [ "car", @@ -39195,8 +40794,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 85, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 860, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39212,7 +40812,7 @@ "google": null, "image": "1f698.png", "sheet_x": 34, - "sheet_y": 23, + "sheet_y": 16, "short_name": "oncoming_automobile", "short_names": [ "oncoming_automobile" @@ -39220,8 +40820,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 86, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 861, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39237,7 +40838,7 @@ "google": "FE7E5", "image": "1f699.png", "sheet_x": 34, - "sheet_y": 24, + "sheet_y": 17, "short_name": "blue_car", "short_names": [ "blue_car" @@ -39245,8 +40846,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 87, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 862, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39262,7 +40864,7 @@ "google": "FE7F1", "image": "1f69a.png", "sheet_x": 34, - "sheet_y": 25, + "sheet_y": 18, "short_name": "truck", "short_names": [ "truck" @@ -39270,8 +40872,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 88, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 864, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39287,7 +40890,7 @@ "google": null, "image": "1f69b.png", "sheet_x": 34, - "sheet_y": 26, + "sheet_y": 19, "short_name": "articulated_lorry", "short_names": [ "articulated_lorry" @@ -39295,8 +40898,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 89, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 865, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39312,7 +40916,7 @@ "google": null, "image": "1f69c.png", "sheet_x": 34, - "sheet_y": 27, + "sheet_y": 20, "short_name": "tractor", "short_names": [ "tractor" @@ -39320,8 +40924,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 90, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 866, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39337,7 +40942,7 @@ "google": null, "image": "1f69d.png", "sheet_x": 34, - "sheet_y": 28, + "sheet_y": 21, "short_name": "monorail", "short_names": [ "monorail" @@ -39345,8 +40950,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 72, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 847, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39362,7 +40968,7 @@ "google": null, "image": "1f69e.png", "sheet_x": 34, - "sheet_y": 29, + "sheet_y": 22, "short_name": "mountain_railway", "short_names": [ "mountain_railway" @@ -39370,8 +40976,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 73, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 848, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39387,7 +40994,7 @@ "google": null, "image": "1f69f.png", "sheet_x": 34, - "sheet_y": 30, + "sheet_y": 23, "short_name": "suspension_railway", "short_names": [ "suspension_railway" @@ -39395,8 +41002,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 125, - "added_in": "2.0", + "subcategory": "transport-air", + "sort_order": 902, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39412,7 +41020,7 @@ "google": null, "image": "1f6a0.png", "sheet_x": 34, - "sheet_y": 31, + "sheet_y": 24, "short_name": "mountain_cableway", "short_names": [ "mountain_cableway" @@ -39420,8 +41028,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 126, - "added_in": "2.0", + "subcategory": "transport-air", + "sort_order": 903, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39437,7 +41046,7 @@ "google": null, "image": "1f6a1.png", "sheet_x": 34, - "sheet_y": 32, + "sheet_y": 25, "short_name": "aerial_tramway", "short_names": [ "aerial_tramway" @@ -39445,8 +41054,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 127, - "added_in": "2.0", + "subcategory": "transport-air", + "sort_order": 904, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39462,7 +41072,7 @@ "google": "FE7E8", "image": "1f6a2.png", "sheet_x": 34, - "sheet_y": 33, + "sheet_y": 26, "short_name": "ship", "short_names": [ "ship" @@ -39470,15 +41080,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 117, - "added_in": "2.0", + "subcategory": "transport-water", + "sort_order": 894, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WOMAN ROWING BOAT", "unified": "1F6A3-200D-2640-FE0F", "non_qualified": "1F6A3-200D-2640", "docomo": null, @@ -39487,7 +41098,7 @@ "google": null, "image": "1f6a3-200d-2640-fe0f.png", "sheet_x": 34, - "sheet_y": 34, + "sheet_y": 27, "short_name": "woman-rowing-boat", "short_names": [ "woman-rowing-boat" @@ -39495,7 +41106,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 257, + "subcategory": "person-sport", + "sort_order": 420, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -39507,7 +41119,7 @@ "non_qualified": "1F6A3-1F3FB-200D-2640", "image": "1f6a3-1f3fb-200d-2640-fe0f.png", "sheet_x": 34, - "sheet_y": 35, + "sheet_y": 28, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -39519,7 +41131,7 @@ "non_qualified": "1F6A3-1F3FC-200D-2640", "image": "1f6a3-1f3fc-200d-2640-fe0f.png", "sheet_x": 34, - "sheet_y": 36, + "sheet_y": 29, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -39531,7 +41143,7 @@ "non_qualified": "1F6A3-1F3FD-200D-2640", "image": "1f6a3-1f3fd-200d-2640-fe0f.png", "sheet_x": 34, - "sheet_y": 37, + "sheet_y": 30, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -39543,7 +41155,7 @@ "non_qualified": "1F6A3-1F3FE-200D-2640", "image": "1f6a3-1f3fe-200d-2640-fe0f.png", "sheet_x": 34, - "sheet_y": 38, + "sheet_y": 31, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -39555,7 +41167,7 @@ "non_qualified": "1F6A3-1F3FF-200D-2640", "image": "1f6a3-1f3ff-200d-2640-fe0f.png", "sheet_x": 34, - "sheet_y": 39, + "sheet_y": 32, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -39565,7 +41177,7 @@ } }, { - "name": null, + "name": "MAN ROWING BOAT", "unified": "1F6A3-200D-2642-FE0F", "non_qualified": "1F6A3-200D-2642", "docomo": null, @@ -39574,7 +41186,7 @@ "google": null, "image": "1f6a3-200d-2642-fe0f.png", "sheet_x": 34, - "sheet_y": 40, + "sheet_y": 33, "short_name": "man-rowing-boat", "short_names": [ "man-rowing-boat" @@ -39582,7 +41194,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 256, + "subcategory": "person-sport", + "sort_order": 419, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -39594,7 +41207,7 @@ "non_qualified": "1F6A3-1F3FB-200D-2642", "image": "1f6a3-1f3fb-200d-2642-fe0f.png", "sheet_x": 34, - "sheet_y": 41, + "sheet_y": 34, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -39606,7 +41219,7 @@ "non_qualified": "1F6A3-1F3FC-200D-2642", "image": "1f6a3-1f3fc-200d-2642-fe0f.png", "sheet_x": 34, - "sheet_y": 42, + "sheet_y": 35, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -39618,7 +41231,7 @@ "non_qualified": "1F6A3-1F3FD-200D-2642", "image": "1f6a3-1f3fd-200d-2642-fe0f.png", "sheet_x": 34, - "sheet_y": 43, + "sheet_y": 36, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -39630,7 +41243,7 @@ "non_qualified": "1F6A3-1F3FE-200D-2642", "image": "1f6a3-1f3fe-200d-2642-fe0f.png", "sheet_x": 34, - "sheet_y": 44, + "sheet_y": 37, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -39642,7 +41255,7 @@ "non_qualified": "1F6A3-1F3FF-200D-2642", "image": "1f6a3-1f3ff-200d-2642-fe0f.png", "sheet_x": 34, - "sheet_y": 45, + "sheet_y": 38, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -39662,7 +41275,7 @@ "google": null, "image": "1f6a3.png", "sheet_x": 34, - "sheet_y": 46, + "sheet_y": 39, "short_name": "rowboat", "short_names": [ "rowboat" @@ -39670,72 +41283,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 255, - "added_in": "2.0", + "subcategory": "person-sport", + "sort_order": 418, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F6A3-1F3FB", "non_qualified": null, "image": "1f6a3-1f3fb.png", "sheet_x": 34, - "sheet_y": 47, - "added_in": "2.0", + "sheet_y": 40, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F6A3-1F3FC", "non_qualified": null, "image": "1f6a3-1f3fc.png", "sheet_x": 34, - "sheet_y": 48, - "added_in": "2.0", + "sheet_y": 41, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F6A3-1F3FD", "non_qualified": null, "image": "1f6a3-1f3fd.png", "sheet_x": 34, - "sheet_y": 49, - "added_in": "2.0", + "sheet_y": 42, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F6A3-1F3FE", "non_qualified": null, "image": "1f6a3-1f3fe.png", "sheet_x": 34, - "sheet_y": 50, - "added_in": "2.0", + "sheet_y": 43, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F6A3-1F3FF", "non_qualified": null, "image": "1f6a3-1f3ff.png", "sheet_x": 34, - "sheet_y": 51, - "added_in": "2.0", + "sheet_y": 44, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F6A3-200D-2642-FE0F" @@ -39750,7 +41364,7 @@ "google": "FE7EE", "image": "1f6a4.png", "sheet_x": 34, - "sheet_y": 52, + "sheet_y": 45, "short_name": "speedboat", "short_names": [ "speedboat" @@ -39758,8 +41372,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 113, - "added_in": "2.0", + "subcategory": "transport-water", + "sort_order": 890, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39775,7 +41390,7 @@ "google": "FE7F7", "image": "1f6a5.png", "sheet_x": 34, - "sheet_y": 53, + "sheet_y": 46, "short_name": "traffic_light", "short_names": [ "traffic_light" @@ -39783,8 +41398,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 106, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 883, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39800,7 +41416,7 @@ "google": null, "image": "1f6a6.png", "sheet_x": 34, - "sheet_y": 54, + "sheet_y": 47, "short_name": "vertical_traffic_light", "short_names": [ "vertical_traffic_light" @@ -39808,8 +41424,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 107, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 884, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39825,7 +41442,7 @@ "google": "FE7F8", "image": "1f6a7.png", "sheet_x": 34, - "sheet_y": 55, + "sheet_y": 48, "short_name": "construction", "short_names": [ "construction" @@ -39833,8 +41450,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 109, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 886, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39850,7 +41468,7 @@ "google": "FE7F9", "image": "1f6a8.png", "sheet_x": 34, - "sheet_y": 56, + "sheet_y": 49, "short_name": "rotating_light", "short_names": [ "rotating_light" @@ -39858,8 +41476,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 105, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 882, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39874,8 +41493,8 @@ "softbank": null, "google": "FEB22", "image": "1f6a9.png", - "sheet_x": 35, - "sheet_y": 0, + "sheet_x": 34, + "sheet_y": 50, "short_name": "triangular_flag_on_post", "short_names": [ "triangular_flag_on_post" @@ -39883,8 +41502,9 @@ "text": null, "texts": null, "category": "Flags", - "sort_order": 2, - "added_in": "2.0", + "subcategory": "flag", + "sort_order": 1543, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39899,8 +41519,8 @@ "softbank": null, "google": "FE4F3", "image": "1f6aa.png", - "sheet_x": 35, - "sheet_y": 1, + "sheet_x": 34, + "sheet_y": 51, "short_name": "door", "short_names": [ "door" @@ -39908,8 +41528,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 213, - "added_in": "2.0", + "subcategory": "household", + "sort_order": 1292, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39924,8 +41545,8 @@ "softbank": null, "google": "FEB48", "image": "1f6ab.png", - "sheet_x": 35, - "sheet_y": 2, + "sheet_x": 34, + "sheet_y": 52, "short_name": "no_entry_sign", "short_names": [ "no_entry_sign" @@ -39933,8 +41554,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 17, - "added_in": "2.0", + "subcategory": "warning", + "sort_order": 1338, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39949,8 +41571,8 @@ "softbank": "E30E", "google": "FEB1E", "image": "1f6ac.png", - "sheet_x": 35, - "sheet_y": 3, + "sheet_x": 34, + "sheet_y": 53, "short_name": "smoking", "short_names": [ "smoking" @@ -39958,8 +41580,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 230, - "added_in": "2.0", + "subcategory": "other-object", + "sort_order": 1316, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39974,8 +41597,8 @@ "softbank": "E208", "google": "FEB1F", "image": "1f6ad.png", - "sheet_x": 35, - "sheet_y": 4, + "sheet_x": 34, + "sheet_y": 54, "short_name": "no_smoking", "short_names": [ "no_smoking" @@ -39983,8 +41606,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 19, - "added_in": "2.0", + "subcategory": "warning", + "sort_order": 1340, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -39999,8 +41623,8 @@ "softbank": null, "google": null, "image": "1f6ae.png", - "sheet_x": 35, - "sheet_y": 5, + "sheet_x": 34, + "sheet_y": 55, "short_name": "put_litter_in_its_place", "short_names": [ "put_litter_in_its_place" @@ -40008,8 +41632,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 2, - "added_in": "2.0", + "subcategory": "transport-sign", + "sort_order": 1323, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -40024,8 +41649,8 @@ "softbank": null, "google": null, "image": "1f6af.png", - "sheet_x": 35, - "sheet_y": 6, + "sheet_x": 34, + "sheet_y": 56, "short_name": "do_not_litter", "short_names": [ "do_not_litter" @@ -40033,8 +41658,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 20, - "added_in": "2.0", + "subcategory": "warning", + "sort_order": 1341, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -40049,8 +41675,8 @@ "softbank": null, "google": null, "image": "1f6b0.png", - "sheet_x": 35, - "sheet_y": 7, + "sheet_x": 34, + "sheet_y": 57, "short_name": "potable_water", "short_names": [ "potable_water" @@ -40058,8 +41684,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 3, - "added_in": "2.0", + "subcategory": "transport-sign", + "sort_order": 1324, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -40075,7 +41702,7 @@ "google": null, "image": "1f6b1.png", "sheet_x": 35, - "sheet_y": 8, + "sheet_y": 0, "short_name": "non-potable_water", "short_names": [ "non-potable_water" @@ -40083,8 +41710,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 21, - "added_in": "2.0", + "subcategory": "warning", + "sort_order": 1342, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -40100,7 +41728,7 @@ "google": "FE7EB", "image": "1f6b2.png", "sheet_x": 35, - "sheet_y": 9, + "sheet_y": 1, "short_name": "bike", "short_names": [ "bike" @@ -40108,8 +41736,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 97, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 873, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -40125,7 +41754,7 @@ "google": null, "image": "1f6b3.png", "sheet_x": 35, - "sheet_y": 10, + "sheet_y": 2, "short_name": "no_bicycles", "short_names": [ "no_bicycles" @@ -40133,15 +41762,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 18, - "added_in": "2.0", + "subcategory": "warning", + "sort_order": 1339, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WOMAN BIKING", "unified": "1F6B4-200D-2640-FE0F", "non_qualified": "1F6B4-200D-2640", "docomo": null, @@ -40150,7 +41780,7 @@ "google": null, "image": "1f6b4-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 11, + "sheet_y": 3, "short_name": "woman-biking", "short_names": [ "woman-biking" @@ -40158,7 +41788,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 269, + "subcategory": "person-sport", + "sort_order": 432, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40170,7 +41801,7 @@ "non_qualified": "1F6B4-1F3FB-200D-2640", "image": "1f6b4-1f3fb-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 12, + "sheet_y": 4, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40182,7 +41813,7 @@ "non_qualified": "1F6B4-1F3FC-200D-2640", "image": "1f6b4-1f3fc-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 13, + "sheet_y": 5, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40194,7 +41825,7 @@ "non_qualified": "1F6B4-1F3FD-200D-2640", "image": "1f6b4-1f3fd-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 14, + "sheet_y": 6, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40206,7 +41837,7 @@ "non_qualified": "1F6B4-1F3FE-200D-2640", "image": "1f6b4-1f3fe-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 15, + "sheet_y": 7, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40218,7 +41849,7 @@ "non_qualified": "1F6B4-1F3FF-200D-2640", "image": "1f6b4-1f3ff-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 16, + "sheet_y": 8, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40228,7 +41859,7 @@ } }, { - "name": null, + "name": "MAN BIKING", "unified": "1F6B4-200D-2642-FE0F", "non_qualified": "1F6B4-200D-2642", "docomo": null, @@ -40237,7 +41868,7 @@ "google": null, "image": "1f6b4-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 17, + "sheet_y": 9, "short_name": "man-biking", "short_names": [ "man-biking" @@ -40245,7 +41876,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 268, + "subcategory": "person-sport", + "sort_order": 431, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40257,7 +41889,7 @@ "non_qualified": "1F6B4-1F3FB-200D-2642", "image": "1f6b4-1f3fb-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 18, + "sheet_y": 10, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40269,7 +41901,7 @@ "non_qualified": "1F6B4-1F3FC-200D-2642", "image": "1f6b4-1f3fc-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 19, + "sheet_y": 11, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40281,7 +41913,7 @@ "non_qualified": "1F6B4-1F3FD-200D-2642", "image": "1f6b4-1f3fd-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 20, + "sheet_y": 12, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40293,7 +41925,7 @@ "non_qualified": "1F6B4-1F3FE-200D-2642", "image": "1f6b4-1f3fe-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 21, + "sheet_y": 13, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40305,7 +41937,7 @@ "non_qualified": "1F6B4-1F3FF-200D-2642", "image": "1f6b4-1f3ff-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 22, + "sheet_y": 14, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40325,7 +41957,7 @@ "google": null, "image": "1f6b4.png", "sheet_x": 35, - "sheet_y": 23, + "sheet_y": 15, "short_name": "bicyclist", "short_names": [ "bicyclist" @@ -40333,78 +41965,79 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 267, - "added_in": "2.0", + "subcategory": "person-sport", + "sort_order": 430, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F6B4-1F3FB", "non_qualified": null, "image": "1f6b4-1f3fb.png", "sheet_x": 35, - "sheet_y": 24, - "added_in": "2.0", + "sheet_y": 16, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F6B4-1F3FC", "non_qualified": null, "image": "1f6b4-1f3fc.png", "sheet_x": 35, - "sheet_y": 25, - "added_in": "2.0", + "sheet_y": 17, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F6B4-1F3FD", "non_qualified": null, "image": "1f6b4-1f3fd.png", "sheet_x": 35, - "sheet_y": 26, - "added_in": "2.0", + "sheet_y": 18, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F6B4-1F3FE", "non_qualified": null, "image": "1f6b4-1f3fe.png", "sheet_x": 35, - "sheet_y": 27, - "added_in": "2.0", + "sheet_y": 19, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F6B4-1F3FF", "non_qualified": null, "image": "1f6b4-1f3ff.png", "sheet_x": 35, - "sheet_y": 28, - "added_in": "2.0", + "sheet_y": 20, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F6B4-200D-2642-FE0F" }, { - "name": null, + "name": "WOMAN MOUNTAIN BIKING", "unified": "1F6B5-200D-2640-FE0F", "non_qualified": "1F6B5-200D-2640", "docomo": null, @@ -40413,7 +42046,7 @@ "google": null, "image": "1f6b5-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 29, + "sheet_y": 21, "short_name": "woman-mountain-biking", "short_names": [ "woman-mountain-biking" @@ -40421,7 +42054,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 272, + "subcategory": "person-sport", + "sort_order": 435, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40433,7 +42067,7 @@ "non_qualified": "1F6B5-1F3FB-200D-2640", "image": "1f6b5-1f3fb-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 30, + "sheet_y": 22, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40445,7 +42079,7 @@ "non_qualified": "1F6B5-1F3FC-200D-2640", "image": "1f6b5-1f3fc-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 31, + "sheet_y": 23, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40457,7 +42091,7 @@ "non_qualified": "1F6B5-1F3FD-200D-2640", "image": "1f6b5-1f3fd-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 32, + "sheet_y": 24, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40469,7 +42103,7 @@ "non_qualified": "1F6B5-1F3FE-200D-2640", "image": "1f6b5-1f3fe-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 33, + "sheet_y": 25, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40481,7 +42115,7 @@ "non_qualified": "1F6B5-1F3FF-200D-2640", "image": "1f6b5-1f3ff-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 34, + "sheet_y": 26, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40491,7 +42125,7 @@ } }, { - "name": null, + "name": "MAN MOUNTAIN BIKING", "unified": "1F6B5-200D-2642-FE0F", "non_qualified": "1F6B5-200D-2642", "docomo": null, @@ -40500,7 +42134,7 @@ "google": null, "image": "1f6b5-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 35, + "sheet_y": 27, "short_name": "man-mountain-biking", "short_names": [ "man-mountain-biking" @@ -40508,7 +42142,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 271, + "subcategory": "person-sport", + "sort_order": 434, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40520,7 +42155,7 @@ "non_qualified": "1F6B5-1F3FB-200D-2642", "image": "1f6b5-1f3fb-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 36, + "sheet_y": 28, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40532,7 +42167,7 @@ "non_qualified": "1F6B5-1F3FC-200D-2642", "image": "1f6b5-1f3fc-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 37, + "sheet_y": 29, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40544,7 +42179,7 @@ "non_qualified": "1F6B5-1F3FD-200D-2642", "image": "1f6b5-1f3fd-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 38, + "sheet_y": 30, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40556,7 +42191,7 @@ "non_qualified": "1F6B5-1F3FE-200D-2642", "image": "1f6b5-1f3fe-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 39, + "sheet_y": 31, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40568,7 +42203,7 @@ "non_qualified": "1F6B5-1F3FF-200D-2642", "image": "1f6b5-1f3ff-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 40, + "sheet_y": 32, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40588,7 +42223,7 @@ "google": null, "image": "1f6b5.png", "sheet_x": 35, - "sheet_y": 41, + "sheet_y": 33, "short_name": "mountain_bicyclist", "short_names": [ "mountain_bicyclist" @@ -40596,78 +42231,79 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 270, - "added_in": "2.0", + "subcategory": "person-sport", + "sort_order": 433, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F6B5-1F3FB", "non_qualified": null, "image": "1f6b5-1f3fb.png", "sheet_x": 35, - "sheet_y": 42, - "added_in": "2.0", + "sheet_y": 34, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F6B5-1F3FC", "non_qualified": null, "image": "1f6b5-1f3fc.png", "sheet_x": 35, - "sheet_y": 43, - "added_in": "2.0", + "sheet_y": 35, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F6B5-1F3FD", "non_qualified": null, "image": "1f6b5-1f3fd.png", "sheet_x": 35, - "sheet_y": 44, - "added_in": "2.0", + "sheet_y": 36, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F6B5-1F3FE", "non_qualified": null, "image": "1f6b5-1f3fe.png", "sheet_x": 35, - "sheet_y": 45, - "added_in": "2.0", + "sheet_y": 37, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F6B5-1F3FF", "non_qualified": null, "image": "1f6b5-1f3ff.png", "sheet_x": 35, - "sheet_y": 46, - "added_in": "2.0", + "sheet_y": 38, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F6B5-200D-2642-FE0F" }, { - "name": null, + "name": "WOMAN WALKING", "unified": "1F6B6-200D-2640-FE0F", "non_qualified": "1F6B6-200D-2640", "docomo": null, @@ -40676,7 +42312,7 @@ "google": null, "image": "1f6b6-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 47, + "sheet_y": 39, "short_name": "woman-walking", "short_names": [ "woman-walking" @@ -40684,7 +42320,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 214, + "subcategory": "person-activity", + "sort_order": 377, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40696,7 +42333,7 @@ "non_qualified": "1F6B6-1F3FB-200D-2640", "image": "1f6b6-1f3fb-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 48, + "sheet_y": 40, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40708,7 +42345,7 @@ "non_qualified": "1F6B6-1F3FC-200D-2640", "image": "1f6b6-1f3fc-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 49, + "sheet_y": 41, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40720,7 +42357,7 @@ "non_qualified": "1F6B6-1F3FD-200D-2640", "image": "1f6b6-1f3fd-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 50, + "sheet_y": 42, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40732,7 +42369,7 @@ "non_qualified": "1F6B6-1F3FE-200D-2640", "image": "1f6b6-1f3fe-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 51, + "sheet_y": 43, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40744,7 +42381,7 @@ "non_qualified": "1F6B6-1F3FF-200D-2640", "image": "1f6b6-1f3ff-200d-2640-fe0f.png", "sheet_x": 35, - "sheet_y": 52, + "sheet_y": 44, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40754,7 +42391,7 @@ } }, { - "name": null, + "name": "MAN WALKING", "unified": "1F6B6-200D-2642-FE0F", "non_qualified": "1F6B6-200D-2642", "docomo": null, @@ -40763,7 +42400,7 @@ "google": null, "image": "1f6b6-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 53, + "sheet_y": 45, "short_name": "man-walking", "short_names": [ "man-walking" @@ -40771,7 +42408,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 213, + "subcategory": "person-activity", + "sort_order": 376, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40783,7 +42421,7 @@ "non_qualified": "1F6B6-1F3FB-200D-2642", "image": "1f6b6-1f3fb-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 54, + "sheet_y": 46, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40795,7 +42433,7 @@ "non_qualified": "1F6B6-1F3FC-200D-2642", "image": "1f6b6-1f3fc-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 55, + "sheet_y": 47, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40807,7 +42445,7 @@ "non_qualified": "1F6B6-1F3FD-200D-2642", "image": "1f6b6-1f3fd-200d-2642-fe0f.png", "sheet_x": 35, - "sheet_y": 56, + "sheet_y": 48, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40818,8 +42456,8 @@ "unified": "1F6B6-1F3FE-200D-2642-FE0F", "non_qualified": "1F6B6-1F3FE-200D-2642", "image": "1f6b6-1f3fe-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 0, + "sheet_x": 35, + "sheet_y": 49, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40830,8 +42468,8 @@ "unified": "1F6B6-1F3FF-200D-2642-FE0F", "non_qualified": "1F6B6-1F3FF-200D-2642", "image": "1f6b6-1f3ff-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 1, + "sheet_x": 35, + "sheet_y": 50, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -40850,8 +42488,8 @@ "softbank": "E201", "google": "FE7F0", "image": "1f6b6.png", - "sheet_x": 36, - "sheet_y": 2, + "sheet_x": 35, + "sheet_y": 51, "short_name": "walking", "short_names": [ "walking" @@ -40859,72 +42497,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 212, - "added_in": "2.0", + "subcategory": "person-activity", + "sort_order": 375, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F6B6-1F3FB", "non_qualified": null, "image": "1f6b6-1f3fb.png", - "sheet_x": 36, - "sheet_y": 3, - "added_in": "2.0", + "sheet_x": 35, + "sheet_y": 52, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F6B6-1F3FC", "non_qualified": null, "image": "1f6b6-1f3fc.png", - "sheet_x": 36, - "sheet_y": 4, - "added_in": "2.0", + "sheet_x": 35, + "sheet_y": 53, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F6B6-1F3FD", "non_qualified": null, "image": "1f6b6-1f3fd.png", - "sheet_x": 36, - "sheet_y": 5, - "added_in": "2.0", + "sheet_x": 35, + "sheet_y": 54, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F6B6-1F3FE", "non_qualified": null, "image": "1f6b6-1f3fe.png", - "sheet_x": 36, - "sheet_y": 6, - "added_in": "2.0", + "sheet_x": 35, + "sheet_y": 55, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F6B6-1F3FF", "non_qualified": null, "image": "1f6b6-1f3ff.png", - "sheet_x": 36, - "sheet_y": 7, - "added_in": "2.0", + "sheet_x": 35, + "sheet_y": 56, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "1F6B6-200D-2642-FE0F" @@ -40938,8 +42577,8 @@ "softbank": null, "google": null, "image": "1f6b7.png", - "sheet_x": 36, - "sheet_y": 8, + "sheet_x": 35, + "sheet_y": 57, "short_name": "no_pedestrians", "short_names": [ "no_pedestrians" @@ -40947,8 +42586,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 22, - "added_in": "2.0", + "subcategory": "warning", + "sort_order": 1343, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -40964,7 +42604,7 @@ "google": null, "image": "1f6b8.png", "sheet_x": 36, - "sheet_y": 9, + "sheet_y": 0, "short_name": "children_crossing", "short_names": [ "children_crossing" @@ -40972,8 +42612,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 15, - "added_in": "2.0", + "subcategory": "warning", + "sort_order": 1336, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -40989,7 +42630,7 @@ "google": "FEB33", "image": "1f6b9.png", "sheet_x": 36, - "sheet_y": 10, + "sheet_y": 1, "short_name": "mens", "short_names": [ "mens" @@ -40997,8 +42638,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 5, - "added_in": "2.0", + "subcategory": "transport-sign", + "sort_order": 1326, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41014,7 +42656,7 @@ "google": "FEB34", "image": "1f6ba.png", "sheet_x": 36, - "sheet_y": 11, + "sheet_y": 2, "short_name": "womens", "short_names": [ "womens" @@ -41022,8 +42664,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 6, - "added_in": "2.0", + "subcategory": "transport-sign", + "sort_order": 1327, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41039,7 +42682,7 @@ "google": "FE506", "image": "1f6bb.png", "sheet_x": 36, - "sheet_y": 12, + "sheet_y": 3, "short_name": "restroom", "short_names": [ "restroom" @@ -41047,8 +42690,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 7, - "added_in": "2.0", + "subcategory": "transport-sign", + "sort_order": 1328, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41064,7 +42708,7 @@ "google": "FEB35", "image": "1f6bc.png", "sheet_x": 36, - "sheet_y": 13, + "sheet_y": 4, "short_name": "baby_symbol", "short_names": [ "baby_symbol" @@ -41072,8 +42716,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 8, - "added_in": "2.0", + "subcategory": "transport-sign", + "sort_order": 1329, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41089,7 +42734,7 @@ "google": "FE507", "image": "1f6bd.png", "sheet_x": 36, - "sheet_y": 14, + "sheet_y": 5, "short_name": "toilet", "short_names": [ "toilet" @@ -41097,8 +42742,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 217, - "added_in": "2.0", + "subcategory": "household", + "sort_order": 1299, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41114,7 +42760,7 @@ "google": "FE508", "image": "1f6be.png", "sheet_x": 36, - "sheet_y": 15, + "sheet_y": 6, "short_name": "wc", "short_names": [ "wc" @@ -41122,8 +42768,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 9, - "added_in": "2.0", + "subcategory": "transport-sign", + "sort_order": 1330, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41139,7 +42786,7 @@ "google": null, "image": "1f6bf.png", "sheet_x": 36, - "sheet_y": 16, + "sheet_y": 7, "short_name": "shower", "short_names": [ "shower" @@ -41147,8 +42794,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 218, - "added_in": "2.0", + "subcategory": "household", + "sort_order": 1301, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41164,7 +42812,7 @@ "google": "FE505", "image": "1f6c0.png", "sheet_x": 36, - "sheet_y": 17, + "sheet_y": 8, "short_name": "bath", "short_names": [ "bath" @@ -41172,8 +42820,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 291, - "added_in": "2.0", + "subcategory": "person-resting", + "sort_order": 454, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41184,8 +42833,8 @@ "non_qualified": null, "image": "1f6c0-1f3fb.png", "sheet_x": 36, - "sheet_y": 18, - "added_in": "2.0", + "sheet_y": 9, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41196,8 +42845,8 @@ "non_qualified": null, "image": "1f6c0-1f3fc.png", "sheet_x": 36, - "sheet_y": 19, - "added_in": "2.0", + "sheet_y": 10, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41208,8 +42857,8 @@ "non_qualified": null, "image": "1f6c0-1f3fd.png", "sheet_x": 36, - "sheet_y": 20, - "added_in": "2.0", + "sheet_y": 11, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41220,8 +42869,8 @@ "non_qualified": null, "image": "1f6c0-1f3fe.png", "sheet_x": 36, - "sheet_y": 21, - "added_in": "2.0", + "sheet_y": 12, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41232,8 +42881,8 @@ "non_qualified": null, "image": "1f6c0-1f3ff.png", "sheet_x": 36, - "sheet_y": 22, - "added_in": "2.0", + "sheet_y": 13, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41251,7 +42900,7 @@ "google": null, "image": "1f6c1.png", "sheet_x": 36, - "sheet_y": 23, + "sheet_y": 14, "short_name": "bathtub", "short_names": [ "bathtub" @@ -41259,8 +42908,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 219, - "added_in": "2.0", + "subcategory": "household", + "sort_order": 1302, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41276,7 +42926,7 @@ "google": null, "image": "1f6c2.png", "sheet_x": 36, - "sheet_y": 24, + "sheet_y": 15, "short_name": "passport_control", "short_names": [ "passport_control" @@ -41284,8 +42934,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 10, - "added_in": "2.0", + "subcategory": "transport-sign", + "sort_order": 1331, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41301,7 +42952,7 @@ "google": null, "image": "1f6c3.png", "sheet_x": 36, - "sheet_y": 25, + "sheet_y": 16, "short_name": "customs", "short_names": [ "customs" @@ -41309,8 +42960,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 11, - "added_in": "2.0", + "subcategory": "transport-sign", + "sort_order": 1332, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41326,7 +42978,7 @@ "google": null, "image": "1f6c4.png", "sheet_x": 36, - "sheet_y": 26, + "sheet_y": 17, "short_name": "baggage_claim", "short_names": [ "baggage_claim" @@ -41334,8 +42986,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 12, - "added_in": "2.0", + "subcategory": "transport-sign", + "sort_order": 1333, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41351,7 +43004,7 @@ "google": null, "image": "1f6c5.png", "sheet_x": 36, - "sheet_y": 27, + "sheet_y": 18, "short_name": "left_luggage", "short_names": [ "left_luggage" @@ -41359,15 +43012,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 13, - "added_in": "2.0", + "subcategory": "transport-sign", + "sort_order": 1334, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "COUCH AND LAMP", "unified": "1F6CB-FE0F", "non_qualified": "1F6CB", "docomo": null, @@ -41376,7 +43030,7 @@ "google": null, "image": "1f6cb-fe0f.png", "sheet_x": 36, - "sheet_y": 28, + "sheet_y": 19, "short_name": "couch_and_lamp", "short_names": [ "couch_and_lamp" @@ -41384,8 +43038,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 215, - "added_in": "2.0", + "subcategory": "household", + "sort_order": 1297, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41401,7 +43056,7 @@ "google": null, "image": "1f6cc.png", "sheet_x": 36, - "sheet_y": 29, + "sheet_y": 20, "short_name": "sleeping_accommodation", "short_names": [ "sleeping_accommodation" @@ -41409,8 +43064,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 292, - "added_in": "2.0", + "subcategory": "person-resting", + "sort_order": 455, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41421,7 +43077,7 @@ "non_qualified": null, "image": "1f6cc-1f3fb.png", "sheet_x": 36, - "sheet_y": 30, + "sheet_y": 21, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -41433,7 +43089,7 @@ "non_qualified": null, "image": "1f6cc-1f3fc.png", "sheet_x": 36, - "sheet_y": 31, + "sheet_y": 22, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -41445,7 +43101,7 @@ "non_qualified": null, "image": "1f6cc-1f3fd.png", "sheet_x": 36, - "sheet_y": 32, + "sheet_y": 23, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -41457,7 +43113,7 @@ "non_qualified": null, "image": "1f6cc-1f3fe.png", "sheet_x": 36, - "sheet_y": 33, + "sheet_y": 24, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -41469,7 +43125,7 @@ "non_qualified": null, "image": "1f6cc-1f3ff.png", "sheet_x": 36, - "sheet_y": 34, + "sheet_y": 25, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -41479,7 +43135,7 @@ } }, { - "name": null, + "name": "SHOPPING BAGS", "unified": "1F6CD-FE0F", "non_qualified": "1F6CD", "docomo": null, @@ -41488,7 +43144,7 @@ "google": null, "image": "1f6cd-fe0f.png", "sheet_x": 36, - "sheet_y": 35, + "sheet_y": 26, "short_name": "shopping_bags", "short_names": [ "shopping_bags" @@ -41496,15 +43152,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 24, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1095, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "BELLHOP BELL", "unified": "1F6CE-FE0F", "non_qualified": "1F6CE", "docomo": null, @@ -41513,7 +43170,7 @@ "google": null, "image": "1f6ce-fe0f.png", "sheet_x": 36, - "sheet_y": 36, + "sheet_y": 27, "short_name": "bellhop_bell", "short_names": [ "bellhop_bell" @@ -41521,15 +43178,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 131, - "added_in": "2.0", + "subcategory": "hotel", + "sort_order": 908, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "BED", "unified": "1F6CF-FE0F", "non_qualified": "1F6CF", "docomo": null, @@ -41538,7 +43196,7 @@ "google": null, "image": "1f6cf-fe0f.png", "sheet_x": 36, - "sheet_y": 37, + "sheet_y": 28, "short_name": "bed", "short_names": [ "bed" @@ -41546,8 +43204,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 214, - "added_in": "2.0", + "subcategory": "household", + "sort_order": 1296, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41563,7 +43222,7 @@ "google": null, "image": "1f6d0.png", "sheet_x": 36, - "sheet_y": 38, + "sheet_y": 29, "short_name": "place_of_worship", "short_names": [ "place_of_worship" @@ -41571,8 +43230,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 48, - "added_in": "2.0", + "subcategory": "religion", + "sort_order": 1369, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41588,7 +43248,7 @@ "google": null, "image": "1f6d1.png", "sheet_x": 36, - "sheet_y": 39, + "sheet_y": 30, "short_name": "octagonal_sign", "short_names": [ "octagonal_sign" @@ -41596,8 +43256,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 108, - "added_in": "4.0", + "subcategory": "transport-ground", + "sort_order": 885, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41613,7 +43274,7 @@ "google": null, "image": "1f6d2.png", "sheet_x": 36, - "sheet_y": 40, + "sheet_y": 31, "short_name": "shopping_trolley", "short_names": [ "shopping_trolley" @@ -41621,8 +43282,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 229, - "added_in": "4.0", + "subcategory": "household", + "sort_order": 1315, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41638,7 +43300,7 @@ "google": null, "image": "1f6d5.png", "sheet_x": 36, - "sheet_y": 41, + "sheet_y": 32, "short_name": "hindu_temple", "short_names": [ "hindu_temple" @@ -41646,65 +43308,120 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 43, - "added_in": "12.1", + "subcategory": "place-religious", + "sort_order": 818, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, - "unified": "1F6E0-FE0F", - "non_qualified": "1F6E0", + "name": "HUT", + "unified": "1F6D6", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6e0-fe0f.png", + "image": "1f6d6.png", "sheet_x": 36, - "sheet_y": 42, - "short_name": "hammer_and_wrench", + "sheet_y": 33, + "short_name": "hut", "short_names": [ - "hammer_and_wrench" + "hut" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 185, - "added_in": "2.0", + "category": "Travel & Places", + "subcategory": "place-building", + "sort_order": 795, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, - "unified": "1F6E1-FE0F", - "non_qualified": "1F6E1", + "name": "ELEVATOR", + "unified": "1F6D7", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6e1-fe0f.png", + "image": "1f6d7.png", "sheet_x": 36, - "sheet_y": 43, - "short_name": "shield", + "sheet_y": 34, + "short_name": "elevator", + "short_names": [ + "elevator" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "household", + "sort_order": 1293, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "HAMMER AND WRENCH", + "unified": "1F6E0-FE0F", + "non_qualified": "1F6E0", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f6e0-fe0f.png", + "sheet_x": 36, + "sheet_y": 35, + "short_name": "hammer_and_wrench", + "short_names": [ + "hammer_and_wrench" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "tool", + "sort_order": 1259, + "added_in": "0.7", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SHIELD", + "unified": "1F6E1-FE0F", + "non_qualified": "1F6E1", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f6e1-fe0f.png", + "sheet_x": 36, + "sheet_y": 36, + "short_name": "shield", "short_names": [ "shield" ], "text": null, "texts": null, "category": "Objects", - "sort_order": 190, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1265, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "OIL DRUM", "unified": "1F6E2-FE0F", "non_qualified": "1F6E2", "docomo": null, @@ -41713,7 +43430,7 @@ "google": null, "image": "1f6e2-fe0f.png", "sheet_x": 36, - "sheet_y": 44, + "sheet_y": 37, "short_name": "oil_drum", "short_names": [ "oil_drum" @@ -41721,15 +43438,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 103, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 880, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "MOTORWAY", "unified": "1F6E3-FE0F", "non_qualified": "1F6E3", "docomo": null, @@ -41738,7 +43456,7 @@ "google": null, "image": "1f6e3-fe0f.png", "sheet_x": 36, - "sheet_y": 45, + "sheet_y": 38, "short_name": "motorway", "short_names": [ "motorway" @@ -41746,15 +43464,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 101, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 878, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "RAILWAY TRACK", "unified": "1F6E4-FE0F", "non_qualified": "1F6E4", "docomo": null, @@ -41763,7 +43482,7 @@ "google": null, "image": "1f6e4-fe0f.png", "sheet_x": 36, - "sheet_y": 46, + "sheet_y": 39, "short_name": "railway_track", "short_names": [ "railway_track" @@ -41771,15 +43490,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 102, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 879, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "MOTOR BOAT", "unified": "1F6E5-FE0F", "non_qualified": "1F6E5", "docomo": null, @@ -41788,7 +43508,7 @@ "google": null, "image": "1f6e5-fe0f.png", "sheet_x": 36, - "sheet_y": 47, + "sheet_y": 40, "short_name": "motor_boat", "short_names": [ "motor_boat" @@ -41796,15 +43516,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 116, - "added_in": "2.0", + "subcategory": "transport-water", + "sort_order": 893, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SMALL AIRPLANE", "unified": "1F6E9-FE0F", "non_qualified": "1F6E9", "docomo": null, @@ -41813,7 +43534,7 @@ "google": null, "image": "1f6e9-fe0f.png", "sheet_x": 36, - "sheet_y": 48, + "sheet_y": 41, "short_name": "small_airplane", "short_names": [ "small_airplane" @@ -41821,8 +43542,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 119, - "added_in": "2.0", + "subcategory": "transport-air", + "sort_order": 896, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41838,7 +43560,7 @@ "google": null, "image": "1f6eb.png", "sheet_x": 36, - "sheet_y": 49, + "sheet_y": 42, "short_name": "airplane_departure", "short_names": [ "airplane_departure" @@ -41846,8 +43568,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 120, - "added_in": "2.0", + "subcategory": "transport-air", + "sort_order": 897, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41863,7 +43586,7 @@ "google": null, "image": "1f6ec.png", "sheet_x": 36, - "sheet_y": 50, + "sheet_y": 43, "short_name": "airplane_arriving", "short_names": [ "airplane_arriving" @@ -41871,15 +43594,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 121, - "added_in": "2.0", + "subcategory": "transport-air", + "sort_order": 898, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SATELLITE", "unified": "1F6F0-FE0F", "non_qualified": "1F6F0", "docomo": null, @@ -41888,7 +43612,7 @@ "google": null, "image": "1f6f0-fe0f.png", "sheet_x": 36, - "sheet_y": 51, + "sheet_y": 44, "short_name": "satellite", "short_names": [ "satellite" @@ -41896,15 +43620,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 128, - "added_in": "2.0", + "subcategory": "transport-air", + "sort_order": 905, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "PASSENGER SHIP", "unified": "1F6F3-FE0F", "non_qualified": "1F6F3", "docomo": null, @@ -41913,7 +43638,7 @@ "google": null, "image": "1f6f3-fe0f.png", "sheet_x": 36, - "sheet_y": 52, + "sheet_y": 45, "short_name": "passenger_ship", "short_names": [ "passenger_ship" @@ -41921,8 +43646,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 114, - "added_in": "2.0", + "subcategory": "transport-water", + "sort_order": 891, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41938,7 +43664,7 @@ "google": null, "image": "1f6f4.png", "sheet_x": 36, - "sheet_y": 53, + "sheet_y": 46, "short_name": "scooter", "short_names": [ "scooter" @@ -41946,8 +43672,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 98, - "added_in": "4.0", + "subcategory": "transport-ground", + "sort_order": 874, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41963,7 +43690,7 @@ "google": null, "image": "1f6f5.png", "sheet_x": 36, - "sheet_y": 54, + "sheet_y": 47, "short_name": "motor_scooter", "short_names": [ "motor_scooter" @@ -41971,8 +43698,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 93, - "added_in": "4.0", + "subcategory": "transport-ground", + "sort_order": 869, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -41988,7 +43716,7 @@ "google": null, "image": "1f6f6.png", "sheet_x": 36, - "sheet_y": 55, + "sheet_y": 48, "short_name": "canoe", "short_names": [ "canoe" @@ -41996,8 +43724,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 112, - "added_in": "4.0", + "subcategory": "transport-water", + "sort_order": 889, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42013,7 +43742,7 @@ "google": null, "image": "1f6f7.png", "sheet_x": 36, - "sheet_y": 56, + "sheet_y": 49, "short_name": "sled", "short_names": [ "sled" @@ -42021,7 +43750,8 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 53, + "subcategory": "sport", + "sort_order": 1040, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -42037,8 +43767,8 @@ "softbank": null, "google": null, "image": "1f6f8.png", - "sheet_x": 37, - "sheet_y": 0, + "sheet_x": 36, + "sheet_y": 50, "short_name": "flying_saucer", "short_names": [ "flying_saucer" @@ -42046,7 +43776,8 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 130, + "subcategory": "transport-air", + "sort_order": 907, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -42062,8 +43793,8 @@ "softbank": null, "google": null, "image": "1f6f9.png", - "sheet_x": 37, - "sheet_y": 1, + "sheet_x": 36, + "sheet_y": 51, "short_name": "skateboard", "short_names": [ "skateboard" @@ -42071,7 +43802,8 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 99, + "subcategory": "transport-ground", + "sort_order": 875, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -42087,8 +43819,8 @@ "softbank": null, "google": null, "image": "1f6fa.png", - "sheet_x": 37, - "sheet_y": 2, + "sheet_x": 36, + "sheet_y": 52, "short_name": "auto_rickshaw", "short_names": [ "auto_rickshaw" @@ -42096,8 +43828,61 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 96, - "added_in": "12.1", + "subcategory": "transport-ground", + "sort_order": 872, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "PICKUP TRUCK", + "unified": "1F6FB", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f6fb.png", + "sheet_x": 36, + "sheet_y": 53, + "short_name": "pickup_truck", + "short_names": [ + "pickup_truck" + ], + "text": null, + "texts": null, + "category": "Travel & Places", + "subcategory": "transport-ground", + "sort_order": 863, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "ROLLER SKATE", + "unified": "1F6FC", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f6fc.png", + "sheet_x": 36, + "sheet_y": 54, + "short_name": "roller_skate", + "short_names": [ + "roller_skate" + ], + "text": null, + "texts": null, + "category": "Travel & Places", + "subcategory": "transport-ground", + "sort_order": 876, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42112,8 +43897,8 @@ "softbank": null, "google": null, "image": "1f7e0.png", - "sheet_x": 37, - "sheet_y": 3, + "sheet_x": 36, + "sheet_y": 55, "short_name": "large_orange_circle", "short_names": [ "large_orange_circle" @@ -42121,8 +43906,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 185, - "added_in": "12.1", + "subcategory": "geometric", + "sort_order": 1509, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42137,8 +43923,8 @@ "softbank": null, "google": null, "image": "1f7e1.png", - "sheet_x": 37, - "sheet_y": 4, + "sheet_x": 36, + "sheet_y": 56, "short_name": "large_yellow_circle", "short_names": [ "large_yellow_circle" @@ -42146,8 +43932,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 186, - "added_in": "12.1", + "subcategory": "geometric", + "sort_order": 1510, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42162,8 +43949,8 @@ "softbank": null, "google": null, "image": "1f7e2.png", - "sheet_x": 37, - "sheet_y": 5, + "sheet_x": 36, + "sheet_y": 57, "short_name": "large_green_circle", "short_names": [ "large_green_circle" @@ -42171,8 +43958,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 187, - "added_in": "12.1", + "subcategory": "geometric", + "sort_order": 1511, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42188,7 +43976,7 @@ "google": null, "image": "1f7e3.png", "sheet_x": 37, - "sheet_y": 6, + "sheet_y": 0, "short_name": "large_purple_circle", "short_names": [ "large_purple_circle" @@ -42196,8 +43984,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 189, - "added_in": "12.1", + "subcategory": "geometric", + "sort_order": 1513, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42213,7 +44002,7 @@ "google": null, "image": "1f7e4.png", "sheet_x": 37, - "sheet_y": 7, + "sheet_y": 1, "short_name": "large_brown_circle", "short_names": [ "large_brown_circle" @@ -42221,8 +44010,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 190, - "added_in": "12.1", + "subcategory": "geometric", + "sort_order": 1514, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42238,7 +44028,7 @@ "google": null, "image": "1f7e5.png", "sheet_x": 37, - "sheet_y": 8, + "sheet_y": 2, "short_name": "large_red_square", "short_names": [ "large_red_square" @@ -42246,8 +44036,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 193, - "added_in": "12.1", + "subcategory": "geometric", + "sort_order": 1517, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42263,7 +44054,7 @@ "google": null, "image": "1f7e6.png", "sheet_x": 37, - "sheet_y": 9, + "sheet_y": 3, "short_name": "large_blue_square", "short_names": [ "large_blue_square" @@ -42271,8 +44062,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 197, - "added_in": "12.1", + "subcategory": "geometric", + "sort_order": 1521, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42288,7 +44080,7 @@ "google": null, "image": "1f7e7.png", "sheet_x": 37, - "sheet_y": 10, + "sheet_y": 4, "short_name": "large_orange_square", "short_names": [ "large_orange_square" @@ -42296,8 +44088,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 194, - "added_in": "12.1", + "subcategory": "geometric", + "sort_order": 1518, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42313,7 +44106,7 @@ "google": null, "image": "1f7e8.png", "sheet_x": 37, - "sheet_y": 11, + "sheet_y": 5, "short_name": "large_yellow_square", "short_names": [ "large_yellow_square" @@ -42321,8 +44114,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 195, - "added_in": "12.1", + "subcategory": "geometric", + "sort_order": 1519, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42338,7 +44132,7 @@ "google": null, "image": "1f7e9.png", "sheet_x": 37, - "sheet_y": 12, + "sheet_y": 6, "short_name": "large_green_square", "short_names": [ "large_green_square" @@ -42346,8 +44140,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 196, - "added_in": "12.1", + "subcategory": "geometric", + "sort_order": 1520, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42363,7 +44158,7 @@ "google": null, "image": "1f7ea.png", "sheet_x": 37, - "sheet_y": 13, + "sheet_y": 7, "short_name": "large_purple_square", "short_names": [ "large_purple_square" @@ -42371,8 +44166,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 198, - "added_in": "12.1", + "subcategory": "geometric", + "sort_order": 1522, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42388,7 +44184,7 @@ "google": null, "image": "1f7eb.png", "sheet_x": 37, - "sheet_y": 14, + "sheet_y": 8, "short_name": "large_brown_square", "short_names": [ "large_brown_square" @@ -42396,13 +44192,102 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 199, - "added_in": "12.1", + "subcategory": "geometric", + "sort_order": 1523, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, + { + "name": "PINCHED FINGERS", + "unified": "1F90C", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f90c.png", + "sheet_x": 37, + "sheet_y": 9, + "short_name": "pinched_fingers", + "short_names": [ + "pinched_fingers" + ], + "text": null, + "texts": null, + "category": "People & Body", + "subcategory": "hand-fingers-partial", + "sort_order": 158, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1F90C-1F3FB", + "non_qualified": null, + "image": "1f90c-1f3fb.png", + "sheet_x": 37, + "sheet_y": 10, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F90C-1F3FC", + "non_qualified": null, + "image": "1f90c-1f3fc.png", + "sheet_x": 37, + "sheet_y": 11, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F90C-1F3FD", + "non_qualified": null, + "image": "1f90c-1f3fd.png", + "sheet_x": 37, + "sheet_y": 12, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F90C-1F3FE", + "non_qualified": null, + "image": "1f90c-1f3fe.png", + "sheet_x": 37, + "sheet_y": 13, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F90C-1F3FF", + "non_qualified": null, + "image": "1f90c-1f3ff.png", + "sheet_x": 37, + "sheet_y": 14, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } + }, { "name": "WHITE HEART", "unified": "1F90D", @@ -42421,8 +44306,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 135, - "added_in": "12.1", + "subcategory": "emotion", + "sort_order": 137, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42446,8 +44332,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 133, - "added_in": "12.1", + "subcategory": "emotion", + "sort_order": 135, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42471,8 +44358,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 7, - "added_in": "12.1", + "subcategory": "hand-fingers-partial", + "sort_order": 159, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42484,7 +44372,7 @@ "image": "1f90f-1f3fb.png", "sheet_x": 37, "sheet_y": 18, - "added_in": "12.1", + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42496,7 +44384,7 @@ "image": "1f90f-1f3fc.png", "sheet_x": 37, "sheet_y": 19, - "added_in": "12.1", + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42508,7 +44396,7 @@ "image": "1f90f-1f3fd.png", "sheet_x": 37, "sheet_y": 20, - "added_in": "12.1", + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42520,7 +44408,7 @@ "image": "1f90f-1f3fe.png", "sheet_x": 37, "sheet_y": 21, - "added_in": "12.1", + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42532,7 +44420,7 @@ "image": "1f90f-1f3ff.png", "sheet_x": 37, "sheet_y": 22, - "added_in": "12.1", + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42558,8 +44446,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 32, - "added_in": "2.0", + "subcategory": "face-neutral-skeptical", + "sort_order": 33, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42583,8 +44472,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 27, - "added_in": "2.0", + "subcategory": "face-tongue", + "sort_order": 28, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42608,8 +44498,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 48, - "added_in": "2.0", + "subcategory": "face-unwell", + "sort_order": 49, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42633,8 +44524,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 61, - "added_in": "2.0", + "subcategory": "face-glasses", + "sort_order": 63, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42658,8 +44550,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 31, - "added_in": "2.0", + "subcategory": "face-hand", + "sort_order": 32, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42683,8 +44576,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 49, - "added_in": "2.0", + "subcategory": "face-unwell", + "sort_order": 50, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42708,8 +44602,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 102, - "added_in": "2.0", + "subcategory": "face-costume", + "sort_order": 104, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42733,8 +44628,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 28, - "added_in": "2.0", + "subcategory": "face-hand", + "sort_order": 29, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42759,8 +44655,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 11, - "added_in": "2.0", + "subcategory": "hand-fingers-partial", + "sort_order": 163, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42772,7 +44669,7 @@ "image": "1f918-1f3fb.png", "sheet_x": 37, "sheet_y": 32, - "added_in": "2.0", + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42784,7 +44681,7 @@ "image": "1f918-1f3fc.png", "sheet_x": 37, "sheet_y": 33, - "added_in": "2.0", + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42796,7 +44693,7 @@ "image": "1f918-1f3fd.png", "sheet_x": 37, "sheet_y": 34, - "added_in": "2.0", + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42808,7 +44705,7 @@ "image": "1f918-1f3fe.png", "sheet_x": 37, "sheet_y": 35, - "added_in": "2.0", + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42820,7 +44717,7 @@ "image": "1f918-1f3ff.png", "sheet_x": 37, "sheet_y": 36, - "added_in": "2.0", + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42846,8 +44743,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 12, - "added_in": "4.0", + "subcategory": "hand-fingers-partial", + "sort_order": 164, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42859,7 +44757,7 @@ "image": "1f919-1f3fb.png", "sheet_x": 37, "sheet_y": 38, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42871,7 +44769,7 @@ "image": "1f919-1f3fc.png", "sheet_x": 37, "sheet_y": 39, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42883,7 +44781,7 @@ "image": "1f919-1f3fd.png", "sheet_x": 37, "sheet_y": 40, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42895,7 +44793,7 @@ "image": "1f919-1f3fe.png", "sheet_x": 37, "sheet_y": 41, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42907,7 +44805,7 @@ "image": "1f919-1f3ff.png", "sheet_x": 37, "sheet_y": 42, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42933,8 +44831,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 2, - "added_in": "4.0", + "subcategory": "hand-fingers-open", + "sort_order": 153, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42946,7 +44845,7 @@ "image": "1f91a-1f3fb.png", "sheet_x": 37, "sheet_y": 44, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42958,7 +44857,7 @@ "image": "1f91a-1f3fc.png", "sheet_x": 37, "sheet_y": 45, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42970,7 +44869,7 @@ "image": "1f91a-1f3fd.png", "sheet_x": 37, "sheet_y": 46, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42982,7 +44881,7 @@ "image": "1f91a-1f3fe.png", "sheet_x": 37, "sheet_y": 47, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -42994,7 +44893,7 @@ "image": "1f91a-1f3ff.png", "sheet_x": 37, "sheet_y": 48, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43020,8 +44919,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 23, - "added_in": "4.0", + "subcategory": "hand-fingers-closed", + "sort_order": 175, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43033,7 +44933,7 @@ "image": "1f91b-1f3fb.png", "sheet_x": 37, "sheet_y": 50, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43045,7 +44945,7 @@ "image": "1f91b-1f3fc.png", "sheet_x": 37, "sheet_y": 51, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43057,7 +44957,7 @@ "image": "1f91b-1f3fd.png", "sheet_x": 37, "sheet_y": 52, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43069,7 +44969,7 @@ "image": "1f91b-1f3fe.png", "sheet_x": 37, "sheet_y": 53, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43081,7 +44981,7 @@ "image": "1f91b-1f3ff.png", "sheet_x": 37, "sheet_y": 54, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43107,8 +45007,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 24, - "added_in": "4.0", + "subcategory": "hand-fingers-closed", + "sort_order": 176, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43120,7 +45021,7 @@ "image": "1f91c-1f3fb.png", "sheet_x": 37, "sheet_y": 56, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43130,9 +45031,9 @@ "unified": "1F91C-1F3FC", "non_qualified": null, "image": "1f91c-1f3fc.png", - "sheet_x": 38, - "sheet_y": 0, - "added_in": "4.0", + "sheet_x": 37, + "sheet_y": 57, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43143,8 +45044,8 @@ "non_qualified": null, "image": "1f91c-1f3fd.png", "sheet_x": 38, - "sheet_y": 1, - "added_in": "4.0", + "sheet_y": 0, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43155,8 +45056,8 @@ "non_qualified": null, "image": "1f91c-1f3fe.png", "sheet_x": 38, - "sheet_y": 2, - "added_in": "4.0", + "sheet_y": 1, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43167,8 +45068,8 @@ "non_qualified": null, "image": "1f91c-1f3ff.png", "sheet_x": 38, - "sheet_y": 3, - "added_in": "4.0", + "sheet_y": 2, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43186,7 +45087,7 @@ "google": null, "image": "1f91d.png", "sheet_x": 38, - "sheet_y": 4, + "sheet_y": 3, "short_name": "handshake", "short_names": [ "handshake" @@ -43194,8 +45095,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 29, - "added_in": "4.0", + "subcategory": "hands", + "sort_order": 181, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43211,7 +45113,7 @@ "google": null, "image": "1f91e.png", "sheet_x": 38, - "sheet_y": 5, + "sheet_y": 4, "short_name": "crossed_fingers", "short_names": [ "crossed_fingers", @@ -43220,8 +45122,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 9, - "added_in": "4.0", + "subcategory": "hand-fingers-partial", + "sort_order": 161, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43232,8 +45135,8 @@ "non_qualified": null, "image": "1f91e-1f3fb.png", "sheet_x": 38, - "sheet_y": 6, - "added_in": "4.0", + "sheet_y": 5, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43244,8 +45147,8 @@ "non_qualified": null, "image": "1f91e-1f3fc.png", "sheet_x": 38, - "sheet_y": 7, - "added_in": "4.0", + "sheet_y": 6, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43256,8 +45159,8 @@ "non_qualified": null, "image": "1f91e-1f3fd.png", "sheet_x": 38, - "sheet_y": 8, - "added_in": "4.0", + "sheet_y": 7, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43268,8 +45171,8 @@ "non_qualified": null, "image": "1f91e-1f3fe.png", "sheet_x": 38, - "sheet_y": 9, - "added_in": "4.0", + "sheet_y": 8, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43280,8 +45183,8 @@ "non_qualified": null, "image": "1f91e-1f3ff.png", "sheet_x": 38, - "sheet_y": 10, - "added_in": "4.0", + "sheet_y": 9, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43299,7 +45202,7 @@ "google": null, "image": "1f91f.png", "sheet_x": 38, - "sheet_y": 11, + "sheet_y": 10, "short_name": "i_love_you_hand_sign", "short_names": [ "i_love_you_hand_sign" @@ -43307,7 +45210,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 10, + "subcategory": "hand-fingers-partial", + "sort_order": 162, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -43319,7 +45223,7 @@ "non_qualified": null, "image": "1f91f-1f3fb.png", "sheet_x": 38, - "sheet_y": 12, + "sheet_y": 11, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -43331,7 +45235,7 @@ "non_qualified": null, "image": "1f91f-1f3fc.png", "sheet_x": 38, - "sheet_y": 13, + "sheet_y": 12, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -43343,7 +45247,7 @@ "non_qualified": null, "image": "1f91f-1f3fd.png", "sheet_x": 38, - "sheet_y": 14, + "sheet_y": 13, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -43355,7 +45259,7 @@ "non_qualified": null, "image": "1f91f-1f3fe.png", "sheet_x": 38, - "sheet_y": 15, + "sheet_y": 14, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -43367,7 +45271,7 @@ "non_qualified": null, "image": "1f91f-1f3ff.png", "sheet_x": 38, - "sheet_y": 16, + "sheet_y": 15, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -43386,7 +45290,7 @@ "google": null, "image": "1f920.png", "sheet_x": 38, - "sheet_y": 17, + "sheet_y": 16, "short_name": "face_with_cowboy_hat", "short_names": [ "face_with_cowboy_hat" @@ -43394,8 +45298,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 58, - "added_in": "4.0", + "subcategory": "face-hat", + "sort_order": 59, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43411,7 +45316,7 @@ "google": null, "image": "1f921.png", "sheet_x": 38, - "sheet_y": 18, + "sheet_y": 17, "short_name": "clown_face", "short_names": [ "clown_face" @@ -43419,8 +45324,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 96, - "added_in": "4.0", + "subcategory": "face-costume", + "sort_order": 98, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43436,7 +45342,7 @@ "google": null, "image": "1f922.png", "sheet_x": 38, - "sheet_y": 19, + "sheet_y": 18, "short_name": "nauseated_face", "short_names": [ "nauseated_face" @@ -43444,8 +45350,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 50, - "added_in": "4.0", + "subcategory": "face-unwell", + "sort_order": 51, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43461,7 +45368,7 @@ "google": null, "image": "1f923.png", "sheet_x": 38, - "sheet_y": 20, + "sheet_y": 19, "short_name": "rolling_on_the_floor_laughing", "short_names": [ "rolling_on_the_floor_laughing" @@ -43469,8 +45376,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-smiling", "sort_order": 7, - "added_in": "4.0", + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43486,7 +45394,7 @@ "google": null, "image": "1f924.png", "sheet_x": 38, - "sheet_y": 21, + "sheet_y": 20, "short_name": "drooling_face", "short_names": [ "drooling_face" @@ -43494,8 +45402,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 45, - "added_in": "4.0", + "subcategory": "face-sleepy", + "sort_order": 46, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43511,7 +45420,7 @@ "google": null, "image": "1f925.png", "sheet_x": 38, - "sheet_y": 22, + "sheet_y": 21, "short_name": "lying_face", "short_names": [ "lying_face" @@ -43519,15 +45428,16 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 41, - "added_in": "4.0", + "subcategory": "face-neutral-skeptical", + "sort_order": 42, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WOMAN FACEPALMING", "unified": "1F926-200D-2640-FE0F", "non_qualified": "1F926-200D-2640", "docomo": null, @@ -43536,7 +45446,7 @@ "google": null, "image": "1f926-200d-2640-fe0f.png", "sheet_x": 38, - "sheet_y": 23, + "sheet_y": 22, "short_name": "woman-facepalming", "short_names": [ "woman-facepalming" @@ -43544,7 +45454,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 101, + "subcategory": "person-gesture", + "sort_order": 255, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -43556,7 +45467,7 @@ "non_qualified": "1F926-1F3FB-200D-2640", "image": "1f926-1f3fb-200d-2640-fe0f.png", "sheet_x": 38, - "sheet_y": 24, + "sheet_y": 23, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -43568,7 +45479,7 @@ "non_qualified": "1F926-1F3FC-200D-2640", "image": "1f926-1f3fc-200d-2640-fe0f.png", "sheet_x": 38, - "sheet_y": 25, + "sheet_y": 24, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -43580,7 +45491,7 @@ "non_qualified": "1F926-1F3FD-200D-2640", "image": "1f926-1f3fd-200d-2640-fe0f.png", "sheet_x": 38, - "sheet_y": 26, + "sheet_y": 25, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -43592,7 +45503,7 @@ "non_qualified": "1F926-1F3FE-200D-2640", "image": "1f926-1f3fe-200d-2640-fe0f.png", "sheet_x": 38, - "sheet_y": 27, + "sheet_y": 26, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -43604,7 +45515,7 @@ "non_qualified": "1F926-1F3FF-200D-2640", "image": "1f926-1f3ff-200d-2640-fe0f.png", "sheet_x": 38, - "sheet_y": 28, + "sheet_y": 27, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -43614,7 +45525,7 @@ } }, { - "name": null, + "name": "MAN FACEPALMING", "unified": "1F926-200D-2642-FE0F", "non_qualified": "1F926-200D-2642", "docomo": null, @@ -43623,7 +45534,7 @@ "google": null, "image": "1f926-200d-2642-fe0f.png", "sheet_x": 38, - "sheet_y": 29, + "sheet_y": 28, "short_name": "man-facepalming", "short_names": [ "man-facepalming" @@ -43631,7 +45542,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 100, + "subcategory": "person-gesture", + "sort_order": 254, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -43643,7 +45555,7 @@ "non_qualified": "1F926-1F3FB-200D-2642", "image": "1f926-1f3fb-200d-2642-fe0f.png", "sheet_x": 38, - "sheet_y": 30, + "sheet_y": 29, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -43655,7 +45567,7 @@ "non_qualified": "1F926-1F3FC-200D-2642", "image": "1f926-1f3fc-200d-2642-fe0f.png", "sheet_x": 38, - "sheet_y": 31, + "sheet_y": 30, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -43667,7 +45579,7 @@ "non_qualified": "1F926-1F3FD-200D-2642", "image": "1f926-1f3fd-200d-2642-fe0f.png", "sheet_x": 38, - "sheet_y": 32, + "sheet_y": 31, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -43679,7 +45591,7 @@ "non_qualified": "1F926-1F3FE-200D-2642", "image": "1f926-1f3fe-200d-2642-fe0f.png", "sheet_x": 38, - "sheet_y": 33, + "sheet_y": 32, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -43691,7 +45603,7 @@ "non_qualified": "1F926-1F3FF-200D-2642", "image": "1f926-1f3ff-200d-2642-fe0f.png", "sheet_x": 38, - "sheet_y": 34, + "sheet_y": 33, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -43710,7 +45622,7 @@ "google": null, "image": "1f926.png", "sheet_x": 38, - "sheet_y": 35, + "sheet_y": 34, "short_name": "face_palm", "short_names": [ "face_palm" @@ -43718,72 +45630,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 99, - "added_in": "4.0", + "subcategory": "person-gesture", + "sort_order": 253, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F926-1F3FB", "non_qualified": null, "image": "1f926-1f3fb.png", "sheet_x": 38, - "sheet_y": 36, - "added_in": "4.0", + "sheet_y": 35, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F926-1F3FC", "non_qualified": null, "image": "1f926-1f3fc.png", "sheet_x": 38, - "sheet_y": 37, - "added_in": "4.0", + "sheet_y": 36, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F926-1F3FD", "non_qualified": null, "image": "1f926-1f3fd.png", "sheet_x": 38, - "sheet_y": 38, - "added_in": "4.0", + "sheet_y": 37, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F926-1F3FE", "non_qualified": null, "image": "1f926-1f3fe.png", "sheet_x": 38, - "sheet_y": 39, - "added_in": "4.0", + "sheet_y": 38, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F926-1F3FF", "non_qualified": null, "image": "1f926-1f3ff.png", "sheet_x": 38, - "sheet_y": 40, - "added_in": "4.0", + "sheet_y": 39, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } } }, @@ -43797,7 +45710,7 @@ "google": null, "image": "1f927.png", "sheet_x": 38, - "sheet_y": 41, + "sheet_y": 40, "short_name": "sneezing_face", "short_names": [ "sneezing_face" @@ -43805,8 +45718,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 52, - "added_in": "4.0", + "subcategory": "face-unwell", + "sort_order": 53, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -43822,7 +45736,7 @@ "google": null, "image": "1f928.png", "sheet_x": 38, - "sheet_y": 42, + "sheet_y": 41, "short_name": "face_with_raised_eyebrow", "short_names": [ "face_with_raised_eyebrow", @@ -43831,7 +45745,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 33, + "subcategory": "face-neutral-skeptical", + "sort_order": 34, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -43848,7 +45763,7 @@ "google": null, "image": "1f929.png", "sheet_x": 38, - "sheet_y": 43, + "sheet_y": 42, "short_name": "star-struck", "short_names": [ "star-struck", @@ -43857,6 +45772,7 @@ "text": null, "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-affection", "sort_order": 16, "added_in": "5.0", "has_img_apple": true, @@ -43874,7 +45790,7 @@ "google": null, "image": "1f92a.png", "sheet_x": 38, - "sheet_y": 44, + "sheet_y": 43, "short_name": "zany_face", "short_names": [ "zany_face", @@ -43883,7 +45799,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 25, + "subcategory": "face-tongue", + "sort_order": 26, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -43900,7 +45817,7 @@ "google": null, "image": "1f92b.png", "sheet_x": 38, - "sheet_y": 45, + "sheet_y": 44, "short_name": "shushing_face", "short_names": [ "shushing_face", @@ -43909,7 +45826,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 30, + "subcategory": "face-hand", + "sort_order": 31, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -43926,7 +45844,7 @@ "google": null, "image": "1f92c.png", "sheet_x": 38, - "sheet_y": 46, + "sheet_y": 45, "short_name": "face_with_symbols_on_mouth", "short_names": [ "face_with_symbols_on_mouth", @@ -43935,7 +45853,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 90, + "subcategory": "face-negative", + "sort_order": 92, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -43952,7 +45871,7 @@ "google": null, "image": "1f92d.png", "sheet_x": 38, - "sheet_y": 47, + "sheet_y": 46, "short_name": "face_with_hand_over_mouth", "short_names": [ "face_with_hand_over_mouth", @@ -43961,7 +45880,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 29, + "subcategory": "face-hand", + "sort_order": 30, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -43978,7 +45898,7 @@ "google": null, "image": "1f92e.png", "sheet_x": 38, - "sheet_y": 48, + "sheet_y": 47, "short_name": "face_vomiting", "short_names": [ "face_vomiting", @@ -43987,7 +45907,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 51, + "subcategory": "face-unwell", + "sort_order": 52, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -44004,7 +45925,7 @@ "google": null, "image": "1f92f.png", "sheet_x": 38, - "sheet_y": 49, + "sheet_y": 48, "short_name": "exploding_head", "short_names": [ "exploding_head", @@ -44013,7 +45934,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 57, + "subcategory": "face-unwell", + "sort_order": 58, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -44030,7 +45952,7 @@ "google": null, "image": "1f930.png", "sheet_x": 38, - "sheet_y": 50, + "sheet_y": 49, "short_name": "pregnant_woman", "short_names": [ "pregnant_woman" @@ -44038,8 +45960,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 174, - "added_in": "4.0", + "subcategory": "person-role", + "sort_order": 333, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44050,8 +45973,8 @@ "non_qualified": null, "image": "1f930-1f3fb.png", "sheet_x": 38, - "sheet_y": 51, - "added_in": "4.0", + "sheet_y": 50, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44062,8 +45985,8 @@ "non_qualified": null, "image": "1f930-1f3fc.png", "sheet_x": 38, - "sheet_y": 52, - "added_in": "4.0", + "sheet_y": 51, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44074,8 +45997,8 @@ "non_qualified": null, "image": "1f930-1f3fd.png", "sheet_x": 38, - "sheet_y": 53, - "added_in": "4.0", + "sheet_y": 52, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44086,8 +46009,8 @@ "non_qualified": null, "image": "1f930-1f3fe.png", "sheet_x": 38, - "sheet_y": 54, - "added_in": "4.0", + "sheet_y": 53, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44098,8 +46021,8 @@ "non_qualified": null, "image": "1f930-1f3ff.png", "sheet_x": 38, - "sheet_y": 55, - "added_in": "4.0", + "sheet_y": 54, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44117,7 +46040,7 @@ "google": null, "image": "1f931.png", "sheet_x": 38, - "sheet_y": 56, + "sheet_y": 55, "short_name": "breast-feeding", "short_names": [ "breast-feeding" @@ -44125,7 +46048,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 175, + "subcategory": "person-role", + "sort_order": 334, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -44136,8 +46060,8 @@ "unified": "1F931-1F3FB", "non_qualified": null, "image": "1f931-1f3fb.png", - "sheet_x": 39, - "sheet_y": 0, + "sheet_x": 38, + "sheet_y": 56, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -44148,8 +46072,8 @@ "unified": "1F931-1F3FC", "non_qualified": null, "image": "1f931-1f3fc.png", - "sheet_x": 39, - "sheet_y": 1, + "sheet_x": 38, + "sheet_y": 57, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -44161,7 +46085,7 @@ "non_qualified": null, "image": "1f931-1f3fd.png", "sheet_x": 39, - "sheet_y": 2, + "sheet_y": 0, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -44173,7 +46097,7 @@ "non_qualified": null, "image": "1f931-1f3fe.png", "sheet_x": 39, - "sheet_y": 3, + "sheet_y": 1, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -44185,7 +46109,7 @@ "non_qualified": null, "image": "1f931-1f3ff.png", "sheet_x": 39, - "sheet_y": 4, + "sheet_y": 2, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -44204,7 +46128,7 @@ "google": null, "image": "1f932.png", "sheet_x": 39, - "sheet_y": 5, + "sheet_y": 3, "short_name": "palms_up_together", "short_names": [ "palms_up_together" @@ -44212,7 +46136,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 28, + "subcategory": "hands", + "sort_order": 180, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -44224,7 +46149,7 @@ "non_qualified": null, "image": "1f932-1f3fb.png", "sheet_x": 39, - "sheet_y": 6, + "sheet_y": 4, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -44236,7 +46161,7 @@ "non_qualified": null, "image": "1f932-1f3fc.png", "sheet_x": 39, - "sheet_y": 7, + "sheet_y": 5, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -44248,7 +46173,7 @@ "non_qualified": null, "image": "1f932-1f3fd.png", "sheet_x": 39, - "sheet_y": 8, + "sheet_y": 6, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -44260,7 +46185,7 @@ "non_qualified": null, "image": "1f932-1f3fe.png", "sheet_x": 39, - "sheet_y": 9, + "sheet_y": 7, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -44272,7 +46197,7 @@ "non_qualified": null, "image": "1f932-1f3ff.png", "sheet_x": 39, - "sheet_y": 10, + "sheet_y": 8, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -44291,7 +46216,7 @@ "google": null, "image": "1f933.png", "sheet_x": 39, - "sheet_y": 11, + "sheet_y": 9, "short_name": "selfie", "short_names": [ "selfie" @@ -44299,8 +46224,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 33, - "added_in": "4.0", + "subcategory": "hand-prop", + "sort_order": 185, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44311,8 +46237,8 @@ "non_qualified": null, "image": "1f933-1f3fb.png", "sheet_x": 39, - "sheet_y": 12, - "added_in": "4.0", + "sheet_y": 10, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44323,8 +46249,8 @@ "non_qualified": null, "image": "1f933-1f3fc.png", "sheet_x": 39, - "sheet_y": 13, - "added_in": "4.0", + "sheet_y": 11, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44335,8 +46261,8 @@ "non_qualified": null, "image": "1f933-1f3fd.png", "sheet_x": 39, - "sheet_y": 14, - "added_in": "4.0", + "sheet_y": 12, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44347,8 +46273,8 @@ "non_qualified": null, "image": "1f933-1f3fe.png", "sheet_x": 39, - "sheet_y": 15, - "added_in": "4.0", + "sheet_y": 13, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44359,8 +46285,8 @@ "non_qualified": null, "image": "1f933-1f3ff.png", "sheet_x": 39, - "sheet_y": 16, - "added_in": "4.0", + "sheet_y": 14, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44378,7 +46304,7 @@ "google": null, "image": "1f934.png", "sheet_x": 39, - "sheet_y": 17, + "sheet_y": 15, "short_name": "prince", "short_names": [ "prince" @@ -44386,8 +46312,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 165, - "added_in": "4.0", + "subcategory": "person-role", + "sort_order": 320, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44398,8 +46325,8 @@ "non_qualified": null, "image": "1f934-1f3fb.png", "sheet_x": 39, - "sheet_y": 18, - "added_in": "4.0", + "sheet_y": 16, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44410,8 +46337,8 @@ "non_qualified": null, "image": "1f934-1f3fc.png", "sheet_x": 39, - "sheet_y": 19, - "added_in": "4.0", + "sheet_y": 17, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44422,8 +46349,8 @@ "non_qualified": null, "image": "1f934-1f3fd.png", "sheet_x": 39, - "sheet_y": 20, - "added_in": "4.0", + "sheet_y": 18, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44434,8 +46361,8 @@ "non_qualified": null, "image": "1f934-1f3fe.png", "sheet_x": 39, - "sheet_y": 21, - "added_in": "4.0", + "sheet_y": 19, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44446,8 +46373,184 @@ "non_qualified": null, "image": "1f934-1f3ff.png", "sheet_x": 39, + "sheet_y": 20, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } + }, + { + "name": "WOMAN IN TUXEDO", + "unified": "1F935-200D-2640-FE0F", + "non_qualified": "1F935-200D-2640", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f935-200d-2640-fe0f.png", + "sheet_x": 39, + "sheet_y": 21, + "short_name": "woman_in_tuxedo", + "short_names": [ + "woman_in_tuxedo" + ], + "text": null, + "texts": null, + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 329, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1F935-1F3FB-200D-2640-FE0F", + "non_qualified": "1F935-1F3FB-200D-2640", + "image": "1f935-1f3fb-200d-2640-fe0f.png", + "sheet_x": 39, "sheet_y": 22, - "added_in": "4.0", + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F935-1F3FC-200D-2640-FE0F", + "non_qualified": "1F935-1F3FC-200D-2640", + "image": "1f935-1f3fc-200d-2640-fe0f.png", + "sheet_x": 39, + "sheet_y": 23, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F935-1F3FD-200D-2640-FE0F", + "non_qualified": "1F935-1F3FD-200D-2640", + "image": "1f935-1f3fd-200d-2640-fe0f.png", + "sheet_x": 39, + "sheet_y": 24, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F935-1F3FE-200D-2640-FE0F", + "non_qualified": "1F935-1F3FE-200D-2640", + "image": "1f935-1f3fe-200d-2640-fe0f.png", + "sheet_x": 39, + "sheet_y": 25, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F935-1F3FF-200D-2640-FE0F", + "non_qualified": "1F935-1F3FF-200D-2640", + "image": "1f935-1f3ff-200d-2640-fe0f.png", + "sheet_x": 39, + "sheet_y": 26, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } + }, + { + "name": "MAN IN TUXEDO", + "unified": "1F935-200D-2642-FE0F", + "non_qualified": "1F935-200D-2642", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f935-200d-2642-fe0f.png", + "sheet_x": 39, + "sheet_y": 27, + "short_name": "man_in_tuxedo", + "short_names": [ + "man_in_tuxedo" + ], + "text": null, + "texts": null, + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 328, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1F935-1F3FB-200D-2642-FE0F", + "non_qualified": "1F935-1F3FB-200D-2642", + "image": "1f935-1f3fb-200d-2642-fe0f.png", + "sheet_x": 39, + "sheet_y": 28, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F935-1F3FC-200D-2642-FE0F", + "non_qualified": "1F935-1F3FC-200D-2642", + "image": "1f935-1f3fc-200d-2642-fe0f.png", + "sheet_x": 39, + "sheet_y": 29, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F935-1F3FD-200D-2642-FE0F", + "non_qualified": "1F935-1F3FD-200D-2642", + "image": "1f935-1f3fd-200d-2642-fe0f.png", + "sheet_x": 39, + "sheet_y": 30, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F935-1F3FE-200D-2642-FE0F", + "non_qualified": "1F935-1F3FE-200D-2642", + "image": "1f935-1f3fe-200d-2642-fe0f.png", + "sheet_x": 39, + "sheet_y": 31, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F935-1F3FF-200D-2642-FE0F", + "non_qualified": "1F935-1F3FF-200D-2642", + "image": "1f935-1f3ff-200d-2642-fe0f.png", + "sheet_x": 39, + "sheet_y": 32, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44465,16 +46568,17 @@ "google": null, "image": "1f935.png", "sheet_x": 39, - "sheet_y": 23, - "short_name": "man_in_tuxedo", + "sheet_y": 33, + "short_name": "person_in_tuxedo", "short_names": [ - "man_in_tuxedo" + "person_in_tuxedo" ], "text": null, "texts": null, "category": "People & Body", - "sort_order": 172, - "added_in": "4.0", + "subcategory": "person-role", + "sort_order": 327, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44485,8 +46589,8 @@ "non_qualified": null, "image": "1f935-1f3fb.png", "sheet_x": 39, - "sheet_y": 24, - "added_in": "4.0", + "sheet_y": 34, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44497,8 +46601,8 @@ "non_qualified": null, "image": "1f935-1f3fc.png", "sheet_x": 39, - "sheet_y": 25, - "added_in": "4.0", + "sheet_y": 35, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44509,8 +46613,8 @@ "non_qualified": null, "image": "1f935-1f3fd.png", "sheet_x": 39, - "sheet_y": 26, - "added_in": "4.0", + "sheet_y": 36, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44521,8 +46625,8 @@ "non_qualified": null, "image": "1f935-1f3fe.png", "sheet_x": 39, - "sheet_y": 27, - "added_in": "4.0", + "sheet_y": 37, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44533,8 +46637,8 @@ "non_qualified": null, "image": "1f935-1f3ff.png", "sheet_x": 39, - "sheet_y": 28, - "added_in": "4.0", + "sheet_y": 38, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44552,7 +46656,7 @@ "google": null, "image": "1f936.png", "sheet_x": 39, - "sheet_y": 29, + "sheet_y": 39, "short_name": "mrs_claus", "short_names": [ "mrs_claus", @@ -44561,8 +46665,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 178, - "added_in": "4.0", + "subcategory": "person-fantasy", + "sort_order": 340, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44573,8 +46678,8 @@ "non_qualified": null, "image": "1f936-1f3fb.png", "sheet_x": 39, - "sheet_y": 30, - "added_in": "4.0", + "sheet_y": 40, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44585,8 +46690,8 @@ "non_qualified": null, "image": "1f936-1f3fc.png", "sheet_x": 39, - "sheet_y": 31, - "added_in": "4.0", + "sheet_y": 41, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44597,8 +46702,8 @@ "non_qualified": null, "image": "1f936-1f3fd.png", "sheet_x": 39, - "sheet_y": 32, - "added_in": "4.0", + "sheet_y": 42, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44609,8 +46714,8 @@ "non_qualified": null, "image": "1f936-1f3fe.png", "sheet_x": 39, - "sheet_y": 33, - "added_in": "4.0", + "sheet_y": 43, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44621,8 +46726,8 @@ "non_qualified": null, "image": "1f936-1f3ff.png", "sheet_x": 39, - "sheet_y": 34, - "added_in": "4.0", + "sheet_y": 44, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -44631,7 +46736,7 @@ } }, { - "name": null, + "name": "WOMAN SHRUGGING", "unified": "1F937-200D-2640-FE0F", "non_qualified": "1F937-200D-2640", "docomo": null, @@ -44640,7 +46745,7 @@ "google": null, "image": "1f937-200d-2640-fe0f.png", "sheet_x": 39, - "sheet_y": 35, + "sheet_y": 45, "short_name": "woman-shrugging", "short_names": [ "woman-shrugging" @@ -44648,7 +46753,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 104, + "subcategory": "person-gesture", + "sort_order": 258, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44660,7 +46766,7 @@ "non_qualified": "1F937-1F3FB-200D-2640", "image": "1f937-1f3fb-200d-2640-fe0f.png", "sheet_x": 39, - "sheet_y": 36, + "sheet_y": 46, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44672,7 +46778,7 @@ "non_qualified": "1F937-1F3FC-200D-2640", "image": "1f937-1f3fc-200d-2640-fe0f.png", "sheet_x": 39, - "sheet_y": 37, + "sheet_y": 47, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44684,7 +46790,7 @@ "non_qualified": "1F937-1F3FD-200D-2640", "image": "1f937-1f3fd-200d-2640-fe0f.png", "sheet_x": 39, - "sheet_y": 38, + "sheet_y": 48, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44696,7 +46802,7 @@ "non_qualified": "1F937-1F3FE-200D-2640", "image": "1f937-1f3fe-200d-2640-fe0f.png", "sheet_x": 39, - "sheet_y": 39, + "sheet_y": 49, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44708,7 +46814,7 @@ "non_qualified": "1F937-1F3FF-200D-2640", "image": "1f937-1f3ff-200d-2640-fe0f.png", "sheet_x": 39, - "sheet_y": 40, + "sheet_y": 50, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44718,7 +46824,7 @@ } }, { - "name": null, + "name": "MAN SHRUGGING", "unified": "1F937-200D-2642-FE0F", "non_qualified": "1F937-200D-2642", "docomo": null, @@ -44727,7 +46833,7 @@ "google": null, "image": "1f937-200d-2642-fe0f.png", "sheet_x": 39, - "sheet_y": 41, + "sheet_y": 51, "short_name": "man-shrugging", "short_names": [ "man-shrugging" @@ -44735,7 +46841,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 103, + "subcategory": "person-gesture", + "sort_order": 257, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44747,7 +46854,7 @@ "non_qualified": "1F937-1F3FB-200D-2642", "image": "1f937-1f3fb-200d-2642-fe0f.png", "sheet_x": 39, - "sheet_y": 42, + "sheet_y": 52, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44759,7 +46866,7 @@ "non_qualified": "1F937-1F3FC-200D-2642", "image": "1f937-1f3fc-200d-2642-fe0f.png", "sheet_x": 39, - "sheet_y": 43, + "sheet_y": 53, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44771,7 +46878,7 @@ "non_qualified": "1F937-1F3FD-200D-2642", "image": "1f937-1f3fd-200d-2642-fe0f.png", "sheet_x": 39, - "sheet_y": 44, + "sheet_y": 54, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44783,7 +46890,7 @@ "non_qualified": "1F937-1F3FE-200D-2642", "image": "1f937-1f3fe-200d-2642-fe0f.png", "sheet_x": 39, - "sheet_y": 45, + "sheet_y": 55, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44795,7 +46902,7 @@ "non_qualified": "1F937-1F3FF-200D-2642", "image": "1f937-1f3ff-200d-2642-fe0f.png", "sheet_x": 39, - "sheet_y": 46, + "sheet_y": 56, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44814,7 +46921,7 @@ "google": null, "image": "1f937.png", "sheet_x": 39, - "sheet_y": 47, + "sheet_y": 57, "short_name": "shrug", "short_names": [ "shrug" @@ -44822,77 +46929,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 102, - "added_in": "4.0", + "subcategory": "person-gesture", + "sort_order": 256, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F937-1F3FB", "non_qualified": null, "image": "1f937-1f3fb.png", - "sheet_x": 39, - "sheet_y": 48, - "added_in": "4.0", + "sheet_x": 40, + "sheet_y": 0, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F937-1F3FC", "non_qualified": null, "image": "1f937-1f3fc.png", - "sheet_x": 39, - "sheet_y": 49, - "added_in": "4.0", + "sheet_x": 40, + "sheet_y": 1, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F937-1F3FD", "non_qualified": null, "image": "1f937-1f3fd.png", - "sheet_x": 39, - "sheet_y": 50, - "added_in": "4.0", + "sheet_x": 40, + "sheet_y": 2, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F937-1F3FE", "non_qualified": null, "image": "1f937-1f3fe.png", - "sheet_x": 39, - "sheet_y": 51, - "added_in": "4.0", + "sheet_x": 40, + "sheet_y": 3, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F937-1F3FF", "non_qualified": null, "image": "1f937-1f3ff.png", - "sheet_x": 39, - "sheet_y": 52, - "added_in": "4.0", + "sheet_x": 40, + "sheet_y": 4, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } } }, { - "name": null, + "name": "WOMAN CARTWHEELING", "unified": "1F938-200D-2640-FE0F", "non_qualified": "1F938-200D-2640", "docomo": null, @@ -44900,8 +47008,8 @@ "softbank": null, "google": null, "image": "1f938-200d-2640-fe0f.png", - "sheet_x": 39, - "sheet_y": 53, + "sheet_x": 40, + "sheet_y": 5, "short_name": "woman-cartwheeling", "short_names": [ "woman-cartwheeling" @@ -44909,7 +47017,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 275, + "subcategory": "person-sport", + "sort_order": 438, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44920,8 +47029,8 @@ "unified": "1F938-1F3FB-200D-2640-FE0F", "non_qualified": "1F938-1F3FB-200D-2640", "image": "1f938-1f3fb-200d-2640-fe0f.png", - "sheet_x": 39, - "sheet_y": 54, + "sheet_x": 40, + "sheet_y": 6, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44932,8 +47041,8 @@ "unified": "1F938-1F3FC-200D-2640-FE0F", "non_qualified": "1F938-1F3FC-200D-2640", "image": "1f938-1f3fc-200d-2640-fe0f.png", - "sheet_x": 39, - "sheet_y": 55, + "sheet_x": 40, + "sheet_y": 7, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44944,8 +47053,8 @@ "unified": "1F938-1F3FD-200D-2640-FE0F", "non_qualified": "1F938-1F3FD-200D-2640", "image": "1f938-1f3fd-200d-2640-fe0f.png", - "sheet_x": 39, - "sheet_y": 56, + "sheet_x": 40, + "sheet_y": 8, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44957,7 +47066,7 @@ "non_qualified": "1F938-1F3FE-200D-2640", "image": "1f938-1f3fe-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 0, + "sheet_y": 9, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44969,7 +47078,7 @@ "non_qualified": "1F938-1F3FF-200D-2640", "image": "1f938-1f3ff-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 1, + "sheet_y": 10, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -44979,7 +47088,7 @@ } }, { - "name": null, + "name": "MAN CARTWHEELING", "unified": "1F938-200D-2642-FE0F", "non_qualified": "1F938-200D-2642", "docomo": null, @@ -44988,7 +47097,7 @@ "google": null, "image": "1f938-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 2, + "sheet_y": 11, "short_name": "man-cartwheeling", "short_names": [ "man-cartwheeling" @@ -44996,7 +47105,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 274, + "subcategory": "person-sport", + "sort_order": 437, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45008,7 +47118,7 @@ "non_qualified": "1F938-1F3FB-200D-2642", "image": "1f938-1f3fb-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 3, + "sheet_y": 12, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45020,7 +47130,7 @@ "non_qualified": "1F938-1F3FC-200D-2642", "image": "1f938-1f3fc-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 4, + "sheet_y": 13, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45032,7 +47142,7 @@ "non_qualified": "1F938-1F3FD-200D-2642", "image": "1f938-1f3fd-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 5, + "sheet_y": 14, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45044,7 +47154,7 @@ "non_qualified": "1F938-1F3FE-200D-2642", "image": "1f938-1f3fe-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 6, + "sheet_y": 15, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45056,7 +47166,7 @@ "non_qualified": "1F938-1F3FF-200D-2642", "image": "1f938-1f3ff-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 7, + "sheet_y": 16, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45075,7 +47185,7 @@ "google": null, "image": "1f938.png", "sheet_x": 40, - "sheet_y": 8, + "sheet_y": 17, "short_name": "person_doing_cartwheel", "short_names": [ "person_doing_cartwheel" @@ -45083,77 +47193,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 273, - "added_in": "4.0", + "subcategory": "person-sport", + "sort_order": 436, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F938-1F3FB", "non_qualified": null, "image": "1f938-1f3fb.png", "sheet_x": 40, - "sheet_y": 9, - "added_in": "4.0", + "sheet_y": 18, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F938-1F3FC", "non_qualified": null, "image": "1f938-1f3fc.png", "sheet_x": 40, - "sheet_y": 10, - "added_in": "4.0", + "sheet_y": 19, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F938-1F3FD", "non_qualified": null, "image": "1f938-1f3fd.png", "sheet_x": 40, - "sheet_y": 11, - "added_in": "4.0", + "sheet_y": 20, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F938-1F3FE", "non_qualified": null, "image": "1f938-1f3fe.png", "sheet_x": 40, - "sheet_y": 12, - "added_in": "4.0", + "sheet_y": 21, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F938-1F3FF", "non_qualified": null, "image": "1f938-1f3ff.png", "sheet_x": 40, - "sheet_y": 13, - "added_in": "4.0", + "sheet_y": 22, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } } }, { - "name": null, + "name": "WOMAN JUGGLING", "unified": "1F939-200D-2640-FE0F", "non_qualified": "1F939-200D-2640", "docomo": null, @@ -45162,7 +47273,7 @@ "google": null, "image": "1f939-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 14, + "sheet_y": 23, "short_name": "woman-juggling", "short_names": [ "woman-juggling" @@ -45170,7 +47281,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 287, + "subcategory": "person-sport", + "sort_order": 450, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45182,7 +47294,7 @@ "non_qualified": "1F939-1F3FB-200D-2640", "image": "1f939-1f3fb-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 15, + "sheet_y": 24, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45194,7 +47306,7 @@ "non_qualified": "1F939-1F3FC-200D-2640", "image": "1f939-1f3fc-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 16, + "sheet_y": 25, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45206,7 +47318,7 @@ "non_qualified": "1F939-1F3FD-200D-2640", "image": "1f939-1f3fd-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 17, + "sheet_y": 26, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45218,7 +47330,7 @@ "non_qualified": "1F939-1F3FE-200D-2640", "image": "1f939-1f3fe-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 18, + "sheet_y": 27, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45230,7 +47342,7 @@ "non_qualified": "1F939-1F3FF-200D-2640", "image": "1f939-1f3ff-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 19, + "sheet_y": 28, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45240,7 +47352,7 @@ } }, { - "name": null, + "name": "MAN JUGGLING", "unified": "1F939-200D-2642-FE0F", "non_qualified": "1F939-200D-2642", "docomo": null, @@ -45249,7 +47361,7 @@ "google": null, "image": "1f939-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 20, + "sheet_y": 29, "short_name": "man-juggling", "short_names": [ "man-juggling" @@ -45257,7 +47369,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 286, + "subcategory": "person-sport", + "sort_order": 449, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45269,7 +47382,7 @@ "non_qualified": "1F939-1F3FB-200D-2642", "image": "1f939-1f3fb-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 21, + "sheet_y": 30, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45281,7 +47394,7 @@ "non_qualified": "1F939-1F3FC-200D-2642", "image": "1f939-1f3fc-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 22, + "sheet_y": 31, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45293,7 +47406,7 @@ "non_qualified": "1F939-1F3FD-200D-2642", "image": "1f939-1f3fd-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 23, + "sheet_y": 32, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45305,7 +47418,7 @@ "non_qualified": "1F939-1F3FE-200D-2642", "image": "1f939-1f3fe-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 24, + "sheet_y": 33, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45317,7 +47430,7 @@ "non_qualified": "1F939-1F3FF-200D-2642", "image": "1f939-1f3ff-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 25, + "sheet_y": 34, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45336,7 +47449,7 @@ "google": null, "image": "1f939.png", "sheet_x": 40, - "sheet_y": 26, + "sheet_y": 35, "short_name": "juggling", "short_names": [ "juggling" @@ -45344,8 +47457,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 285, - "added_in": "4.0", + "subcategory": "person-sport", + "sort_order": 448, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -45356,8 +47470,8 @@ "non_qualified": null, "image": "1f939-1f3fb.png", "sheet_x": 40, - "sheet_y": 27, - "added_in": "4.0", + "sheet_y": 36, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -45368,8 +47482,8 @@ "non_qualified": null, "image": "1f939-1f3fc.png", "sheet_x": 40, - "sheet_y": 28, - "added_in": "4.0", + "sheet_y": 37, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -45380,8 +47494,8 @@ "non_qualified": null, "image": "1f939-1f3fd.png", "sheet_x": 40, - "sheet_y": 29, - "added_in": "4.0", + "sheet_y": 38, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -45392,8 +47506,8 @@ "non_qualified": null, "image": "1f939-1f3fe.png", "sheet_x": 40, - "sheet_y": 30, - "added_in": "4.0", + "sheet_y": 39, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -45404,8 +47518,8 @@ "non_qualified": null, "image": "1f939-1f3ff.png", "sheet_x": 40, - "sheet_y": 31, - "added_in": "4.0", + "sheet_y": 40, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -45423,7 +47537,7 @@ "google": null, "image": "1f93a.png", "sheet_x": 40, - "sheet_y": 32, + "sheet_y": 41, "short_name": "fencer", "short_names": [ "fencer" @@ -45431,15 +47545,16 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 245, - "added_in": "4.0", + "subcategory": "person-sport", + "sort_order": 408, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WOMEN WRESTLING", "unified": "1F93C-200D-2640-FE0F", "non_qualified": "1F93C-200D-2640", "docomo": null, @@ -45448,7 +47563,7 @@ "google": null, "image": "1f93c-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 33, + "sheet_y": 42, "short_name": "woman-wrestling", "short_names": [ "woman-wrestling" @@ -45456,7 +47571,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 278, + "subcategory": "person-sport", + "sort_order": 441, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45464,7 +47580,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "MEN WRESTLING", "unified": "1F93C-200D-2642-FE0F", "non_qualified": "1F93C-200D-2642", "docomo": null, @@ -45473,7 +47589,7 @@ "google": null, "image": "1f93c-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 34, + "sheet_y": 43, "short_name": "man-wrestling", "short_names": [ "man-wrestling" @@ -45481,7 +47597,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 277, + "subcategory": "person-sport", + "sort_order": 440, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45498,7 +47615,7 @@ "google": null, "image": "1f93c.png", "sheet_x": 40, - "sheet_y": 35, + "sheet_y": 44, "short_name": "wrestlers", "short_names": [ "wrestlers" @@ -45506,15 +47623,16 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 276, - "added_in": "4.0", + "subcategory": "person-sport", + "sort_order": 439, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WOMAN PLAYING WATER POLO", "unified": "1F93D-200D-2640-FE0F", "non_qualified": "1F93D-200D-2640", "docomo": null, @@ -45523,7 +47641,7 @@ "google": null, "image": "1f93d-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 36, + "sheet_y": 45, "short_name": "woman-playing-water-polo", "short_names": [ "woman-playing-water-polo" @@ -45531,7 +47649,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 281, + "subcategory": "person-sport", + "sort_order": 444, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45543,7 +47662,7 @@ "non_qualified": "1F93D-1F3FB-200D-2640", "image": "1f93d-1f3fb-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 37, + "sheet_y": 46, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45555,7 +47674,7 @@ "non_qualified": "1F93D-1F3FC-200D-2640", "image": "1f93d-1f3fc-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 38, + "sheet_y": 47, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45567,7 +47686,7 @@ "non_qualified": "1F93D-1F3FD-200D-2640", "image": "1f93d-1f3fd-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 39, + "sheet_y": 48, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45579,7 +47698,7 @@ "non_qualified": "1F93D-1F3FE-200D-2640", "image": "1f93d-1f3fe-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 40, + "sheet_y": 49, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45591,7 +47710,7 @@ "non_qualified": "1F93D-1F3FF-200D-2640", "image": "1f93d-1f3ff-200d-2640-fe0f.png", "sheet_x": 40, - "sheet_y": 41, + "sheet_y": 50, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45601,7 +47720,7 @@ } }, { - "name": null, + "name": "MAN PLAYING WATER POLO", "unified": "1F93D-200D-2642-FE0F", "non_qualified": "1F93D-200D-2642", "docomo": null, @@ -45610,7 +47729,7 @@ "google": null, "image": "1f93d-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 42, + "sheet_y": 51, "short_name": "man-playing-water-polo", "short_names": [ "man-playing-water-polo" @@ -45618,7 +47737,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 280, + "subcategory": "person-sport", + "sort_order": 443, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45630,7 +47750,7 @@ "non_qualified": "1F93D-1F3FB-200D-2642", "image": "1f93d-1f3fb-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 43, + "sheet_y": 52, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45642,7 +47762,7 @@ "non_qualified": "1F93D-1F3FC-200D-2642", "image": "1f93d-1f3fc-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 44, + "sheet_y": 53, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45654,7 +47774,7 @@ "non_qualified": "1F93D-1F3FD-200D-2642", "image": "1f93d-1f3fd-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 45, + "sheet_y": 54, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45666,7 +47786,7 @@ "non_qualified": "1F93D-1F3FE-200D-2642", "image": "1f93d-1f3fe-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 46, + "sheet_y": 55, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45678,7 +47798,7 @@ "non_qualified": "1F93D-1F3FF-200D-2642", "image": "1f93d-1f3ff-200d-2642-fe0f.png", "sheet_x": 40, - "sheet_y": 47, + "sheet_y": 56, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45697,7 +47817,7 @@ "google": null, "image": "1f93d.png", "sheet_x": 40, - "sheet_y": 48, + "sheet_y": 57, "short_name": "water_polo", "short_names": [ "water_polo" @@ -45705,77 +47825,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 279, - "added_in": "4.0", + "subcategory": "person-sport", + "sort_order": 442, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F93D-1F3FB", "non_qualified": null, "image": "1f93d-1f3fb.png", - "sheet_x": 40, - "sheet_y": 49, - "added_in": "4.0", + "sheet_x": 41, + "sheet_y": 0, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F93D-1F3FC", "non_qualified": null, "image": "1f93d-1f3fc.png", - "sheet_x": 40, - "sheet_y": 50, - "added_in": "4.0", + "sheet_x": 41, + "sheet_y": 1, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F93D-1F3FD", "non_qualified": null, "image": "1f93d-1f3fd.png", - "sheet_x": 40, - "sheet_y": 51, - "added_in": "4.0", + "sheet_x": 41, + "sheet_y": 2, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F93D-1F3FE", "non_qualified": null, "image": "1f93d-1f3fe.png", - "sheet_x": 40, - "sheet_y": 52, - "added_in": "4.0", + "sheet_x": 41, + "sheet_y": 3, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F93D-1F3FF", "non_qualified": null, "image": "1f93d-1f3ff.png", - "sheet_x": 40, - "sheet_y": 53, - "added_in": "4.0", + "sheet_x": 41, + "sheet_y": 4, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } } }, { - "name": null, + "name": "WOMAN PLAYING HANDBALL", "unified": "1F93E-200D-2640-FE0F", "non_qualified": "1F93E-200D-2640", "docomo": null, @@ -45783,8 +47904,8 @@ "softbank": null, "google": null, "image": "1f93e-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 54, + "sheet_x": 41, + "sheet_y": 5, "short_name": "woman-playing-handball", "short_names": [ "woman-playing-handball" @@ -45792,7 +47913,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 284, + "subcategory": "person-sport", + "sort_order": 447, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45803,8 +47925,8 @@ "unified": "1F93E-1F3FB-200D-2640-FE0F", "non_qualified": "1F93E-1F3FB-200D-2640", "image": "1f93e-1f3fb-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 55, + "sheet_x": 41, + "sheet_y": 6, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45815,8 +47937,8 @@ "unified": "1F93E-1F3FC-200D-2640-FE0F", "non_qualified": "1F93E-1F3FC-200D-2640", "image": "1f93e-1f3fc-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 56, + "sheet_x": 41, + "sheet_y": 7, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45828,7 +47950,7 @@ "non_qualified": "1F93E-1F3FD-200D-2640", "image": "1f93e-1f3fd-200d-2640-fe0f.png", "sheet_x": 41, - "sheet_y": 0, + "sheet_y": 8, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45840,7 +47962,7 @@ "non_qualified": "1F93E-1F3FE-200D-2640", "image": "1f93e-1f3fe-200d-2640-fe0f.png", "sheet_x": 41, - "sheet_y": 1, + "sheet_y": 9, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45852,7 +47974,7 @@ "non_qualified": "1F93E-1F3FF-200D-2640", "image": "1f93e-1f3ff-200d-2640-fe0f.png", "sheet_x": 41, - "sheet_y": 2, + "sheet_y": 10, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45862,7 +47984,7 @@ } }, { - "name": null, + "name": "MAN PLAYING HANDBALL", "unified": "1F93E-200D-2642-FE0F", "non_qualified": "1F93E-200D-2642", "docomo": null, @@ -45871,7 +47993,7 @@ "google": null, "image": "1f93e-200d-2642-fe0f.png", "sheet_x": 41, - "sheet_y": 3, + "sheet_y": 11, "short_name": "man-playing-handball", "short_names": [ "man-playing-handball" @@ -45879,7 +48001,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 283, + "subcategory": "person-sport", + "sort_order": 446, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45891,7 +48014,7 @@ "non_qualified": "1F93E-1F3FB-200D-2642", "image": "1f93e-1f3fb-200d-2642-fe0f.png", "sheet_x": 41, - "sheet_y": 4, + "sheet_y": 12, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45903,7 +48026,7 @@ "non_qualified": "1F93E-1F3FC-200D-2642", "image": "1f93e-1f3fc-200d-2642-fe0f.png", "sheet_x": 41, - "sheet_y": 5, + "sheet_y": 13, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45915,7 +48038,7 @@ "non_qualified": "1F93E-1F3FD-200D-2642", "image": "1f93e-1f3fd-200d-2642-fe0f.png", "sheet_x": 41, - "sheet_y": 6, + "sheet_y": 14, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45927,7 +48050,7 @@ "non_qualified": "1F93E-1F3FE-200D-2642", "image": "1f93e-1f3fe-200d-2642-fe0f.png", "sheet_x": 41, - "sheet_y": 7, + "sheet_y": 15, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45939,7 +48062,7 @@ "non_qualified": "1F93E-1F3FF-200D-2642", "image": "1f93e-1f3ff-200d-2642-fe0f.png", "sheet_x": 41, - "sheet_y": 8, + "sheet_y": 16, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -45958,7 +48081,7 @@ "google": null, "image": "1f93e.png", "sheet_x": 41, - "sheet_y": 9, + "sheet_y": 17, "short_name": "handball", "short_names": [ "handball" @@ -45966,72 +48089,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 282, - "added_in": "4.0", + "subcategory": "person-sport", + "sort_order": 445, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F93E-1F3FB", "non_qualified": null, "image": "1f93e-1f3fb.png", "sheet_x": 41, - "sheet_y": 10, - "added_in": "4.0", + "sheet_y": 18, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F93E-1F3FC", "non_qualified": null, "image": "1f93e-1f3fc.png", "sheet_x": 41, - "sheet_y": 11, - "added_in": "4.0", + "sheet_y": 19, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F93E-1F3FD", "non_qualified": null, "image": "1f93e-1f3fd.png", "sheet_x": 41, - "sheet_y": 12, - "added_in": "4.0", + "sheet_y": 20, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F93E-1F3FE", "non_qualified": null, "image": "1f93e-1f3fe.png", "sheet_x": 41, - "sheet_y": 13, - "added_in": "4.0", + "sheet_y": 21, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F93E-1F3FF", "non_qualified": null, "image": "1f93e-1f3ff.png", "sheet_x": 41, - "sheet_y": 14, - "added_in": "4.0", + "sheet_y": 22, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } } }, @@ -46045,7 +48169,7 @@ "google": null, "image": "1f93f.png", "sheet_x": 41, - "sheet_y": 15, + "sheet_y": 23, "short_name": "diving_mask", "short_names": [ "diving_mask" @@ -46053,8 +48177,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 50, - "added_in": "12.1", + "subcategory": "sport", + "sort_order": 1037, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46070,7 +48195,7 @@ "google": null, "image": "1f940.png", "sheet_x": 41, - "sheet_y": 16, + "sheet_y": 24, "short_name": "wilted_flower", "short_names": [ "wilted_flower" @@ -46078,8 +48203,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 111, - "added_in": "4.0", + "subcategory": "plant-flower", + "sort_order": 626, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46095,7 +48221,7 @@ "google": null, "image": "1f941.png", "sheet_x": 41, - "sheet_y": 17, + "sheet_y": 25, "short_name": "drum_with_drumsticks", "short_names": [ "drum_with_drumsticks" @@ -46103,8 +48229,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 68, - "added_in": "4.0", + "subcategory": "musical-instrument", + "sort_order": 1142, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46120,7 +48247,7 @@ "google": null, "image": "1f942.png", "sheet_x": 41, - "sheet_y": 18, + "sheet_y": 26, "short_name": "clinking_glasses", "short_names": [ "clinking_glasses" @@ -46128,8 +48255,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 110, - "added_in": "4.0", + "subcategory": "drink", + "sort_order": 760, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46145,7 +48273,7 @@ "google": null, "image": "1f943.png", "sheet_x": 41, - "sheet_y": 19, + "sheet_y": 27, "short_name": "tumbler_glass", "short_names": [ "tumbler_glass" @@ -46153,8 +48281,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 111, - "added_in": "4.0", + "subcategory": "drink", + "sort_order": 761, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46170,7 +48299,7 @@ "google": null, "image": "1f944.png", "sheet_x": 41, - "sheet_y": 20, + "sheet_y": 28, "short_name": "spoon", "short_names": [ "spoon" @@ -46178,8 +48307,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 119, - "added_in": "4.0", + "subcategory": "dishware", + "sort_order": 770, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46195,7 +48325,7 @@ "google": null, "image": "1f945.png", "sheet_x": 41, - "sheet_y": 21, + "sheet_y": 29, "short_name": "goal_net", "short_names": [ "goal_net" @@ -46203,8 +48333,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 46, - "added_in": "4.0", + "subcategory": "sport", + "sort_order": 1033, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46220,7 +48351,7 @@ "google": null, "image": "1f947.png", "sheet_x": 41, - "sheet_y": 22, + "sheet_y": 30, "short_name": "first_place_medal", "short_names": [ "first_place_medal" @@ -46228,8 +48359,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 25, - "added_in": "4.0", + "subcategory": "award-medal", + "sort_order": 1012, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46245,7 +48377,7 @@ "google": null, "image": "1f948.png", "sheet_x": 41, - "sheet_y": 23, + "sheet_y": 31, "short_name": "second_place_medal", "short_names": [ "second_place_medal" @@ -46253,8 +48385,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 26, - "added_in": "4.0", + "subcategory": "award-medal", + "sort_order": 1013, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46270,7 +48403,7 @@ "google": null, "image": "1f949.png", "sheet_x": 41, - "sheet_y": 24, + "sheet_y": 32, "short_name": "third_place_medal", "short_names": [ "third_place_medal" @@ -46278,8 +48411,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 27, - "added_in": "4.0", + "subcategory": "award-medal", + "sort_order": 1014, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46295,7 +48429,7 @@ "google": null, "image": "1f94a.png", "sheet_x": 41, - "sheet_y": 25, + "sheet_y": 33, "short_name": "boxing_glove", "short_names": [ "boxing_glove" @@ -46303,8 +48437,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 44, - "added_in": "4.0", + "subcategory": "sport", + "sort_order": 1031, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46320,7 +48455,7 @@ "google": null, "image": "1f94b.png", "sheet_x": 41, - "sheet_y": 26, + "sheet_y": 34, "short_name": "martial_arts_uniform", "short_names": [ "martial_arts_uniform" @@ -46328,8 +48463,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 45, - "added_in": "4.0", + "subcategory": "sport", + "sort_order": 1032, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46345,7 +48481,7 @@ "google": null, "image": "1f94c.png", "sheet_x": 41, - "sheet_y": 27, + "sheet_y": 35, "short_name": "curling_stone", "short_names": [ "curling_stone" @@ -46353,7 +48489,8 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 54, + "subcategory": "sport", + "sort_order": 1041, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -46370,7 +48507,7 @@ "google": null, "image": "1f94d.png", "sheet_x": 41, - "sheet_y": 28, + "sheet_y": 36, "short_name": "lacrosse", "short_names": [ "lacrosse" @@ -46378,7 +48515,8 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 41, + "subcategory": "sport", + "sort_order": 1028, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -46395,7 +48533,7 @@ "google": null, "image": "1f94e.png", "sheet_x": 41, - "sheet_y": 29, + "sheet_y": 37, "short_name": "softball", "short_names": [ "softball" @@ -46403,7 +48541,8 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 30, + "subcategory": "sport", + "sort_order": 1017, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -46420,7 +48559,7 @@ "google": null, "image": "1f94f.png", "sheet_x": 41, - "sheet_y": 30, + "sheet_y": 38, "short_name": "flying_disc", "short_names": [ "flying_disc" @@ -46428,7 +48567,8 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 36, + "subcategory": "sport", + "sort_order": 1023, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -46445,7 +48585,7 @@ "google": null, "image": "1f950.png", "sheet_x": 41, - "sheet_y": 31, + "sheet_y": 39, "short_name": "croissant", "short_names": [ "croissant" @@ -46453,8 +48593,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 33, - "added_in": "4.0", + "subcategory": "food-prepared", + "sort_order": 679, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46470,7 +48611,7 @@ "google": null, "image": "1f951.png", "sheet_x": 41, - "sheet_y": 32, + "sheet_y": 40, "short_name": "avocado", "short_names": [ "avocado" @@ -46478,8 +48619,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 18, - "added_in": "4.0", + "subcategory": "food-vegetable", + "sort_order": 663, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46495,7 +48637,7 @@ "google": null, "image": "1f952.png", "sheet_x": 41, - "sheet_y": 33, + "sheet_y": 41, "short_name": "cucumber", "short_names": [ "cucumber" @@ -46503,8 +48645,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 24, - "added_in": "4.0", + "subcategory": "food-vegetable", + "sort_order": 670, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46520,7 +48663,7 @@ "google": null, "image": "1f953.png", "sheet_x": 41, - "sheet_y": 34, + "sheet_y": 42, "short_name": "bacon", "short_names": [ "bacon" @@ -46528,8 +48671,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 43, - "added_in": "4.0", + "subcategory": "food-prepared", + "sort_order": 690, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46545,7 +48689,7 @@ "google": null, "image": "1f954.png", "sheet_x": 41, - "sheet_y": 35, + "sheet_y": 43, "short_name": "potato", "short_names": [ "potato" @@ -46553,8 +48697,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 20, - "added_in": "4.0", + "subcategory": "food-vegetable", + "sort_order": 665, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46570,7 +48715,7 @@ "google": null, "image": "1f955.png", "sheet_x": 41, - "sheet_y": 36, + "sheet_y": 44, "short_name": "carrot", "short_names": [ "carrot" @@ -46578,8 +48723,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 21, - "added_in": "4.0", + "subcategory": "food-vegetable", + "sort_order": 666, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46595,7 +48741,7 @@ "google": null, "image": "1f956.png", "sheet_x": 41, - "sheet_y": 37, + "sheet_y": 45, "short_name": "baguette_bread", "short_names": [ "baguette_bread" @@ -46603,8 +48749,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 34, - "added_in": "4.0", + "subcategory": "food-prepared", + "sort_order": 680, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46620,7 +48767,7 @@ "google": null, "image": "1f957.png", "sheet_x": 41, - "sheet_y": 38, + "sheet_y": 46, "short_name": "green_salad", "short_names": [ "green_salad" @@ -46628,8 +48775,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 58, - "added_in": "4.0", + "subcategory": "food-prepared", + "sort_order": 707, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46645,7 +48793,7 @@ "google": null, "image": "1f958.png", "sheet_x": 41, - "sheet_y": 39, + "sheet_y": 47, "short_name": "shallow_pan_of_food", "short_names": [ "shallow_pan_of_food" @@ -46653,8 +48801,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 55, - "added_in": "4.0", + "subcategory": "food-prepared", + "sort_order": 703, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46670,7 +48819,7 @@ "google": null, "image": "1f959.png", "sheet_x": 41, - "sheet_y": 40, + "sheet_y": 48, "short_name": "stuffed_flatbread", "short_names": [ "stuffed_flatbread" @@ -46678,8 +48827,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 51, - "added_in": "4.0", + "subcategory": "food-prepared", + "sort_order": 699, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46695,7 +48845,7 @@ "google": null, "image": "1f95a.png", "sheet_x": 41, - "sheet_y": 41, + "sheet_y": 49, "short_name": "egg", "short_names": [ "egg" @@ -46703,8 +48853,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 53, - "added_in": "4.0", + "subcategory": "food-prepared", + "sort_order": 701, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46720,7 +48871,7 @@ "google": null, "image": "1f95b.png", "sheet_x": 41, - "sheet_y": 42, + "sheet_y": 50, "short_name": "glass_of_milk", "short_names": [ "glass_of_milk" @@ -46728,8 +48879,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 100, - "added_in": "4.0", + "subcategory": "drink", + "sort_order": 749, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46745,7 +48897,7 @@ "google": null, "image": "1f95c.png", "sheet_x": 41, - "sheet_y": 43, + "sheet_y": 51, "short_name": "peanuts", "short_names": [ "peanuts" @@ -46753,8 +48905,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 30, - "added_in": "4.0", + "subcategory": "food-vegetable", + "sort_order": 676, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46770,7 +48923,7 @@ "google": null, "image": "1f95d.png", "sheet_x": 41, - "sheet_y": 44, + "sheet_y": 52, "short_name": "kiwifruit", "short_names": [ "kiwifruit" @@ -46778,8 +48931,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 15, - "added_in": "4.0", + "subcategory": "food-fruit", + "sort_order": 659, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46795,7 +48949,7 @@ "google": null, "image": "1f95e.png", "sheet_x": 41, - "sheet_y": 45, + "sheet_y": 53, "short_name": "pancakes", "short_names": [ "pancakes" @@ -46803,8 +48957,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 37, - "added_in": "4.0", + "subcategory": "food-prepared", + "sort_order": 684, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -46820,7 +48975,7 @@ "google": null, "image": "1f95f.png", "sheet_x": 41, - "sheet_y": 46, + "sheet_y": 54, "short_name": "dumpling", "short_names": [ "dumpling" @@ -46828,7 +48983,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 77, + "subcategory": "food-asian", + "sort_order": 726, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -46845,7 +49001,7 @@ "google": null, "image": "1f960.png", "sheet_x": 41, - "sheet_y": 47, + "sheet_y": 55, "short_name": "fortune_cookie", "short_names": [ "fortune_cookie" @@ -46853,7 +49009,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 78, + "subcategory": "food-asian", + "sort_order": 727, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -46870,7 +49027,7 @@ "google": null, "image": "1f961.png", "sheet_x": 41, - "sheet_y": 48, + "sheet_y": 56, "short_name": "takeout_box", "short_names": [ "takeout_box" @@ -46878,7 +49035,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 79, + "subcategory": "food-asian", + "sort_order": 728, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -46895,7 +49053,7 @@ "google": null, "image": "1f962.png", "sheet_x": 41, - "sheet_y": 49, + "sheet_y": 57, "short_name": "chopsticks", "short_names": [ "chopsticks" @@ -46903,7 +49061,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 116, + "subcategory": "dishware", + "sort_order": 767, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -46919,8 +49078,8 @@ "softbank": null, "google": null, "image": "1f963.png", - "sheet_x": 41, - "sheet_y": 50, + "sheet_x": 42, + "sheet_y": 0, "short_name": "bowl_with_spoon", "short_names": [ "bowl_with_spoon" @@ -46928,7 +49087,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 57, + "subcategory": "food-prepared", + "sort_order": 706, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -46944,8 +49104,8 @@ "softbank": null, "google": null, "image": "1f964.png", - "sheet_x": 41, - "sheet_y": 51, + "sheet_x": 42, + "sheet_y": 1, "short_name": "cup_with_straw", "short_names": [ "cup_with_straw" @@ -46953,7 +49113,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 112, + "subcategory": "drink", + "sort_order": 762, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -46969,8 +49130,8 @@ "softbank": null, "google": null, "image": "1f965.png", - "sheet_x": 41, - "sheet_y": 52, + "sheet_x": 42, + "sheet_y": 2, "short_name": "coconut", "short_names": [ "coconut" @@ -46978,7 +49139,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 17, + "subcategory": "food-fruit", + "sort_order": 662, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -46994,8 +49156,8 @@ "softbank": null, "google": null, "image": "1f966.png", - "sheet_x": 41, - "sheet_y": 53, + "sheet_x": 42, + "sheet_y": 3, "short_name": "broccoli", "short_names": [ "broccoli" @@ -47003,7 +49165,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 26, + "subcategory": "food-vegetable", + "sort_order": 672, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -47019,8 +49182,8 @@ "softbank": null, "google": null, "image": "1f967.png", - "sheet_x": 41, - "sheet_y": 54, + "sheet_x": 42, + "sheet_y": 4, "short_name": "pie", "short_names": [ "pie" @@ -47028,7 +49191,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 93, + "subcategory": "food-sweet", + "sort_order": 742, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -47044,8 +49208,8 @@ "softbank": null, "google": null, "image": "1f968.png", - "sheet_x": 41, - "sheet_y": 55, + "sheet_x": 42, + "sheet_y": 5, "short_name": "pretzel", "short_names": [ "pretzel" @@ -47053,7 +49217,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 35, + "subcategory": "food-prepared", + "sort_order": 682, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -47069,8 +49234,8 @@ "softbank": null, "google": null, "image": "1f969.png", - "sheet_x": 41, - "sheet_y": 56, + "sheet_x": 42, + "sheet_y": 6, "short_name": "cut_of_meat", "short_names": [ "cut_of_meat" @@ -47078,7 +49243,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 42, + "subcategory": "food-prepared", + "sort_order": 689, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -47095,7 +49261,7 @@ "google": null, "image": "1f96a.png", "sheet_x": 42, - "sheet_y": 0, + "sheet_y": 7, "short_name": "sandwich", "short_names": [ "sandwich" @@ -47103,7 +49269,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 48, + "subcategory": "food-prepared", + "sort_order": 695, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -47120,7 +49287,7 @@ "google": null, "image": "1f96b.png", "sheet_x": 42, - "sheet_y": 1, + "sheet_y": 8, "short_name": "canned_food", "short_names": [ "canned_food" @@ -47128,7 +49295,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 62, + "subcategory": "food-prepared", + "sort_order": 711, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -47145,7 +49313,7 @@ "google": null, "image": "1f96c.png", "sheet_x": 42, - "sheet_y": 2, + "sheet_y": 9, "short_name": "leafy_green", "short_names": [ "leafy_green" @@ -47153,7 +49321,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 25, + "subcategory": "food-vegetable", + "sort_order": 671, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -47170,7 +49339,7 @@ "google": null, "image": "1f96d.png", "sheet_x": 42, - "sheet_y": 3, + "sheet_y": 10, "short_name": "mango", "short_names": [ "mango" @@ -47178,7 +49347,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 8, + "subcategory": "food-fruit", + "sort_order": 651, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -47195,7 +49365,7 @@ "google": null, "image": "1f96e.png", "sheet_x": 42, - "sheet_y": 4, + "sheet_y": 11, "short_name": "moon_cake", "short_names": [ "moon_cake" @@ -47203,7 +49373,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 75, + "subcategory": "food-asian", + "sort_order": 724, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -47220,7 +49391,7 @@ "google": null, "image": "1f96f.png", "sheet_x": 42, - "sheet_y": 5, + "sheet_y": 12, "short_name": "bagel", "short_names": [ "bagel" @@ -47228,7 +49399,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 36, + "subcategory": "food-prepared", + "sort_order": 683, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -47245,7 +49417,7 @@ "google": null, "image": "1f970.png", "sheet_x": 42, - "sheet_y": 6, + "sheet_y": 13, "short_name": "smiling_face_with_3_hearts", "short_names": [ "smiling_face_with_3_hearts" @@ -47253,6 +49425,7 @@ "text": null, "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-affection", "sort_order": 14, "added_in": "11.0", "has_img_apple": true, @@ -47270,7 +49443,7 @@ "google": null, "image": "1f971.png", "sheet_x": 42, - "sheet_y": 7, + "sheet_y": 14, "short_name": "yawning_face", "short_names": [ "yawning_face" @@ -47278,8 +49451,35 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 86, - "added_in": "12.1", + "subcategory": "face-concerned", + "sort_order": 88, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SMILING FACE WITH TEAR", + "unified": "1F972", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f972.png", + "sheet_x": 42, + "sheet_y": 15, + "short_name": "smiling_face_with_tear", + "short_names": [ + "smiling_face_with_tear" + ], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-affection", + "sort_order": 22, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47295,7 +49495,7 @@ "google": null, "image": "1f973.png", "sheet_x": 42, - "sheet_y": 8, + "sheet_y": 16, "short_name": "partying_face", "short_names": [ "partying_face" @@ -47303,7 +49503,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 59, + "subcategory": "face-hat", + "sort_order": 60, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -47320,7 +49521,7 @@ "google": null, "image": "1f974.png", "sheet_x": 42, - "sheet_y": 9, + "sheet_y": 17, "short_name": "woozy_face", "short_names": [ "woozy_face" @@ -47328,7 +49529,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 55, + "subcategory": "face-unwell", + "sort_order": 56, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -47345,7 +49547,7 @@ "google": null, "image": "1f975.png", "sheet_x": 42, - "sheet_y": 10, + "sheet_y": 18, "short_name": "hot_face", "short_names": [ "hot_face" @@ -47353,7 +49555,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 53, + "subcategory": "face-unwell", + "sort_order": 54, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -47370,7 +49573,7 @@ "google": null, "image": "1f976.png", "sheet_x": 42, - "sheet_y": 11, + "sheet_y": 19, "short_name": "cold_face", "short_names": [ "cold_face" @@ -47378,13 +49581,128 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 54, + "subcategory": "face-unwell", + "sort_order": 55, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, + { + "name": "NINJA", + "unified": "1F977", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f977.png", + "sheet_x": 42, + "sheet_y": 20, + "short_name": "ninja", + "short_names": [ + "ninja" + ], + "text": null, + "texts": null, + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 316, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1F977-1F3FB", + "non_qualified": null, + "image": "1f977-1f3fb.png", + "sheet_x": 42, + "sheet_y": 21, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F977-1F3FC", + "non_qualified": null, + "image": "1f977-1f3fc.png", + "sheet_x": 42, + "sheet_y": 22, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F977-1F3FD", + "non_qualified": null, + "image": "1f977-1f3fd.png", + "sheet_x": 42, + "sheet_y": 23, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F977-1F3FE", + "non_qualified": null, + "image": "1f977-1f3fe.png", + "sheet_x": 42, + "sheet_y": 24, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F977-1F3FF", + "non_qualified": null, + "image": "1f977-1f3ff.png", + "sheet_x": 42, + "sheet_y": 25, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } + }, + { + "name": "DISGUISED FACE", + "unified": "1F978", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f978.png", + "sheet_x": 42, + "sheet_y": 26, + "short_name": "disguised_face", + "short_names": [ + "disguised_face" + ], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-hat", + "sort_order": 61, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, { "name": "FACE WITH PLEADING EYES", "unified": "1F97A", @@ -47395,7 +49713,7 @@ "google": null, "image": "1f97a.png", "sheet_x": 42, - "sheet_y": 12, + "sheet_y": 27, "short_name": "pleading_face", "short_names": [ "pleading_face" @@ -47403,7 +49721,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 71, + "subcategory": "face-concerned", + "sort_order": 73, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -47420,7 +49739,7 @@ "google": null, "image": "1f97b.png", "sheet_x": 42, - "sheet_y": 13, + "sheet_y": 28, "short_name": "sari", "short_names": [ "sari" @@ -47428,8 +49747,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 15, - "added_in": "12.1", + "subcategory": "clothing", + "sort_order": 1086, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47445,7 +49765,7 @@ "google": null, "image": "1f97c.png", "sheet_x": 42, - "sheet_y": 14, + "sheet_y": 29, "short_name": "lab_coat", "short_names": [ "lab_coat" @@ -47453,7 +49773,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 4, + "subcategory": "clothing", + "sort_order": 1075, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -47470,7 +49791,7 @@ "google": null, "image": "1f97d.png", "sheet_x": 42, - "sheet_y": 15, + "sheet_y": 30, "short_name": "goggles", "short_names": [ "goggles" @@ -47478,7 +49799,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 3, + "subcategory": "clothing", + "sort_order": 1074, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -47495,7 +49817,7 @@ "google": null, "image": "1f97e.png", "sheet_x": 42, - "sheet_y": 16, + "sheet_y": 31, "short_name": "hiking_boot", "short_names": [ "hiking_boot" @@ -47503,7 +49825,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 28, + "subcategory": "clothing", + "sort_order": 1100, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -47520,7 +49843,7 @@ "google": null, "image": "1f97f.png", "sheet_x": 42, - "sheet_y": 17, + "sheet_y": 32, "short_name": "womans_flat_shoe", "short_names": [ "womans_flat_shoe" @@ -47528,7 +49851,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 29, + "subcategory": "clothing", + "sort_order": 1101, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -47545,7 +49869,7 @@ "google": null, "image": "1f980.png", "sheet_x": 42, - "sheet_y": 18, + "sheet_y": 33, "short_name": "crab", "short_names": [ "crab" @@ -47553,8 +49877,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 80, - "added_in": "2.0", + "subcategory": "food-marine", + "sort_order": 729, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47570,7 +49895,7 @@ "google": null, "image": "1f981.png", "sheet_x": 42, - "sheet_y": 19, + "sheet_y": 34, "short_name": "lion_face", "short_names": [ "lion_face" @@ -47578,8 +49903,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 15, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 519, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47595,7 +49921,7 @@ "google": null, "image": "1f982.png", "sheet_x": 42, - "sheet_y": 20, + "sheet_y": 35, "short_name": "scorpion", "short_names": [ "scorpion" @@ -47603,8 +49929,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 103, - "added_in": "2.0", + "subcategory": "animal-bug", + "sort_order": 616, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47620,7 +49947,7 @@ "google": null, "image": "1f983.png", "sheet_x": 42, - "sheet_y": 21, + "sheet_y": 36, "short_name": "turkey", "short_names": [ "turkey" @@ -47628,8 +49955,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 60, - "added_in": "2.0", + "subcategory": "animal-bird", + "sort_order": 568, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47645,7 +49973,7 @@ "google": null, "image": "1f984.png", "sheet_x": 42, - "sheet_y": 22, + "sheet_y": 37, "short_name": "unicorn_face", "short_names": [ "unicorn_face" @@ -47653,8 +49981,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 21, - "added_in": "2.0", + "subcategory": "animal-mammal", + "sort_order": 525, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47670,7 +49999,7 @@ "google": null, "image": "1f985.png", "sheet_x": 42, - "sheet_y": 23, + "sheet_y": 38, "short_name": "eagle", "short_names": [ "eagle" @@ -47678,8 +50007,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 69, - "added_in": "4.0", + "subcategory": "animal-bird", + "sort_order": 577, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47695,7 +50025,7 @@ "google": null, "image": "1f986.png", "sheet_x": 42, - "sheet_y": 24, + "sheet_y": 39, "short_name": "duck", "short_names": [ "duck" @@ -47703,8 +50033,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 70, - "added_in": "4.0", + "subcategory": "animal-bird", + "sort_order": 578, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47720,7 +50051,7 @@ "google": null, "image": "1f987.png", "sheet_x": 42, - "sheet_y": 25, + "sheet_y": 40, "short_name": "bat", "short_names": [ "bat" @@ -47728,8 +50059,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 50, - "added_in": "4.0", + "subcategory": "animal-mammal", + "sort_order": 557, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47745,7 +50077,7 @@ "google": null, "image": "1f988.png", "sheet_x": 42, - "sheet_y": 26, + "sheet_y": 41, "short_name": "shark", "short_names": [ "shark" @@ -47753,8 +50085,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 91, - "added_in": "4.0", + "subcategory": "animal-marine", + "sort_order": 602, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47770,7 +50103,7 @@ "google": null, "image": "1f989.png", "sheet_x": 42, - "sheet_y": 27, + "sheet_y": 42, "short_name": "owl", "short_names": [ "owl" @@ -47778,8 +50111,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 72, - "added_in": "4.0", + "subcategory": "animal-bird", + "sort_order": 580, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47795,7 +50129,7 @@ "google": null, "image": "1f98a.png", "sheet_x": 42, - "sheet_y": 28, + "sheet_y": 43, "short_name": "fox_face", "short_names": [ "fox_face" @@ -47803,8 +50137,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 11, - "added_in": "4.0", + "subcategory": "animal-mammal", + "sort_order": 514, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47820,7 +50155,7 @@ "google": null, "image": "1f98b.png", "sheet_x": 42, - "sheet_y": 29, + "sheet_y": 44, "short_name": "butterfly", "short_names": [ "butterfly" @@ -47828,8 +50163,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 95, - "added_in": "4.0", + "subcategory": "animal-bug", + "sort_order": 606, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47845,7 +50181,7 @@ "google": null, "image": "1f98c.png", "sheet_x": 42, - "sheet_y": 30, + "sheet_y": 45, "short_name": "deer", "short_names": [ "deer" @@ -47853,8 +50189,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 23, - "added_in": "4.0", + "subcategory": "animal-mammal", + "sort_order": 527, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47870,7 +50207,7 @@ "google": null, "image": "1f98d.png", "sheet_x": 42, - "sheet_y": 31, + "sheet_y": 46, "short_name": "gorilla", "short_names": [ "gorilla" @@ -47878,8 +50215,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 3, - "added_in": "4.0", + "subcategory": "animal-mammal", + "sort_order": 506, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47895,7 +50233,7 @@ "google": null, "image": "1f98e.png", "sheet_x": 42, - "sheet_y": 32, + "sheet_y": 47, "short_name": "lizard", "short_names": [ "lizard" @@ -47903,8 +50241,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 79, - "added_in": "4.0", + "subcategory": "animal-reptile", + "sort_order": 589, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47920,7 +50259,7 @@ "google": null, "image": "1f98f.png", "sheet_x": 42, - "sheet_y": 33, + "sheet_y": 48, "short_name": "rhinoceros", "short_names": [ "rhinoceros" @@ -47928,8 +50267,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 40, - "added_in": "4.0", + "subcategory": "animal-mammal", + "sort_order": 546, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47945,7 +50285,7 @@ "google": null, "image": "1f990.png", "sheet_x": 42, - "sheet_y": 34, + "sheet_y": 49, "short_name": "shrimp", "short_names": [ "shrimp" @@ -47953,8 +50293,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 82, - "added_in": "4.0", + "subcategory": "food-marine", + "sort_order": 731, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47970,7 +50311,7 @@ "google": null, "image": "1f991.png", "sheet_x": 42, - "sheet_y": 35, + "sheet_y": 50, "short_name": "squid", "short_names": [ "squid" @@ -47978,8 +50319,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 83, - "added_in": "4.0", + "subcategory": "food-marine", + "sort_order": 732, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -47995,7 +50337,7 @@ "google": null, "image": "1f992.png", "sheet_x": 42, - "sheet_y": 36, + "sheet_y": 51, "short_name": "giraffe_face", "short_names": [ "giraffe_face" @@ -48003,7 +50345,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 38, + "subcategory": "animal-mammal", + "sort_order": 543, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -48020,7 +50363,7 @@ "google": null, "image": "1f993.png", "sheet_x": 42, - "sheet_y": 37, + "sheet_y": 52, "short_name": "zebra_face", "short_names": [ "zebra_face" @@ -48028,7 +50371,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 22, + "subcategory": "animal-mammal", + "sort_order": 526, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -48045,7 +50389,7 @@ "google": null, "image": "1f994.png", "sheet_x": 42, - "sheet_y": 38, + "sheet_y": 53, "short_name": "hedgehog", "short_names": [ "hedgehog" @@ -48053,7 +50397,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 49, + "subcategory": "animal-mammal", + "sort_order": 556, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -48070,7 +50415,7 @@ "google": null, "image": "1f995.png", "sheet_x": 42, - "sheet_y": 39, + "sheet_y": 54, "short_name": "sauropod", "short_names": [ "sauropod" @@ -48078,7 +50423,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 83, + "subcategory": "animal-reptile", + "sort_order": 593, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -48095,7 +50441,7 @@ "google": null, "image": "1f996.png", "sheet_x": 42, - "sheet_y": 40, + "sheet_y": 55, "short_name": "t-rex", "short_names": [ "t-rex" @@ -48103,7 +50449,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 84, + "subcategory": "animal-reptile", + "sort_order": 594, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -48120,7 +50467,7 @@ "google": null, "image": "1f997.png", "sheet_x": 42, - "sheet_y": 41, + "sheet_y": 56, "short_name": "cricket", "short_names": [ "cricket" @@ -48128,7 +50475,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 100, + "subcategory": "animal-bug", + "sort_order": 612, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -48145,7 +50493,7 @@ "google": null, "image": "1f998.png", "sheet_x": 42, - "sheet_y": 42, + "sheet_y": 57, "short_name": "kangaroo", "short_names": [ "kangaroo" @@ -48153,7 +50501,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 57, + "subcategory": "animal-mammal", + "sort_order": 565, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48169,8 +50518,8 @@ "softbank": null, "google": null, "image": "1f999.png", - "sheet_x": 42, - "sheet_y": 43, + "sheet_x": 43, + "sheet_y": 0, "short_name": "llama", "short_names": [ "llama" @@ -48178,7 +50527,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 37, + "subcategory": "animal-mammal", + "sort_order": 542, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48194,8 +50544,8 @@ "softbank": null, "google": null, "image": "1f99a.png", - "sheet_x": 42, - "sheet_y": 44, + "sheet_x": 43, + "sheet_y": 1, "short_name": "peacock", "short_names": [ "peacock" @@ -48203,7 +50553,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 74, + "subcategory": "animal-bird", + "sort_order": 584, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48219,8 +50570,8 @@ "softbank": null, "google": null, "image": "1f99b.png", - "sheet_x": 42, - "sheet_y": 45, + "sheet_x": 43, + "sheet_y": 2, "short_name": "hippopotamus", "short_names": [ "hippopotamus" @@ -48228,7 +50579,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 41, + "subcategory": "animal-mammal", + "sort_order": 547, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48244,8 +50596,8 @@ "softbank": null, "google": null, "image": "1f99c.png", - "sheet_x": 42, - "sheet_y": 46, + "sheet_x": 43, + "sheet_y": 3, "short_name": "parrot", "short_names": [ "parrot" @@ -48253,7 +50605,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 75, + "subcategory": "animal-bird", + "sort_order": 585, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48269,8 +50622,8 @@ "softbank": null, "google": null, "image": "1f99d.png", - "sheet_x": 42, - "sheet_y": 47, + "sheet_x": 43, + "sheet_y": 4, "short_name": "raccoon", "short_names": [ "raccoon" @@ -48278,7 +50631,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 12, + "subcategory": "animal-mammal", + "sort_order": 515, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48294,8 +50648,8 @@ "softbank": null, "google": null, "image": "1f99e.png", - "sheet_x": 42, - "sheet_y": 48, + "sheet_x": 43, + "sheet_y": 5, "short_name": "lobster", "short_names": [ "lobster" @@ -48303,7 +50657,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 81, + "subcategory": "food-marine", + "sort_order": 730, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48319,8 +50674,8 @@ "softbank": null, "google": null, "image": "1f99f.png", - "sheet_x": 42, - "sheet_y": 49, + "sheet_x": 43, + "sheet_y": 6, "short_name": "mosquito", "short_names": [ "mosquito" @@ -48328,7 +50683,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 104, + "subcategory": "animal-bug", + "sort_order": 617, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48344,8 +50700,8 @@ "softbank": null, "google": null, "image": "1f9a0.png", - "sheet_x": 42, - "sheet_y": 50, + "sheet_x": 43, + "sheet_y": 7, "short_name": "microbe", "short_names": [ "microbe" @@ -48353,7 +50709,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 105, + "subcategory": "animal-bug", + "sort_order": 620, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48369,8 +50726,8 @@ "softbank": null, "google": null, "image": "1f9a1.png", - "sheet_x": 42, - "sheet_y": 51, + "sheet_x": 43, + "sheet_y": 8, "short_name": "badger", "short_names": [ "badger" @@ -48378,7 +50735,8 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 58, + "subcategory": "animal-mammal", + "sort_order": 566, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48394,8 +50752,8 @@ "softbank": null, "google": null, "image": "1f9a2.png", - "sheet_x": 42, - "sheet_y": 52, + "sheet_x": 43, + "sheet_y": 9, "short_name": "swan", "short_names": [ "swan" @@ -48403,13 +50761,66 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 71, + "subcategory": "animal-bird", + "sort_order": 579, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, + { + "name": "MAMMOTH", + "unified": "1F9A3", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9a3.png", + "sheet_x": 43, + "sheet_y": 10, + "short_name": "mammoth", + "short_names": [ + "mammoth" + ], + "text": null, + "texts": null, + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 545, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "DODO", + "unified": "1F9A4", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9a4.png", + "sheet_x": 43, + "sheet_y": 11, + "short_name": "dodo", + "short_names": [ + "dodo" + ], + "text": null, + "texts": null, + "category": "Animals & Nature", + "subcategory": "animal-bird", + "sort_order": 581, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, { "name": "SLOTH", "unified": "1F9A5", @@ -48419,8 +50830,8 @@ "softbank": null, "google": null, "image": "1f9a5.png", - "sheet_x": 42, - "sheet_y": 53, + "sheet_x": 43, + "sheet_y": 12, "short_name": "sloth", "short_names": [ "sloth" @@ -48428,8 +50839,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 54, - "added_in": "12.1", + "subcategory": "animal-mammal", + "sort_order": 562, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -48444,8 +50856,8 @@ "softbank": null, "google": null, "image": "1f9a6.png", - "sheet_x": 42, - "sheet_y": 54, + "sheet_x": 43, + "sheet_y": 13, "short_name": "otter", "short_names": [ "otter" @@ -48453,8 +50865,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 55, - "added_in": "12.1", + "subcategory": "animal-mammal", + "sort_order": 563, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -48469,8 +50882,8 @@ "softbank": null, "google": null, "image": "1f9a7.png", - "sheet_x": 42, - "sheet_y": 55, + "sheet_x": 43, + "sheet_y": 14, "short_name": "orangutan", "short_names": [ "orangutan" @@ -48478,8 +50891,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 4, - "added_in": "12.1", + "subcategory": "animal-mammal", + "sort_order": 507, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -48494,8 +50908,8 @@ "softbank": null, "google": null, "image": "1f9a8.png", - "sheet_x": 42, - "sheet_y": 56, + "sheet_x": 43, + "sheet_y": 15, "short_name": "skunk", "short_names": [ "skunk" @@ -48503,8 +50917,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 56, - "added_in": "12.1", + "subcategory": "animal-mammal", + "sort_order": 564, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -48520,7 +50935,7 @@ "google": null, "image": "1f9a9.png", "sheet_x": 43, - "sheet_y": 0, + "sheet_y": 16, "short_name": "flamingo", "short_names": [ "flamingo" @@ -48528,8 +50943,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 73, - "added_in": "12.1", + "subcategory": "animal-bird", + "sort_order": 583, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -48545,7 +50961,7 @@ "google": null, "image": "1f9aa.png", "sheet_x": 43, - "sheet_y": 1, + "sheet_y": 17, "short_name": "oyster", "short_names": [ "oyster" @@ -48553,8 +50969,87 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 84, - "added_in": "12.1", + "subcategory": "food-marine", + "sort_order": 733, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "BEAVER", + "unified": "1F9AB", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9ab.png", + "sheet_x": 43, + "sheet_y": 18, + "short_name": "beaver", + "short_names": [ + "beaver" + ], + "text": null, + "texts": null, + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 555, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "BISON", + "unified": "1F9AC", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9ac.png", + "sheet_x": 43, + "sheet_y": 19, + "short_name": "bison", + "short_names": [ + "bison" + ], + "text": null, + "texts": null, + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 528, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SEAL", + "unified": "1F9AD", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9ad.png", + "sheet_x": 43, + "sheet_y": 20, + "short_name": "seal", + "short_names": [ + "seal" + ], + "text": null, + "texts": null, + "category": "Animals & Nature", + "subcategory": "animal-marine", + "sort_order": 598, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -48570,7 +51065,7 @@ "google": null, "image": "1f9ae.png", "sheet_x": 43, - "sheet_y": 2, + "sheet_y": 21, "short_name": "guide_dog", "short_names": [ "guide_dog" @@ -48578,8 +51073,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 7, - "added_in": "12.1", + "subcategory": "animal-mammal", + "sort_order": 510, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -48595,7 +51091,7 @@ "google": null, "image": "1f9af.png", "sheet_x": 43, - "sheet_y": 3, + "sheet_y": 22, "short_name": "probing_cane", "short_names": [ "probing_cane" @@ -48603,8 +51099,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 196, - "added_in": "12.1", + "subcategory": "tool", + "sort_order": 1273, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -48620,7 +51117,7 @@ "google": null, "image": "1f9b4.png", "sheet_x": 43, - "sheet_y": 4, + "sheet_y": 23, "short_name": "bone", "short_names": [ "bone" @@ -48628,7 +51125,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 44, + "subcategory": "body-parts", + "sort_order": 198, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48645,7 +51143,7 @@ "google": null, "image": "1f9b5.png", "sheet_x": 43, - "sheet_y": 5, + "sheet_y": 24, "short_name": "leg", "short_names": [ "leg" @@ -48653,7 +51151,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 37, + "subcategory": "body-parts", + "sort_order": 189, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48665,7 +51164,7 @@ "non_qualified": null, "image": "1f9b5-1f3fb.png", "sheet_x": 43, - "sheet_y": 6, + "sheet_y": 25, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48677,7 +51176,7 @@ "non_qualified": null, "image": "1f9b5-1f3fc.png", "sheet_x": 43, - "sheet_y": 7, + "sheet_y": 26, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48689,7 +51188,7 @@ "non_qualified": null, "image": "1f9b5-1f3fd.png", "sheet_x": 43, - "sheet_y": 8, + "sheet_y": 27, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48701,7 +51200,7 @@ "non_qualified": null, "image": "1f9b5-1f3fe.png", "sheet_x": 43, - "sheet_y": 9, + "sheet_y": 28, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48713,7 +51212,7 @@ "non_qualified": null, "image": "1f9b5-1f3ff.png", "sheet_x": 43, - "sheet_y": 10, + "sheet_y": 29, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48732,7 +51231,7 @@ "google": null, "image": "1f9b6.png", "sheet_x": 43, - "sheet_y": 11, + "sheet_y": 30, "short_name": "foot", "short_names": [ "foot" @@ -48740,7 +51239,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 38, + "subcategory": "body-parts", + "sort_order": 190, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48752,7 +51252,7 @@ "non_qualified": null, "image": "1f9b6-1f3fb.png", "sheet_x": 43, - "sheet_y": 12, + "sheet_y": 31, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48764,7 +51264,7 @@ "non_qualified": null, "image": "1f9b6-1f3fc.png", "sheet_x": 43, - "sheet_y": 13, + "sheet_y": 32, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48776,7 +51276,7 @@ "non_qualified": null, "image": "1f9b6-1f3fd.png", "sheet_x": 43, - "sheet_y": 14, + "sheet_y": 33, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48788,7 +51288,7 @@ "non_qualified": null, "image": "1f9b6-1f3fe.png", "sheet_x": 43, - "sheet_y": 15, + "sheet_y": 34, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48800,7 +51300,7 @@ "non_qualified": null, "image": "1f9b6-1f3ff.png", "sheet_x": 43, - "sheet_y": 16, + "sheet_y": 35, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48819,7 +51319,7 @@ "google": null, "image": "1f9b7.png", "sheet_x": 43, - "sheet_y": 17, + "sheet_y": 36, "short_name": "tooth", "short_names": [ "tooth" @@ -48827,7 +51327,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 43, + "subcategory": "body-parts", + "sort_order": 197, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48835,7 +51336,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "WOMAN SUPERHERO", "unified": "1F9B8-200D-2640-FE0F", "non_qualified": "1F9B8-200D-2640", "docomo": null, @@ -48844,7 +51345,7 @@ "google": null, "image": "1f9b8-200d-2640-fe0f.png", "sheet_x": 43, - "sheet_y": 18, + "sheet_y": 37, "short_name": "female_superhero", "short_names": [ "female_superhero" @@ -48852,7 +51353,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 181, + "subcategory": "person-fantasy", + "sort_order": 344, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48864,7 +51366,7 @@ "non_qualified": "1F9B8-1F3FB-200D-2640", "image": "1f9b8-1f3fb-200d-2640-fe0f.png", "sheet_x": 43, - "sheet_y": 19, + "sheet_y": 38, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48876,7 +51378,7 @@ "non_qualified": "1F9B8-1F3FC-200D-2640", "image": "1f9b8-1f3fc-200d-2640-fe0f.png", "sheet_x": 43, - "sheet_y": 20, + "sheet_y": 39, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48888,7 +51390,7 @@ "non_qualified": "1F9B8-1F3FD-200D-2640", "image": "1f9b8-1f3fd-200d-2640-fe0f.png", "sheet_x": 43, - "sheet_y": 21, + "sheet_y": 40, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48900,7 +51402,7 @@ "non_qualified": "1F9B8-1F3FE-200D-2640", "image": "1f9b8-1f3fe-200d-2640-fe0f.png", "sheet_x": 43, - "sheet_y": 22, + "sheet_y": 41, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48912,7 +51414,7 @@ "non_qualified": "1F9B8-1F3FF-200D-2640", "image": "1f9b8-1f3ff-200d-2640-fe0f.png", "sheet_x": 43, - "sheet_y": 23, + "sheet_y": 42, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48922,7 +51424,7 @@ } }, { - "name": null, + "name": "MAN SUPERHERO", "unified": "1F9B8-200D-2642-FE0F", "non_qualified": "1F9B8-200D-2642", "docomo": null, @@ -48931,7 +51433,7 @@ "google": null, "image": "1f9b8-200d-2642-fe0f.png", "sheet_x": 43, - "sheet_y": 24, + "sheet_y": 43, "short_name": "male_superhero", "short_names": [ "male_superhero" @@ -48939,7 +51441,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 180, + "subcategory": "person-fantasy", + "sort_order": 343, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48951,7 +51454,7 @@ "non_qualified": "1F9B8-1F3FB-200D-2642", "image": "1f9b8-1f3fb-200d-2642-fe0f.png", "sheet_x": 43, - "sheet_y": 25, + "sheet_y": 44, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48963,7 +51466,7 @@ "non_qualified": "1F9B8-1F3FC-200D-2642", "image": "1f9b8-1f3fc-200d-2642-fe0f.png", "sheet_x": 43, - "sheet_y": 26, + "sheet_y": 45, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48975,7 +51478,7 @@ "non_qualified": "1F9B8-1F3FD-200D-2642", "image": "1f9b8-1f3fd-200d-2642-fe0f.png", "sheet_x": 43, - "sheet_y": 27, + "sheet_y": 46, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48987,7 +51490,7 @@ "non_qualified": "1F9B8-1F3FE-200D-2642", "image": "1f9b8-1f3fe-200d-2642-fe0f.png", "sheet_x": 43, - "sheet_y": 28, + "sheet_y": 47, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -48999,7 +51502,7 @@ "non_qualified": "1F9B8-1F3FF-200D-2642", "image": "1f9b8-1f3ff-200d-2642-fe0f.png", "sheet_x": 43, - "sheet_y": 29, + "sheet_y": 48, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49018,7 +51521,7 @@ "google": null, "image": "1f9b8.png", "sheet_x": 43, - "sheet_y": 30, + "sheet_y": 49, "short_name": "superhero", "short_names": [ "superhero" @@ -49026,7 +51529,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 179, + "subcategory": "person-fantasy", + "sort_order": 342, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49038,7 +51542,7 @@ "non_qualified": null, "image": "1f9b8-1f3fb.png", "sheet_x": 43, - "sheet_y": 31, + "sheet_y": 50, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49050,7 +51554,7 @@ "non_qualified": null, "image": "1f9b8-1f3fc.png", "sheet_x": 43, - "sheet_y": 32, + "sheet_y": 51, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49062,7 +51566,7 @@ "non_qualified": null, "image": "1f9b8-1f3fd.png", "sheet_x": 43, - "sheet_y": 33, + "sheet_y": 52, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49074,7 +51578,7 @@ "non_qualified": null, "image": "1f9b8-1f3fe.png", "sheet_x": 43, - "sheet_y": 34, + "sheet_y": 53, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49086,7 +51590,7 @@ "non_qualified": null, "image": "1f9b8-1f3ff.png", "sheet_x": 43, - "sheet_y": 35, + "sheet_y": 54, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49096,7 +51600,7 @@ } }, { - "name": null, + "name": "WOMAN SUPERVILLAIN", "unified": "1F9B9-200D-2640-FE0F", "non_qualified": "1F9B9-200D-2640", "docomo": null, @@ -49105,7 +51609,7 @@ "google": null, "image": "1f9b9-200d-2640-fe0f.png", "sheet_x": 43, - "sheet_y": 36, + "sheet_y": 55, "short_name": "female_supervillain", "short_names": [ "female_supervillain" @@ -49113,7 +51617,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 184, + "subcategory": "person-fantasy", + "sort_order": 347, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49125,7 +51630,7 @@ "non_qualified": "1F9B9-1F3FB-200D-2640", "image": "1f9b9-1f3fb-200d-2640-fe0f.png", "sheet_x": 43, - "sheet_y": 37, + "sheet_y": 56, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49137,7 +51642,7 @@ "non_qualified": "1F9B9-1F3FC-200D-2640", "image": "1f9b9-1f3fc-200d-2640-fe0f.png", "sheet_x": 43, - "sheet_y": 38, + "sheet_y": 57, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49148,8 +51653,8 @@ "unified": "1F9B9-1F3FD-200D-2640-FE0F", "non_qualified": "1F9B9-1F3FD-200D-2640", "image": "1f9b9-1f3fd-200d-2640-fe0f.png", - "sheet_x": 43, - "sheet_y": 39, + "sheet_x": 44, + "sheet_y": 0, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49160,8 +51665,8 @@ "unified": "1F9B9-1F3FE-200D-2640-FE0F", "non_qualified": "1F9B9-1F3FE-200D-2640", "image": "1f9b9-1f3fe-200d-2640-fe0f.png", - "sheet_x": 43, - "sheet_y": 40, + "sheet_x": 44, + "sheet_y": 1, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49172,8 +51677,8 @@ "unified": "1F9B9-1F3FF-200D-2640-FE0F", "non_qualified": "1F9B9-1F3FF-200D-2640", "image": "1f9b9-1f3ff-200d-2640-fe0f.png", - "sheet_x": 43, - "sheet_y": 41, + "sheet_x": 44, + "sheet_y": 2, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49183,7 +51688,7 @@ } }, { - "name": null, + "name": "MAN SUPERVILLAIN", "unified": "1F9B9-200D-2642-FE0F", "non_qualified": "1F9B9-200D-2642", "docomo": null, @@ -49191,8 +51696,8 @@ "softbank": null, "google": null, "image": "1f9b9-200d-2642-fe0f.png", - "sheet_x": 43, - "sheet_y": 42, + "sheet_x": 44, + "sheet_y": 3, "short_name": "male_supervillain", "short_names": [ "male_supervillain" @@ -49200,7 +51705,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 183, + "subcategory": "person-fantasy", + "sort_order": 346, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49211,8 +51717,8 @@ "unified": "1F9B9-1F3FB-200D-2642-FE0F", "non_qualified": "1F9B9-1F3FB-200D-2642", "image": "1f9b9-1f3fb-200d-2642-fe0f.png", - "sheet_x": 43, - "sheet_y": 43, + "sheet_x": 44, + "sheet_y": 4, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49223,8 +51729,8 @@ "unified": "1F9B9-1F3FC-200D-2642-FE0F", "non_qualified": "1F9B9-1F3FC-200D-2642", "image": "1f9b9-1f3fc-200d-2642-fe0f.png", - "sheet_x": 43, - "sheet_y": 44, + "sheet_x": 44, + "sheet_y": 5, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49235,8 +51741,8 @@ "unified": "1F9B9-1F3FD-200D-2642-FE0F", "non_qualified": "1F9B9-1F3FD-200D-2642", "image": "1f9b9-1f3fd-200d-2642-fe0f.png", - "sheet_x": 43, - "sheet_y": 45, + "sheet_x": 44, + "sheet_y": 6, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49247,8 +51753,8 @@ "unified": "1F9B9-1F3FE-200D-2642-FE0F", "non_qualified": "1F9B9-1F3FE-200D-2642", "image": "1f9b9-1f3fe-200d-2642-fe0f.png", - "sheet_x": 43, - "sheet_y": 46, + "sheet_x": 44, + "sheet_y": 7, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49259,8 +51765,8 @@ "unified": "1F9B9-1F3FF-200D-2642-FE0F", "non_qualified": "1F9B9-1F3FF-200D-2642", "image": "1f9b9-1f3ff-200d-2642-fe0f.png", - "sheet_x": 43, - "sheet_y": 47, + "sheet_x": 44, + "sheet_y": 8, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49278,8 +51784,8 @@ "softbank": null, "google": null, "image": "1f9b9.png", - "sheet_x": 43, - "sheet_y": 48, + "sheet_x": 44, + "sheet_y": 9, "short_name": "supervillain", "short_names": [ "supervillain" @@ -49287,7 +51793,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 182, + "subcategory": "person-fantasy", + "sort_order": 345, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49298,8 +51805,8 @@ "unified": "1F9B9-1F3FB", "non_qualified": null, "image": "1f9b9-1f3fb.png", - "sheet_x": 43, - "sheet_y": 49, + "sheet_x": 44, + "sheet_y": 10, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49310,8 +51817,8 @@ "unified": "1F9B9-1F3FC", "non_qualified": null, "image": "1f9b9-1f3fc.png", - "sheet_x": 43, - "sheet_y": 50, + "sheet_x": 44, + "sheet_y": 11, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49322,8 +51829,8 @@ "unified": "1F9B9-1F3FD", "non_qualified": null, "image": "1f9b9-1f3fd.png", - "sheet_x": 43, - "sheet_y": 51, + "sheet_x": 44, + "sheet_y": 12, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49334,8 +51841,8 @@ "unified": "1F9B9-1F3FE", "non_qualified": null, "image": "1f9b9-1f3fe.png", - "sheet_x": 43, - "sheet_y": 52, + "sheet_x": 44, + "sheet_y": 13, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49346,8 +51853,8 @@ "unified": "1F9B9-1F3FF", "non_qualified": null, "image": "1f9b9-1f3ff.png", - "sheet_x": 43, - "sheet_y": 53, + "sheet_x": 44, + "sheet_y": 14, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49365,8 +51872,8 @@ "softbank": null, "google": null, "image": "1f9ba.png", - "sheet_x": 43, - "sheet_y": 54, + "sheet_x": 44, + "sheet_y": 15, "short_name": "safety_vest", "short_names": [ "safety_vest" @@ -49374,8 +51881,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 5, - "added_in": "12.1", + "subcategory": "clothing", + "sort_order": 1076, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49390,8 +51898,8 @@ "softbank": null, "google": null, "image": "1f9bb.png", - "sheet_x": 43, - "sheet_y": 55, + "sheet_x": 44, + "sheet_y": 16, "short_name": "ear_with_hearing_aid", "short_names": [ "ear_with_hearing_aid" @@ -49399,8 +51907,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 40, - "added_in": "12.1", + "subcategory": "body-parts", + "sort_order": 192, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49410,9 +51919,9 @@ "unified": "1F9BB-1F3FB", "non_qualified": null, "image": "1f9bb-1f3fb.png", - "sheet_x": 43, - "sheet_y": 56, - "added_in": "12.1", + "sheet_x": 44, + "sheet_y": 17, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49423,8 +51932,8 @@ "non_qualified": null, "image": "1f9bb-1f3fc.png", "sheet_x": 44, - "sheet_y": 0, - "added_in": "12.1", + "sheet_y": 18, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49435,8 +51944,8 @@ "non_qualified": null, "image": "1f9bb-1f3fd.png", "sheet_x": 44, - "sheet_y": 1, - "added_in": "12.1", + "sheet_y": 19, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49447,8 +51956,8 @@ "non_qualified": null, "image": "1f9bb-1f3fe.png", "sheet_x": 44, - "sheet_y": 2, - "added_in": "12.1", + "sheet_y": 20, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49459,8 +51968,8 @@ "non_qualified": null, "image": "1f9bb-1f3ff.png", "sheet_x": 44, - "sheet_y": 3, - "added_in": "12.1", + "sheet_y": 21, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49478,7 +51987,7 @@ "google": null, "image": "1f9bc.png", "sheet_x": 44, - "sheet_y": 4, + "sheet_y": 22, "short_name": "motorized_wheelchair", "short_names": [ "motorized_wheelchair" @@ -49486,8 +51995,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 95, - "added_in": "12.1", + "subcategory": "transport-ground", + "sort_order": 871, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49503,7 +52013,7 @@ "google": null, "image": "1f9bd.png", "sheet_x": 44, - "sheet_y": 5, + "sheet_y": 23, "short_name": "manual_wheelchair", "short_names": [ "manual_wheelchair" @@ -49511,8 +52021,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 94, - "added_in": "12.1", + "subcategory": "transport-ground", + "sort_order": 870, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49528,7 +52039,7 @@ "google": null, "image": "1f9be.png", "sheet_x": 44, - "sheet_y": 6, + "sheet_y": 24, "short_name": "mechanical_arm", "short_names": [ "mechanical_arm" @@ -49536,8 +52047,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 35, - "added_in": "12.1", + "subcategory": "body-parts", + "sort_order": 187, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49553,7 +52065,7 @@ "google": null, "image": "1f9bf.png", "sheet_x": 44, - "sheet_y": 7, + "sheet_y": 25, "short_name": "mechanical_leg", "short_names": [ "mechanical_leg" @@ -49561,8 +52073,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 36, - "added_in": "12.1", + "subcategory": "body-parts", + "sort_order": 188, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49578,7 +52091,7 @@ "google": null, "image": "1f9c0.png", "sheet_x": 44, - "sheet_y": 8, + "sheet_y": 26, "short_name": "cheese_wedge", "short_names": [ "cheese_wedge" @@ -49586,8 +52099,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 39, - "added_in": "2.0", + "subcategory": "food-prepared", + "sort_order": 686, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49603,7 +52117,7 @@ "google": null, "image": "1f9c1.png", "sheet_x": 44, - "sheet_y": 9, + "sheet_y": 27, "short_name": "cupcake", "short_names": [ "cupcake" @@ -49611,7 +52125,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 92, + "subcategory": "food-sweet", + "sort_order": 741, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49628,7 +52143,7 @@ "google": null, "image": "1f9c2.png", "sheet_x": 44, - "sheet_y": 10, + "sheet_y": 28, "short_name": "salt", "short_names": [ "salt" @@ -49636,7 +52151,8 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 61, + "subcategory": "food-prepared", + "sort_order": 710, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -49653,7 +52169,7 @@ "google": null, "image": "1f9c3.png", "sheet_x": 44, - "sheet_y": 11, + "sheet_y": 29, "short_name": "beverage_box", "short_names": [ "beverage_box" @@ -49661,8 +52177,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 113, - "added_in": "12.1", + "subcategory": "drink", + "sort_order": 764, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49678,7 +52195,7 @@ "google": null, "image": "1f9c4.png", "sheet_x": 44, - "sheet_y": 12, + "sheet_y": 30, "short_name": "garlic", "short_names": [ "garlic" @@ -49686,8 +52203,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 27, - "added_in": "12.1", + "subcategory": "food-vegetable", + "sort_order": 673, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49703,7 +52221,7 @@ "google": null, "image": "1f9c5.png", "sheet_x": 44, - "sheet_y": 13, + "sheet_y": 31, "short_name": "onion", "short_names": [ "onion" @@ -49711,8 +52229,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 28, - "added_in": "12.1", + "subcategory": "food-vegetable", + "sort_order": 674, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49728,7 +52247,7 @@ "google": null, "image": "1f9c6.png", "sheet_x": 44, - "sheet_y": 14, + "sheet_y": 32, "short_name": "falafel", "short_names": [ "falafel" @@ -49736,8 +52255,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 52, - "added_in": "12.1", + "subcategory": "food-prepared", + "sort_order": 700, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49753,7 +52273,7 @@ "google": null, "image": "1f9c7.png", "sheet_x": 44, - "sheet_y": 15, + "sheet_y": 33, "short_name": "waffle", "short_names": [ "waffle" @@ -49761,8 +52281,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 38, - "added_in": "12.1", + "subcategory": "food-prepared", + "sort_order": 685, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49778,7 +52299,7 @@ "google": null, "image": "1f9c8.png", "sheet_x": 44, - "sheet_y": 16, + "sheet_y": 34, "short_name": "butter", "short_names": [ "butter" @@ -49786,8 +52307,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 60, - "added_in": "12.1", + "subcategory": "food-prepared", + "sort_order": 709, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49803,7 +52325,7 @@ "google": null, "image": "1f9c9.png", "sheet_x": 44, - "sheet_y": 17, + "sheet_y": 35, "short_name": "mate_drink", "short_names": [ "mate_drink" @@ -49811,8 +52333,9 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 114, - "added_in": "12.1", + "subcategory": "drink", + "sort_order": 765, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49828,7 +52351,7 @@ "google": null, "image": "1f9ca.png", "sheet_x": 44, - "sheet_y": 18, + "sheet_y": 36, "short_name": "ice_cube", "short_names": [ "ice_cube" @@ -49836,15 +52359,42 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 115, - "added_in": "12.1", + "subcategory": "drink", + "sort_order": 766, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "BUBBLE TEA", + "unified": "1F9CB", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9cb.png", + "sheet_x": 44, + "sheet_y": 37, + "short_name": "bubble_tea", + "short_names": [ + "bubble_tea" + ], + "text": null, + "texts": null, + "category": "Food & Drink", + "subcategory": "drink", + "sort_order": 763, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WOMAN STANDING", "unified": "1F9CD-200D-2640-FE0F", "non_qualified": "1F9CD-200D-2640", "docomo": null, @@ -49853,7 +52403,7 @@ "google": null, "image": "1f9cd-200d-2640-fe0f.png", "sheet_x": 44, - "sheet_y": 19, + "sheet_y": 38, "short_name": "woman_standing", "short_names": [ "woman_standing" @@ -49861,8 +52411,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 217, - "added_in": "12.1", + "subcategory": "person-activity", + "sort_order": 380, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49873,8 +52424,8 @@ "non_qualified": "1F9CD-1F3FB-200D-2640", "image": "1f9cd-1f3fb-200d-2640-fe0f.png", "sheet_x": 44, - "sheet_y": 20, - "added_in": "12.1", + "sheet_y": 39, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49885,8 +52436,8 @@ "non_qualified": "1F9CD-1F3FC-200D-2640", "image": "1f9cd-1f3fc-200d-2640-fe0f.png", "sheet_x": 44, - "sheet_y": 21, - "added_in": "12.1", + "sheet_y": 40, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49897,8 +52448,8 @@ "non_qualified": "1F9CD-1F3FD-200D-2640", "image": "1f9cd-1f3fd-200d-2640-fe0f.png", "sheet_x": 44, - "sheet_y": 22, - "added_in": "12.1", + "sheet_y": 41, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49909,8 +52460,8 @@ "non_qualified": "1F9CD-1F3FE-200D-2640", "image": "1f9cd-1f3fe-200d-2640-fe0f.png", "sheet_x": 44, - "sheet_y": 23, - "added_in": "12.1", + "sheet_y": 42, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49921,8 +52472,8 @@ "non_qualified": "1F9CD-1F3FF-200D-2640", "image": "1f9cd-1f3ff-200d-2640-fe0f.png", "sheet_x": 44, - "sheet_y": 24, - "added_in": "12.1", + "sheet_y": 43, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49931,7 +52482,7 @@ } }, { - "name": null, + "name": "MAN STANDING", "unified": "1F9CD-200D-2642-FE0F", "non_qualified": "1F9CD-200D-2642", "docomo": null, @@ -49940,7 +52491,7 @@ "google": null, "image": "1f9cd-200d-2642-fe0f.png", "sheet_x": 44, - "sheet_y": 25, + "sheet_y": 44, "short_name": "man_standing", "short_names": [ "man_standing" @@ -49948,8 +52499,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 216, - "added_in": "12.1", + "subcategory": "person-activity", + "sort_order": 379, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49960,8 +52512,8 @@ "non_qualified": "1F9CD-1F3FB-200D-2642", "image": "1f9cd-1f3fb-200d-2642-fe0f.png", "sheet_x": 44, - "sheet_y": 26, - "added_in": "12.1", + "sheet_y": 45, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49972,8 +52524,8 @@ "non_qualified": "1F9CD-1F3FC-200D-2642", "image": "1f9cd-1f3fc-200d-2642-fe0f.png", "sheet_x": 44, - "sheet_y": 27, - "added_in": "12.1", + "sheet_y": 46, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49984,8 +52536,8 @@ "non_qualified": "1F9CD-1F3FD-200D-2642", "image": "1f9cd-1f3fd-200d-2642-fe0f.png", "sheet_x": 44, - "sheet_y": 28, - "added_in": "12.1", + "sheet_y": 47, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -49996,8 +52548,8 @@ "non_qualified": "1F9CD-1F3FE-200D-2642", "image": "1f9cd-1f3fe-200d-2642-fe0f.png", "sheet_x": 44, - "sheet_y": 29, - "added_in": "12.1", + "sheet_y": 48, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50008,8 +52560,8 @@ "non_qualified": "1F9CD-1F3FF-200D-2642", "image": "1f9cd-1f3ff-200d-2642-fe0f.png", "sheet_x": 44, - "sheet_y": 30, - "added_in": "12.1", + "sheet_y": 49, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50027,7 +52579,7 @@ "google": null, "image": "1f9cd.png", "sheet_x": 44, - "sheet_y": 31, + "sheet_y": 50, "short_name": "standing_person", "short_names": [ "standing_person" @@ -50035,8 +52587,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 215, - "added_in": "12.1", + "subcategory": "person-activity", + "sort_order": 378, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50047,8 +52600,8 @@ "non_qualified": null, "image": "1f9cd-1f3fb.png", "sheet_x": 44, - "sheet_y": 32, - "added_in": "12.1", + "sheet_y": 51, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50059,8 +52612,8 @@ "non_qualified": null, "image": "1f9cd-1f3fc.png", "sheet_x": 44, - "sheet_y": 33, - "added_in": "12.1", + "sheet_y": 52, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50071,8 +52624,8 @@ "non_qualified": null, "image": "1f9cd-1f3fd.png", "sheet_x": 44, - "sheet_y": 34, - "added_in": "12.1", + "sheet_y": 53, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50083,8 +52636,8 @@ "non_qualified": null, "image": "1f9cd-1f3fe.png", "sheet_x": 44, - "sheet_y": 35, - "added_in": "12.1", + "sheet_y": 54, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50095,8 +52648,8 @@ "non_qualified": null, "image": "1f9cd-1f3ff.png", "sheet_x": 44, - "sheet_y": 36, - "added_in": "12.1", + "sheet_y": 55, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50105,7 +52658,7 @@ } }, { - "name": null, + "name": "WOMAN KNEELING", "unified": "1F9CE-200D-2640-FE0F", "non_qualified": "1F9CE-200D-2640", "docomo": null, @@ -50114,7 +52667,7 @@ "google": null, "image": "1f9ce-200d-2640-fe0f.png", "sheet_x": 44, - "sheet_y": 37, + "sheet_y": 56, "short_name": "woman_kneeling", "short_names": [ "woman_kneeling" @@ -50122,8 +52675,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 220, - "added_in": "12.1", + "subcategory": "person-activity", + "sort_order": 383, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50134,8 +52688,8 @@ "non_qualified": "1F9CE-1F3FB-200D-2640", "image": "1f9ce-1f3fb-200d-2640-fe0f.png", "sheet_x": 44, - "sheet_y": 38, - "added_in": "12.1", + "sheet_y": 57, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50145,9 +52699,9 @@ "unified": "1F9CE-1F3FC-200D-2640-FE0F", "non_qualified": "1F9CE-1F3FC-200D-2640", "image": "1f9ce-1f3fc-200d-2640-fe0f.png", - "sheet_x": 44, - "sheet_y": 39, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 0, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50157,9 +52711,9 @@ "unified": "1F9CE-1F3FD-200D-2640-FE0F", "non_qualified": "1F9CE-1F3FD-200D-2640", "image": "1f9ce-1f3fd-200d-2640-fe0f.png", - "sheet_x": 44, - "sheet_y": 40, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 1, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50169,9 +52723,9 @@ "unified": "1F9CE-1F3FE-200D-2640-FE0F", "non_qualified": "1F9CE-1F3FE-200D-2640", "image": "1f9ce-1f3fe-200d-2640-fe0f.png", - "sheet_x": 44, - "sheet_y": 41, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 2, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50181,9 +52735,9 @@ "unified": "1F9CE-1F3FF-200D-2640-FE0F", "non_qualified": "1F9CE-1F3FF-200D-2640", "image": "1f9ce-1f3ff-200d-2640-fe0f.png", - "sheet_x": 44, - "sheet_y": 42, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 3, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50192,7 +52746,7 @@ } }, { - "name": null, + "name": "MAN KNEELING", "unified": "1F9CE-200D-2642-FE0F", "non_qualified": "1F9CE-200D-2642", "docomo": null, @@ -50200,8 +52754,8 @@ "softbank": null, "google": null, "image": "1f9ce-200d-2642-fe0f.png", - "sheet_x": 44, - "sheet_y": 43, + "sheet_x": 45, + "sheet_y": 4, "short_name": "man_kneeling", "short_names": [ "man_kneeling" @@ -50209,8 +52763,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 219, - "added_in": "12.1", + "subcategory": "person-activity", + "sort_order": 382, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50220,9 +52775,9 @@ "unified": "1F9CE-1F3FB-200D-2642-FE0F", "non_qualified": "1F9CE-1F3FB-200D-2642", "image": "1f9ce-1f3fb-200d-2642-fe0f.png", - "sheet_x": 44, - "sheet_y": 44, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 5, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50232,9 +52787,9 @@ "unified": "1F9CE-1F3FC-200D-2642-FE0F", "non_qualified": "1F9CE-1F3FC-200D-2642", "image": "1f9ce-1f3fc-200d-2642-fe0f.png", - "sheet_x": 44, - "sheet_y": 45, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 6, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50244,9 +52799,9 @@ "unified": "1F9CE-1F3FD-200D-2642-FE0F", "non_qualified": "1F9CE-1F3FD-200D-2642", "image": "1f9ce-1f3fd-200d-2642-fe0f.png", - "sheet_x": 44, - "sheet_y": 46, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 7, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50256,9 +52811,9 @@ "unified": "1F9CE-1F3FE-200D-2642-FE0F", "non_qualified": "1F9CE-1F3FE-200D-2642", "image": "1f9ce-1f3fe-200d-2642-fe0f.png", - "sheet_x": 44, - "sheet_y": 47, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 8, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50268,9 +52823,9 @@ "unified": "1F9CE-1F3FF-200D-2642-FE0F", "non_qualified": "1F9CE-1F3FF-200D-2642", "image": "1f9ce-1f3ff-200d-2642-fe0f.png", - "sheet_x": 44, - "sheet_y": 48, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 9, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50287,8 +52842,8 @@ "softbank": null, "google": null, "image": "1f9ce.png", - "sheet_x": 44, - "sheet_y": 49, + "sheet_x": 45, + "sheet_y": 10, "short_name": "kneeling_person", "short_names": [ "kneeling_person" @@ -50296,8 +52851,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 218, - "added_in": "12.1", + "subcategory": "person-activity", + "sort_order": 381, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50307,9 +52863,9 @@ "unified": "1F9CE-1F3FB", "non_qualified": null, "image": "1f9ce-1f3fb.png", - "sheet_x": 44, - "sheet_y": 50, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 11, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50319,9 +52875,9 @@ "unified": "1F9CE-1F3FC", "non_qualified": null, "image": "1f9ce-1f3fc.png", - "sheet_x": 44, - "sheet_y": 51, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 12, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50331,9 +52887,9 @@ "unified": "1F9CE-1F3FD", "non_qualified": null, "image": "1f9ce-1f3fd.png", - "sheet_x": 44, - "sheet_y": 52, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 13, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50343,9 +52899,9 @@ "unified": "1F9CE-1F3FE", "non_qualified": null, "image": "1f9ce-1f3fe.png", - "sheet_x": 44, - "sheet_y": 53, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 14, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50355,9 +52911,9 @@ "unified": "1F9CE-1F3FF", "non_qualified": null, "image": "1f9ce-1f3ff.png", - "sheet_x": 44, - "sheet_y": 54, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 15, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50366,7 +52922,7 @@ } }, { - "name": null, + "name": "DEAF WOMAN", "unified": "1F9CF-200D-2640-FE0F", "non_qualified": "1F9CF-200D-2640", "docomo": null, @@ -50374,8 +52930,8 @@ "softbank": null, "google": null, "image": "1f9cf-200d-2640-fe0f.png", - "sheet_x": 44, - "sheet_y": 55, + "sheet_x": 45, + "sheet_y": 16, "short_name": "deaf_woman", "short_names": [ "deaf_woman" @@ -50383,8 +52939,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 95, - "added_in": "12.1", + "subcategory": "person-gesture", + "sort_order": 249, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50394,9 +52951,9 @@ "unified": "1F9CF-1F3FB-200D-2640-FE0F", "non_qualified": "1F9CF-1F3FB-200D-2640", "image": "1f9cf-1f3fb-200d-2640-fe0f.png", - "sheet_x": 44, - "sheet_y": 56, - "added_in": "12.1", + "sheet_x": 45, + "sheet_y": 17, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50407,8 +52964,8 @@ "non_qualified": "1F9CF-1F3FC-200D-2640", "image": "1f9cf-1f3fc-200d-2640-fe0f.png", "sheet_x": 45, - "sheet_y": 0, - "added_in": "12.1", + "sheet_y": 18, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50419,8 +52976,8 @@ "non_qualified": "1F9CF-1F3FD-200D-2640", "image": "1f9cf-1f3fd-200d-2640-fe0f.png", "sheet_x": 45, - "sheet_y": 1, - "added_in": "12.1", + "sheet_y": 19, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50431,8 +52988,8 @@ "non_qualified": "1F9CF-1F3FE-200D-2640", "image": "1f9cf-1f3fe-200d-2640-fe0f.png", "sheet_x": 45, - "sheet_y": 2, - "added_in": "12.1", + "sheet_y": 20, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50443,8 +53000,8 @@ "non_qualified": "1F9CF-1F3FF-200D-2640", "image": "1f9cf-1f3ff-200d-2640-fe0f.png", "sheet_x": 45, - "sheet_y": 3, - "added_in": "12.1", + "sheet_y": 21, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50453,7 +53010,7 @@ } }, { - "name": null, + "name": "DEAF MAN", "unified": "1F9CF-200D-2642-FE0F", "non_qualified": "1F9CF-200D-2642", "docomo": null, @@ -50462,7 +53019,7 @@ "google": null, "image": "1f9cf-200d-2642-fe0f.png", "sheet_x": 45, - "sheet_y": 4, + "sheet_y": 22, "short_name": "deaf_man", "short_names": [ "deaf_man" @@ -50470,8 +53027,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 94, - "added_in": "12.1", + "subcategory": "person-gesture", + "sort_order": 248, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50482,8 +53040,8 @@ "non_qualified": "1F9CF-1F3FB-200D-2642", "image": "1f9cf-1f3fb-200d-2642-fe0f.png", "sheet_x": 45, - "sheet_y": 5, - "added_in": "12.1", + "sheet_y": 23, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50494,8 +53052,8 @@ "non_qualified": "1F9CF-1F3FC-200D-2642", "image": "1f9cf-1f3fc-200d-2642-fe0f.png", "sheet_x": 45, - "sheet_y": 6, - "added_in": "12.1", + "sheet_y": 24, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50506,8 +53064,8 @@ "non_qualified": "1F9CF-1F3FD-200D-2642", "image": "1f9cf-1f3fd-200d-2642-fe0f.png", "sheet_x": 45, - "sheet_y": 7, - "added_in": "12.1", + "sheet_y": 25, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50518,8 +53076,8 @@ "non_qualified": "1F9CF-1F3FE-200D-2642", "image": "1f9cf-1f3fe-200d-2642-fe0f.png", "sheet_x": 45, - "sheet_y": 8, - "added_in": "12.1", + "sheet_y": 26, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50530,8 +53088,8 @@ "non_qualified": "1F9CF-1F3FF-200D-2642", "image": "1f9cf-1f3ff-200d-2642-fe0f.png", "sheet_x": 45, - "sheet_y": 9, - "added_in": "12.1", + "sheet_y": 27, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50549,7 +53107,7 @@ "google": null, "image": "1f9cf.png", "sheet_x": 45, - "sheet_y": 10, + "sheet_y": 28, "short_name": "deaf_person", "short_names": [ "deaf_person" @@ -50557,8 +53115,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 93, - "added_in": "12.1", + "subcategory": "person-gesture", + "sort_order": 247, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50569,8 +53128,8 @@ "non_qualified": null, "image": "1f9cf-1f3fb.png", "sheet_x": 45, - "sheet_y": 11, - "added_in": "12.1", + "sheet_y": 29, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50581,8 +53140,8 @@ "non_qualified": null, "image": "1f9cf-1f3fc.png", "sheet_x": 45, - "sheet_y": 12, - "added_in": "12.1", + "sheet_y": 30, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50593,8 +53152,8 @@ "non_qualified": null, "image": "1f9cf-1f3fd.png", "sheet_x": 45, - "sheet_y": 13, - "added_in": "12.1", + "sheet_y": 31, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50605,8 +53164,8 @@ "non_qualified": null, "image": "1f9cf-1f3fe.png", "sheet_x": 45, - "sheet_y": 14, - "added_in": "12.1", + "sheet_y": 32, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50617,8 +53176,8 @@ "non_qualified": null, "image": "1f9cf-1f3ff.png", "sheet_x": 45, - "sheet_y": 15, - "added_in": "12.1", + "sheet_y": 33, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -50636,7 +53195,7 @@ "google": null, "image": "1f9d0.png", "sheet_x": 45, - "sheet_y": 16, + "sheet_y": 34, "short_name": "face_with_monocle", "short_names": [ "face_with_monocle" @@ -50644,7 +53203,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 62, + "subcategory": "face-glasses", + "sort_order": 64, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -50652,7 +53212,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "FARMER", "unified": "1F9D1-200D-1F33E", "non_qualified": null, "docomo": null, @@ -50661,7 +53221,7 @@ "google": null, "image": "1f9d1-200d-1f33e.png", "sheet_x": 45, - "sheet_y": 17, + "sheet_y": 35, "short_name": "farmer", "short_names": [ "farmer" @@ -50669,77 +53229,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 117, + "subcategory": "person-role", + "sort_order": 271, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F33E", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f33e.png", "sheet_x": 45, - "sheet_y": 18, + "sheet_y": 36, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F33E", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f33e.png", "sheet_x": 45, - "sheet_y": 19, + "sheet_y": 37, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F33E", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f33e.png", "sheet_x": 45, - "sheet_y": 20, + "sheet_y": 38, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F33E", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f33e.png", "sheet_x": 45, - "sheet_y": 21, + "sheet_y": 39, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F33E", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f33e.png", "sheet_x": 45, - "sheet_y": 22, + "sheet_y": 40, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "COOK", "unified": "1F9D1-200D-1F373", "non_qualified": null, "docomo": null, @@ -50748,7 +53309,7 @@ "google": null, "image": "1f9d1-200d-1f373.png", "sheet_x": 45, - "sheet_y": 23, + "sheet_y": 41, "short_name": "cook", "short_names": [ "cook" @@ -50756,251 +53317,430 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 120, + "subcategory": "person-role", + "sort_order": 274, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F373", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f373.png", "sheet_x": 45, - "sheet_y": 24, + "sheet_y": 42, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F373", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f373.png", "sheet_x": 45, - "sheet_y": 25, + "sheet_y": 43, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F373", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f373.png", "sheet_x": 45, - "sheet_y": 26, + "sheet_y": 44, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F373", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f373.png", "sheet_x": 45, - "sheet_y": 27, + "sheet_y": 45, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F373", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f373.png", "sheet_x": 45, - "sheet_y": 28, + "sheet_y": 46, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, - "unified": "1F9D1-200D-1F393", + "name": "PERSON FEEDING BABY", + "unified": "1F9D1-200D-1F37C", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d1-200d-1f393.png", + "image": "1f9d1-200d-1f37c.png", "sheet_x": 45, - "sheet_y": 29, - "short_name": "student", + "sheet_y": 47, + "short_name": "person_feeding_baby", "short_names": [ - "student" + "person_feeding_baby" ], "text": null, "texts": null, "category": "People & Body", - "sort_order": 108, - "added_in": "12.1", + "subcategory": "person-role", + "sort_order": 337, + "added_in": "13.0", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { - "unified": "1F9D1-1F3FB-200D-1F393", + "unified": "1F9D1-1F3FB-200D-1F37C", "non_qualified": null, - "image": "1f9d1-1f3fb-200d-1f393.png", + "image": "1f9d1-1f3fb-200d-1f37c.png", "sheet_x": 45, - "sheet_y": 30, - "added_in": "12.1", + "sheet_y": 48, + "added_in": "13.0", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { - "unified": "1F9D1-1F3FC-200D-1F393", + "unified": "1F9D1-1F3FC-200D-1F37C", "non_qualified": null, - "image": "1f9d1-1f3fc-200d-1f393.png", + "image": "1f9d1-1f3fc-200d-1f37c.png", "sheet_x": 45, - "sheet_y": 31, - "added_in": "12.1", + "sheet_y": 49, + "added_in": "13.0", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { - "unified": "1F9D1-1F3FD-200D-1F393", + "unified": "1F9D1-1F3FD-200D-1F37C", "non_qualified": null, - "image": "1f9d1-1f3fd-200d-1f393.png", + "image": "1f9d1-1f3fd-200d-1f37c.png", "sheet_x": 45, - "sheet_y": 32, - "added_in": "12.1", + "sheet_y": 50, + "added_in": "13.0", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { - "unified": "1F9D1-1F3FE-200D-1F393", + "unified": "1F9D1-1F3FE-200D-1F37C", "non_qualified": null, - "image": "1f9d1-1f3fe-200d-1f393.png", + "image": "1f9d1-1f3fe-200d-1f37c.png", "sheet_x": 45, - "sheet_y": 33, - "added_in": "12.1", + "sheet_y": 51, + "added_in": "13.0", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { - "unified": "1F9D1-1F3FF-200D-1F393", + "unified": "1F9D1-1F3FF-200D-1F37C", "non_qualified": null, - "image": "1f9d1-1f3ff-200d-1f393.png", + "image": "1f9d1-1f3ff-200d-1f37c.png", "sheet_x": 45, - "sheet_y": 34, - "added_in": "12.1", + "sheet_y": 52, + "added_in": "13.0", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, - "unified": "1F9D1-200D-1F3A4", + "name": "MX CLAUS", + "unified": "1F9D1-200D-1F384", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d1-200d-1f3a4.png", + "image": "1f9d1-200d-1f384.png", "sheet_x": 45, - "sheet_y": 35, - "short_name": "singer", + "sheet_y": 53, + "short_name": "mx_claus", "short_names": [ - "singer" + "mx_claus" ], "text": null, "texts": null, "category": "People & Body", - "sort_order": 138, - "added_in": "12.1", + "subcategory": "person-fantasy", + "sort_order": 341, + "added_in": "13.0", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "skin_variations": { - "1F3FB": { + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F384", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f384.png", + "sheet_x": 45, + "sheet_y": 54, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F384", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f384.png", + "sheet_x": 45, + "sheet_y": 55, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F384", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f384.png", + "sheet_x": 45, + "sheet_y": 56, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F384", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f384.png", + "sheet_x": 45, + "sheet_y": 57, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F384", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f384.png", + "sheet_x": 46, + "sheet_y": 0, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } + }, + { + "name": "STUDENT", + "unified": "1F9D1-200D-1F393", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9d1-200d-1f393.png", + "sheet_x": 46, + "sheet_y": 1, + "short_name": "student", + "short_names": [ + "student" + ], + "text": null, + "texts": null, + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 262, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F393", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f393.png", + "sheet_x": 46, + "sheet_y": 2, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F393", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f393.png", + "sheet_x": 46, + "sheet_y": 3, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F393", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f393.png", + "sheet_x": 46, + "sheet_y": 4, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F393", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f393.png", + "sheet_x": 46, + "sheet_y": 5, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F393", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f393.png", + "sheet_x": 46, + "sheet_y": 6, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } + }, + { + "name": "SINGER", + "unified": "1F9D1-200D-1F3A4", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9d1-200d-1f3a4.png", + "sheet_x": 46, + "sheet_y": 7, + "short_name": "singer", + "short_names": [ + "singer" + ], + "text": null, + "texts": null, + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 292, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F3A4", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f3a4.png", - "sheet_x": 45, - "sheet_y": 36, + "sheet_x": 46, + "sheet_y": 8, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F3A4", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f3a4.png", - "sheet_x": 45, - "sheet_y": 37, + "sheet_x": 46, + "sheet_y": 9, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F3A4", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f3a4.png", - "sheet_x": 45, - "sheet_y": 38, + "sheet_x": 46, + "sheet_y": 10, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F3A4", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f3a4.png", - "sheet_x": 45, - "sheet_y": 39, + "sheet_x": 46, + "sheet_y": 11, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F3A4", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f3a4.png", - "sheet_x": 45, - "sheet_y": 40, + "sheet_x": 46, + "sheet_y": 12, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "ARTIST", "unified": "1F9D1-200D-1F3A8", "non_qualified": null, "docomo": null, @@ -51008,8 +53748,8 @@ "softbank": null, "google": null, "image": "1f9d1-200d-1f3a8.png", - "sheet_x": 45, - "sheet_y": 41, + "sheet_x": 46, + "sheet_y": 13, "short_name": "artist", "short_names": [ "artist" @@ -51017,77 +53757,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 141, + "subcategory": "person-role", + "sort_order": 295, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F3A8", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f3a8.png", - "sheet_x": 45, - "sheet_y": 42, + "sheet_x": 46, + "sheet_y": 14, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F3A8", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f3a8.png", - "sheet_x": 45, - "sheet_y": 43, + "sheet_x": 46, + "sheet_y": 15, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F3A8", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f3a8.png", - "sheet_x": 45, - "sheet_y": 44, + "sheet_x": 46, + "sheet_y": 16, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F3A8", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f3a8.png", - "sheet_x": 45, - "sheet_y": 45, + "sheet_x": 46, + "sheet_y": 17, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F3A8", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f3a8.png", - "sheet_x": 45, - "sheet_y": 46, + "sheet_x": 46, + "sheet_y": 18, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "TEACHER", "unified": "1F9D1-200D-1F3EB", "non_qualified": null, "docomo": null, @@ -51095,8 +53836,8 @@ "softbank": null, "google": null, "image": "1f9d1-200d-1f3eb.png", - "sheet_x": 45, - "sheet_y": 47, + "sheet_x": 46, + "sheet_y": 19, "short_name": "teacher", "short_names": [ "teacher" @@ -51104,77 +53845,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 111, + "subcategory": "person-role", + "sort_order": 265, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F3EB", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f3eb.png", - "sheet_x": 45, - "sheet_y": 48, + "sheet_x": 46, + "sheet_y": 20, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F3EB", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f3eb.png", - "sheet_x": 45, - "sheet_y": 49, + "sheet_x": 46, + "sheet_y": 21, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F3EB", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f3eb.png", - "sheet_x": 45, - "sheet_y": 50, + "sheet_x": 46, + "sheet_y": 22, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F3EB", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f3eb.png", - "sheet_x": 45, - "sheet_y": 51, + "sheet_x": 46, + "sheet_y": 23, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F3EB", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f3eb.png", - "sheet_x": 45, - "sheet_y": 52, + "sheet_x": 46, + "sheet_y": 24, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "FACTORY WORKER", "unified": "1F9D1-200D-1F3ED", "non_qualified": null, "docomo": null, @@ -51182,8 +53924,8 @@ "softbank": null, "google": null, "image": "1f9d1-200d-1f3ed.png", - "sheet_x": 45, - "sheet_y": 53, + "sheet_x": 46, + "sheet_y": 25, "short_name": "factory_worker", "short_names": [ "factory_worker" @@ -51191,77 +53933,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 126, + "subcategory": "person-role", + "sort_order": 280, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F3ED", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f3ed.png", - "sheet_x": 45, - "sheet_y": 54, + "sheet_x": 46, + "sheet_y": 26, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F3ED", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f3ed.png", - "sheet_x": 45, - "sheet_y": 55, + "sheet_x": 46, + "sheet_y": 27, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F3ED", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f3ed.png", - "sheet_x": 45, - "sheet_y": 56, + "sheet_x": 46, + "sheet_y": 28, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F3ED", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f3ed.png", "sheet_x": 46, - "sheet_y": 0, + "sheet_y": 29, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F3ED", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f3ed.png", "sheet_x": 46, - "sheet_y": 1, + "sheet_y": 30, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "TECHNOLOGIST", "unified": "1F9D1-200D-1F4BB", "non_qualified": null, "docomo": null, @@ -51270,7 +54013,7 @@ "google": null, "image": "1f9d1-200d-1f4bb.png", "sheet_x": 46, - "sheet_y": 2, + "sheet_y": 31, "short_name": "technologist", "short_names": [ "technologist" @@ -51278,77 +54021,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 135, + "subcategory": "person-role", + "sort_order": 289, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F4BB", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f4bb.png", "sheet_x": 46, - "sheet_y": 3, + "sheet_y": 32, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F4BB", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f4bb.png", "sheet_x": 46, - "sheet_y": 4, + "sheet_y": 33, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F4BB", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f4bb.png", "sheet_x": 46, - "sheet_y": 5, + "sheet_y": 34, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F4BB", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f4bb.png", "sheet_x": 46, - "sheet_y": 6, + "sheet_y": 35, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F4BB", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f4bb.png", "sheet_x": 46, - "sheet_y": 7, + "sheet_y": 36, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "OFFICE WORKER", "unified": "1F9D1-200D-1F4BC", "non_qualified": null, "docomo": null, @@ -51357,7 +54101,7 @@ "google": null, "image": "1f9d1-200d-1f4bc.png", "sheet_x": 46, - "sheet_y": 8, + "sheet_y": 37, "short_name": "office_worker", "short_names": [ "office_worker" @@ -51365,77 +54109,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 129, + "subcategory": "person-role", + "sort_order": 283, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F4BC", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f4bc.png", "sheet_x": 46, - "sheet_y": 9, + "sheet_y": 38, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F4BC", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f4bc.png", "sheet_x": 46, - "sheet_y": 10, + "sheet_y": 39, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F4BC", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f4bc.png", "sheet_x": 46, - "sheet_y": 11, + "sheet_y": 40, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F4BC", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f4bc.png", "sheet_x": 46, - "sheet_y": 12, + "sheet_y": 41, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F4BC", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f4bc.png", "sheet_x": 46, - "sheet_y": 13, + "sheet_y": 42, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "MECHANIC", "unified": "1F9D1-200D-1F527", "non_qualified": null, "docomo": null, @@ -51444,7 +54189,7 @@ "google": null, "image": "1f9d1-200d-1f527.png", "sheet_x": 46, - "sheet_y": 14, + "sheet_y": 43, "short_name": "mechanic", "short_names": [ "mechanic" @@ -51452,77 +54197,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 123, + "subcategory": "person-role", + "sort_order": 277, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F527", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f527.png", "sheet_x": 46, - "sheet_y": 15, + "sheet_y": 44, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F527", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f527.png", "sheet_x": 46, - "sheet_y": 16, + "sheet_y": 45, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F527", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f527.png", "sheet_x": 46, - "sheet_y": 17, + "sheet_y": 46, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F527", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f527.png", "sheet_x": 46, - "sheet_y": 18, + "sheet_y": 47, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F527", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f527.png", "sheet_x": 46, - "sheet_y": 19, + "sheet_y": 48, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "SCIENTIST", "unified": "1F9D1-200D-1F52C", "non_qualified": null, "docomo": null, @@ -51531,7 +54277,7 @@ "google": null, "image": "1f9d1-200d-1f52c.png", "sheet_x": 46, - "sheet_y": 20, + "sheet_y": 49, "short_name": "scientist", "short_names": [ "scientist" @@ -51539,77 +54285,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 132, + "subcategory": "person-role", + "sort_order": 286, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F52C", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f52c.png", "sheet_x": 46, - "sheet_y": 21, + "sheet_y": 50, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F52C", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f52c.png", "sheet_x": 46, - "sheet_y": 22, + "sheet_y": 51, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F52C", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f52c.png", "sheet_x": 46, - "sheet_y": 23, + "sheet_y": 52, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F52C", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f52c.png", "sheet_x": 46, - "sheet_y": 24, + "sheet_y": 53, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F52C", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f52c.png", "sheet_x": 46, - "sheet_y": 25, + "sheet_y": 54, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "ASTRONAUT", "unified": "1F9D1-200D-1F680", "non_qualified": null, "docomo": null, @@ -51618,7 +54365,7 @@ "google": null, "image": "1f9d1-200d-1f680.png", "sheet_x": 46, - "sheet_y": 26, + "sheet_y": 55, "short_name": "astronaut", "short_names": [ "astronaut" @@ -51626,77 +54373,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 147, + "subcategory": "person-role", + "sort_order": 301, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F680", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f680.png", "sheet_x": 46, - "sheet_y": 27, + "sheet_y": 56, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F680", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f680.png", "sheet_x": 46, - "sheet_y": 28, + "sheet_y": 57, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F680", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f680.png", - "sheet_x": 46, - "sheet_y": 29, + "sheet_x": 47, + "sheet_y": 0, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F680", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f680.png", - "sheet_x": 46, - "sheet_y": 30, + "sheet_x": 47, + "sheet_y": 1, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F680", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f680.png", - "sheet_x": 46, - "sheet_y": 31, + "sheet_x": 47, + "sheet_y": 2, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "FIREFIGHTER", "unified": "1F9D1-200D-1F692", "non_qualified": null, "docomo": null, @@ -51704,8 +54452,8 @@ "softbank": null, "google": null, "image": "1f9d1-200d-1f692.png", - "sheet_x": 46, - "sheet_y": 32, + "sheet_x": 47, + "sheet_y": 3, "short_name": "firefighter", "short_names": [ "firefighter" @@ -51713,77 +54461,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 150, + "subcategory": "person-role", + "sort_order": 304, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F692", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f692.png", - "sheet_x": 46, - "sheet_y": 33, + "sheet_x": 47, + "sheet_y": 4, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F692", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f692.png", - "sheet_x": 46, - "sheet_y": 34, + "sheet_x": 47, + "sheet_y": 5, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F692", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f692.png", - "sheet_x": 46, - "sheet_y": 35, + "sheet_x": 47, + "sheet_y": 6, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F692", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f692.png", - "sheet_x": 46, - "sheet_y": 36, + "sheet_x": 47, + "sheet_y": 7, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F692", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f692.png", - "sheet_x": 46, - "sheet_y": 37, + "sheet_x": 47, + "sheet_y": 8, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "PEOPLE HOLDING HANDS", "unified": "1F9D1-200D-1F91D-200D-1F9D1", "non_qualified": null, "docomo": null, @@ -51791,8 +54540,8 @@ "softbank": null, "google": null, "image": "1f9d1-200d-1f91d-200d-1f9d1.png", - "sheet_x": 46, - "sheet_y": 38, + "sheet_x": 47, + "sheet_y": 9, "short_name": "people_holding_hands", "short_names": [ "people_holding_hands" @@ -51800,8 +54549,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 293, - "added_in": "12.1", + "subcategory": "family", + "sort_order": 456, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -51811,9 +54561,9 @@ "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FB", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.png", - "sheet_x": 46, - "sheet_y": 39, - "added_in": "12.1", + "sheet_x": 47, + "sheet_y": 10, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -51823,11 +54573,11 @@ "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FC", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.png", - "sheet_x": 46, - "sheet_y": 40, + "sheet_x": 47, + "sheet_y": 11, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -51835,11 +54585,11 @@ "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FD", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.png", - "sheet_x": 46, - "sheet_y": 41, + "sheet_x": 47, + "sheet_y": 12, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -51847,11 +54597,11 @@ "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FE", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.png", - "sheet_x": 46, - "sheet_y": 42, + "sheet_x": 47, + "sheet_y": 13, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -51859,11 +54609,11 @@ "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FF", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.png", - "sheet_x": 46, - "sheet_y": 43, + "sheet_x": 47, + "sheet_y": 14, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -51871,9 +54621,9 @@ "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FB", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.png", - "sheet_x": 46, - "sheet_y": 44, - "added_in": "12.1", + "sheet_x": 47, + "sheet_y": 15, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -51883,9 +54633,9 @@ "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FC", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.png", - "sheet_x": 46, - "sheet_y": 45, - "added_in": "12.1", + "sheet_x": 47, + "sheet_y": 16, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -51895,11 +54645,11 @@ "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FD", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.png", - "sheet_x": 46, - "sheet_y": 46, + "sheet_x": 47, + "sheet_y": 17, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -51907,11 +54657,11 @@ "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FE", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.png", - "sheet_x": 46, - "sheet_y": 47, + "sheet_x": 47, + "sheet_y": 18, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -51919,11 +54669,11 @@ "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FF", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.png", - "sheet_x": 46, - "sheet_y": 48, + "sheet_x": 47, + "sheet_y": 19, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -51931,9 +54681,9 @@ "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FB", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.png", - "sheet_x": 46, - "sheet_y": 49, - "added_in": "12.1", + "sheet_x": 47, + "sheet_y": 20, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -51943,9 +54693,9 @@ "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FC", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.png", - "sheet_x": 46, - "sheet_y": 50, - "added_in": "12.1", + "sheet_x": 47, + "sheet_y": 21, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -51955,9 +54705,9 @@ "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FD", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.png", - "sheet_x": 46, - "sheet_y": 51, - "added_in": "12.1", + "sheet_x": 47, + "sheet_y": 22, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -51967,11 +54717,11 @@ "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FE", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.png", - "sheet_x": 46, - "sheet_y": 52, + "sheet_x": 47, + "sheet_y": 23, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -51979,11 +54729,11 @@ "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FF", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.png", - "sheet_x": 46, - "sheet_y": 53, + "sheet_x": 47, + "sheet_y": 24, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -51991,9 +54741,9 @@ "unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FB", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.png", - "sheet_x": 46, - "sheet_y": 54, - "added_in": "12.1", + "sheet_x": 47, + "sheet_y": 25, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -52003,9 +54753,9 @@ "unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FC", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.png", - "sheet_x": 46, - "sheet_y": 55, - "added_in": "12.1", + "sheet_x": 47, + "sheet_y": 26, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -52015,9 +54765,9 @@ "unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FD", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.png", - "sheet_x": 46, - "sheet_y": 56, - "added_in": "12.1", + "sheet_x": 47, + "sheet_y": 27, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -52028,8 +54778,8 @@ "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.png", "sheet_x": 47, - "sheet_y": 0, - "added_in": "12.1", + "sheet_y": 28, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -52040,10 +54790,10 @@ "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.png", "sheet_x": 47, - "sheet_y": 1, + "sheet_y": 29, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, + "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false }, @@ -52052,8 +54802,8 @@ "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.png", "sheet_x": 47, - "sheet_y": 2, - "added_in": "12.1", + "sheet_y": 30, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -52064,8 +54814,8 @@ "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.png", "sheet_x": 47, - "sheet_y": 3, - "added_in": "12.1", + "sheet_y": 31, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -52076,8 +54826,8 @@ "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.png", "sheet_x": 47, - "sheet_y": 4, - "added_in": "12.1", + "sheet_y": 32, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -52088,8 +54838,8 @@ "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.png", "sheet_x": 47, - "sheet_y": 5, - "added_in": "12.1", + "sheet_y": 33, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -52100,8 +54850,8 @@ "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.png", "sheet_x": 47, - "sheet_y": 6, - "added_in": "12.1", + "sheet_y": 34, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -52110,7 +54860,7 @@ } }, { - "name": null, + "name": "PERSON WITH WHITE CANE", "unified": "1F9D1-200D-1F9AF", "non_qualified": null, "docomo": null, @@ -52119,7 +54869,7 @@ "google": null, "image": "1f9d1-200d-1f9af.png", "sheet_x": 47, - "sheet_y": 7, + "sheet_y": 35, "short_name": "person_with_probing_cane", "short_names": [ "person_with_probing_cane" @@ -52127,77 +54877,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 221, + "subcategory": "person-activity", + "sort_order": 384, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F9AF", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f9af.png", "sheet_x": 47, - "sheet_y": 8, + "sheet_y": 36, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F9AF", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f9af.png", "sheet_x": 47, - "sheet_y": 9, + "sheet_y": 37, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F9AF", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f9af.png", "sheet_x": 47, - "sheet_y": 10, + "sheet_y": 38, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F9AF", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f9af.png", "sheet_x": 47, - "sheet_y": 11, + "sheet_y": 39, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F9AF", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f9af.png", "sheet_x": 47, - "sheet_y": 12, + "sheet_y": 40, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "PERSON: RED HAIR", "unified": "1F9D1-200D-1F9B0", "non_qualified": null, "docomo": null, @@ -52206,7 +54957,7 @@ "google": null, "image": "1f9d1-200d-1f9b0.png", "sheet_x": 47, - "sheet_y": 13, + "sheet_y": 41, "short_name": "red_haired_person", "short_names": [ "red_haired_person" @@ -52214,77 +54965,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 63, + "subcategory": "person", + "sort_order": 217, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F9B0", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f9b0.png", "sheet_x": 47, - "sheet_y": 14, + "sheet_y": 42, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F9B0", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f9b0.png", "sheet_x": 47, - "sheet_y": 15, + "sheet_y": 43, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F9B0", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f9b0.png", "sheet_x": 47, - "sheet_y": 16, + "sheet_y": 44, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F9B0", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f9b0.png", "sheet_x": 47, - "sheet_y": 17, + "sheet_y": 45, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F9B0", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f9b0.png", "sheet_x": 47, - "sheet_y": 18, + "sheet_y": 46, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "PERSON: CURLY HAIR", "unified": "1F9D1-200D-1F9B1", "non_qualified": null, "docomo": null, @@ -52293,7 +55045,7 @@ "google": null, "image": "1f9d1-200d-1f9b1.png", "sheet_x": 47, - "sheet_y": 19, + "sheet_y": 47, "short_name": "curly_haired_person", "short_names": [ "curly_haired_person" @@ -52301,77 +55053,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 65, + "subcategory": "person", + "sort_order": 219, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F9B1", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f9b1.png", "sheet_x": 47, - "sheet_y": 20, + "sheet_y": 48, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F9B1", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f9b1.png", "sheet_x": 47, - "sheet_y": 21, + "sheet_y": 49, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F9B1", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f9b1.png", "sheet_x": 47, - "sheet_y": 22, + "sheet_y": 50, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F9B1", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f9b1.png", "sheet_x": 47, - "sheet_y": 23, + "sheet_y": 51, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F9B1", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f9b1.png", "sheet_x": 47, - "sheet_y": 24, + "sheet_y": 52, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "PERSON: BALD", "unified": "1F9D1-200D-1F9B2", "non_qualified": null, "docomo": null, @@ -52380,7 +55133,7 @@ "google": null, "image": "1f9d1-200d-1f9b2.png", "sheet_x": 47, - "sheet_y": 25, + "sheet_y": 53, "short_name": "bald_person", "short_names": [ "bald_person" @@ -52388,11 +55141,12 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 69, + "subcategory": "person", + "sort_order": 223, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, + "has_img_google": true, + "has_img_twitter": true, "has_img_facebook": false, "skin_variations": { "1F3FB": { @@ -52400,11 +55154,11 @@ "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f9b2.png", "sheet_x": 47, - "sheet_y": 26, + "sheet_y": 54, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, + "has_img_google": true, + "has_img_twitter": true, "has_img_facebook": false }, "1F3FC": { @@ -52412,11 +55166,11 @@ "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f9b2.png", "sheet_x": 47, - "sheet_y": 27, + "sheet_y": 55, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, + "has_img_google": true, + "has_img_twitter": true, "has_img_facebook": false }, "1F3FD": { @@ -52424,11 +55178,11 @@ "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f9b2.png", "sheet_x": 47, - "sheet_y": 28, + "sheet_y": 56, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, + "has_img_google": true, + "has_img_twitter": true, "has_img_facebook": false }, "1F3FE": { @@ -52436,29 +55190,29 @@ "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f9b2.png", "sheet_x": 47, - "sheet_y": 29, + "sheet_y": 57, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, + "has_img_google": true, + "has_img_twitter": true, "has_img_facebook": false }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F9B2", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f9b2.png", - "sheet_x": 47, - "sheet_y": 30, + "sheet_x": 48, + "sheet_y": 0, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, + "has_img_google": true, + "has_img_twitter": true, "has_img_facebook": false } } }, { - "name": null, + "name": "PERSON: WHITE HAIR", "unified": "1F9D1-200D-1F9B3", "non_qualified": null, "docomo": null, @@ -52466,8 +55220,8 @@ "softbank": null, "google": null, "image": "1f9d1-200d-1f9b3.png", - "sheet_x": 47, - "sheet_y": 31, + "sheet_x": 48, + "sheet_y": 1, "short_name": "white_haired_person", "short_names": [ "white_haired_person" @@ -52475,77 +55229,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 67, + "subcategory": "person", + "sort_order": 221, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, + "has_img_google": true, + "has_img_twitter": true, "has_img_facebook": false, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F9B3", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f9b3.png", - "sheet_x": 47, - "sheet_y": 32, + "sheet_x": 48, + "sheet_y": 2, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, + "has_img_google": true, + "has_img_twitter": true, "has_img_facebook": false }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F9B3", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f9b3.png", - "sheet_x": 47, - "sheet_y": 33, + "sheet_x": 48, + "sheet_y": 3, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, + "has_img_google": true, + "has_img_twitter": true, "has_img_facebook": false }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F9B3", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f9b3.png", - "sheet_x": 47, - "sheet_y": 34, + "sheet_x": 48, + "sheet_y": 4, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, + "has_img_google": true, + "has_img_twitter": true, "has_img_facebook": false }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F9B3", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f9b3.png", - "sheet_x": 47, - "sheet_y": 35, + "sheet_x": 48, + "sheet_y": 5, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, + "has_img_google": true, + "has_img_twitter": true, "has_img_facebook": false }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F9B3", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f9b3.png", - "sheet_x": 47, - "sheet_y": 36, + "sheet_x": 48, + "sheet_y": 6, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, + "has_img_google": true, + "has_img_twitter": true, "has_img_facebook": false } } }, { - "name": null, + "name": "PERSON IN MOTORIZED WHEELCHAIR", "unified": "1F9D1-200D-1F9BC", "non_qualified": null, "docomo": null, @@ -52553,8 +55308,8 @@ "softbank": null, "google": null, "image": "1f9d1-200d-1f9bc.png", - "sheet_x": 47, - "sheet_y": 37, + "sheet_x": 48, + "sheet_y": 7, "short_name": "person_in_motorized_wheelchair", "short_names": [ "person_in_motorized_wheelchair" @@ -52562,77 +55317,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 224, + "subcategory": "person-activity", + "sort_order": 387, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F9BC", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f9bc.png", - "sheet_x": 47, - "sheet_y": 38, + "sheet_x": 48, + "sheet_y": 8, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F9BC", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f9bc.png", - "sheet_x": 47, - "sheet_y": 39, + "sheet_x": 48, + "sheet_y": 9, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F9BC", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f9bc.png", - "sheet_x": 47, - "sheet_y": 40, + "sheet_x": 48, + "sheet_y": 10, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F9BC", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f9bc.png", - "sheet_x": 47, - "sheet_y": 41, + "sheet_x": 48, + "sheet_y": 11, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F9BC", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f9bc.png", - "sheet_x": 47, - "sheet_y": 42, + "sheet_x": 48, + "sheet_y": 12, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "PERSON IN MANUAL WHEELCHAIR", "unified": "1F9D1-200D-1F9BD", "non_qualified": null, "docomo": null, @@ -52640,8 +55396,8 @@ "softbank": null, "google": null, "image": "1f9d1-200d-1f9bd.png", - "sheet_x": 47, - "sheet_y": 43, + "sheet_x": 48, + "sheet_y": 13, "short_name": "person_in_manual_wheelchair", "short_names": [ "person_in_manual_wheelchair" @@ -52649,77 +55405,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 227, + "subcategory": "person-activity", + "sort_order": 390, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-1F9BD", "non_qualified": null, "image": "1f9d1-1f3fb-200d-1f9bd.png", - "sheet_x": 47, - "sheet_y": 44, + "sheet_x": 48, + "sheet_y": 14, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-1F9BD", "non_qualified": null, "image": "1f9d1-1f3fc-200d-1f9bd.png", - "sheet_x": 47, - "sheet_y": 45, + "sheet_x": 48, + "sheet_y": 15, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-1F9BD", "non_qualified": null, "image": "1f9d1-1f3fd-200d-1f9bd.png", - "sheet_x": 47, - "sheet_y": 46, + "sheet_x": 48, + "sheet_y": 16, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-1F9BD", "non_qualified": null, "image": "1f9d1-1f3fe-200d-1f9bd.png", - "sheet_x": 47, - "sheet_y": 47, + "sheet_x": 48, + "sheet_y": 17, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-1F9BD", "non_qualified": null, "image": "1f9d1-1f3ff-200d-1f9bd.png", - "sheet_x": 47, - "sheet_y": 48, + "sheet_x": 48, + "sheet_y": 18, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "HEALTH WORKER", "unified": "1F9D1-200D-2695-FE0F", "non_qualified": "1F9D1-200D-2695", "docomo": null, @@ -52727,8 +55484,8 @@ "softbank": null, "google": null, "image": "1f9d1-200d-2695-fe0f.png", - "sheet_x": 47, - "sheet_y": 49, + "sheet_x": 48, + "sheet_y": 19, "short_name": "health_worker", "short_names": [ "health_worker" @@ -52736,77 +55493,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 105, + "subcategory": "person-role", + "sort_order": 259, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-2695-FE0F", "non_qualified": "1F9D1-1F3FB-200D-2695", "image": "1f9d1-1f3fb-200d-2695-fe0f.png", - "sheet_x": 47, - "sheet_y": 50, + "sheet_x": 48, + "sheet_y": 20, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-2695-FE0F", "non_qualified": "1F9D1-1F3FC-200D-2695", "image": "1f9d1-1f3fc-200d-2695-fe0f.png", - "sheet_x": 47, - "sheet_y": 51, + "sheet_x": 48, + "sheet_y": 21, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-2695-FE0F", "non_qualified": "1F9D1-1F3FD-200D-2695", "image": "1f9d1-1f3fd-200d-2695-fe0f.png", - "sheet_x": 47, - "sheet_y": 52, + "sheet_x": 48, + "sheet_y": 22, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-2695-FE0F", "non_qualified": "1F9D1-1F3FE-200D-2695", "image": "1f9d1-1f3fe-200d-2695-fe0f.png", - "sheet_x": 47, - "sheet_y": 53, + "sheet_x": 48, + "sheet_y": 23, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-2695-FE0F", "non_qualified": "1F9D1-1F3FF-200D-2695", "image": "1f9d1-1f3ff-200d-2695-fe0f.png", - "sheet_x": 47, - "sheet_y": 54, + "sheet_x": 48, + "sheet_y": 24, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "JUDGE", "unified": "1F9D1-200D-2696-FE0F", "non_qualified": "1F9D1-200D-2696", "docomo": null, @@ -52814,8 +55572,8 @@ "softbank": null, "google": null, "image": "1f9d1-200d-2696-fe0f.png", - "sheet_x": 47, - "sheet_y": 55, + "sheet_x": 48, + "sheet_y": 25, "short_name": "judge", "short_names": [ "judge" @@ -52823,77 +55581,78 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 114, + "subcategory": "person-role", + "sort_order": 268, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-2696-FE0F", "non_qualified": "1F9D1-1F3FB-200D-2696", "image": "1f9d1-1f3fb-200d-2696-fe0f.png", - "sheet_x": 47, - "sheet_y": 56, + "sheet_x": 48, + "sheet_y": 26, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-2696-FE0F", "non_qualified": "1F9D1-1F3FC-200D-2696", "image": "1f9d1-1f3fc-200d-2696-fe0f.png", "sheet_x": 48, - "sheet_y": 0, + "sheet_y": 27, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-2696-FE0F", "non_qualified": "1F9D1-1F3FD-200D-2696", "image": "1f9d1-1f3fd-200d-2696-fe0f.png", "sheet_x": 48, - "sheet_y": 1, + "sheet_y": 28, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-2696-FE0F", "non_qualified": "1F9D1-1F3FE-200D-2696", "image": "1f9d1-1f3fe-200d-2696-fe0f.png", "sheet_x": 48, - "sheet_y": 2, + "sheet_y": 29, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-2696-FE0F", "non_qualified": "1F9D1-1F3FF-200D-2696", "image": "1f9d1-1f3ff-200d-2696-fe0f.png", "sheet_x": 48, - "sheet_y": 3, + "sheet_y": 30, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, { - "name": null, + "name": "PILOT", "unified": "1F9D1-200D-2708-FE0F", "non_qualified": "1F9D1-200D-2708", "docomo": null, @@ -52902,7 +55661,7 @@ "google": null, "image": "1f9d1-200d-2708-fe0f.png", "sheet_x": 48, - "sheet_y": 4, + "sheet_y": 31, "short_name": "pilot", "short_names": [ "pilot" @@ -52910,72 +55669,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 144, + "subcategory": "person-role", + "sort_order": 298, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "1F9D1-1F3FB-200D-2708-FE0F", "non_qualified": "1F9D1-1F3FB-200D-2708", "image": "1f9d1-1f3fb-200d-2708-fe0f.png", "sheet_x": 48, - "sheet_y": 5, + "sheet_y": 32, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FC": { "unified": "1F9D1-1F3FC-200D-2708-FE0F", "non_qualified": "1F9D1-1F3FC-200D-2708", "image": "1f9d1-1f3fc-200d-2708-fe0f.png", "sheet_x": 48, - "sheet_y": 6, + "sheet_y": 33, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FD": { "unified": "1F9D1-1F3FD-200D-2708-FE0F", "non_qualified": "1F9D1-1F3FD-200D-2708", "image": "1f9d1-1f3fd-200d-2708-fe0f.png", "sheet_x": 48, - "sheet_y": 7, + "sheet_y": 34, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FE": { "unified": "1F9D1-1F3FE-200D-2708-FE0F", "non_qualified": "1F9D1-1F3FE-200D-2708", "image": "1f9d1-1f3fe-200d-2708-fe0f.png", "sheet_x": 48, - "sheet_y": 8, + "sheet_y": 35, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, "1F3FF": { "unified": "1F9D1-1F3FF-200D-2708-FE0F", "non_qualified": "1F9D1-1F3FF-200D-2708", "image": "1f9d1-1f3ff-200d-2708-fe0f.png", "sheet_x": 48, - "sheet_y": 9, + "sheet_y": 36, "added_in": "12.1", "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true } } }, @@ -52989,7 +55749,7 @@ "google": null, "image": "1f9d1.png", "sheet_x": 48, - "sheet_y": 10, + "sheet_y": 37, "short_name": "adult", "short_names": [ "adult" @@ -52997,7 +55757,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 53, + "subcategory": "person", + "sort_order": 207, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53009,7 +55770,7 @@ "non_qualified": null, "image": "1f9d1-1f3fb.png", "sheet_x": 48, - "sheet_y": 11, + "sheet_y": 38, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53021,7 +55782,7 @@ "non_qualified": null, "image": "1f9d1-1f3fc.png", "sheet_x": 48, - "sheet_y": 12, + "sheet_y": 39, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53033,7 +55794,7 @@ "non_qualified": null, "image": "1f9d1-1f3fd.png", "sheet_x": 48, - "sheet_y": 13, + "sheet_y": 40, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53045,7 +55806,7 @@ "non_qualified": null, "image": "1f9d1-1f3fe.png", "sheet_x": 48, - "sheet_y": 14, + "sheet_y": 41, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53057,7 +55818,7 @@ "non_qualified": null, "image": "1f9d1-1f3ff.png", "sheet_x": 48, - "sheet_y": 15, + "sheet_y": 42, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53076,7 +55837,7 @@ "google": null, "image": "1f9d2.png", "sheet_x": 48, - "sheet_y": 16, + "sheet_y": 43, "short_name": "child", "short_names": [ "child" @@ -53084,7 +55845,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 50, + "subcategory": "person", + "sort_order": 204, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53096,7 +55858,7 @@ "non_qualified": null, "image": "1f9d2-1f3fb.png", "sheet_x": 48, - "sheet_y": 17, + "sheet_y": 44, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53108,7 +55870,7 @@ "non_qualified": null, "image": "1f9d2-1f3fc.png", "sheet_x": 48, - "sheet_y": 18, + "sheet_y": 45, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53120,7 +55882,7 @@ "non_qualified": null, "image": "1f9d2-1f3fd.png", "sheet_x": 48, - "sheet_y": 19, + "sheet_y": 46, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53132,7 +55894,7 @@ "non_qualified": null, "image": "1f9d2-1f3fe.png", "sheet_x": 48, - "sheet_y": 20, + "sheet_y": 47, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53144,7 +55906,7 @@ "non_qualified": null, "image": "1f9d2-1f3ff.png", "sheet_x": 48, - "sheet_y": 21, + "sheet_y": 48, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53163,7 +55925,7 @@ "google": null, "image": "1f9d3.png", "sheet_x": 48, - "sheet_y": 22, + "sheet_y": 49, "short_name": "older_adult", "short_names": [ "older_adult" @@ -53171,7 +55933,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 72, + "subcategory": "person", + "sort_order": 226, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53183,7 +55946,7 @@ "non_qualified": null, "image": "1f9d3-1f3fb.png", "sheet_x": 48, - "sheet_y": 23, + "sheet_y": 50, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53195,7 +55958,7 @@ "non_qualified": null, "image": "1f9d3-1f3fc.png", "sheet_x": 48, - "sheet_y": 24, + "sheet_y": 51, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53207,7 +55970,7 @@ "non_qualified": null, "image": "1f9d3-1f3fd.png", "sheet_x": 48, - "sheet_y": 25, + "sheet_y": 52, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53219,7 +55982,7 @@ "non_qualified": null, "image": "1f9d3-1f3fe.png", "sheet_x": 48, - "sheet_y": 26, + "sheet_y": 53, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53231,7 +55994,7 @@ "non_qualified": null, "image": "1f9d3-1f3ff.png", "sheet_x": 48, - "sheet_y": 27, + "sheet_y": 54, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53250,7 +56013,7 @@ "google": null, "image": "1f9d4.png", "sheet_x": 48, - "sheet_y": 28, + "sheet_y": 55, "short_name": "bearded_person", "short_names": [ "bearded_person" @@ -53258,7 +56021,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 56, + "subcategory": "person", + "sort_order": 210, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53270,7 +56034,7 @@ "non_qualified": null, "image": "1f9d4-1f3fb.png", "sheet_x": 48, - "sheet_y": 29, + "sheet_y": 56, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53282,7 +56046,7 @@ "non_qualified": null, "image": "1f9d4-1f3fc.png", "sheet_x": 48, - "sheet_y": 30, + "sheet_y": 57, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53293,8 +56057,8 @@ "unified": "1F9D4-1F3FD", "non_qualified": null, "image": "1f9d4-1f3fd.png", - "sheet_x": 48, - "sheet_y": 31, + "sheet_x": 49, + "sheet_y": 0, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53305,8 +56069,8 @@ "unified": "1F9D4-1F3FE", "non_qualified": null, "image": "1f9d4-1f3fe.png", - "sheet_x": 48, - "sheet_y": 32, + "sheet_x": 49, + "sheet_y": 1, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53317,8 +56081,8 @@ "unified": "1F9D4-1F3FF", "non_qualified": null, "image": "1f9d4-1f3ff.png", - "sheet_x": 48, - "sheet_y": 33, + "sheet_x": 49, + "sheet_y": 2, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53336,8 +56100,8 @@ "softbank": null, "google": null, "image": "1f9d5.png", - "sheet_x": 48, - "sheet_y": 34, + "sheet_x": 49, + "sheet_y": 3, "short_name": "person_with_headscarf", "short_names": [ "person_with_headscarf" @@ -53345,7 +56109,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 171, + "subcategory": "person-role", + "sort_order": 326, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53356,8 +56121,8 @@ "unified": "1F9D5-1F3FB", "non_qualified": null, "image": "1f9d5-1f3fb.png", - "sheet_x": 48, - "sheet_y": 35, + "sheet_x": 49, + "sheet_y": 4, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53368,8 +56133,8 @@ "unified": "1F9D5-1F3FC", "non_qualified": null, "image": "1f9d5-1f3fc.png", - "sheet_x": 48, - "sheet_y": 36, + "sheet_x": 49, + "sheet_y": 5, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53380,8 +56145,8 @@ "unified": "1F9D5-1F3FD", "non_qualified": null, "image": "1f9d5-1f3fd.png", - "sheet_x": 48, - "sheet_y": 37, + "sheet_x": 49, + "sheet_y": 6, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53392,8 +56157,8 @@ "unified": "1F9D5-1F3FE", "non_qualified": null, "image": "1f9d5-1f3fe.png", - "sheet_x": 48, - "sheet_y": 38, + "sheet_x": 49, + "sheet_y": 7, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53404,8 +56169,8 @@ "unified": "1F9D5-1F3FF", "non_qualified": null, "image": "1f9d5-1f3ff.png", - "sheet_x": 48, - "sheet_y": 39, + "sheet_x": 49, + "sheet_y": 8, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53415,7 +56180,7 @@ } }, { - "name": null, + "name": "WOMAN IN STEAMY ROOM", "unified": "1F9D6-200D-2640-FE0F", "non_qualified": "1F9D6-200D-2640", "docomo": null, @@ -53423,8 +56188,8 @@ "softbank": null, "google": null, "image": "1f9d6-200d-2640-fe0f.png", - "sheet_x": 48, - "sheet_y": 40, + "sheet_x": 49, + "sheet_y": 9, "short_name": "woman_in_steamy_room", "short_names": [ "woman_in_steamy_room" @@ -53432,7 +56197,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 241, + "subcategory": "person-activity", + "sort_order": 404, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53443,8 +56209,8 @@ "unified": "1F9D6-1F3FB-200D-2640-FE0F", "non_qualified": "1F9D6-1F3FB-200D-2640", "image": "1f9d6-1f3fb-200d-2640-fe0f.png", - "sheet_x": 48, - "sheet_y": 41, + "sheet_x": 49, + "sheet_y": 10, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53455,8 +56221,8 @@ "unified": "1F9D6-1F3FC-200D-2640-FE0F", "non_qualified": "1F9D6-1F3FC-200D-2640", "image": "1f9d6-1f3fc-200d-2640-fe0f.png", - "sheet_x": 48, - "sheet_y": 42, + "sheet_x": 49, + "sheet_y": 11, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53467,8 +56233,8 @@ "unified": "1F9D6-1F3FD-200D-2640-FE0F", "non_qualified": "1F9D6-1F3FD-200D-2640", "image": "1f9d6-1f3fd-200d-2640-fe0f.png", - "sheet_x": 48, - "sheet_y": 43, + "sheet_x": 49, + "sheet_y": 12, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53479,8 +56245,8 @@ "unified": "1F9D6-1F3FE-200D-2640-FE0F", "non_qualified": "1F9D6-1F3FE-200D-2640", "image": "1f9d6-1f3fe-200d-2640-fe0f.png", - "sheet_x": 48, - "sheet_y": 44, + "sheet_x": 49, + "sheet_y": 13, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53491,8 +56257,8 @@ "unified": "1F9D6-1F3FF-200D-2640-FE0F", "non_qualified": "1F9D6-1F3FF-200D-2640", "image": "1f9d6-1f3ff-200d-2640-fe0f.png", - "sheet_x": 48, - "sheet_y": 45, + "sheet_x": 49, + "sheet_y": 14, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53502,7 +56268,7 @@ } }, { - "name": null, + "name": "MAN IN STEAMY ROOM", "unified": "1F9D6-200D-2642-FE0F", "non_qualified": "1F9D6-200D-2642", "docomo": null, @@ -53510,8 +56276,8 @@ "softbank": null, "google": null, "image": "1f9d6-200d-2642-fe0f.png", - "sheet_x": 48, - "sheet_y": 46, + "sheet_x": 49, + "sheet_y": 15, "short_name": "man_in_steamy_room", "short_names": [ "man_in_steamy_room" @@ -53519,7 +56285,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 240, + "subcategory": "person-activity", + "sort_order": 403, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53530,8 +56297,8 @@ "unified": "1F9D6-1F3FB-200D-2642-FE0F", "non_qualified": "1F9D6-1F3FB-200D-2642", "image": "1f9d6-1f3fb-200d-2642-fe0f.png", - "sheet_x": 48, - "sheet_y": 47, + "sheet_x": 49, + "sheet_y": 16, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53543,8 +56310,8 @@ "unified": "1F9D6-1F3FC-200D-2642-FE0F", "non_qualified": "1F9D6-1F3FC-200D-2642", "image": "1f9d6-1f3fc-200d-2642-fe0f.png", - "sheet_x": 48, - "sheet_y": 48, + "sheet_x": 49, + "sheet_y": 17, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53556,8 +56323,8 @@ "unified": "1F9D6-1F3FD-200D-2642-FE0F", "non_qualified": "1F9D6-1F3FD-200D-2642", "image": "1f9d6-1f3fd-200d-2642-fe0f.png", - "sheet_x": 48, - "sheet_y": 49, + "sheet_x": 49, + "sheet_y": 18, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53569,8 +56336,8 @@ "unified": "1F9D6-1F3FE-200D-2642-FE0F", "non_qualified": "1F9D6-1F3FE-200D-2642", "image": "1f9d6-1f3fe-200d-2642-fe0f.png", - "sheet_x": 48, - "sheet_y": 50, + "sheet_x": 49, + "sheet_y": 19, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53582,8 +56349,8 @@ "unified": "1F9D6-1F3FF-200D-2642-FE0F", "non_qualified": "1F9D6-1F3FF-200D-2642", "image": "1f9d6-1f3ff-200d-2642-fe0f.png", - "sheet_x": 48, - "sheet_y": 51, + "sheet_x": 49, + "sheet_y": 20, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53603,8 +56370,8 @@ "softbank": null, "google": null, "image": "1f9d6.png", - "sheet_x": 48, - "sheet_y": 52, + "sheet_x": 49, + "sheet_y": 21, "short_name": "person_in_steamy_room", "short_names": [ "person_in_steamy_room" @@ -53612,7 +56379,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 239, + "subcategory": "person-activity", + "sort_order": 402, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53623,8 +56391,8 @@ "unified": "1F9D6-1F3FB", "non_qualified": null, "image": "1f9d6-1f3fb.png", - "sheet_x": 48, - "sheet_y": 53, + "sheet_x": 49, + "sheet_y": 22, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53636,8 +56404,8 @@ "unified": "1F9D6-1F3FC", "non_qualified": null, "image": "1f9d6-1f3fc.png", - "sheet_x": 48, - "sheet_y": 54, + "sheet_x": 49, + "sheet_y": 23, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53649,8 +56417,8 @@ "unified": "1F9D6-1F3FD", "non_qualified": null, "image": "1f9d6-1f3fd.png", - "sheet_x": 48, - "sheet_y": 55, + "sheet_x": 49, + "sheet_y": 24, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53662,8 +56430,8 @@ "unified": "1F9D6-1F3FE", "non_qualified": null, "image": "1f9d6-1f3fe.png", - "sheet_x": 48, - "sheet_y": 56, + "sheet_x": 49, + "sheet_y": 25, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53676,7 +56444,7 @@ "non_qualified": null, "image": "1f9d6-1f3ff.png", "sheet_x": 49, - "sheet_y": 0, + "sheet_y": 26, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53688,7 +56456,7 @@ "obsoleted_by": "1F9D6-200D-2642-FE0F" }, { - "name": null, + "name": "WOMAN CLIMBING", "unified": "1F9D7-200D-2640-FE0F", "non_qualified": "1F9D7-200D-2640", "docomo": null, @@ -53697,7 +56465,7 @@ "google": null, "image": "1f9d7-200d-2640-fe0f.png", "sheet_x": 49, - "sheet_y": 1, + "sheet_y": 27, "short_name": "woman_climbing", "short_names": [ "woman_climbing" @@ -53705,7 +56473,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 244, + "subcategory": "person-activity", + "sort_order": 407, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53717,7 +56486,7 @@ "non_qualified": "1F9D7-1F3FB-200D-2640", "image": "1f9d7-1f3fb-200d-2640-fe0f.png", "sheet_x": 49, - "sheet_y": 2, + "sheet_y": 28, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53730,7 +56499,7 @@ "non_qualified": "1F9D7-1F3FC-200D-2640", "image": "1f9d7-1f3fc-200d-2640-fe0f.png", "sheet_x": 49, - "sheet_y": 3, + "sheet_y": 29, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53743,7 +56512,7 @@ "non_qualified": "1F9D7-1F3FD-200D-2640", "image": "1f9d7-1f3fd-200d-2640-fe0f.png", "sheet_x": 49, - "sheet_y": 4, + "sheet_y": 30, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53756,7 +56525,7 @@ "non_qualified": "1F9D7-1F3FE-200D-2640", "image": "1f9d7-1f3fe-200d-2640-fe0f.png", "sheet_x": 49, - "sheet_y": 5, + "sheet_y": 31, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53769,7 +56538,7 @@ "non_qualified": "1F9D7-1F3FF-200D-2640", "image": "1f9d7-1f3ff-200d-2640-fe0f.png", "sheet_x": 49, - "sheet_y": 6, + "sheet_y": 32, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53781,7 +56550,7 @@ "obsoletes": "1F9D7" }, { - "name": null, + "name": "MAN CLIMBING", "unified": "1F9D7-200D-2642-FE0F", "non_qualified": "1F9D7-200D-2642", "docomo": null, @@ -53790,7 +56559,7 @@ "google": null, "image": "1f9d7-200d-2642-fe0f.png", "sheet_x": 49, - "sheet_y": 7, + "sheet_y": 33, "short_name": "man_climbing", "short_names": [ "man_climbing" @@ -53798,7 +56567,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 243, + "subcategory": "person-activity", + "sort_order": 406, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53810,7 +56580,7 @@ "non_qualified": "1F9D7-1F3FB-200D-2642", "image": "1f9d7-1f3fb-200d-2642-fe0f.png", "sheet_x": 49, - "sheet_y": 8, + "sheet_y": 34, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53822,7 +56592,7 @@ "non_qualified": "1F9D7-1F3FC-200D-2642", "image": "1f9d7-1f3fc-200d-2642-fe0f.png", "sheet_x": 49, - "sheet_y": 9, + "sheet_y": 35, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53834,7 +56604,7 @@ "non_qualified": "1F9D7-1F3FD-200D-2642", "image": "1f9d7-1f3fd-200d-2642-fe0f.png", "sheet_x": 49, - "sheet_y": 10, + "sheet_y": 36, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53846,7 +56616,7 @@ "non_qualified": "1F9D7-1F3FE-200D-2642", "image": "1f9d7-1f3fe-200d-2642-fe0f.png", "sheet_x": 49, - "sheet_y": 11, + "sheet_y": 37, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53858,7 +56628,7 @@ "non_qualified": "1F9D7-1F3FF-200D-2642", "image": "1f9d7-1f3ff-200d-2642-fe0f.png", "sheet_x": 49, - "sheet_y": 12, + "sheet_y": 38, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53877,7 +56647,7 @@ "google": null, "image": "1f9d7.png", "sheet_x": 49, - "sheet_y": 13, + "sheet_y": 39, "short_name": "person_climbing", "short_names": [ "person_climbing" @@ -53885,7 +56655,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 242, + "subcategory": "person-activity", + "sort_order": 405, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53897,7 +56668,7 @@ "non_qualified": null, "image": "1f9d7-1f3fb.png", "sheet_x": 49, - "sheet_y": 14, + "sheet_y": 40, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53910,7 +56681,7 @@ "non_qualified": null, "image": "1f9d7-1f3fc.png", "sheet_x": 49, - "sheet_y": 15, + "sheet_y": 41, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53923,7 +56694,7 @@ "non_qualified": null, "image": "1f9d7-1f3fd.png", "sheet_x": 49, - "sheet_y": 16, + "sheet_y": 42, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53936,7 +56707,7 @@ "non_qualified": null, "image": "1f9d7-1f3fe.png", "sheet_x": 49, - "sheet_y": 17, + "sheet_y": 43, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53949,7 +56720,7 @@ "non_qualified": null, "image": "1f9d7-1f3ff.png", "sheet_x": 49, - "sheet_y": 18, + "sheet_y": 44, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53961,7 +56732,7 @@ "obsoleted_by": "1F9D7-200D-2640-FE0F" }, { - "name": null, + "name": "WOMAN IN LOTUS POSITION", "unified": "1F9D8-200D-2640-FE0F", "non_qualified": "1F9D8-200D-2640", "docomo": null, @@ -53970,7 +56741,7 @@ "google": null, "image": "1f9d8-200d-2640-fe0f.png", "sheet_x": 49, - "sheet_y": 19, + "sheet_y": 45, "short_name": "woman_in_lotus_position", "short_names": [ "woman_in_lotus_position" @@ -53978,7 +56749,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 290, + "subcategory": "person-resting", + "sort_order": 453, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -53990,7 +56762,7 @@ "non_qualified": "1F9D8-1F3FB-200D-2640", "image": "1f9d8-1f3fb-200d-2640-fe0f.png", "sheet_x": 49, - "sheet_y": 20, + "sheet_y": 46, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54003,7 +56775,7 @@ "non_qualified": "1F9D8-1F3FC-200D-2640", "image": "1f9d8-1f3fc-200d-2640-fe0f.png", "sheet_x": 49, - "sheet_y": 21, + "sheet_y": 47, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54016,7 +56788,7 @@ "non_qualified": "1F9D8-1F3FD-200D-2640", "image": "1f9d8-1f3fd-200d-2640-fe0f.png", "sheet_x": 49, - "sheet_y": 22, + "sheet_y": 48, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54029,7 +56801,7 @@ "non_qualified": "1F9D8-1F3FE-200D-2640", "image": "1f9d8-1f3fe-200d-2640-fe0f.png", "sheet_x": 49, - "sheet_y": 23, + "sheet_y": 49, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54042,7 +56814,7 @@ "non_qualified": "1F9D8-1F3FF-200D-2640", "image": "1f9d8-1f3ff-200d-2640-fe0f.png", "sheet_x": 49, - "sheet_y": 24, + "sheet_y": 50, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54054,7 +56826,7 @@ "obsoletes": "1F9D8" }, { - "name": null, + "name": "MAN IN LOTUS POSITION", "unified": "1F9D8-200D-2642-FE0F", "non_qualified": "1F9D8-200D-2642", "docomo": null, @@ -54063,7 +56835,7 @@ "google": null, "image": "1f9d8-200d-2642-fe0f.png", "sheet_x": 49, - "sheet_y": 25, + "sheet_y": 51, "short_name": "man_in_lotus_position", "short_names": [ "man_in_lotus_position" @@ -54071,7 +56843,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 289, + "subcategory": "person-resting", + "sort_order": 452, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54083,7 +56856,7 @@ "non_qualified": "1F9D8-1F3FB-200D-2642", "image": "1f9d8-1f3fb-200d-2642-fe0f.png", "sheet_x": 49, - "sheet_y": 26, + "sheet_y": 52, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54095,7 +56868,7 @@ "non_qualified": "1F9D8-1F3FC-200D-2642", "image": "1f9d8-1f3fc-200d-2642-fe0f.png", "sheet_x": 49, - "sheet_y": 27, + "sheet_y": 53, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54107,7 +56880,7 @@ "non_qualified": "1F9D8-1F3FD-200D-2642", "image": "1f9d8-1f3fd-200d-2642-fe0f.png", "sheet_x": 49, - "sheet_y": 28, + "sheet_y": 54, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54119,7 +56892,7 @@ "non_qualified": "1F9D8-1F3FE-200D-2642", "image": "1f9d8-1f3fe-200d-2642-fe0f.png", "sheet_x": 49, - "sheet_y": 29, + "sheet_y": 55, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54131,7 +56904,7 @@ "non_qualified": "1F9D8-1F3FF-200D-2642", "image": "1f9d8-1f3ff-200d-2642-fe0f.png", "sheet_x": 49, - "sheet_y": 30, + "sheet_y": 56, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54150,7 +56923,7 @@ "google": null, "image": "1f9d8.png", "sheet_x": 49, - "sheet_y": 31, + "sheet_y": 57, "short_name": "person_in_lotus_position", "short_names": [ "person_in_lotus_position" @@ -54158,7 +56931,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 288, + "subcategory": "person-resting", + "sort_order": 451, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54169,8 +56943,8 @@ "unified": "1F9D8-1F3FB", "non_qualified": null, "image": "1f9d8-1f3fb.png", - "sheet_x": 49, - "sheet_y": 32, + "sheet_x": 50, + "sheet_y": 0, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54182,8 +56956,8 @@ "unified": "1F9D8-1F3FC", "non_qualified": null, "image": "1f9d8-1f3fc.png", - "sheet_x": 49, - "sheet_y": 33, + "sheet_x": 50, + "sheet_y": 1, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54195,8 +56969,8 @@ "unified": "1F9D8-1F3FD", "non_qualified": null, "image": "1f9d8-1f3fd.png", - "sheet_x": 49, - "sheet_y": 34, + "sheet_x": 50, + "sheet_y": 2, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54208,8 +56982,8 @@ "unified": "1F9D8-1F3FE", "non_qualified": null, "image": "1f9d8-1f3fe.png", - "sheet_x": 49, - "sheet_y": 35, + "sheet_x": 50, + "sheet_y": 3, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54221,8 +56995,8 @@ "unified": "1F9D8-1F3FF", "non_qualified": null, "image": "1f9d8-1f3ff.png", - "sheet_x": 49, - "sheet_y": 36, + "sheet_x": 50, + "sheet_y": 4, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54234,7 +57008,7 @@ "obsoleted_by": "1F9D8-200D-2640-FE0F" }, { - "name": null, + "name": "WOMAN MAGE", "unified": "1F9D9-200D-2640-FE0F", "non_qualified": "1F9D9-200D-2640", "docomo": null, @@ -54242,8 +57016,8 @@ "softbank": null, "google": null, "image": "1f9d9-200d-2640-fe0f.png", - "sheet_x": 49, - "sheet_y": 37, + "sheet_x": 50, + "sheet_y": 5, "short_name": "female_mage", "short_names": [ "female_mage" @@ -54251,7 +57025,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 187, + "subcategory": "person-fantasy", + "sort_order": 350, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54262,8 +57037,8 @@ "unified": "1F9D9-1F3FB-200D-2640-FE0F", "non_qualified": "1F9D9-1F3FB-200D-2640", "image": "1f9d9-1f3fb-200d-2640-fe0f.png", - "sheet_x": 49, - "sheet_y": 38, + "sheet_x": 50, + "sheet_y": 6, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54275,8 +57050,8 @@ "unified": "1F9D9-1F3FC-200D-2640-FE0F", "non_qualified": "1F9D9-1F3FC-200D-2640", "image": "1f9d9-1f3fc-200d-2640-fe0f.png", - "sheet_x": 49, - "sheet_y": 39, + "sheet_x": 50, + "sheet_y": 7, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54288,8 +57063,8 @@ "unified": "1F9D9-1F3FD-200D-2640-FE0F", "non_qualified": "1F9D9-1F3FD-200D-2640", "image": "1f9d9-1f3fd-200d-2640-fe0f.png", - "sheet_x": 49, - "sheet_y": 40, + "sheet_x": 50, + "sheet_y": 8, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54301,8 +57076,8 @@ "unified": "1F9D9-1F3FE-200D-2640-FE0F", "non_qualified": "1F9D9-1F3FE-200D-2640", "image": "1f9d9-1f3fe-200d-2640-fe0f.png", - "sheet_x": 49, - "sheet_y": 41, + "sheet_x": 50, + "sheet_y": 9, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54314,8 +57089,8 @@ "unified": "1F9D9-1F3FF-200D-2640-FE0F", "non_qualified": "1F9D9-1F3FF-200D-2640", "image": "1f9d9-1f3ff-200d-2640-fe0f.png", - "sheet_x": 49, - "sheet_y": 42, + "sheet_x": 50, + "sheet_y": 10, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54327,7 +57102,7 @@ "obsoletes": "1F9D9" }, { - "name": null, + "name": "MAN MAGE", "unified": "1F9D9-200D-2642-FE0F", "non_qualified": "1F9D9-200D-2642", "docomo": null, @@ -54335,8 +57110,8 @@ "softbank": null, "google": null, "image": "1f9d9-200d-2642-fe0f.png", - "sheet_x": 49, - "sheet_y": 43, + "sheet_x": 50, + "sheet_y": 11, "short_name": "male_mage", "short_names": [ "male_mage" @@ -54344,7 +57119,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 186, + "subcategory": "person-fantasy", + "sort_order": 349, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54355,8 +57131,8 @@ "unified": "1F9D9-1F3FB-200D-2642-FE0F", "non_qualified": "1F9D9-1F3FB-200D-2642", "image": "1f9d9-1f3fb-200d-2642-fe0f.png", - "sheet_x": 49, - "sheet_y": 44, + "sheet_x": 50, + "sheet_y": 12, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54367,8 +57143,8 @@ "unified": "1F9D9-1F3FC-200D-2642-FE0F", "non_qualified": "1F9D9-1F3FC-200D-2642", "image": "1f9d9-1f3fc-200d-2642-fe0f.png", - "sheet_x": 49, - "sheet_y": 45, + "sheet_x": 50, + "sheet_y": 13, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54379,8 +57155,8 @@ "unified": "1F9D9-1F3FD-200D-2642-FE0F", "non_qualified": "1F9D9-1F3FD-200D-2642", "image": "1f9d9-1f3fd-200d-2642-fe0f.png", - "sheet_x": 49, - "sheet_y": 46, + "sheet_x": 50, + "sheet_y": 14, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54391,8 +57167,8 @@ "unified": "1F9D9-1F3FE-200D-2642-FE0F", "non_qualified": "1F9D9-1F3FE-200D-2642", "image": "1f9d9-1f3fe-200d-2642-fe0f.png", - "sheet_x": 49, - "sheet_y": 47, + "sheet_x": 50, + "sheet_y": 15, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54403,8 +57179,8 @@ "unified": "1F9D9-1F3FF-200D-2642-FE0F", "non_qualified": "1F9D9-1F3FF-200D-2642", "image": "1f9d9-1f3ff-200d-2642-fe0f.png", - "sheet_x": 49, - "sheet_y": 48, + "sheet_x": 50, + "sheet_y": 16, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54422,8 +57198,8 @@ "softbank": null, "google": null, "image": "1f9d9.png", - "sheet_x": 49, - "sheet_y": 49, + "sheet_x": 50, + "sheet_y": 17, "short_name": "mage", "short_names": [ "mage" @@ -54431,7 +57207,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 185, + "subcategory": "person-fantasy", + "sort_order": 348, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54442,8 +57219,8 @@ "unified": "1F9D9-1F3FB", "non_qualified": null, "image": "1f9d9-1f3fb.png", - "sheet_x": 49, - "sheet_y": 50, + "sheet_x": 50, + "sheet_y": 18, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54455,8 +57232,8 @@ "unified": "1F9D9-1F3FC", "non_qualified": null, "image": "1f9d9-1f3fc.png", - "sheet_x": 49, - "sheet_y": 51, + "sheet_x": 50, + "sheet_y": 19, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54468,8 +57245,8 @@ "unified": "1F9D9-1F3FD", "non_qualified": null, "image": "1f9d9-1f3fd.png", - "sheet_x": 49, - "sheet_y": 52, + "sheet_x": 50, + "sheet_y": 20, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54481,8 +57258,8 @@ "unified": "1F9D9-1F3FE", "non_qualified": null, "image": "1f9d9-1f3fe.png", - "sheet_x": 49, - "sheet_y": 53, + "sheet_x": 50, + "sheet_y": 21, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54494,8 +57271,8 @@ "unified": "1F9D9-1F3FF", "non_qualified": null, "image": "1f9d9-1f3ff.png", - "sheet_x": 49, - "sheet_y": 54, + "sheet_x": 50, + "sheet_y": 22, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54507,7 +57284,7 @@ "obsoleted_by": "1F9D9-200D-2640-FE0F" }, { - "name": null, + "name": "WOMAN FAIRY", "unified": "1F9DA-200D-2640-FE0F", "non_qualified": "1F9DA-200D-2640", "docomo": null, @@ -54515,8 +57292,8 @@ "softbank": null, "google": null, "image": "1f9da-200d-2640-fe0f.png", - "sheet_x": 49, - "sheet_y": 55, + "sheet_x": 50, + "sheet_y": 23, "short_name": "female_fairy", "short_names": [ "female_fairy" @@ -54524,7 +57301,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 190, + "subcategory": "person-fantasy", + "sort_order": 353, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54535,13 +57313,13 @@ "unified": "1F9DA-1F3FB-200D-2640-FE0F", "non_qualified": "1F9DA-1F3FB-200D-2640", "image": "1f9da-1f3fb-200d-2640-fe0f.png", - "sheet_x": 49, - "sheet_y": 56, + "sheet_x": 50, + "sheet_y": 24, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "obsoletes": "1F9DA-1F3FB" }, "1F3FC": { @@ -54549,12 +57327,12 @@ "non_qualified": "1F9DA-1F3FC-200D-2640", "image": "1f9da-1f3fc-200d-2640-fe0f.png", "sheet_x": 50, - "sheet_y": 0, + "sheet_y": 25, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "obsoletes": "1F9DA-1F3FC" }, "1F3FD": { @@ -54562,12 +57340,12 @@ "non_qualified": "1F9DA-1F3FD-200D-2640", "image": "1f9da-1f3fd-200d-2640-fe0f.png", "sheet_x": 50, - "sheet_y": 1, + "sheet_y": 26, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "obsoletes": "1F9DA-1F3FD" }, "1F3FE": { @@ -54575,12 +57353,12 @@ "non_qualified": "1F9DA-1F3FE-200D-2640", "image": "1f9da-1f3fe-200d-2640-fe0f.png", "sheet_x": 50, - "sheet_y": 2, + "sheet_y": 27, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "obsoletes": "1F9DA-1F3FE" }, "1F3FF": { @@ -54588,19 +57366,19 @@ "non_qualified": "1F9DA-1F3FF-200D-2640", "image": "1f9da-1f3ff-200d-2640-fe0f.png", "sheet_x": 50, - "sheet_y": 3, + "sheet_y": 28, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "obsoletes": "1F9DA-1F3FF" } }, "obsoletes": "1F9DA" }, { - "name": null, + "name": "MAN FAIRY", "unified": "1F9DA-200D-2642-FE0F", "non_qualified": "1F9DA-200D-2642", "docomo": null, @@ -54609,7 +57387,7 @@ "google": null, "image": "1f9da-200d-2642-fe0f.png", "sheet_x": 50, - "sheet_y": 4, + "sheet_y": 29, "short_name": "male_fairy", "short_names": [ "male_fairy" @@ -54617,7 +57395,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 189, + "subcategory": "person-fantasy", + "sort_order": 352, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54629,60 +57408,60 @@ "non_qualified": "1F9DA-1F3FB-200D-2642", "image": "1f9da-1f3fb-200d-2642-fe0f.png", "sheet_x": 50, - "sheet_y": 5, + "sheet_y": 30, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "1F9DA-1F3FC-200D-2642-FE0F", "non_qualified": "1F9DA-1F3FC-200D-2642", "image": "1f9da-1f3fc-200d-2642-fe0f.png", "sheet_x": 50, - "sheet_y": 6, + "sheet_y": 31, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "1F9DA-1F3FD-200D-2642-FE0F", "non_qualified": "1F9DA-1F3FD-200D-2642", "image": "1f9da-1f3fd-200d-2642-fe0f.png", "sheet_x": 50, - "sheet_y": 7, + "sheet_y": 32, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "1F9DA-1F3FE-200D-2642-FE0F", "non_qualified": "1F9DA-1F3FE-200D-2642", "image": "1f9da-1f3fe-200d-2642-fe0f.png", "sheet_x": 50, - "sheet_y": 8, + "sheet_y": 33, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "1F9DA-1F3FF-200D-2642-FE0F", "non_qualified": "1F9DA-1F3FF-200D-2642", "image": "1f9da-1f3ff-200d-2642-fe0f.png", "sheet_x": 50, - "sheet_y": 9, + "sheet_y": 34, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } } }, @@ -54696,7 +57475,7 @@ "google": null, "image": "1f9da.png", "sheet_x": 50, - "sheet_y": 10, + "sheet_y": 35, "short_name": "fairy", "short_names": [ "fairy" @@ -54704,7 +57483,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 188, + "subcategory": "person-fantasy", + "sort_order": 351, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54716,12 +57496,12 @@ "non_qualified": null, "image": "1f9da-1f3fb.png", "sheet_x": 50, - "sheet_y": 11, + "sheet_y": 36, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "obsoleted_by": "1F9DA-1F3FB-200D-2640-FE0F" }, "1F3FC": { @@ -54729,12 +57509,12 @@ "non_qualified": null, "image": "1f9da-1f3fc.png", "sheet_x": 50, - "sheet_y": 12, + "sheet_y": 37, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "obsoleted_by": "1F9DA-1F3FC-200D-2640-FE0F" }, "1F3FD": { @@ -54742,12 +57522,12 @@ "non_qualified": null, "image": "1f9da-1f3fd.png", "sheet_x": 50, - "sheet_y": 13, + "sheet_y": 38, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "obsoleted_by": "1F9DA-1F3FD-200D-2640-FE0F" }, "1F3FE": { @@ -54755,12 +57535,12 @@ "non_qualified": null, "image": "1f9da-1f3fe.png", "sheet_x": 50, - "sheet_y": 14, + "sheet_y": 39, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "obsoleted_by": "1F9DA-1F3FE-200D-2640-FE0F" }, "1F3FF": { @@ -54768,19 +57548,19 @@ "non_qualified": null, "image": "1f9da-1f3ff.png", "sheet_x": 50, - "sheet_y": 15, + "sheet_y": 40, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "obsoleted_by": "1F9DA-1F3FF-200D-2640-FE0F" } }, "obsoleted_by": "1F9DA-200D-2640-FE0F" }, { - "name": null, + "name": "WOMAN VAMPIRE", "unified": "1F9DB-200D-2640-FE0F", "non_qualified": "1F9DB-200D-2640", "docomo": null, @@ -54789,7 +57569,7 @@ "google": null, "image": "1f9db-200d-2640-fe0f.png", "sheet_x": 50, - "sheet_y": 16, + "sheet_y": 41, "short_name": "female_vampire", "short_names": [ "female_vampire" @@ -54797,7 +57577,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 193, + "subcategory": "person-fantasy", + "sort_order": 356, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54809,7 +57590,7 @@ "non_qualified": "1F9DB-1F3FB-200D-2640", "image": "1f9db-1f3fb-200d-2640-fe0f.png", "sheet_x": 50, - "sheet_y": 17, + "sheet_y": 42, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54822,7 +57603,7 @@ "non_qualified": "1F9DB-1F3FC-200D-2640", "image": "1f9db-1f3fc-200d-2640-fe0f.png", "sheet_x": 50, - "sheet_y": 18, + "sheet_y": 43, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54835,7 +57616,7 @@ "non_qualified": "1F9DB-1F3FD-200D-2640", "image": "1f9db-1f3fd-200d-2640-fe0f.png", "sheet_x": 50, - "sheet_y": 19, + "sheet_y": 44, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54848,7 +57629,7 @@ "non_qualified": "1F9DB-1F3FE-200D-2640", "image": "1f9db-1f3fe-200d-2640-fe0f.png", "sheet_x": 50, - "sheet_y": 20, + "sheet_y": 45, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54861,7 +57642,7 @@ "non_qualified": "1F9DB-1F3FF-200D-2640", "image": "1f9db-1f3ff-200d-2640-fe0f.png", "sheet_x": 50, - "sheet_y": 21, + "sheet_y": 46, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54873,7 +57654,7 @@ "obsoletes": "1F9DB" }, { - "name": null, + "name": "MAN VAMPIRE", "unified": "1F9DB-200D-2642-FE0F", "non_qualified": "1F9DB-200D-2642", "docomo": null, @@ -54882,7 +57663,7 @@ "google": null, "image": "1f9db-200d-2642-fe0f.png", "sheet_x": 50, - "sheet_y": 22, + "sheet_y": 47, "short_name": "male_vampire", "short_names": [ "male_vampire" @@ -54890,7 +57671,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 192, + "subcategory": "person-fantasy", + "sort_order": 355, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54902,7 +57684,7 @@ "non_qualified": "1F9DB-1F3FB-200D-2642", "image": "1f9db-1f3fb-200d-2642-fe0f.png", "sheet_x": 50, - "sheet_y": 23, + "sheet_y": 48, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54914,7 +57696,7 @@ "non_qualified": "1F9DB-1F3FC-200D-2642", "image": "1f9db-1f3fc-200d-2642-fe0f.png", "sheet_x": 50, - "sheet_y": 24, + "sheet_y": 49, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54926,7 +57708,7 @@ "non_qualified": "1F9DB-1F3FD-200D-2642", "image": "1f9db-1f3fd-200d-2642-fe0f.png", "sheet_x": 50, - "sheet_y": 25, + "sheet_y": 50, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54938,7 +57720,7 @@ "non_qualified": "1F9DB-1F3FE-200D-2642", "image": "1f9db-1f3fe-200d-2642-fe0f.png", "sheet_x": 50, - "sheet_y": 26, + "sheet_y": 51, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54950,7 +57732,7 @@ "non_qualified": "1F9DB-1F3FF-200D-2642", "image": "1f9db-1f3ff-200d-2642-fe0f.png", "sheet_x": 50, - "sheet_y": 27, + "sheet_y": 52, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54969,7 +57751,7 @@ "google": null, "image": "1f9db.png", "sheet_x": 50, - "sheet_y": 28, + "sheet_y": 53, "short_name": "vampire", "short_names": [ "vampire" @@ -54977,7 +57759,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 191, + "subcategory": "person-fantasy", + "sort_order": 354, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -54989,7 +57772,7 @@ "non_qualified": null, "image": "1f9db-1f3fb.png", "sheet_x": 50, - "sheet_y": 29, + "sheet_y": 54, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55002,7 +57785,7 @@ "non_qualified": null, "image": "1f9db-1f3fc.png", "sheet_x": 50, - "sheet_y": 30, + "sheet_y": 55, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55015,7 +57798,7 @@ "non_qualified": null, "image": "1f9db-1f3fd.png", "sheet_x": 50, - "sheet_y": 31, + "sheet_y": 56, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55028,7 +57811,7 @@ "non_qualified": null, "image": "1f9db-1f3fe.png", "sheet_x": 50, - "sheet_y": 32, + "sheet_y": 57, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55040,8 +57823,8 @@ "unified": "1F9DB-1F3FF", "non_qualified": null, "image": "1f9db-1f3ff.png", - "sheet_x": 50, - "sheet_y": 33, + "sheet_x": 51, + "sheet_y": 0, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55053,7 +57836,7 @@ "obsoleted_by": "1F9DB-200D-2640-FE0F" }, { - "name": null, + "name": "MERMAID", "unified": "1F9DC-200D-2640-FE0F", "non_qualified": "1F9DC-200D-2640", "docomo": null, @@ -55061,8 +57844,8 @@ "softbank": null, "google": null, "image": "1f9dc-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 34, + "sheet_x": 51, + "sheet_y": 1, "short_name": "mermaid", "short_names": [ "mermaid" @@ -55070,7 +57853,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 196, + "subcategory": "person-fantasy", + "sort_order": 359, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55081,8 +57865,8 @@ "unified": "1F9DC-1F3FB-200D-2640-FE0F", "non_qualified": "1F9DC-1F3FB-200D-2640", "image": "1f9dc-1f3fb-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 35, + "sheet_x": 51, + "sheet_y": 2, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55093,8 +57877,8 @@ "unified": "1F9DC-1F3FC-200D-2640-FE0F", "non_qualified": "1F9DC-1F3FC-200D-2640", "image": "1f9dc-1f3fc-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 36, + "sheet_x": 51, + "sheet_y": 3, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55105,8 +57889,8 @@ "unified": "1F9DC-1F3FD-200D-2640-FE0F", "non_qualified": "1F9DC-1F3FD-200D-2640", "image": "1f9dc-1f3fd-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 37, + "sheet_x": 51, + "sheet_y": 4, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55117,8 +57901,8 @@ "unified": "1F9DC-1F3FE-200D-2640-FE0F", "non_qualified": "1F9DC-1F3FE-200D-2640", "image": "1f9dc-1f3fe-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 38, + "sheet_x": 51, + "sheet_y": 5, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55129,8 +57913,8 @@ "unified": "1F9DC-1F3FF-200D-2640-FE0F", "non_qualified": "1F9DC-1F3FF-200D-2640", "image": "1f9dc-1f3ff-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 39, + "sheet_x": 51, + "sheet_y": 6, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55140,7 +57924,7 @@ } }, { - "name": null, + "name": "MERMAN", "unified": "1F9DC-200D-2642-FE0F", "non_qualified": "1F9DC-200D-2642", "docomo": null, @@ -55148,8 +57932,8 @@ "softbank": null, "google": null, "image": "1f9dc-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 40, + "sheet_x": 51, + "sheet_y": 7, "short_name": "merman", "short_names": [ "merman" @@ -55157,7 +57941,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 195, + "subcategory": "person-fantasy", + "sort_order": 358, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55168,8 +57953,8 @@ "unified": "1F9DC-1F3FB-200D-2642-FE0F", "non_qualified": "1F9DC-1F3FB-200D-2642", "image": "1f9dc-1f3fb-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 41, + "sheet_x": 51, + "sheet_y": 8, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55181,8 +57966,8 @@ "unified": "1F9DC-1F3FC-200D-2642-FE0F", "non_qualified": "1F9DC-1F3FC-200D-2642", "image": "1f9dc-1f3fc-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 42, + "sheet_x": 51, + "sheet_y": 9, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55194,8 +57979,8 @@ "unified": "1F9DC-1F3FD-200D-2642-FE0F", "non_qualified": "1F9DC-1F3FD-200D-2642", "image": "1f9dc-1f3fd-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 43, + "sheet_x": 51, + "sheet_y": 10, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55207,8 +57992,8 @@ "unified": "1F9DC-1F3FE-200D-2642-FE0F", "non_qualified": "1F9DC-1F3FE-200D-2642", "image": "1f9dc-1f3fe-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 44, + "sheet_x": 51, + "sheet_y": 11, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55220,8 +58005,8 @@ "unified": "1F9DC-1F3FF-200D-2642-FE0F", "non_qualified": "1F9DC-1F3FF-200D-2642", "image": "1f9dc-1f3ff-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 45, + "sheet_x": 51, + "sheet_y": 12, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55241,8 +58026,8 @@ "softbank": null, "google": null, "image": "1f9dc.png", - "sheet_x": 50, - "sheet_y": 46, + "sheet_x": 51, + "sheet_y": 13, "short_name": "merperson", "short_names": [ "merperson" @@ -55250,7 +58035,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 194, + "subcategory": "person-fantasy", + "sort_order": 357, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55261,8 +58047,8 @@ "unified": "1F9DC-1F3FB", "non_qualified": null, "image": "1f9dc-1f3fb.png", - "sheet_x": 50, - "sheet_y": 47, + "sheet_x": 51, + "sheet_y": 14, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55274,8 +58060,8 @@ "unified": "1F9DC-1F3FC", "non_qualified": null, "image": "1f9dc-1f3fc.png", - "sheet_x": 50, - "sheet_y": 48, + "sheet_x": 51, + "sheet_y": 15, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55287,8 +58073,8 @@ "unified": "1F9DC-1F3FD", "non_qualified": null, "image": "1f9dc-1f3fd.png", - "sheet_x": 50, - "sheet_y": 49, + "sheet_x": 51, + "sheet_y": 16, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55300,8 +58086,8 @@ "unified": "1F9DC-1F3FE", "non_qualified": null, "image": "1f9dc-1f3fe.png", - "sheet_x": 50, - "sheet_y": 50, + "sheet_x": 51, + "sheet_y": 17, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55313,8 +58099,8 @@ "unified": "1F9DC-1F3FF", "non_qualified": null, "image": "1f9dc-1f3ff.png", - "sheet_x": 50, - "sheet_y": 51, + "sheet_x": 51, + "sheet_y": 18, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55326,7 +58112,7 @@ "obsoleted_by": "1F9DC-200D-2642-FE0F" }, { - "name": null, + "name": "WOMAN ELF", "unified": "1F9DD-200D-2640-FE0F", "non_qualified": "1F9DD-200D-2640", "docomo": null, @@ -55334,8 +58120,8 @@ "softbank": null, "google": null, "image": "1f9dd-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 52, + "sheet_x": 51, + "sheet_y": 19, "short_name": "female_elf", "short_names": [ "female_elf" @@ -55343,7 +58129,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 199, + "subcategory": "person-fantasy", + "sort_order": 362, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55354,8 +58141,8 @@ "unified": "1F9DD-1F3FB-200D-2640-FE0F", "non_qualified": "1F9DD-1F3FB-200D-2640", "image": "1f9dd-1f3fb-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 53, + "sheet_x": 51, + "sheet_y": 20, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55366,8 +58153,8 @@ "unified": "1F9DD-1F3FC-200D-2640-FE0F", "non_qualified": "1F9DD-1F3FC-200D-2640", "image": "1f9dd-1f3fc-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 54, + "sheet_x": 51, + "sheet_y": 21, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55378,8 +58165,8 @@ "unified": "1F9DD-1F3FD-200D-2640-FE0F", "non_qualified": "1F9DD-1F3FD-200D-2640", "image": "1f9dd-1f3fd-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 55, + "sheet_x": 51, + "sheet_y": 22, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55390,8 +58177,8 @@ "unified": "1F9DD-1F3FE-200D-2640-FE0F", "non_qualified": "1F9DD-1F3FE-200D-2640", "image": "1f9dd-1f3fe-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 56, + "sheet_x": 51, + "sheet_y": 23, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55403,7 +58190,7 @@ "non_qualified": "1F9DD-1F3FF-200D-2640", "image": "1f9dd-1f3ff-200d-2640-fe0f.png", "sheet_x": 51, - "sheet_y": 0, + "sheet_y": 24, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55413,7 +58200,7 @@ } }, { - "name": null, + "name": "MAN ELF", "unified": "1F9DD-200D-2642-FE0F", "non_qualified": "1F9DD-200D-2642", "docomo": null, @@ -55422,7 +58209,7 @@ "google": null, "image": "1f9dd-200d-2642-fe0f.png", "sheet_x": 51, - "sheet_y": 1, + "sheet_y": 25, "short_name": "male_elf", "short_names": [ "male_elf" @@ -55430,7 +58217,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 198, + "subcategory": "person-fantasy", + "sort_order": 361, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55442,7 +58230,7 @@ "non_qualified": "1F9DD-1F3FB-200D-2642", "image": "1f9dd-1f3fb-200d-2642-fe0f.png", "sheet_x": 51, - "sheet_y": 2, + "sheet_y": 26, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55455,7 +58243,7 @@ "non_qualified": "1F9DD-1F3FC-200D-2642", "image": "1f9dd-1f3fc-200d-2642-fe0f.png", "sheet_x": 51, - "sheet_y": 3, + "sheet_y": 27, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55468,7 +58256,7 @@ "non_qualified": "1F9DD-1F3FD-200D-2642", "image": "1f9dd-1f3fd-200d-2642-fe0f.png", "sheet_x": 51, - "sheet_y": 4, + "sheet_y": 28, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55481,7 +58269,7 @@ "non_qualified": "1F9DD-1F3FE-200D-2642", "image": "1f9dd-1f3fe-200d-2642-fe0f.png", "sheet_x": 51, - "sheet_y": 5, + "sheet_y": 29, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55494,7 +58282,7 @@ "non_qualified": "1F9DD-1F3FF-200D-2642", "image": "1f9dd-1f3ff-200d-2642-fe0f.png", "sheet_x": 51, - "sheet_y": 6, + "sheet_y": 30, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55515,7 +58303,7 @@ "google": null, "image": "1f9dd.png", "sheet_x": 51, - "sheet_y": 7, + "sheet_y": 31, "short_name": "elf", "short_names": [ "elf" @@ -55523,7 +58311,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 197, + "subcategory": "person-fantasy", + "sort_order": 360, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55535,7 +58324,7 @@ "non_qualified": null, "image": "1f9dd-1f3fb.png", "sheet_x": 51, - "sheet_y": 8, + "sheet_y": 32, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55548,7 +58337,7 @@ "non_qualified": null, "image": "1f9dd-1f3fc.png", "sheet_x": 51, - "sheet_y": 9, + "sheet_y": 33, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55561,7 +58350,7 @@ "non_qualified": null, "image": "1f9dd-1f3fd.png", "sheet_x": 51, - "sheet_y": 10, + "sheet_y": 34, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55574,7 +58363,7 @@ "non_qualified": null, "image": "1f9dd-1f3fe.png", "sheet_x": 51, - "sheet_y": 11, + "sheet_y": 35, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55587,7 +58376,7 @@ "non_qualified": null, "image": "1f9dd-1f3ff.png", "sheet_x": 51, - "sheet_y": 12, + "sheet_y": 36, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55599,7 +58388,7 @@ "obsoleted_by": "1F9DD-200D-2642-FE0F" }, { - "name": null, + "name": "WOMAN GENIE", "unified": "1F9DE-200D-2640-FE0F", "non_qualified": "1F9DE-200D-2640", "docomo": null, @@ -55608,7 +58397,7 @@ "google": null, "image": "1f9de-200d-2640-fe0f.png", "sheet_x": 51, - "sheet_y": 13, + "sheet_y": 37, "short_name": "female_genie", "short_names": [ "female_genie" @@ -55616,7 +58405,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 202, + "subcategory": "person-fantasy", + "sort_order": 365, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55624,7 +58414,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "MAN GENIE", "unified": "1F9DE-200D-2642-FE0F", "non_qualified": "1F9DE-200D-2642", "docomo": null, @@ -55633,7 +58423,7 @@ "google": null, "image": "1f9de-200d-2642-fe0f.png", "sheet_x": 51, - "sheet_y": 14, + "sheet_y": 38, "short_name": "male_genie", "short_names": [ "male_genie" @@ -55641,7 +58431,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 201, + "subcategory": "person-fantasy", + "sort_order": 364, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55659,7 +58450,7 @@ "google": null, "image": "1f9de.png", "sheet_x": 51, - "sheet_y": 15, + "sheet_y": 39, "short_name": "genie", "short_names": [ "genie" @@ -55667,7 +58458,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 200, + "subcategory": "person-fantasy", + "sort_order": 363, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55676,7 +58468,7 @@ "obsoleted_by": "1F9DE-200D-2642-FE0F" }, { - "name": null, + "name": "WOMAN ZOMBIE", "unified": "1F9DF-200D-2640-FE0F", "non_qualified": "1F9DF-200D-2640", "docomo": null, @@ -55685,7 +58477,7 @@ "google": null, "image": "1f9df-200d-2640-fe0f.png", "sheet_x": 51, - "sheet_y": 16, + "sheet_y": 40, "short_name": "female_zombie", "short_names": [ "female_zombie" @@ -55693,7 +58485,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 205, + "subcategory": "person-fantasy", + "sort_order": 368, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55701,7 +58494,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "MAN ZOMBIE", "unified": "1F9DF-200D-2642-FE0F", "non_qualified": "1F9DF-200D-2642", "docomo": null, @@ -55710,7 +58503,7 @@ "google": null, "image": "1f9df-200d-2642-fe0f.png", "sheet_x": 51, - "sheet_y": 17, + "sheet_y": 41, "short_name": "male_zombie", "short_names": [ "male_zombie" @@ -55718,7 +58511,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 204, + "subcategory": "person-fantasy", + "sort_order": 367, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55736,7 +58530,7 @@ "google": null, "image": "1f9df.png", "sheet_x": 51, - "sheet_y": 18, + "sheet_y": 42, "short_name": "zombie", "short_names": [ "zombie" @@ -55744,7 +58538,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 203, + "subcategory": "person-fantasy", + "sort_order": 366, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55762,7 +58557,7 @@ "google": null, "image": "1f9e0.png", "sheet_x": 51, - "sheet_y": 19, + "sheet_y": 43, "short_name": "brain", "short_names": [ "brain" @@ -55770,7 +58565,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 42, + "subcategory": "body-parts", + "sort_order": 194, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55787,7 +58583,7 @@ "google": null, "image": "1f9e1.png", "sheet_x": 51, - "sheet_y": 20, + "sheet_y": 44, "short_name": "orange_heart", "short_names": [ "orange_heart" @@ -55795,7 +58591,8 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 128, + "subcategory": "emotion", + "sort_order": 130, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55812,7 +58609,7 @@ "google": null, "image": "1f9e2.png", "sheet_x": 51, - "sheet_y": 21, + "sheet_y": 45, "short_name": "billed_cap", "short_names": [ "billed_cap" @@ -55820,7 +58617,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 38, + "subcategory": "clothing", + "sort_order": 1110, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55837,7 +58635,7 @@ "google": null, "image": "1f9e3.png", "sheet_x": 51, - "sheet_y": 22, + "sheet_y": 46, "short_name": "scarf", "short_names": [ "scarf" @@ -55845,7 +58643,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 9, + "subcategory": "clothing", + "sort_order": 1080, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55862,7 +58661,7 @@ "google": null, "image": "1f9e4.png", "sheet_x": 51, - "sheet_y": 23, + "sheet_y": 47, "short_name": "gloves", "short_names": [ "gloves" @@ -55870,7 +58669,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 10, + "subcategory": "clothing", + "sort_order": 1081, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55887,7 +58687,7 @@ "google": null, "image": "1f9e5.png", "sheet_x": 51, - "sheet_y": 24, + "sheet_y": 48, "short_name": "coat", "short_names": [ "coat" @@ -55895,7 +58695,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 11, + "subcategory": "clothing", + "sort_order": 1082, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55912,7 +58713,7 @@ "google": null, "image": "1f9e6.png", "sheet_x": 51, - "sheet_y": 25, + "sheet_y": 49, "short_name": "socks", "short_names": [ "socks" @@ -55920,7 +58721,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 12, + "subcategory": "clothing", + "sort_order": 1083, "added_in": "5.0", "has_img_apple": true, "has_img_google": true, @@ -55937,7 +58739,7 @@ "google": null, "image": "1f9e7.png", "sheet_x": 51, - "sheet_y": 26, + "sheet_y": 50, "short_name": "red_envelope", "short_names": [ "red_envelope" @@ -55945,7 +58747,8 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 16, + "subcategory": "event", + "sort_order": 1003, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -55962,7 +58765,7 @@ "google": null, "image": "1f9e8.png", "sheet_x": 51, - "sheet_y": 27, + "sheet_y": 51, "short_name": "firecracker", "short_names": [ "firecracker" @@ -55970,7 +58773,8 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 5, + "subcategory": "event", + "sort_order": 992, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -55987,7 +58791,7 @@ "google": null, "image": "1f9e9.png", "sheet_x": 51, - "sheet_y": 28, + "sheet_y": 52, "short_name": "jigsaw", "short_names": [ "jigsaw" @@ -55995,7 +58799,8 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 65, + "subcategory": "game", + "sort_order": 1053, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -56012,7 +58817,7 @@ "google": null, "image": "1f9ea.png", "sheet_x": 51, - "sheet_y": 29, + "sheet_y": 53, "short_name": "test_tube", "short_names": [ "test_tube" @@ -56020,7 +58825,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 202, + "subcategory": "science", + "sort_order": 1281, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -56037,7 +58843,7 @@ "google": null, "image": "1f9eb.png", "sheet_x": 51, - "sheet_y": 30, + "sheet_y": 54, "short_name": "petri_dish", "short_names": [ "petri_dish" @@ -56045,7 +58851,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 203, + "subcategory": "science", + "sort_order": 1282, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -56062,7 +58869,7 @@ "google": null, "image": "1f9ec.png", "sheet_x": 51, - "sheet_y": 31, + "sheet_y": 55, "short_name": "dna", "short_names": [ "dna" @@ -56070,7 +58877,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 204, + "subcategory": "science", + "sort_order": 1283, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -56087,7 +58895,7 @@ "google": null, "image": "1f9ed.png", "sheet_x": 51, - "sheet_y": 32, + "sheet_y": 56, "short_name": "compass", "short_names": [ "compass" @@ -56095,7 +58903,8 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 7, + "subcategory": "place-map", + "sort_order": 779, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -56112,7 +58921,7 @@ "google": null, "image": "1f9ee.png", "sheet_x": 51, - "sheet_y": 33, + "sheet_y": 57, "short_name": "abacus", "short_names": [ "abacus" @@ -56120,7 +58929,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 87, + "subcategory": "computer", + "sort_order": 1162, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -56136,8 +58946,8 @@ "softbank": null, "google": null, "image": "1f9ef.png", - "sheet_x": 51, - "sheet_y": 34, + "sheet_x": 52, + "sheet_y": 0, "short_name": "fire_extinguisher", "short_names": [ "fire_extinguisher" @@ -56145,7 +58955,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 228, + "subcategory": "household", + "sort_order": 1314, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -56161,8 +58972,8 @@ "softbank": null, "google": null, "image": "1f9f0.png", - "sheet_x": 51, - "sheet_y": 35, + "sheet_x": 52, + "sheet_y": 1, "short_name": "toolbox", "short_names": [ "toolbox" @@ -56170,7 +58981,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 199, + "subcategory": "tool", + "sort_order": 1277, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -56186,8 +58998,8 @@ "softbank": null, "google": null, "image": "1f9f1.png", - "sheet_x": 51, - "sheet_y": 36, + "sheet_x": 52, + "sheet_y": 2, "short_name": "bricks", "short_names": [ "bricks" @@ -56195,7 +59007,8 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 20, + "subcategory": "place-building", + "sort_order": 792, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -56211,8 +59024,8 @@ "softbank": null, "google": null, "image": "1f9f2.png", - "sheet_x": 51, - "sheet_y": 37, + "sheet_x": 52, + "sheet_y": 3, "short_name": "magnet", "short_names": [ "magnet" @@ -56220,7 +59033,8 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 200, + "subcategory": "tool", + "sort_order": 1278, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -56235,718 +59049,1813 @@ "au": null, "softbank": null, "google": null, - "image": "1f9f3.png", - "sheet_x": 51, - "sheet_y": 38, - "short_name": "luggage", + "image": "1f9f3.png", + "sheet_x": 52, + "sheet_y": 4, + "short_name": "luggage", + "short_names": [ + "luggage" + ], + "text": null, + "texts": null, + "category": "Travel & Places", + "subcategory": "hotel", + "sort_order": 909, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "LOTION BOTTLE", + "unified": "1F9F4", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9f4.png", + "sheet_x": 52, + "sheet_y": 5, + "short_name": "lotion_bottle", + "short_names": [ + "lotion_bottle" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "household", + "sort_order": 1305, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SPOOL OF THREAD", + "unified": "1F9F5", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9f5.png", + "sheet_x": 52, + "sheet_y": 6, + "short_name": "thread", + "short_names": [ + "thread" + ], + "text": null, + "texts": null, + "category": "Activities", + "subcategory": "arts & crafts", + "sort_order": 1068, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "BALL OF YARN", + "unified": "1F9F6", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9f6.png", + "sheet_x": 52, + "sheet_y": 7, + "short_name": "yarn", + "short_names": [ + "yarn" + ], + "text": null, + "texts": null, + "category": "Activities", + "subcategory": "arts & crafts", + "sort_order": 1070, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SAFETY PIN", + "unified": "1F9F7", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9f7.png", + "sheet_x": 52, + "sheet_y": 8, + "short_name": "safety_pin", + "short_names": [ + "safety_pin" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "household", + "sort_order": 1306, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "TEDDY BEAR", + "unified": "1F9F8", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9f8.png", + "sheet_x": 52, + "sheet_y": 9, + "short_name": "teddy_bear", + "short_names": [ + "teddy_bear" + ], + "text": null, + "texts": null, + "category": "Activities", + "subcategory": "game", + "sort_order": 1054, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "BROOM", + "unified": "1F9F9", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9f9.png", + "sheet_x": 52, + "sheet_y": 10, + "short_name": "broom", + "short_names": [ + "broom" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "household", + "sort_order": 1307, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "BASKET", + "unified": "1F9FA", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9fa.png", + "sheet_x": 52, + "sheet_y": 11, + "short_name": "basket", + "short_names": [ + "basket" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "household", + "sort_order": 1308, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "ROLL OF PAPER", + "unified": "1F9FB", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9fb.png", + "sheet_x": 52, + "sheet_y": 12, + "short_name": "roll_of_paper", + "short_names": [ + "roll_of_paper" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "household", + "sort_order": 1309, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "BAR OF SOAP", + "unified": "1F9FC", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9fc.png", + "sheet_x": 52, + "sheet_y": 13, + "short_name": "soap", + "short_names": [ + "soap" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "household", + "sort_order": 1311, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SPONGE", + "unified": "1F9FD", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9fd.png", + "sheet_x": 52, + "sheet_y": 14, + "short_name": "sponge", + "short_names": [ + "sponge" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "household", + "sort_order": 1313, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "RECEIPT", + "unified": "1F9FE", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9fe.png", + "sheet_x": 52, + "sheet_y": 15, + "short_name": "receipt", + "short_names": [ + "receipt" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "money", + "sort_order": 1204, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "NAZAR AMULET", + "unified": "1F9FF", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9ff.png", + "sheet_x": 52, + "sheet_y": 16, + "short_name": "nazar_amulet", + "short_names": [ + "nazar_amulet" + ], + "text": null, + "texts": null, + "category": "Activities", + "subcategory": "game", + "sort_order": 1048, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "BALLET SHOES", + "unified": "1FA70", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa70.png", + "sheet_x": 52, + "sheet_y": 17, + "short_name": "ballet_shoes", + "short_names": [ + "ballet_shoes" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1104, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "ONE-PIECE SWIMSUIT", + "unified": "1FA71", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa71.png", + "sheet_x": 52, + "sheet_y": 18, + "short_name": "one-piece_swimsuit", + "short_names": [ + "one-piece_swimsuit" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1087, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "BRIEFS", + "unified": "1FA72", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa72.png", + "sheet_x": 52, + "sheet_y": 19, + "short_name": "briefs", + "short_names": [ + "briefs" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1088, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SHORTS", + "unified": "1FA73", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa73.png", + "sheet_x": 52, + "sheet_y": 20, + "short_name": "shorts", + "short_names": [ + "shorts" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1089, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "THONG SANDAL", + "unified": "1FA74", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa74.png", + "sheet_x": 52, + "sheet_y": 21, + "short_name": "thong_sandal", + "short_names": [ + "thong_sandal" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1097, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "DROP OF BLOOD", + "unified": "1FA78", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa78.png", + "sheet_x": 52, + "sheet_y": 22, + "short_name": "drop_of_blood", + "short_names": [ + "drop_of_blood" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "medical", + "sort_order": 1288, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "ADHESIVE BANDAGE", + "unified": "1FA79", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa79.png", + "sheet_x": 52, + "sheet_y": 23, + "short_name": "adhesive_bandage", + "short_names": [ + "adhesive_bandage" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "medical", + "sort_order": 1290, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "STETHOSCOPE", + "unified": "1FA7A", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa7a.png", + "sheet_x": 52, + "sheet_y": 24, + "short_name": "stethoscope", + "short_names": [ + "stethoscope" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "medical", + "sort_order": 1291, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "YO-YO", + "unified": "1FA80", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa80.png", + "sheet_x": 52, + "sheet_y": 25, + "short_name": "yo-yo", + "short_names": [ + "yo-yo" + ], + "text": null, + "texts": null, + "category": "Activities", + "subcategory": "game", + "sort_order": 1043, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "KITE", + "unified": "1FA81", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa81.png", + "sheet_x": 52, + "sheet_y": 26, + "short_name": "kite", + "short_names": [ + "kite" + ], + "text": null, + "texts": null, + "category": "Activities", + "subcategory": "game", + "sort_order": 1044, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "PARACHUTE", + "unified": "1FA82", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa82.png", + "sheet_x": 52, + "sheet_y": 27, + "short_name": "parachute", + "short_names": [ + "parachute" + ], + "text": null, + "texts": null, + "category": "Travel & Places", + "subcategory": "transport-air", + "sort_order": 899, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "BOOMERANG", + "unified": "1FA83", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa83.png", + "sheet_x": 52, + "sheet_y": 28, + "short_name": "boomerang", + "short_names": [ + "boomerang" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "tool", + "sort_order": 1263, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "MAGIC WAND", + "unified": "1FA84", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa84.png", + "sheet_x": 52, + "sheet_y": 29, + "short_name": "magic_wand", + "short_names": [ + "magic_wand" + ], + "text": null, + "texts": null, + "category": "Activities", + "subcategory": "game", + "sort_order": 1047, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "PINATA", + "unified": "1FA85", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa85.png", + "sheet_x": 52, + "sheet_y": 30, + "short_name": "pinata", + "short_names": [ + "pinata" + ], + "text": null, + "texts": null, + "category": "Activities", + "subcategory": "game", + "sort_order": 1055, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "NESTING DOLLS", + "unified": "1FA86", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa86.png", + "sheet_x": 52, + "sheet_y": 31, + "short_name": "nesting_dolls", + "short_names": [ + "nesting_dolls" + ], + "text": null, + "texts": null, + "category": "Activities", + "subcategory": "game", + "sort_order": 1056, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "RINGED PLANET", + "unified": "1FA90", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa90.png", + "sheet_x": 52, + "sheet_y": 32, + "short_name": "ringed_planet", + "short_names": [ + "ringed_planet" + ], + "text": null, + "texts": null, + "category": "Travel & Places", + "subcategory": "sky & weather", + "sort_order": 957, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "CHAIR", + "unified": "1FA91", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa91.png", + "sheet_x": 52, + "sheet_y": 33, + "short_name": "chair", + "short_names": [ + "chair" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "household", + "sort_order": 1298, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "RAZOR", + "unified": "1FA92", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa92.png", + "sheet_x": 52, + "sheet_y": 34, + "short_name": "razor", + "short_names": [ + "razor" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "household", + "sort_order": 1304, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "AXE", + "unified": "1FA93", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa93.png", + "sheet_x": 52, + "sheet_y": 35, + "short_name": "axe", + "short_names": [ + "axe" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "tool", + "sort_order": 1256, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "DIYA LAMP", + "unified": "1FA94", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa94.png", + "sheet_x": 52, + "sheet_y": 36, + "short_name": "diya_lamp", + "short_names": [ + "diya_lamp" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "light & video", + "sort_order": 1178, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "BANJO", + "unified": "1FA95", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa95.png", + "sheet_x": 52, + "sheet_y": 37, + "short_name": "banjo", + "short_names": [ + "banjo" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "musical-instrument", + "sort_order": 1141, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "MILITARY HELMET", + "unified": "1FA96", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa96.png", + "sheet_x": 52, + "sheet_y": 38, + "short_name": "military_helmet", + "short_names": [ + "military_helmet" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1111, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "ACCORDION", + "unified": "1FA97", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa97.png", + "sheet_x": 52, + "sheet_y": 39, + "short_name": "accordion", + "short_names": [ + "accordion" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "musical-instrument", + "sort_order": 1136, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "LONG DRUM", + "unified": "1FA98", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa98.png", + "sheet_x": 52, + "sheet_y": 40, + "short_name": "long_drum", + "short_names": [ + "long_drum" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "musical-instrument", + "sort_order": 1143, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "COIN", + "unified": "1FA99", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa99.png", + "sheet_x": 52, + "sheet_y": 41, + "short_name": "coin", + "short_names": [ + "coin" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "money", + "sort_order": 1197, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "CARPENTRY SAW", + "unified": "1FA9A", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa9a.png", + "sheet_x": 52, + "sheet_y": 42, + "short_name": "carpentry_saw", + "short_names": [ + "carpentry_saw" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "tool", + "sort_order": 1266, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SCREWDRIVER", + "unified": "1FA9B", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa9b.png", + "sheet_x": 52, + "sheet_y": 43, + "short_name": "screwdriver", + "short_names": [ + "screwdriver" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "tool", + "sort_order": 1268, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "LADDER", + "unified": "1FA9C", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa9c.png", + "sheet_x": 52, + "sheet_y": 44, + "short_name": "ladder", + "short_names": [ + "ladder" + ], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "tool", + "sort_order": 1279, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "HOOK", + "unified": "1FA9D", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa9d.png", + "sheet_x": 52, + "sheet_y": 45, + "short_name": "hook", "short_names": [ - "luggage" + "hook" ], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 132, - "added_in": "11.0", + "category": "Objects", + "subcategory": "tool", + "sort_order": 1276, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "LOTION BOTTLE", - "unified": "1F9F4", + "name": "MIRROR", + "unified": "1FA9E", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9f4.png", - "sheet_x": 51, - "sheet_y": 39, - "short_name": "lotion_bottle", + "image": "1fa9e.png", + "sheet_x": 52, + "sheet_y": 46, + "short_name": "mirror", "short_names": [ - "lotion_bottle" + "mirror" ], "text": null, "texts": null, "category": "Objects", - "sort_order": 221, - "added_in": "11.0", + "subcategory": "household", + "sort_order": 1294, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "SPOOL OF THREAD", - "unified": "1F9F5", + "name": "WINDOW", + "unified": "1FA9F", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9f5.png", - "sheet_x": 51, - "sheet_y": 40, - "short_name": "thread", + "image": "1fa9f.png", + "sheet_x": 52, + "sheet_y": 47, + "short_name": "window", "short_names": [ - "thread" + "window" ], "text": null, "texts": null, - "category": "Activities", - "sort_order": 78, - "added_in": "11.0", + "category": "Objects", + "subcategory": "household", + "sort_order": 1295, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "BALL OF YARN", - "unified": "1F9F6", + "name": "PLUNGER", + "unified": "1FAA0", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9f6.png", - "sheet_x": 51, - "sheet_y": 41, - "short_name": "yarn", + "image": "1faa0.png", + "sheet_x": 52, + "sheet_y": 48, + "short_name": "plunger", "short_names": [ - "yarn" + "plunger" ], "text": null, "texts": null, - "category": "Activities", - "sort_order": 79, - "added_in": "11.0", + "category": "Objects", + "subcategory": "household", + "sort_order": 1300, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "SAFETY PIN", - "unified": "1F9F7", + "name": "SEWING NEEDLE", + "unified": "1FAA1", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9f7.png", - "sheet_x": 51, - "sheet_y": 42, - "short_name": "safety_pin", + "image": "1faa1.png", + "sheet_x": 52, + "sheet_y": 49, + "short_name": "sewing_needle", "short_names": [ - "safety_pin" + "sewing_needle" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 222, - "added_in": "11.0", + "category": "Activities", + "subcategory": "arts & crafts", + "sort_order": 1069, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "TEDDY BEAR", - "unified": "1F9F8", + "name": "KNOT", + "unified": "1FAA2", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9f8.png", - "sheet_x": 51, - "sheet_y": 43, - "short_name": "teddy_bear", + "image": "1faa2.png", + "sheet_x": 52, + "sheet_y": 50, + "short_name": "knot", "short_names": [ - "teddy_bear" + "knot" ], "text": null, "texts": null, "category": "Activities", - "sort_order": 66, - "added_in": "11.0", + "subcategory": "arts & crafts", + "sort_order": 1071, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "BROOM", - "unified": "1F9F9", + "name": "BUCKET", + "unified": "1FAA3", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9f9.png", - "sheet_x": 51, - "sheet_y": 44, - "short_name": "broom", + "image": "1faa3.png", + "sheet_x": 52, + "sheet_y": 51, + "short_name": "bucket", "short_names": [ - "broom" + "bucket" ], "text": null, "texts": null, "category": "Objects", - "sort_order": 223, - "added_in": "11.0", + "subcategory": "household", + "sort_order": 1310, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "BASKET", - "unified": "1F9FA", + "name": "MOUSE TRAP", + "unified": "1FAA4", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9fa.png", - "sheet_x": 51, - "sheet_y": 45, - "short_name": "basket", + "image": "1faa4.png", + "sheet_x": 52, + "sheet_y": 52, + "short_name": "mouse_trap", "short_names": [ - "basket" + "mouse_trap" ], "text": null, "texts": null, "category": "Objects", - "sort_order": 224, - "added_in": "11.0", + "subcategory": "household", + "sort_order": 1303, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "ROLL OF PAPER", - "unified": "1F9FB", + "name": "TOOTHBRUSH", + "unified": "1FAA5", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9fb.png", - "sheet_x": 51, - "sheet_y": 46, - "short_name": "roll_of_paper", + "image": "1faa5.png", + "sheet_x": 52, + "sheet_y": 53, + "short_name": "toothbrush", "short_names": [ - "roll_of_paper" + "toothbrush" ], "text": null, "texts": null, "category": "Objects", - "sort_order": 225, - "added_in": "11.0", + "subcategory": "household", + "sort_order": 1312, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "BAR OF SOAP", - "unified": "1F9FC", + "name": "HEADSTONE", + "unified": "1FAA6", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9fc.png", - "sheet_x": 51, - "sheet_y": 47, - "short_name": "soap", + "image": "1faa6.png", + "sheet_x": 52, + "sheet_y": 54, + "short_name": "headstone", "short_names": [ - "soap" + "headstone" ], "text": null, "texts": null, "category": "Objects", - "sort_order": 226, - "added_in": "11.0", + "subcategory": "other-object", + "sort_order": 1318, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "SPONGE", - "unified": "1F9FD", + "name": "PLACARD", + "unified": "1FAA7", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9fd.png", - "sheet_x": 51, - "sheet_y": 48, - "short_name": "sponge", + "image": "1faa7.png", + "sheet_x": 52, + "sheet_y": 55, + "short_name": "placard", "short_names": [ - "sponge" + "placard" ], "text": null, "texts": null, "category": "Objects", - "sort_order": 227, - "added_in": "11.0", + "subcategory": "other-object", + "sort_order": 1321, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "RECEIPT", - "unified": "1F9FE", + "name": "ROCK", + "unified": "1FAA8", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9fe.png", - "sheet_x": 51, - "sheet_y": 49, - "short_name": "receipt", + "image": "1faa8.png", + "sheet_x": 52, + "sheet_y": 56, + "short_name": "rock", "short_names": [ - "receipt" + "rock" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 128, - "added_in": "11.0", + "category": "Travel & Places", + "subcategory": "place-building", + "sort_order": 793, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "NAZAR AMULET", - "unified": "1F9FF", + "name": "FLY", + "unified": "1FAB0", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9ff.png", - "sheet_x": 51, - "sheet_y": 50, - "short_name": "nazar_amulet", + "image": "1fab0.png", + "sheet_x": 52, + "sheet_y": 57, + "short_name": "fly", "short_names": [ - "nazar_amulet" + "fly" ], "text": null, "texts": null, - "category": "Activities", - "sort_order": 60, - "added_in": "11.0", + "category": "Animals & Nature", + "subcategory": "animal-bug", + "sort_order": 618, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "BALLET SHOES", - "unified": "1FA70", + "name": "WORM", + "unified": "1FAB1", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa70.png", - "sheet_x": 51, - "sheet_y": 51, - "short_name": "ballet_shoes", + "image": "1fab1.png", + "sheet_x": 53, + "sheet_y": 0, + "short_name": "worm", "short_names": [ - "ballet_shoes" + "worm" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 32, - "added_in": "12.1", + "category": "Animals & Nature", + "subcategory": "animal-bug", + "sort_order": 619, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "ONE-PIECE SWIMSUIT", - "unified": "1FA71", + "name": "BEETLE", + "unified": "1FAB2", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa71.png", - "sheet_x": 51, - "sheet_y": 52, - "short_name": "one-piece_swimsuit", + "image": "1fab2.png", + "sheet_x": 53, + "sheet_y": 1, + "short_name": "beetle", "short_names": [ - "one-piece_swimsuit" + "beetle" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 16, - "added_in": "12.1", + "category": "Animals & Nature", + "subcategory": "animal-bug", + "sort_order": 610, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "BRIEFS", - "unified": "1FA72", + "name": "COCKROACH", + "unified": "1FAB3", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa72.png", - "sheet_x": 51, - "sheet_y": 53, - "short_name": "briefs", + "image": "1fab3.png", + "sheet_x": 53, + "sheet_y": 2, + "short_name": "cockroach", "short_names": [ - "briefs" + "cockroach" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 17, - "added_in": "12.1", + "category": "Animals & Nature", + "subcategory": "animal-bug", + "sort_order": 613, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "SHORTS", - "unified": "1FA73", + "name": "POTTED PLANT", + "unified": "1FAB4", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa73.png", - "sheet_x": 51, - "sheet_y": 54, - "short_name": "shorts", + "image": "1fab4.png", + "sheet_x": 53, + "sheet_y": 3, + "short_name": "potted_plant", "short_names": [ - "shorts" + "potted_plant" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 18, - "added_in": "12.1", + "category": "Animals & Nature", + "subcategory": "plant-other", + "sort_order": 632, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "DROP OF BLOOD", - "unified": "1FA78", + "name": "WOOD", + "unified": "1FAB5", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa78.png", - "sheet_x": 51, - "sheet_y": 55, - "short_name": "drop_of_blood", + "image": "1fab5.png", + "sheet_x": 53, + "sheet_y": 4, + "short_name": "wood", "short_names": [ - "drop_of_blood" + "wood" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 209, - "added_in": "12.1", + "category": "Travel & Places", + "subcategory": "place-building", + "sort_order": 794, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "ADHESIVE BANDAGE", - "unified": "1FA79", + "name": "FEATHER", + "unified": "1FAB6", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa79.png", - "sheet_x": 51, - "sheet_y": 56, - "short_name": "adhesive_bandage", + "image": "1fab6.png", + "sheet_x": 53, + "sheet_y": 5, + "short_name": "feather", "short_names": [ - "adhesive_bandage" + "feather" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 211, - "added_in": "12.1", + "category": "Animals & Nature", + "subcategory": "animal-bird", + "sort_order": 582, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "STETHOSCOPE", - "unified": "1FA7A", + "name": "ANATOMICAL HEART", + "unified": "1FAC0", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa7a.png", - "sheet_x": 52, - "sheet_y": 0, - "short_name": "stethoscope", + "image": "1fac0.png", + "sheet_x": 53, + "sheet_y": 6, + "short_name": "anatomical_heart", "short_names": [ - "stethoscope" + "anatomical_heart" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 212, - "added_in": "12.1", + "category": "People & Body", + "subcategory": "body-parts", + "sort_order": 195, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "YO-YO", - "unified": "1FA80", + "name": "LUNGS", + "unified": "1FAC1", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa80.png", - "sheet_x": 52, - "sheet_y": 1, - "short_name": "yo-yo", + "image": "1fac1.png", + "sheet_x": 53, + "sheet_y": 7, + "short_name": "lungs", "short_names": [ - "yo-yo" + "lungs" ], "text": null, "texts": null, - "category": "Activities", - "sort_order": 56, - "added_in": "12.1", + "category": "People & Body", + "subcategory": "body-parts", + "sort_order": 196, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "KITE", - "unified": "1FA81", + "name": "PEOPLE HUGGING", + "unified": "1FAC2", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa81.png", - "sheet_x": 52, - "sheet_y": 2, - "short_name": "kite", + "image": "1fac2.png", + "sheet_x": 53, + "sheet_y": 8, + "short_name": "people_hugging", "short_names": [ - "kite" + "people_hugging" ], "text": null, "texts": null, - "category": "Activities", - "sort_order": 57, - "added_in": "12.1", + "category": "People & Body", + "subcategory": "person-symbol", + "sort_order": 497, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "PARACHUTE", - "unified": "1FA82", + "name": "BLUEBERRIES", + "unified": "1FAD0", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa82.png", - "sheet_x": 52, - "sheet_y": 3, - "short_name": "parachute", + "image": "1fad0.png", + "sheet_x": 53, + "sheet_y": 9, + "short_name": "blueberries", "short_names": [ - "parachute" + "blueberries" ], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 122, - "added_in": "12.1", + "category": "Food & Drink", + "subcategory": "food-fruit", + "sort_order": 658, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "RINGED PLANET", - "unified": "1FA90", + "name": "BELL PEPPER", + "unified": "1FAD1", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa90.png", - "sheet_x": 52, - "sheet_y": 4, - "short_name": "ringed_planet", + "image": "1fad1.png", + "sheet_x": 53, + "sheet_y": 10, + "short_name": "bell_pepper", "short_names": [ - "ringed_planet" + "bell_pepper" ], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 180, - "added_in": "12.1", + "category": "Food & Drink", + "subcategory": "food-vegetable", + "sort_order": 669, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "CHAIR", - "unified": "1FA91", + "name": "OLIVE", + "unified": "1FAD2", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa91.png", - "sheet_x": 52, - "sheet_y": 5, - "short_name": "chair", + "image": "1fad2.png", + "sheet_x": 53, + "sheet_y": 11, + "short_name": "olive", "short_names": [ - "chair" + "olive" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 216, - "added_in": "12.1", + "category": "Food & Drink", + "subcategory": "food-fruit", + "sort_order": 661, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "RAZOR", - "unified": "1FA92", + "name": "FLATBREAD", + "unified": "1FAD3", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa92.png", - "sheet_x": 52, - "sheet_y": 6, - "short_name": "razor", + "image": "1fad3.png", + "sheet_x": 53, + "sheet_y": 12, + "short_name": "flatbread", "short_names": [ - "razor" + "flatbread" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 220, - "added_in": "12.1", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 681, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "AXE", - "unified": "1FA93", + "name": "TAMALE", + "unified": "1FAD4", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa93.png", - "sheet_x": 52, - "sheet_y": 7, - "short_name": "axe", + "image": "1fad4.png", + "sheet_x": 53, + "sheet_y": 13, + "short_name": "tamale", "short_names": [ - "axe" + "tamale" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 182, - "added_in": "12.1", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 698, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "DIYA LAMP", - "unified": "1FA94", + "name": "FONDUE", + "unified": "1FAD5", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa94.png", - "sheet_x": 52, - "sheet_y": 8, - "short_name": "diya_lamp", + "image": "1fad5.png", + "sheet_x": 53, + "sheet_y": 14, + "short_name": "fondue", "short_names": [ - "diya_lamp" + "fondue" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 103, - "added_in": "12.1", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 705, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": "BANJO", - "unified": "1FA95", + "name": "TEAPOT", + "unified": "1FAD6", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1fa95.png", - "sheet_x": 52, - "sheet_y": 9, - "short_name": "banjo", + "image": "1fad6.png", + "sheet_x": 53, + "sheet_y": 15, + "short_name": "teapot", "short_names": [ - "banjo" + "teapot" ], "text": null, "texts": null, - "category": "Objects", - "sort_order": 67, - "added_in": "12.1", + "category": "Food & Drink", + "subcategory": "drink", + "sort_order": 751, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -56961,8 +60870,8 @@ "softbank": null, "google": "FEB06", "image": "203c-fe0f.png", - "sheet_x": 52, - "sheet_y": 10, + "sheet_x": 53, + "sheet_y": 16, "short_name": "bangbang", "short_names": [ "bangbang" @@ -56970,8 +60879,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 122, - "added_in": "2.0", + "subcategory": "punctuation", + "sort_order": 1426, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -56986,8 +60896,8 @@ "softbank": null, "google": "FEB05", "image": "2049-fe0f.png", - "sheet_x": 52, - "sheet_y": 11, + "sheet_x": 53, + "sheet_y": 17, "short_name": "interrobang", "short_names": [ "interrobang" @@ -56995,8 +60905,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 123, - "added_in": "2.0", + "subcategory": "punctuation", + "sort_order": 1427, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57011,8 +60922,8 @@ "softbank": "E537", "google": "FEB2A", "image": "2122-fe0f.png", - "sheet_x": 52, - "sheet_y": 12, + "sheet_x": 53, + "sheet_y": 18, "short_name": "tm", "short_names": [ "tm" @@ -57020,8 +60931,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 131, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1455, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57036,8 +60948,8 @@ "softbank": null, "google": "FEB47", "image": "2139-fe0f.png", - "sheet_x": 52, - "sheet_y": 13, + "sheet_x": 53, + "sheet_y": 19, "short_name": "information_source", "short_names": [ "information_source" @@ -57045,8 +60957,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 156, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1480, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57061,8 +60974,8 @@ "softbank": null, "google": "FEAF6", "image": "2194-fe0f.png", - "sheet_x": 52, - "sheet_y": 14, + "sheet_x": 53, + "sheet_y": 20, "short_name": "left_right_arrow", "short_names": [ "left_right_arrow" @@ -57070,8 +60983,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 36, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1357, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57086,8 +61000,8 @@ "softbank": null, "google": "FEAF7", "image": "2195-fe0f.png", - "sheet_x": 52, - "sheet_y": 15, + "sheet_x": 53, + "sheet_y": 21, "short_name": "arrow_up_down", "short_names": [ "arrow_up_down" @@ -57095,8 +61009,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 35, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1356, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57111,8 +61026,8 @@ "softbank": "E237", "google": "FEAF2", "image": "2196-fe0f.png", - "sheet_x": 52, - "sheet_y": 16, + "sheet_x": 53, + "sheet_y": 22, "short_name": "arrow_upper_left", "short_names": [ "arrow_upper_left" @@ -57120,8 +61035,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 34, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1355, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57136,8 +61052,8 @@ "softbank": "E236", "google": "FEAF0", "image": "2197-fe0f.png", - "sheet_x": 52, - "sheet_y": 17, + "sheet_x": 53, + "sheet_y": 23, "short_name": "arrow_upper_right", "short_names": [ "arrow_upper_right" @@ -57145,8 +61061,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 28, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1349, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57161,8 +61078,8 @@ "softbank": "E238", "google": "FEAF1", "image": "2198-fe0f.png", - "sheet_x": 52, - "sheet_y": 18, + "sheet_x": 53, + "sheet_y": 24, "short_name": "arrow_lower_right", "short_names": [ "arrow_lower_right" @@ -57170,8 +61087,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 30, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1351, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57186,8 +61104,8 @@ "softbank": "E239", "google": "FEAF3", "image": "2199-fe0f.png", - "sheet_x": 52, - "sheet_y": 19, + "sheet_x": 53, + "sheet_y": 25, "short_name": "arrow_lower_left", "short_names": [ "arrow_lower_left" @@ -57195,8 +61113,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 32, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1353, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57211,8 +61130,8 @@ "softbank": null, "google": "FEB83", "image": "21a9-fe0f.png", - "sheet_x": 52, - "sheet_y": 20, + "sheet_x": 53, + "sheet_y": 26, "short_name": "leftwards_arrow_with_hook", "short_names": [ "leftwards_arrow_with_hook" @@ -57220,8 +61139,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 37, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1358, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57236,8 +61156,8 @@ "softbank": null, "google": "FEB88", "image": "21aa-fe0f.png", - "sheet_x": 52, - "sheet_y": 21, + "sheet_x": 53, + "sheet_y": 27, "short_name": "arrow_right_hook", "short_names": [ "arrow_right_hook" @@ -57245,8 +61165,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 38, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1359, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57261,8 +61182,8 @@ "softbank": null, "google": "FE01D", "image": "231a.png", - "sheet_x": 52, - "sheet_y": 22, + "sheet_x": 53, + "sheet_y": 28, "short_name": "watch", "short_names": [ "watch" @@ -57270,8 +61191,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 135, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 912, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57286,8 +61208,8 @@ "softbank": null, "google": "FE01C", "image": "231b.png", - "sheet_x": 52, - "sheet_y": 23, + "sheet_x": 53, + "sheet_y": 29, "short_name": "hourglass", "short_names": [ "hourglass" @@ -57295,15 +61217,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 133, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 910, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "KEYBOARD", "unified": "2328-FE0F", "non_qualified": "2328", "docomo": null, @@ -57311,8 +61234,8 @@ "softbank": null, "google": null, "image": "2328-fe0f.png", - "sheet_x": 52, - "sheet_y": 24, + "sheet_x": 53, + "sheet_y": 30, "short_name": "keyboard", "short_names": [ "keyboard" @@ -57320,15 +61243,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 80, - "added_in": "2.0", + "subcategory": "computer", + "sort_order": 1155, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "EJECT BUTTON", "unified": "23CF-FE0F", "non_qualified": "23CF", "docomo": null, @@ -57336,8 +61260,8 @@ "softbank": null, "google": null, "image": "23cf-fe0f.png", - "sheet_x": 52, - "sheet_y": 25, + "sheet_x": 53, + "sheet_y": 31, "short_name": "eject", "short_names": [ "eject" @@ -57345,8 +61269,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 90, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1411, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57361,8 +61286,8 @@ "softbank": "E23C", "google": "FEAFE", "image": "23e9.png", - "sheet_x": 52, - "sheet_y": 26, + "sheet_x": 53, + "sheet_y": 32, "short_name": "fast_forward", "short_names": [ "fast_forward" @@ -57370,8 +61295,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 77, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1398, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57386,8 +61312,8 @@ "softbank": "E23D", "google": "FEAFF", "image": "23ea.png", - "sheet_x": 52, - "sheet_y": 27, + "sheet_x": 53, + "sheet_y": 33, "short_name": "rewind", "short_names": [ "rewind" @@ -57395,8 +61321,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 81, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1402, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57411,8 +61338,8 @@ "softbank": null, "google": "FEB03", "image": "23eb.png", - "sheet_x": 52, - "sheet_y": 28, + "sheet_x": 53, + "sheet_y": 34, "short_name": "arrow_double_up", "short_names": [ "arrow_double_up" @@ -57420,8 +61347,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 84, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1405, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57436,8 +61364,8 @@ "softbank": null, "google": "FEB02", "image": "23ec.png", - "sheet_x": 52, - "sheet_y": 29, + "sheet_x": 53, + "sheet_y": 35, "short_name": "arrow_double_down", "short_names": [ "arrow_double_down" @@ -57445,15 +61373,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 86, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1407, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "NEXT TRACK BUTTON", "unified": "23ED-FE0F", "non_qualified": "23ED", "docomo": null, @@ -57461,8 +61390,8 @@ "softbank": null, "google": null, "image": "23ed-fe0f.png", - "sheet_x": 52, - "sheet_y": 30, + "sheet_x": 53, + "sheet_y": 36, "short_name": "black_right_pointing_double_triangle_with_vertical_bar", "short_names": [ "black_right_pointing_double_triangle_with_vertical_bar" @@ -57470,15 +61399,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 78, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1399, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "LAST TRACK BUTTON", "unified": "23EE-FE0F", "non_qualified": "23EE", "docomo": null, @@ -57486,8 +61416,8 @@ "softbank": null, "google": null, "image": "23ee-fe0f.png", - "sheet_x": 52, - "sheet_y": 31, + "sheet_x": 53, + "sheet_y": 37, "short_name": "black_left_pointing_double_triangle_with_vertical_bar", "short_names": [ "black_left_pointing_double_triangle_with_vertical_bar" @@ -57495,15 +61425,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 82, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1403, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "PLAY OR PAUSE BUTTON", "unified": "23EF-FE0F", "non_qualified": "23EF", "docomo": null, @@ -57511,8 +61442,8 @@ "softbank": null, "google": null, "image": "23ef-fe0f.png", - "sheet_x": 52, - "sheet_y": 32, + "sheet_x": 53, + "sheet_y": 38, "short_name": "black_right_pointing_triangle_with_double_vertical_bar", "short_names": [ "black_right_pointing_triangle_with_double_vertical_bar" @@ -57520,8 +61451,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 79, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1400, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57536,8 +61468,8 @@ "softbank": null, "google": "FE02A", "image": "23f0.png", - "sheet_x": 52, - "sheet_y": 33, + "sheet_x": 53, + "sheet_y": 39, "short_name": "alarm_clock", "short_names": [ "alarm_clock" @@ -57545,15 +61477,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 136, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 913, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "STOPWATCH", "unified": "23F1-FE0F", "non_qualified": "23F1", "docomo": null, @@ -57561,8 +61494,8 @@ "softbank": null, "google": null, "image": "23f1-fe0f.png", - "sheet_x": 52, - "sheet_y": 34, + "sheet_x": 53, + "sheet_y": 40, "short_name": "stopwatch", "short_names": [ "stopwatch" @@ -57570,15 +61503,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 137, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 914, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "TIMER CLOCK", "unified": "23F2-FE0F", "non_qualified": "23F2", "docomo": null, @@ -57586,8 +61520,8 @@ "softbank": null, "google": null, "image": "23f2-fe0f.png", - "sheet_x": 52, - "sheet_y": 35, + "sheet_x": 53, + "sheet_y": 41, "short_name": "timer_clock", "short_names": [ "timer_clock" @@ -57595,8 +61529,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 138, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 915, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57611,8 +61546,8 @@ "softbank": null, "google": "FE01B", "image": "23f3.png", - "sheet_x": 52, - "sheet_y": 36, + "sheet_x": 53, + "sheet_y": 42, "short_name": "hourglass_flowing_sand", "short_names": [ "hourglass_flowing_sand" @@ -57620,15 +61555,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 134, - "added_in": "2.0", + "subcategory": "time", + "sort_order": 911, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "PAUSE BUTTON", "unified": "23F8-FE0F", "non_qualified": "23F8", "docomo": null, @@ -57636,8 +61572,8 @@ "softbank": null, "google": null, "image": "23f8-fe0f.png", - "sheet_x": 52, - "sheet_y": 37, + "sheet_x": 53, + "sheet_y": 43, "short_name": "double_vertical_bar", "short_names": [ "double_vertical_bar" @@ -57645,15 +61581,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 87, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1408, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "STOP BUTTON", "unified": "23F9-FE0F", "non_qualified": "23F9", "docomo": null, @@ -57661,8 +61598,8 @@ "softbank": null, "google": null, "image": "23f9-fe0f.png", - "sheet_x": 52, - "sheet_y": 38, + "sheet_x": 53, + "sheet_y": 44, "short_name": "black_square_for_stop", "short_names": [ "black_square_for_stop" @@ -57670,15 +61607,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 88, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1409, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "RECORD BUTTON", "unified": "23FA-FE0F", "non_qualified": "23FA", "docomo": null, @@ -57686,8 +61624,8 @@ "softbank": null, "google": null, "image": "23fa-fe0f.png", - "sheet_x": 52, - "sheet_y": 39, + "sheet_x": 53, + "sheet_y": 45, "short_name": "black_circle_for_record", "short_names": [ "black_circle_for_record" @@ -57695,8 +61633,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 89, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1410, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57711,8 +61650,8 @@ "softbank": null, "google": "FE7E1", "image": "24c2-fe0f.png", - "sheet_x": 52, - "sheet_y": 40, + "sheet_x": 53, + "sheet_y": 46, "short_name": "m", "short_names": [ "m" @@ -57720,8 +61659,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 158, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1482, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57736,8 +61676,8 @@ "softbank": null, "google": "FEB6E", "image": "25aa-fe0f.png", - "sheet_x": 52, - "sheet_y": 41, + "sheet_x": 53, + "sheet_y": 47, "short_name": "black_small_square", "short_names": [ "black_small_square" @@ -57745,8 +61685,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 206, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1530, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57761,8 +61702,8 @@ "softbank": null, "google": "FEB6D", "image": "25ab-fe0f.png", - "sheet_x": 52, - "sheet_y": 42, + "sheet_x": 53, + "sheet_y": 48, "short_name": "white_small_square", "short_names": [ "white_small_square" @@ -57770,8 +61711,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 207, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1531, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57786,8 +61728,8 @@ "softbank": "E23A", "google": "FEAFC", "image": "25b6-fe0f.png", - "sheet_x": 52, - "sheet_y": 43, + "sheet_x": 53, + "sheet_y": 49, "short_name": "arrow_forward", "short_names": [ "arrow_forward" @@ -57795,8 +61737,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 76, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1397, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57811,8 +61754,8 @@ "softbank": "E23B", "google": "FEAFD", "image": "25c0-fe0f.png", - "sheet_x": 52, - "sheet_y": 44, + "sheet_x": 53, + "sheet_y": 50, "short_name": "arrow_backward", "short_names": [ "arrow_backward" @@ -57820,8 +61763,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 80, - "added_in": "2.0", + "subcategory": "av-symbol", + "sort_order": 1401, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57836,8 +61780,8 @@ "softbank": null, "google": "FEB71", "image": "25fb-fe0f.png", - "sheet_x": 52, - "sheet_y": 45, + "sheet_x": 53, + "sheet_y": 51, "short_name": "white_medium_square", "short_names": [ "white_medium_square" @@ -57845,8 +61789,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 203, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1527, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57861,8 +61806,8 @@ "softbank": null, "google": "FEB72", "image": "25fc-fe0f.png", - "sheet_x": 52, - "sheet_y": 46, + "sheet_x": 53, + "sheet_y": 52, "short_name": "black_medium_square", "short_names": [ "black_medium_square" @@ -57870,8 +61815,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 202, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1526, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57886,8 +61832,8 @@ "softbank": null, "google": "FEB6F", "image": "25fd.png", - "sheet_x": 52, - "sheet_y": 47, + "sheet_x": 53, + "sheet_y": 53, "short_name": "white_medium_small_square", "short_names": [ "white_medium_small_square" @@ -57895,8 +61841,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 205, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1529, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57911,8 +61858,8 @@ "softbank": null, "google": "FEB70", "image": "25fe.png", - "sheet_x": 52, - "sheet_y": 48, + "sheet_x": 53, + "sheet_y": 54, "short_name": "black_medium_small_square", "short_names": [ "black_medium_small_square" @@ -57920,8 +61867,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 204, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1528, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57936,8 +61884,8 @@ "softbank": "E04A", "google": "FE000", "image": "2600-fe0f.png", - "sheet_x": 52, - "sheet_y": 49, + "sheet_x": 53, + "sheet_y": 55, "short_name": "sunny", "short_names": [ "sunny" @@ -57945,8 +61893,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 177, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 954, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -57961,8 +61910,8 @@ "softbank": "E049", "google": "FE001", "image": "2601-fe0f.png", - "sheet_x": 52, - "sheet_y": 50, + "sheet_x": 53, + "sheet_y": 56, "short_name": "cloud", "short_names": [ "cloud" @@ -57970,15 +61919,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 185, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 962, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "UMBRELLA", "unified": "2602-FE0F", "non_qualified": "2602", "docomo": null, @@ -57986,8 +61936,8 @@ "softbank": null, "google": null, "image": "2602-fe0f.png", - "sheet_x": 52, - "sheet_y": 51, + "sheet_x": 53, + "sheet_y": 57, "short_name": "umbrella", "short_names": [ "umbrella" @@ -57995,15 +61945,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 200, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 977, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SNOWMAN", "unified": "2603-FE0F", "non_qualified": "2603", "docomo": null, @@ -58011,8 +61962,8 @@ "softbank": null, "google": null, "image": "2603-fe0f.png", - "sheet_x": 52, - "sheet_y": 52, + "sheet_x": 54, + "sheet_y": 0, "short_name": "snowman", "short_names": [ "snowman" @@ -58020,15 +61971,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 205, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 982, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "COMET", "unified": "2604-FE0F", "non_qualified": "2604", "docomo": null, @@ -58036,8 +61988,8 @@ "softbank": null, "google": null, "image": "2604-fe0f.png", - "sheet_x": 52, - "sheet_y": 53, + "sheet_x": 54, + "sheet_y": 1, "short_name": "comet", "short_names": [ "comet" @@ -58045,8 +61997,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 207, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 984, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58061,8 +62014,8 @@ "softbank": "E009", "google": "FE523", "image": "260e-fe0f.png", - "sheet_x": 52, - "sheet_y": 54, + "sheet_x": 54, + "sheet_y": 2, "short_name": "phone", "short_names": [ "phone", @@ -58071,8 +62024,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 71, - "added_in": "2.0", + "subcategory": "phone", + "sort_order": 1146, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58087,8 +62041,8 @@ "softbank": null, "google": "FEB8B", "image": "2611-fe0f.png", - "sheet_x": 52, - "sheet_y": 55, + "sheet_x": 54, + "sheet_y": 3, "short_name": "ballot_box_with_check", "short_names": [ "ballot_box_with_check" @@ -58096,8 +62050,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 108, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1443, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58112,8 +62067,8 @@ "softbank": "E04B", "google": "FE002", "image": "2614.png", - "sheet_x": 52, - "sheet_y": 56, + "sheet_x": 54, + "sheet_y": 4, "short_name": "umbrella_with_rain_drops", "short_names": [ "umbrella_with_rain_drops" @@ -58121,8 +62076,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 201, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 978, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58137,8 +62093,8 @@ "softbank": "E045", "google": "FE981", "image": "2615.png", - "sheet_x": 53, - "sheet_y": 0, + "sheet_x": 54, + "sheet_y": 5, "short_name": "coffee", "short_names": [ "coffee" @@ -58146,15 +62102,16 @@ "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 101, - "added_in": "2.0", + "subcategory": "drink", + "sort_order": 750, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SHAMROCK", "unified": "2618-FE0F", "non_qualified": "2618", "docomo": null, @@ -58162,8 +62119,8 @@ "softbank": null, "google": null, "image": "2618-fe0f.png", - "sheet_x": 53, - "sheet_y": 1, + "sheet_x": 54, + "sheet_y": 6, "short_name": "shamrock", "short_names": [ "shamrock" @@ -58171,8 +62128,9 @@ "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 123, - "added_in": "2.0", + "subcategory": "plant-other", + "sort_order": 639, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58187,8 +62145,8 @@ "softbank": "E00F", "google": "FEB98", "image": "261d-fe0f.png", - "sheet_x": 53, - "sheet_y": 2, + "sheet_x": 54, + "sheet_y": 7, "short_name": "point_up", "short_names": [ "point_up" @@ -58196,8 +62154,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 18, - "added_in": "2.0", + "subcategory": "hand-single-finger", + "sort_order": 170, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58207,9 +62166,9 @@ "unified": "261D-1F3FB", "non_qualified": null, "image": "261d-1f3fb.png", - "sheet_x": 53, - "sheet_y": 3, - "added_in": "2.0", + "sheet_x": 54, + "sheet_y": 8, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58219,9 +62178,9 @@ "unified": "261D-1F3FC", "non_qualified": null, "image": "261d-1f3fc.png", - "sheet_x": 53, - "sheet_y": 4, - "added_in": "2.0", + "sheet_x": 54, + "sheet_y": 9, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58231,9 +62190,9 @@ "unified": "261D-1F3FD", "non_qualified": null, "image": "261d-1f3fd.png", - "sheet_x": 53, - "sheet_y": 5, - "added_in": "2.0", + "sheet_x": 54, + "sheet_y": 10, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58243,9 +62202,9 @@ "unified": "261D-1F3FE", "non_qualified": null, "image": "261d-1f3fe.png", - "sheet_x": 53, - "sheet_y": 6, - "added_in": "2.0", + "sheet_x": 54, + "sheet_y": 11, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58255,9 +62214,9 @@ "unified": "261D-1F3FF", "non_qualified": null, "image": "261d-1f3ff.png", - "sheet_x": 53, - "sheet_y": 7, - "added_in": "2.0", + "sheet_x": 54, + "sheet_y": 12, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58266,7 +62225,7 @@ } }, { - "name": null, + "name": "SKULL AND CROSSBONES", "unified": "2620-FE0F", "non_qualified": "2620", "docomo": null, @@ -58274,8 +62233,8 @@ "softbank": null, "google": null, "image": "2620-fe0f.png", - "sheet_x": 53, - "sheet_y": 8, + "sheet_x": 54, + "sheet_y": 13, "short_name": "skull_and_crossbones", "short_names": [ "skull_and_crossbones" @@ -58283,15 +62242,16 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 94, - "added_in": "2.0", + "subcategory": "face-negative", + "sort_order": 96, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "RADIOACTIVE", "unified": "2622-FE0F", "non_qualified": "2622", "docomo": null, @@ -58299,8 +62259,8 @@ "softbank": null, "google": null, "image": "2622-fe0f.png", - "sheet_x": 53, - "sheet_y": 9, + "sheet_x": 54, + "sheet_y": 14, "short_name": "radioactive_sign", "short_names": [ "radioactive_sign" @@ -58308,15 +62268,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 25, - "added_in": "2.0", + "subcategory": "warning", + "sort_order": 1346, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "BIOHAZARD", "unified": "2623-FE0F", "non_qualified": "2623", "docomo": null, @@ -58324,8 +62285,8 @@ "softbank": null, "google": null, "image": "2623-fe0f.png", - "sheet_x": 53, - "sheet_y": 10, + "sheet_x": 54, + "sheet_y": 15, "short_name": "biohazard_sign", "short_names": [ "biohazard_sign" @@ -58333,15 +62294,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 26, - "added_in": "2.0", + "subcategory": "warning", + "sort_order": 1347, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "ORTHODOX CROSS", "unified": "2626-FE0F", "non_qualified": "2626", "docomo": null, @@ -58349,8 +62311,8 @@ "softbank": null, "google": null, "image": "2626-fe0f.png", - "sheet_x": 53, - "sheet_y": 11, + "sheet_x": 54, + "sheet_y": 16, "short_name": "orthodox_cross", "short_names": [ "orthodox_cross" @@ -58358,15 +62320,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 55, - "added_in": "2.0", + "subcategory": "religion", + "sort_order": 1376, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "STAR AND CRESCENT", "unified": "262A-FE0F", "non_qualified": "262A", "docomo": null, @@ -58374,8 +62337,8 @@ "softbank": null, "google": null, "image": "262a-fe0f.png", - "sheet_x": 53, - "sheet_y": 12, + "sheet_x": 54, + "sheet_y": 17, "short_name": "star_and_crescent", "short_names": [ "star_and_crescent" @@ -58383,15 +62346,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 56, - "added_in": "2.0", + "subcategory": "religion", + "sort_order": 1377, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "PEACE SYMBOL", "unified": "262E-FE0F", "non_qualified": "262E", "docomo": null, @@ -58399,8 +62363,8 @@ "softbank": null, "google": null, "image": "262e-fe0f.png", - "sheet_x": 53, - "sheet_y": 13, + "sheet_x": 54, + "sheet_y": 18, "short_name": "peace_symbol", "short_names": [ "peace_symbol" @@ -58408,15 +62372,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 57, - "added_in": "2.0", + "subcategory": "religion", + "sort_order": 1378, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "YIN YANG", "unified": "262F-FE0F", "non_qualified": "262F", "docomo": null, @@ -58424,8 +62389,8 @@ "softbank": null, "google": null, "image": "262f-fe0f.png", - "sheet_x": 53, - "sheet_y": 14, + "sheet_x": 54, + "sheet_y": 19, "short_name": "yin_yang", "short_names": [ "yin_yang" @@ -58433,15 +62398,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 53, - "added_in": "2.0", + "subcategory": "religion", + "sort_order": 1374, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WHEEL OF DHARMA", "unified": "2638-FE0F", "non_qualified": "2638", "docomo": null, @@ -58449,8 +62415,8 @@ "softbank": null, "google": null, "image": "2638-fe0f.png", - "sheet_x": 53, - "sheet_y": 15, + "sheet_x": 54, + "sheet_y": 20, "short_name": "wheel_of_dharma", "short_names": [ "wheel_of_dharma" @@ -58458,15 +62424,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 52, - "added_in": "2.0", + "subcategory": "religion", + "sort_order": 1373, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "FROWNING FACE", "unified": "2639-FE0F", "non_qualified": "2639", "docomo": null, @@ -58474,8 +62441,8 @@ "softbank": null, "google": null, "image": "2639-fe0f.png", - "sheet_x": 53, - "sheet_y": 16, + "sheet_x": 54, + "sheet_y": 21, "short_name": "white_frowning_face", "short_names": [ "white_frowning_face" @@ -58483,8 +62450,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 66, - "added_in": "2.0", + "subcategory": "face-concerned", + "sort_order": 68, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58499,8 +62467,8 @@ "softbank": "E414", "google": "FE336", "image": "263a-fe0f.png", - "sheet_x": 53, - "sheet_y": 17, + "sheet_x": 54, + "sheet_y": 22, "short_name": "relaxed", "short_names": [ "relaxed" @@ -58508,15 +62476,16 @@ "text": null, "texts": null, "category": "Smileys & Emotion", + "subcategory": "face-affection", "sort_order": 19, - "added_in": "2.0", + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "FEMALE SIGN", "unified": "2640-FE0F", "non_qualified": "2640", "docomo": null, @@ -58524,8 +62493,8 @@ "softbank": null, "google": null, "image": "2640-fe0f.png", - "sheet_x": 53, - "sheet_y": 18, + "sheet_x": 54, + "sheet_y": 23, "short_name": "female_sign", "short_names": [ "female_sign" @@ -58533,7 +62502,8 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 97, + "subcategory": "gender", + "sort_order": 1418, "added_in": "4.0", "has_img_apple": false, "has_img_google": true, @@ -58541,7 +62511,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "MALE SIGN", "unified": "2642-FE0F", "non_qualified": "2642", "docomo": null, @@ -58549,8 +62519,8 @@ "softbank": null, "google": null, "image": "2642-fe0f.png", - "sheet_x": 53, - "sheet_y": 19, + "sheet_x": 54, + "sheet_y": 24, "short_name": "male_sign", "short_names": [ "male_sign" @@ -58558,7 +62528,8 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 98, + "subcategory": "gender", + "sort_order": 1419, "added_in": "4.0", "has_img_apple": false, "has_img_google": true, @@ -58574,8 +62545,8 @@ "softbank": "E23F", "google": "FE02B", "image": "2648.png", - "sheet_x": 53, - "sheet_y": 20, + "sheet_x": 54, + "sheet_y": 25, "short_name": "aries", "short_names": [ "aries" @@ -58583,8 +62554,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 60, - "added_in": "2.0", + "subcategory": "zodiac", + "sort_order": 1381, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58599,8 +62571,8 @@ "softbank": "E240", "google": "FE02C", "image": "2649.png", - "sheet_x": 53, - "sheet_y": 21, + "sheet_x": 54, + "sheet_y": 26, "short_name": "taurus", "short_names": [ "taurus" @@ -58608,8 +62580,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 61, - "added_in": "2.0", + "subcategory": "zodiac", + "sort_order": 1382, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58624,8 +62597,8 @@ "softbank": "E241", "google": "FE02D", "image": "264a.png", - "sheet_x": 53, - "sheet_y": 22, + "sheet_x": 54, + "sheet_y": 27, "short_name": "gemini", "short_names": [ "gemini" @@ -58633,8 +62606,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 62, - "added_in": "2.0", + "subcategory": "zodiac", + "sort_order": 1383, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58649,8 +62623,8 @@ "softbank": "E242", "google": "FE02E", "image": "264b.png", - "sheet_x": 53, - "sheet_y": 23, + "sheet_x": 54, + "sheet_y": 28, "short_name": "cancer", "short_names": [ "cancer" @@ -58658,8 +62632,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 63, - "added_in": "2.0", + "subcategory": "zodiac", + "sort_order": 1384, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58674,8 +62649,8 @@ "softbank": "E243", "google": "FE02F", "image": "264c.png", - "sheet_x": 53, - "sheet_y": 24, + "sheet_x": 54, + "sheet_y": 29, "short_name": "leo", "short_names": [ "leo" @@ -58683,8 +62658,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 64, - "added_in": "2.0", + "subcategory": "zodiac", + "sort_order": 1385, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58699,8 +62675,8 @@ "softbank": "E244", "google": "FE030", "image": "264d.png", - "sheet_x": 53, - "sheet_y": 25, + "sheet_x": 54, + "sheet_y": 30, "short_name": "virgo", "short_names": [ "virgo" @@ -58708,8 +62684,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 65, - "added_in": "2.0", + "subcategory": "zodiac", + "sort_order": 1386, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58724,8 +62701,8 @@ "softbank": "E245", "google": "FE031", "image": "264e.png", - "sheet_x": 53, - "sheet_y": 26, + "sheet_x": 54, + "sheet_y": 31, "short_name": "libra", "short_names": [ "libra" @@ -58733,8 +62710,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 66, - "added_in": "2.0", + "subcategory": "zodiac", + "sort_order": 1387, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58749,8 +62727,8 @@ "softbank": "E246", "google": "FE032", "image": "264f.png", - "sheet_x": 53, - "sheet_y": 27, + "sheet_x": 54, + "sheet_y": 32, "short_name": "scorpius", "short_names": [ "scorpius" @@ -58758,8 +62736,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 67, - "added_in": "2.0", + "subcategory": "zodiac", + "sort_order": 1388, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58774,8 +62753,8 @@ "softbank": "E247", "google": "FE033", "image": "2650.png", - "sheet_x": 53, - "sheet_y": 28, + "sheet_x": 54, + "sheet_y": 33, "short_name": "sagittarius", "short_names": [ "sagittarius" @@ -58783,8 +62762,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 68, - "added_in": "2.0", + "subcategory": "zodiac", + "sort_order": 1389, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58799,8 +62779,8 @@ "softbank": "E248", "google": "FE034", "image": "2651.png", - "sheet_x": 53, - "sheet_y": 29, + "sheet_x": 54, + "sheet_y": 34, "short_name": "capricorn", "short_names": [ "capricorn" @@ -58808,8 +62788,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 69, - "added_in": "2.0", + "subcategory": "zodiac", + "sort_order": 1390, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58824,8 +62805,8 @@ "softbank": "E249", "google": "FE035", "image": "2652.png", - "sheet_x": 53, - "sheet_y": 30, + "sheet_x": 54, + "sheet_y": 35, "short_name": "aquarius", "short_names": [ "aquarius" @@ -58833,8 +62814,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 70, - "added_in": "2.0", + "subcategory": "zodiac", + "sort_order": 1391, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58849,8 +62831,8 @@ "softbank": "E24A", "google": "FE036", "image": "2653.png", - "sheet_x": 53, - "sheet_y": 31, + "sheet_x": 54, + "sheet_y": 36, "short_name": "pisces", "short_names": [ "pisces" @@ -58858,15 +62840,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 71, - "added_in": "2.0", + "subcategory": "zodiac", + "sort_order": 1392, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CHESS PAWN", "unified": "265F-FE0F", "non_qualified": "265F", "docomo": null, @@ -58874,8 +62857,8 @@ "softbank": null, "google": null, "image": "265f-fe0f.png", - "sheet_x": 53, - "sheet_y": 32, + "sheet_x": 54, + "sheet_y": 37, "short_name": "chess_pawn", "short_names": [ "chess_pawn" @@ -58883,7 +62866,8 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 71, + "subcategory": "game", + "sort_order": 1061, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -58899,8 +62883,8 @@ "softbank": "E20E", "google": "FEB1B", "image": "2660-fe0f.png", - "sheet_x": 53, - "sheet_y": 33, + "sheet_x": 54, + "sheet_y": 38, "short_name": "spades", "short_names": [ "spades" @@ -58908,8 +62892,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 67, - "added_in": "2.0", + "subcategory": "game", + "sort_order": 1057, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58924,8 +62909,8 @@ "softbank": "E20F", "google": "FEB1D", "image": "2663-fe0f.png", - "sheet_x": 53, - "sheet_y": 34, + "sheet_x": 54, + "sheet_y": 39, "short_name": "clubs", "short_names": [ "clubs" @@ -58933,8 +62918,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 70, - "added_in": "2.0", + "subcategory": "game", + "sort_order": 1060, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58949,8 +62935,8 @@ "softbank": "E20C", "google": "FEB1A", "image": "2665-fe0f.png", - "sheet_x": 53, - "sheet_y": 35, + "sheet_x": 54, + "sheet_y": 40, "short_name": "hearts", "short_names": [ "hearts" @@ -58958,8 +62944,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 68, - "added_in": "2.0", + "subcategory": "game", + "sort_order": 1058, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58974,8 +62961,8 @@ "softbank": "E20D", "google": "FEB1C", "image": "2666-fe0f.png", - "sheet_x": 53, - "sheet_y": 36, + "sheet_x": 54, + "sheet_y": 41, "short_name": "diamonds", "short_names": [ "diamonds" @@ -58983,8 +62970,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 69, - "added_in": "2.0", + "subcategory": "game", + "sort_order": 1059, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -58999,8 +62987,8 @@ "softbank": "E123", "google": "FE7FA", "image": "2668-fe0f.png", - "sheet_x": 53, - "sheet_y": 37, + "sheet_x": 54, + "sheet_y": 42, "short_name": "hotsprings", "short_names": [ "hotsprings" @@ -59008,8 +62996,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 57, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 832, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59024,8 +63013,8 @@ "softbank": null, "google": "FEB2C", "image": "267b-fe0f.png", - "sheet_x": 53, - "sheet_y": 38, + "sheet_x": 54, + "sheet_y": 43, "short_name": "recycle", "short_names": [ "recycle" @@ -59033,15 +63022,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 101, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1436, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "INFINITY", "unified": "267E-FE0F", "non_qualified": "267E", "docomo": null, @@ -59049,8 +63039,8 @@ "softbank": null, "google": null, "image": "267e-fe0f.png", - "sheet_x": 53, - "sheet_y": 39, + "sheet_x": 54, + "sheet_y": 44, "short_name": "infinity", "short_names": [ "infinity" @@ -59058,7 +63048,8 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 100, + "subcategory": "math", + "sort_order": 1425, "added_in": "11.0", "has_img_apple": true, "has_img_google": true, @@ -59074,8 +63065,8 @@ "softbank": "E20A", "google": "FEB20", "image": "267f.png", - "sheet_x": 53, - "sheet_y": 40, + "sheet_x": 54, + "sheet_y": 45, "short_name": "wheelchair", "short_names": [ "wheelchair" @@ -59083,15 +63074,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 4, - "added_in": "2.0", + "subcategory": "transport-sign", + "sort_order": 1325, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "HAMMER AND PICK", "unified": "2692-FE0F", "non_qualified": "2692", "docomo": null, @@ -59099,8 +63091,8 @@ "softbank": null, "google": null, "image": "2692-fe0f.png", - "sheet_x": 53, - "sheet_y": 41, + "sheet_x": 54, + "sheet_y": 46, "short_name": "hammer_and_pick", "short_names": [ "hammer_and_pick" @@ -59108,8 +63100,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 184, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1258, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59124,8 +63117,8 @@ "softbank": null, "google": "FE4C1", "image": "2693.png", - "sheet_x": 53, - "sheet_y": 42, + "sheet_x": 54, + "sheet_y": 47, "short_name": "anchor", "short_names": [ "anchor" @@ -59133,15 +63126,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 110, - "added_in": "2.0", + "subcategory": "transport-water", + "sort_order": 887, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CROSSED SWORDS", "unified": "2694-FE0F", "non_qualified": "2694", "docomo": null, @@ -59149,8 +63143,8 @@ "softbank": null, "google": null, "image": "2694-fe0f.png", - "sheet_x": 53, - "sheet_y": 43, + "sheet_x": 54, + "sheet_y": 48, "short_name": "crossed_swords", "short_names": [ "crossed_swords" @@ -59158,15 +63152,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 187, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1261, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "MEDICAL SYMBOL", "unified": "2695-FE0F", "non_qualified": "2695", "docomo": null, @@ -59174,8 +63169,8 @@ "softbank": null, "google": null, "image": "2695-fe0f.png", - "sheet_x": 53, - "sheet_y": 44, + "sheet_x": 54, + "sheet_y": 49, "short_name": "medical_symbol", "short_names": [ "medical_symbol", @@ -59184,7 +63179,8 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 99, + "subcategory": "other-symbol", + "sort_order": 1435, "added_in": "4.0", "has_img_apple": false, "has_img_google": true, @@ -59192,7 +63188,7 @@ "has_img_facebook": true }, { - "name": null, + "name": "BALANCE SCALE", "unified": "2696-FE0F", "non_qualified": "2696", "docomo": null, @@ -59200,8 +63196,8 @@ "softbank": null, "google": null, "image": "2696-fe0f.png", - "sheet_x": 53, - "sheet_y": 45, + "sheet_x": 54, + "sheet_y": 50, "short_name": "scales", "short_names": [ "scales" @@ -59209,15 +63205,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 195, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1272, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "ALEMBIC", "unified": "2697-FE0F", "non_qualified": "2697", "docomo": null, @@ -59225,8 +63222,8 @@ "softbank": null, "google": null, "image": "2697-fe0f.png", - "sheet_x": 53, - "sheet_y": 46, + "sheet_x": 54, + "sheet_y": 51, "short_name": "alembic", "short_names": [ "alembic" @@ -59234,15 +63231,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 201, - "added_in": "2.0", + "subcategory": "science", + "sort_order": 1280, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "GEAR", "unified": "2699-FE0F", "non_qualified": "2699", "docomo": null, @@ -59250,8 +63248,8 @@ "softbank": null, "google": null, "image": "2699-fe0f.png", - "sheet_x": 53, - "sheet_y": 47, + "sheet_x": 54, + "sheet_y": 52, "short_name": "gear", "short_names": [ "gear" @@ -59259,15 +63257,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 193, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1270, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "ATOM SYMBOL", "unified": "269B-FE0F", "non_qualified": "269B", "docomo": null, @@ -59275,8 +63274,8 @@ "softbank": null, "google": null, "image": "269b-fe0f.png", - "sheet_x": 53, - "sheet_y": 48, + "sheet_x": 54, + "sheet_y": 53, "short_name": "atom_symbol", "short_names": [ "atom_symbol" @@ -59284,15 +63283,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 49, - "added_in": "2.0", + "subcategory": "religion", + "sort_order": 1370, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "FLEUR-DE-LIS", "unified": "269C-FE0F", "non_qualified": "269C", "docomo": null, @@ -59300,8 +63300,8 @@ "softbank": null, "google": null, "image": "269c-fe0f.png", - "sheet_x": 53, - "sheet_y": 49, + "sheet_x": 54, + "sheet_y": 54, "short_name": "fleur_de_lis", "short_names": [ "fleur_de_lis" @@ -59309,8 +63309,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 102, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1437, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59325,8 +63326,8 @@ "softbank": "E252", "google": "FEB23", "image": "26a0-fe0f.png", - "sheet_x": 53, - "sheet_y": 50, + "sheet_x": 54, + "sheet_y": 55, "short_name": "warning", "short_names": [ "warning" @@ -59334,8 +63335,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 14, - "added_in": "2.0", + "subcategory": "warning", + "sort_order": 1335, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59350,8 +63352,8 @@ "softbank": "E13D", "google": "FE004", "image": "26a1.png", - "sheet_x": 53, - "sheet_y": 51, + "sheet_x": 54, + "sheet_y": 56, "short_name": "zap", "short_names": [ "zap" @@ -59359,8 +63361,35 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 203, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 980, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "TRANSGENDER SYMBOL", + "unified": "26A7-FE0F", + "non_qualified": "26A7", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "26a7-fe0f.png", + "sheet_x": 54, + "sheet_y": 57, + "short_name": "transgender_symbol", + "short_names": [ + "transgender_symbol" + ], + "text": null, + "texts": null, + "category": "Symbols", + "subcategory": "gender", + "sort_order": 1420, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59375,8 +63404,8 @@ "softbank": null, "google": "FEB65", "image": "26aa.png", - "sheet_x": 53, - "sheet_y": 52, + "sheet_x": 55, + "sheet_y": 0, "short_name": "white_circle", "short_names": [ "white_circle" @@ -59384,8 +63413,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 192, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1516, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59400,8 +63430,8 @@ "softbank": null, "google": "FEB66", "image": "26ab.png", - "sheet_x": 53, - "sheet_y": 53, + "sheet_x": 55, + "sheet_y": 1, "short_name": "black_circle", "short_names": [ "black_circle" @@ -59409,15 +63439,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 191, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1515, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "COFFIN", "unified": "26B0-FE0F", "non_qualified": "26B0", "docomo": null, @@ -59425,8 +63456,8 @@ "softbank": null, "google": null, "image": "26b0-fe0f.png", - "sheet_x": 53, - "sheet_y": 54, + "sheet_x": 55, + "sheet_y": 2, "short_name": "coffin", "short_names": [ "coffin" @@ -59434,15 +63465,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 231, - "added_in": "2.0", + "subcategory": "other-object", + "sort_order": 1317, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "FUNERAL URN", "unified": "26B1-FE0F", "non_qualified": "26B1", "docomo": null, @@ -59450,8 +63482,8 @@ "softbank": null, "google": null, "image": "26b1-fe0f.png", - "sheet_x": 53, - "sheet_y": 55, + "sheet_x": 55, + "sheet_y": 3, "short_name": "funeral_urn", "short_names": [ "funeral_urn" @@ -59459,8 +63491,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 232, - "added_in": "2.0", + "subcategory": "other-object", + "sort_order": 1319, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59475,8 +63508,8 @@ "softbank": "E018", "google": "FE7D4", "image": "26bd.png", - "sheet_x": 53, - "sheet_y": 56, + "sheet_x": 55, + "sheet_y": 4, "short_name": "soccer", "short_names": [ "soccer" @@ -59484,8 +63517,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 28, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1015, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59500,8 +63534,8 @@ "softbank": "E016", "google": "FE7D1", "image": "26be.png", - "sheet_x": 54, - "sheet_y": 0, + "sheet_x": 55, + "sheet_y": 5, "short_name": "baseball", "short_names": [ "baseball" @@ -59509,8 +63543,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 29, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1016, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59525,8 +63560,8 @@ "softbank": "E048", "google": "FE003", "image": "26c4.png", - "sheet_x": 54, - "sheet_y": 1, + "sheet_x": 55, + "sheet_y": 6, "short_name": "snowman_without_snow", "short_names": [ "snowman_without_snow" @@ -59534,8 +63569,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 206, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 983, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59550,8 +63586,8 @@ "softbank": null, "google": "FE00F", "image": "26c5.png", - "sheet_x": 54, - "sheet_y": 2, + "sheet_x": 55, + "sheet_y": 7, "short_name": "partly_sunny", "short_names": [ "partly_sunny" @@ -59559,15 +63595,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 186, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 963, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CLOUD WITH LIGHTNING AND RAIN", "unified": "26C8-FE0F", "non_qualified": "26C8", "docomo": null, @@ -59575,8 +63612,8 @@ "softbank": null, "google": null, "image": "26c8-fe0f.png", - "sheet_x": 54, - "sheet_y": 3, + "sheet_x": 55, + "sheet_y": 8, "short_name": "thunder_cloud_and_rain", "short_names": [ "thunder_cloud_and_rain" @@ -59584,8 +63621,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 187, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 964, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59600,8 +63638,8 @@ "softbank": "E24B", "google": "FE037", "image": "26ce.png", - "sheet_x": 54, - "sheet_y": 4, + "sheet_x": 55, + "sheet_y": 9, "short_name": "ophiuchus", "short_names": [ "ophiuchus" @@ -59609,24 +63647,25 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 72, - "added_in": "2.0", + "subcategory": "zodiac", + "sort_order": 1393, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "PICK", "unified": "26CF-FE0F", "non_qualified": "26CF", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "26cf-fe0f.png", - "sheet_x": 54, - "sheet_y": 5, + "image": "26cf-fe0f.png", + "sheet_x": 55, + "sheet_y": 10, "short_name": "pick", "short_names": [ "pick" @@ -59634,15 +63673,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 183, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1257, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "RESCUE WORKER\u2019S HELMET", "unified": "26D1-FE0F", "non_qualified": "26D1", "docomo": null, @@ -59650,8 +63690,8 @@ "softbank": null, "google": null, "image": "26d1-fe0f.png", - "sheet_x": 54, - "sheet_y": 6, + "sheet_x": 55, + "sheet_y": 11, "short_name": "helmet_with_white_cross", "short_names": [ "helmet_with_white_cross" @@ -59659,15 +63699,16 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 39, - "added_in": "2.0", + "subcategory": "clothing", + "sort_order": 1112, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "CHAINS", "unified": "26D3-FE0F", "non_qualified": "26D3", "docomo": null, @@ -59675,8 +63716,8 @@ "softbank": null, "google": null, "image": "26d3-fe0f.png", - "sheet_x": 54, - "sheet_y": 7, + "sheet_x": 55, + "sheet_y": 12, "short_name": "chains", "short_names": [ "chains" @@ -59684,8 +63725,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 198, - "added_in": "2.0", + "subcategory": "tool", + "sort_order": 1275, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59700,8 +63742,8 @@ "softbank": null, "google": "FEB26", "image": "26d4.png", - "sheet_x": 54, - "sheet_y": 8, + "sheet_x": 55, + "sheet_y": 13, "short_name": "no_entry", "short_names": [ "no_entry" @@ -59709,15 +63751,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 16, - "added_in": "2.0", + "subcategory": "warning", + "sort_order": 1337, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SHINTO SHRINE", "unified": "26E9-FE0F", "non_qualified": "26E9", "docomo": null, @@ -59725,8 +63768,8 @@ "softbank": null, "google": null, "image": "26e9-fe0f.png", - "sheet_x": 54, - "sheet_y": 9, + "sheet_x": 55, + "sheet_y": 14, "short_name": "shinto_shrine", "short_names": [ "shinto_shrine" @@ -59734,8 +63777,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 45, - "added_in": "2.0", + "subcategory": "place-religious", + "sort_order": 820, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59750,8 +63794,8 @@ "softbank": "E037", "google": "FE4BB", "image": "26ea.png", - "sheet_x": 54, - "sheet_y": 10, + "sheet_x": 55, + "sheet_y": 15, "short_name": "church", "short_names": [ "church" @@ -59759,15 +63803,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 41, - "added_in": "2.0", + "subcategory": "place-religious", + "sort_order": 816, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "MOUNTAIN", "unified": "26F0-FE0F", "non_qualified": "26F0", "docomo": null, @@ -59775,8 +63820,8 @@ "softbank": null, "google": null, "image": "26f0-fe0f.png", - "sheet_x": 54, - "sheet_y": 11, + "sheet_x": 55, + "sheet_y": 16, "short_name": "mountain", "short_names": [ "mountain" @@ -59784,15 +63829,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 9, - "added_in": "2.0", + "subcategory": "place-geographic", + "sort_order": 781, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "UMBRELLA ON GROUND", "unified": "26F1-FE0F", "non_qualified": "26F1", "docomo": null, @@ -59800,8 +63846,8 @@ "softbank": null, "google": null, "image": "26f1-fe0f.png", - "sheet_x": 54, - "sheet_y": 12, + "sheet_x": 55, + "sheet_y": 17, "short_name": "umbrella_on_ground", "short_names": [ "umbrella_on_ground" @@ -59809,8 +63855,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 202, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 979, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59825,8 +63872,8 @@ "softbank": "E121", "google": "FE4BC", "image": "26f2.png", - "sheet_x": 54, - "sheet_y": 13, + "sheet_x": 55, + "sheet_y": 18, "short_name": "fountain", "short_names": [ "fountain" @@ -59834,8 +63881,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 47, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 822, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59850,8 +63898,8 @@ "softbank": "E014", "google": "FE7D2", "image": "26f3.png", - "sheet_x": 54, - "sheet_y": 14, + "sheet_x": 55, + "sheet_y": 19, "short_name": "golf", "short_names": [ "golf" @@ -59859,15 +63907,16 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 47, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1034, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "FERRY", "unified": "26F4-FE0F", "non_qualified": "26F4", "docomo": null, @@ -59875,8 +63924,8 @@ "softbank": null, "google": null, "image": "26f4-fe0f.png", - "sheet_x": 54, - "sheet_y": 15, + "sheet_x": 55, + "sheet_y": 20, "short_name": "ferry", "short_names": [ "ferry" @@ -59884,8 +63933,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 115, - "added_in": "2.0", + "subcategory": "transport-water", + "sort_order": 892, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -59900,8 +63950,8 @@ "softbank": "E01C", "google": "FE7EA", "image": "26f5.png", - "sheet_x": 54, - "sheet_y": 16, + "sheet_x": 55, + "sheet_y": 21, "short_name": "boat", "short_names": [ "boat", @@ -59910,15 +63960,16 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 111, - "added_in": "2.0", + "subcategory": "transport-water", + "sort_order": 888, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "SKIER", "unified": "26F7-FE0F", "non_qualified": "26F7", "docomo": null, @@ -59926,8 +63977,8 @@ "softbank": null, "google": null, "image": "26f7-fe0f.png", - "sheet_x": 54, - "sheet_y": 17, + "sheet_x": 55, + "sheet_y": 22, "short_name": "skier", "short_names": [ "skier" @@ -59935,15 +63986,16 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 247, - "added_in": "2.0", + "subcategory": "person-sport", + "sort_order": 410, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "ICE SKATE", "unified": "26F8-FE0F", "non_qualified": "26F8", "docomo": null, @@ -59951,8 +64003,8 @@ "softbank": null, "google": null, "image": "26f8-fe0f.png", - "sheet_x": 54, - "sheet_y": 18, + "sheet_x": 55, + "sheet_y": 23, "short_name": "ice_skate", "short_names": [ "ice_skate" @@ -59960,15 +64012,16 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 48, - "added_in": "2.0", + "subcategory": "sport", + "sort_order": 1035, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "WOMAN BOUNCING BALL", "unified": "26F9-FE0F-200D-2640-FE0F", "non_qualified": null, "docomo": null, @@ -59976,8 +64029,8 @@ "softbank": null, "google": null, "image": "26f9-fe0f-200d-2640-fe0f.png", - "sheet_x": 54, - "sheet_y": 19, + "sheet_x": 55, + "sheet_y": 24, "short_name": "woman-bouncing-ball", "short_names": [ "woman-bouncing-ball" @@ -59985,7 +64038,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 263, + "subcategory": "person-sport", + "sort_order": 426, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -59996,8 +64050,8 @@ "unified": "26F9-1F3FB-200D-2640-FE0F", "non_qualified": "26F9-1F3FB-200D-2640", "image": "26f9-1f3fb-200d-2640-fe0f.png", - "sheet_x": 54, - "sheet_y": 20, + "sheet_x": 55, + "sheet_y": 25, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -60008,8 +64062,8 @@ "unified": "26F9-1F3FC-200D-2640-FE0F", "non_qualified": "26F9-1F3FC-200D-2640", "image": "26f9-1f3fc-200d-2640-fe0f.png", - "sheet_x": 54, - "sheet_y": 21, + "sheet_x": 55, + "sheet_y": 26, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -60020,8 +64074,8 @@ "unified": "26F9-1F3FD-200D-2640-FE0F", "non_qualified": "26F9-1F3FD-200D-2640", "image": "26f9-1f3fd-200d-2640-fe0f.png", - "sheet_x": 54, - "sheet_y": 22, + "sheet_x": 55, + "sheet_y": 27, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -60032,8 +64086,8 @@ "unified": "26F9-1F3FE-200D-2640-FE0F", "non_qualified": "26F9-1F3FE-200D-2640", "image": "26f9-1f3fe-200d-2640-fe0f.png", - "sheet_x": 54, - "sheet_y": 23, + "sheet_x": 55, + "sheet_y": 28, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -60044,8 +64098,8 @@ "unified": "26F9-1F3FF-200D-2640-FE0F", "non_qualified": "26F9-1F3FF-200D-2640", "image": "26f9-1f3ff-200d-2640-fe0f.png", - "sheet_x": 54, - "sheet_y": 24, + "sheet_x": 55, + "sheet_y": 29, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -60055,7 +64109,7 @@ } }, { - "name": null, + "name": "MAN BOUNCING BALL", "unified": "26F9-FE0F-200D-2642-FE0F", "non_qualified": null, "docomo": null, @@ -60063,8 +64117,8 @@ "softbank": null, "google": null, "image": "26f9-fe0f-200d-2642-fe0f.png", - "sheet_x": 54, - "sheet_y": 25, + "sheet_x": 55, + "sheet_y": 30, "short_name": "man-bouncing-ball", "short_names": [ "man-bouncing-ball" @@ -60072,7 +64126,8 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 262, + "subcategory": "person-sport", + "sort_order": 425, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -60083,8 +64138,8 @@ "unified": "26F9-1F3FB-200D-2642-FE0F", "non_qualified": "26F9-1F3FB-200D-2642", "image": "26f9-1f3fb-200d-2642-fe0f.png", - "sheet_x": 54, - "sheet_y": 26, + "sheet_x": 55, + "sheet_y": 31, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -60095,8 +64150,8 @@ "unified": "26F9-1F3FC-200D-2642-FE0F", "non_qualified": "26F9-1F3FC-200D-2642", "image": "26f9-1f3fc-200d-2642-fe0f.png", - "sheet_x": 54, - "sheet_y": 27, + "sheet_x": 55, + "sheet_y": 32, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -60107,8 +64162,8 @@ "unified": "26F9-1F3FD-200D-2642-FE0F", "non_qualified": "26F9-1F3FD-200D-2642", "image": "26f9-1f3fd-200d-2642-fe0f.png", - "sheet_x": 54, - "sheet_y": 28, + "sheet_x": 55, + "sheet_y": 33, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -60119,8 +64174,8 @@ "unified": "26F9-1F3FE-200D-2642-FE0F", "non_qualified": "26F9-1F3FE-200D-2642", "image": "26f9-1f3fe-200d-2642-fe0f.png", - "sheet_x": 54, - "sheet_y": 29, + "sheet_x": 55, + "sheet_y": 34, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -60131,8 +64186,8 @@ "unified": "26F9-1F3FF-200D-2642-FE0F", "non_qualified": "26F9-1F3FF-200D-2642", "image": "26f9-1f3ff-200d-2642-fe0f.png", - "sheet_x": 54, - "sheet_y": 30, + "sheet_x": 55, + "sheet_y": 35, "added_in": "4.0", "has_img_apple": true, "has_img_google": true, @@ -60143,7 +64198,7 @@ "obsoletes": "26F9-FE0F" }, { - "name": null, + "name": "PERSON BOUNCING BALL", "unified": "26F9-FE0F", "non_qualified": "26F9", "docomo": null, @@ -60151,8 +64206,8 @@ "softbank": null, "google": null, "image": "26f9-fe0f.png", - "sheet_x": 54, - "sheet_y": 31, + "sheet_x": 55, + "sheet_y": 36, "short_name": "person_with_ball", "short_names": [ "person_with_ball" @@ -60160,72 +64215,73 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 261, - "added_in": "2.0", + "subcategory": "person-sport", + "sort_order": 424, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "26F9-1F3FB", "non_qualified": null, "image": "26f9-1f3fb.png", - "sheet_x": 54, - "sheet_y": 32, + "sheet_x": 55, + "sheet_y": 37, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FC": { "unified": "26F9-1F3FC", "non_qualified": null, "image": "26f9-1f3fc.png", - "sheet_x": 54, - "sheet_y": 33, + "sheet_x": 55, + "sheet_y": 38, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FD": { "unified": "26F9-1F3FD", "non_qualified": null, "image": "26f9-1f3fd.png", - "sheet_x": 54, - "sheet_y": 34, + "sheet_x": 55, + "sheet_y": 39, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FE": { "unified": "26F9-1F3FE", "non_qualified": null, "image": "26f9-1f3fe.png", - "sheet_x": 54, - "sheet_y": 35, + "sheet_x": 55, + "sheet_y": 40, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true }, "1F3FF": { "unified": "26F9-1F3FF", "non_qualified": null, "image": "26f9-1f3ff.png", - "sheet_x": 54, - "sheet_y": 36, + "sheet_x": 55, + "sheet_y": 41, "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false + "has_img_facebook": true } }, "obsoleted_by": "26F9-FE0F-200D-2642-FE0F" @@ -60239,8 +64295,8 @@ "softbank": "E122", "google": "FE7FB", "image": "26fa.png", - "sheet_x": 54, - "sheet_y": 37, + "sheet_x": 55, + "sheet_y": 42, "short_name": "tent", "short_names": [ "tent" @@ -60248,8 +64304,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 48, - "added_in": "2.0", + "subcategory": "place-other", + "sort_order": 823, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60264,8 +64321,8 @@ "softbank": "E03A", "google": "FE7F5", "image": "26fd.png", - "sheet_x": 54, - "sheet_y": 38, + "sheet_x": 55, + "sheet_y": 43, "short_name": "fuelpump", "short_names": [ "fuelpump" @@ -60273,8 +64330,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 104, - "added_in": "2.0", + "subcategory": "transport-ground", + "sort_order": 881, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60289,8 +64347,8 @@ "softbank": "E313", "google": "FE53E", "image": "2702-fe0f.png", - "sheet_x": 54, - "sheet_y": 39, + "sheet_x": 55, + "sheet_y": 44, "short_name": "scissors", "short_names": [ "scissors" @@ -60298,8 +64356,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 171, - "added_in": "2.0", + "subcategory": "office", + "sort_order": 1245, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60314,8 +64373,8 @@ "softbank": null, "google": "FEB4A", "image": "2705.png", - "sheet_x": 54, - "sheet_y": 40, + "sheet_x": 55, + "sheet_y": 45, "short_name": "white_check_mark", "short_names": [ "white_check_mark" @@ -60323,8 +64382,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 107, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1442, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60339,8 +64399,8 @@ "softbank": "E01D", "google": "FE7E9", "image": "2708-fe0f.png", - "sheet_x": 54, - "sheet_y": 41, + "sheet_x": 55, + "sheet_y": 46, "short_name": "airplane", "short_names": [ "airplane" @@ -60348,8 +64408,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 118, - "added_in": "2.0", + "subcategory": "transport-air", + "sort_order": 895, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60364,8 +64425,8 @@ "softbank": null, "google": "FE529", "image": "2709-fe0f.png", - "sheet_x": 54, - "sheet_y": 42, + "sheet_x": 55, + "sheet_y": 47, "short_name": "email", "short_names": [ "email", @@ -60374,8 +64435,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 132, - "added_in": "2.0", + "subcategory": "mail", + "sort_order": 1206, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60390,8 +64452,8 @@ "softbank": "E010", "google": "FEB93", "image": "270a.png", - "sheet_x": 54, - "sheet_y": 43, + "sheet_x": 55, + "sheet_y": 48, "short_name": "fist", "short_names": [ "fist" @@ -60399,8 +64461,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 21, - "added_in": "2.0", + "subcategory": "hand-fingers-closed", + "sort_order": 173, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60410,9 +64473,9 @@ "unified": "270A-1F3FB", "non_qualified": null, "image": "270a-1f3fb.png", - "sheet_x": 54, - "sheet_y": 44, - "added_in": "2.0", + "sheet_x": 55, + "sheet_y": 49, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60422,9 +64485,9 @@ "unified": "270A-1F3FC", "non_qualified": null, "image": "270a-1f3fc.png", - "sheet_x": 54, - "sheet_y": 45, - "added_in": "2.0", + "sheet_x": 55, + "sheet_y": 50, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60434,9 +64497,9 @@ "unified": "270A-1F3FD", "non_qualified": null, "image": "270a-1f3fd.png", - "sheet_x": 54, - "sheet_y": 46, - "added_in": "2.0", + "sheet_x": 55, + "sheet_y": 51, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60446,9 +64509,9 @@ "unified": "270A-1F3FE", "non_qualified": null, "image": "270a-1f3fe.png", - "sheet_x": 54, - "sheet_y": 47, - "added_in": "2.0", + "sheet_x": 55, + "sheet_y": 52, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60458,9 +64521,9 @@ "unified": "270A-1F3FF", "non_qualified": null, "image": "270a-1f3ff.png", - "sheet_x": 54, - "sheet_y": 48, - "added_in": "2.0", + "sheet_x": 55, + "sheet_y": 53, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60477,8 +64540,8 @@ "softbank": "E012", "google": "FEB95", "image": "270b.png", - "sheet_x": 54, - "sheet_y": 49, + "sheet_x": 55, + "sheet_y": 54, "short_name": "hand", "short_names": [ "hand", @@ -60487,8 +64550,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 4, - "added_in": "2.0", + "subcategory": "hand-fingers-open", + "sort_order": 155, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60498,9 +64562,9 @@ "unified": "270B-1F3FB", "non_qualified": null, "image": "270b-1f3fb.png", - "sheet_x": 54, - "sheet_y": 50, - "added_in": "2.0", + "sheet_x": 55, + "sheet_y": 55, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60510,9 +64574,9 @@ "unified": "270B-1F3FC", "non_qualified": null, "image": "270b-1f3fc.png", - "sheet_x": 54, - "sheet_y": 51, - "added_in": "2.0", + "sheet_x": 55, + "sheet_y": 56, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60522,9 +64586,9 @@ "unified": "270B-1F3FD", "non_qualified": null, "image": "270b-1f3fd.png", - "sheet_x": 54, - "sheet_y": 52, - "added_in": "2.0", + "sheet_x": 55, + "sheet_y": 57, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60534,9 +64598,9 @@ "unified": "270B-1F3FE", "non_qualified": null, "image": "270b-1f3fe.png", - "sheet_x": 54, - "sheet_y": 53, - "added_in": "2.0", + "sheet_x": 56, + "sheet_y": 0, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60546,9 +64610,9 @@ "unified": "270B-1F3FF", "non_qualified": null, "image": "270b-1f3ff.png", - "sheet_x": 54, - "sheet_y": 54, - "added_in": "2.0", + "sheet_x": 56, + "sheet_y": 1, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60565,8 +64629,8 @@ "softbank": "E011", "google": "FEB94", "image": "270c-fe0f.png", - "sheet_x": 54, - "sheet_y": 55, + "sheet_x": 56, + "sheet_y": 2, "short_name": "v", "short_names": [ "v" @@ -60574,8 +64638,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 8, - "added_in": "2.0", + "subcategory": "hand-fingers-partial", + "sort_order": 160, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60585,9 +64650,9 @@ "unified": "270C-1F3FB", "non_qualified": null, "image": "270c-1f3fb.png", - "sheet_x": 54, - "sheet_y": 56, - "added_in": "2.0", + "sheet_x": 56, + "sheet_y": 3, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60597,9 +64662,9 @@ "unified": "270C-1F3FC", "non_qualified": null, "image": "270c-1f3fc.png", - "sheet_x": 55, - "sheet_y": 0, - "added_in": "2.0", + "sheet_x": 56, + "sheet_y": 4, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60609,9 +64674,9 @@ "unified": "270C-1F3FD", "non_qualified": null, "image": "270c-1f3fd.png", - "sheet_x": 55, - "sheet_y": 1, - "added_in": "2.0", + "sheet_x": 56, + "sheet_y": 5, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60621,9 +64686,9 @@ "unified": "270C-1F3FE", "non_qualified": null, "image": "270c-1f3fe.png", - "sheet_x": 55, - "sheet_y": 2, - "added_in": "2.0", + "sheet_x": 56, + "sheet_y": 6, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60633,9 +64698,9 @@ "unified": "270C-1F3FF", "non_qualified": null, "image": "270c-1f3ff.png", - "sheet_x": 55, - "sheet_y": 3, - "added_in": "2.0", + "sheet_x": 56, + "sheet_y": 7, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60644,7 +64709,7 @@ } }, { - "name": null, + "name": "WRITING HAND", "unified": "270D-FE0F", "non_qualified": "270D", "docomo": null, @@ -60652,8 +64717,8 @@ "softbank": null, "google": null, "image": "270d-fe0f.png", - "sheet_x": 55, - "sheet_y": 4, + "sheet_x": 56, + "sheet_y": 8, "short_name": "writing_hand", "short_names": [ "writing_hand" @@ -60661,8 +64726,9 @@ "text": null, "texts": null, "category": "People & Body", - "sort_order": 31, - "added_in": "2.0", + "subcategory": "hand-prop", + "sort_order": 183, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60672,9 +64738,9 @@ "unified": "270D-1F3FB", "non_qualified": null, "image": "270d-1f3fb.png", - "sheet_x": 55, - "sheet_y": 5, - "added_in": "2.0", + "sheet_x": 56, + "sheet_y": 9, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60684,9 +64750,9 @@ "unified": "270D-1F3FC", "non_qualified": null, "image": "270d-1f3fc.png", - "sheet_x": 55, - "sheet_y": 6, - "added_in": "2.0", + "sheet_x": 56, + "sheet_y": 10, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60696,9 +64762,9 @@ "unified": "270D-1F3FD", "non_qualified": null, "image": "270d-1f3fd.png", - "sheet_x": 55, - "sheet_y": 7, - "added_in": "2.0", + "sheet_x": 56, + "sheet_y": 11, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60708,9 +64774,9 @@ "unified": "270D-1F3FE", "non_qualified": null, "image": "270d-1f3fe.png", - "sheet_x": 55, - "sheet_y": 8, - "added_in": "2.0", + "sheet_x": 56, + "sheet_y": 12, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60720,9 +64786,9 @@ "unified": "270D-1F3FF", "non_qualified": null, "image": "270d-1f3ff.png", - "sheet_x": 55, - "sheet_y": 9, - "added_in": "2.0", + "sheet_x": 56, + "sheet_y": 13, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60739,8 +64805,8 @@ "softbank": null, "google": "FE539", "image": "270f-fe0f.png", - "sheet_x": 55, - "sheet_y": 10, + "sheet_x": 56, + "sheet_y": 14, "short_name": "pencil2", "short_names": [ "pencil2" @@ -60748,8 +64814,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 145, - "added_in": "2.0", + "subcategory": "writing", + "sort_order": 1219, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60764,8 +64831,8 @@ "softbank": null, "google": "FE536", "image": "2712-fe0f.png", - "sheet_x": 55, - "sheet_y": 11, + "sheet_x": 56, + "sheet_y": 15, "short_name": "black_nib", "short_names": [ "black_nib" @@ -60773,8 +64840,9 @@ "text": null, "texts": null, "category": "Objects", - "sort_order": 146, - "added_in": "2.0", + "subcategory": "writing", + "sort_order": 1220, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60789,8 +64857,8 @@ "softbank": null, "google": "FEB49", "image": "2714-fe0f.png", - "sheet_x": 55, - "sheet_y": 12, + "sheet_x": 56, + "sheet_y": 16, "short_name": "heavy_check_mark", "short_names": [ "heavy_check_mark" @@ -60798,8 +64866,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 109, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1444, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60814,8 +64883,8 @@ "softbank": null, "google": "FEB53", "image": "2716-fe0f.png", - "sheet_x": 55, - "sheet_y": 13, + "sheet_x": 56, + "sheet_y": 17, "short_name": "heavy_multiplication_x", "short_names": [ "heavy_multiplication_x" @@ -60823,15 +64892,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 110, - "added_in": "2.0", + "subcategory": "math", + "sort_order": 1421, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "LATIN CROSS", "unified": "271D-FE0F", "non_qualified": "271D", "docomo": null, @@ -60839,8 +64909,8 @@ "softbank": null, "google": null, "image": "271d-fe0f.png", - "sheet_x": 55, - "sheet_y": 14, + "sheet_x": 56, + "sheet_y": 18, "short_name": "latin_cross", "short_names": [ "latin_cross" @@ -60848,15 +64918,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 54, - "added_in": "2.0", + "subcategory": "religion", + "sort_order": 1375, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "STAR OF DAVID", "unified": "2721-FE0F", "non_qualified": "2721", "docomo": null, @@ -60864,8 +64935,8 @@ "softbank": null, "google": null, "image": "2721-fe0f.png", - "sheet_x": 55, - "sheet_y": 15, + "sheet_x": 56, + "sheet_y": 19, "short_name": "star_of_david", "short_names": [ "star_of_david" @@ -60873,8 +64944,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 51, - "added_in": "2.0", + "subcategory": "religion", + "sort_order": 1372, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60889,8 +64961,8 @@ "softbank": "E32E", "google": "FEB60", "image": "2728.png", - "sheet_x": 55, - "sheet_y": 16, + "sheet_x": 56, + "sheet_y": 20, "short_name": "sparkles", "short_names": [ "sparkles" @@ -60898,8 +64970,9 @@ "text": null, "texts": null, "category": "Activities", - "sort_order": 6, - "added_in": "2.0", + "subcategory": "event", + "sort_order": 993, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60914,8 +64987,8 @@ "softbank": "E206", "google": "FEB62", "image": "2733-fe0f.png", - "sheet_x": 55, - "sheet_y": 17, + "sheet_x": 56, + "sheet_y": 21, "short_name": "eight_spoked_asterisk", "short_names": [ "eight_spoked_asterisk" @@ -60923,8 +64996,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 119, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1450, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60939,8 +65013,8 @@ "softbank": "E205", "google": "FEB61", "image": "2734-fe0f.png", - "sheet_x": 55, - "sheet_y": 18, + "sheet_x": 56, + "sheet_y": 22, "short_name": "eight_pointed_black_star", "short_names": [ "eight_pointed_black_star" @@ -60948,8 +65022,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 120, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1451, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60964,8 +65039,8 @@ "softbank": null, "google": "FE00E", "image": "2744-fe0f.png", - "sheet_x": 55, - "sheet_y": 19, + "sheet_x": 56, + "sheet_y": 23, "short_name": "snowflake", "short_names": [ "snowflake" @@ -60973,8 +65048,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 204, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 981, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -60989,8 +65065,8 @@ "softbank": null, "google": "FEB77", "image": "2747-fe0f.png", - "sheet_x": 55, - "sheet_y": 20, + "sheet_x": 56, + "sheet_y": 24, "short_name": "sparkle", "short_names": [ "sparkle" @@ -60998,8 +65074,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 121, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1452, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61014,8 +65091,8 @@ "softbank": "E333", "google": "FEB45", "image": "274c.png", - "sheet_x": 55, - "sheet_y": 21, + "sheet_x": 56, + "sheet_y": 25, "short_name": "x", "short_names": [ "x" @@ -61023,8 +65100,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 111, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1445, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61039,8 +65117,8 @@ "softbank": null, "google": "FEB46", "image": "274e.png", - "sheet_x": 55, - "sheet_y": 22, + "sheet_x": 56, + "sheet_y": 26, "short_name": "negative_squared_cross_mark", "short_names": [ "negative_squared_cross_mark" @@ -61048,8 +65126,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 112, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1446, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61064,8 +65143,8 @@ "softbank": "E020", "google": "FEB09", "image": "2753.png", - "sheet_x": 55, - "sheet_y": 23, + "sheet_x": 56, + "sheet_y": 27, "short_name": "question", "short_names": [ "question" @@ -61073,8 +65152,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 124, - "added_in": "2.0", + "subcategory": "punctuation", + "sort_order": 1428, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61089,8 +65169,8 @@ "softbank": "E336", "google": "FEB0A", "image": "2754.png", - "sheet_x": 55, - "sheet_y": 24, + "sheet_x": 56, + "sheet_y": 28, "short_name": "grey_question", "short_names": [ "grey_question" @@ -61098,8 +65178,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 125, - "added_in": "2.0", + "subcategory": "punctuation", + "sort_order": 1429, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61114,8 +65195,8 @@ "softbank": "E337", "google": "FEB0B", "image": "2755.png", - "sheet_x": 55, - "sheet_y": 25, + "sheet_x": 56, + "sheet_y": 29, "short_name": "grey_exclamation", "short_names": [ "grey_exclamation" @@ -61123,8 +65204,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 126, - "added_in": "2.0", + "subcategory": "punctuation", + "sort_order": 1430, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61139,8 +65221,8 @@ "softbank": "E021", "google": "FEB04", "image": "2757.png", - "sheet_x": 55, - "sheet_y": 26, + "sheet_x": 56, + "sheet_y": 30, "short_name": "exclamation", "short_names": [ "exclamation", @@ -61149,15 +65231,16 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 127, - "added_in": "2.0", + "subcategory": "punctuation", + "sort_order": 1431, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true }, { - "name": null, + "name": "HEART EXCLAMATION", "unified": "2763-FE0F", "non_qualified": "2763", "docomo": null, @@ -61165,8 +65248,8 @@ "softbank": null, "google": null, "image": "2763-fe0f.png", - "sheet_x": 55, - "sheet_y": 27, + "sheet_x": 56, + "sheet_y": 31, "short_name": "heavy_heart_exclamation_mark_ornament", "short_names": [ "heavy_heart_exclamation_mark_ornament" @@ -61174,8 +65257,9 @@ "text": null, "texts": null, "category": "Smileys & Emotion", - "sort_order": 125, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 127, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61190,8 +65274,8 @@ "softbank": "E022", "google": "FEB0C", "image": "2764-fe0f.png", - "sheet_x": 55, - "sheet_y": 28, + "sheet_x": 56, + "sheet_y": 32, "short_name": "heart", "short_names": [ "heart" @@ -61201,8 +65285,9 @@ "<3" ], "category": "Smileys & Emotion", - "sort_order": 127, - "added_in": "2.0", + "subcategory": "emotion", + "sort_order": 129, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61217,8 +65302,8 @@ "softbank": null, "google": "FEB51", "image": "2795.png", - "sheet_x": 55, - "sheet_y": 29, + "sheet_x": 56, + "sheet_y": 33, "short_name": "heavy_plus_sign", "short_names": [ "heavy_plus_sign" @@ -61226,8 +65311,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 113, - "added_in": "2.0", + "subcategory": "math", + "sort_order": 1422, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61242,8 +65328,8 @@ "softbank": null, "google": "FEB52", "image": "2796.png", - "sheet_x": 55, - "sheet_y": 30, + "sheet_x": 56, + "sheet_y": 34, "short_name": "heavy_minus_sign", "short_names": [ "heavy_minus_sign" @@ -61251,8 +65337,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 114, - "added_in": "2.0", + "subcategory": "math", + "sort_order": 1423, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61267,8 +65354,8 @@ "softbank": null, "google": "FEB54", "image": "2797.png", - "sheet_x": 55, - "sheet_y": 31, + "sheet_x": 56, + "sheet_y": 35, "short_name": "heavy_division_sign", "short_names": [ "heavy_division_sign" @@ -61276,8 +65363,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 115, - "added_in": "2.0", + "subcategory": "math", + "sort_order": 1424, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61292,8 +65380,8 @@ "softbank": "E234", "google": "FEAFA", "image": "27a1-fe0f.png", - "sheet_x": 55, - "sheet_y": 32, + "sheet_x": 56, + "sheet_y": 36, "short_name": "arrow_right", "short_names": [ "arrow_right" @@ -61301,8 +65389,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 29, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1350, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61317,8 +65406,8 @@ "softbank": null, "google": "FEB08", "image": "27b0.png", - "sheet_x": 55, - "sheet_y": 33, + "sheet_x": 56, + "sheet_y": 37, "short_name": "curly_loop", "short_names": [ "curly_loop" @@ -61326,8 +65415,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 116, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1447, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61342,8 +65432,8 @@ "softbank": "E211", "google": "FE82B", "image": "27bf.png", - "sheet_x": 55, - "sheet_y": 34, + "sheet_x": 56, + "sheet_y": 38, "short_name": "loop", "short_names": [ "loop" @@ -61351,8 +65441,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 117, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1448, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61367,8 +65458,8 @@ "softbank": null, "google": "FEAF4", "image": "2934-fe0f.png", - "sheet_x": 55, - "sheet_y": 35, + "sheet_x": 56, + "sheet_y": 39, "short_name": "arrow_heading_up", "short_names": [ "arrow_heading_up" @@ -61376,8 +65467,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 39, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1360, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61392,8 +65484,8 @@ "softbank": null, "google": "FEAF5", "image": "2935-fe0f.png", - "sheet_x": 55, - "sheet_y": 36, + "sheet_x": 56, + "sheet_y": 40, "short_name": "arrow_heading_down", "short_names": [ "arrow_heading_down" @@ -61401,8 +65493,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 40, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1361, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61417,8 +65510,8 @@ "softbank": "E235", "google": "FEAFB", "image": "2b05-fe0f.png", - "sheet_x": 55, - "sheet_y": 37, + "sheet_x": 56, + "sheet_y": 41, "short_name": "arrow_left", "short_names": [ "arrow_left" @@ -61426,8 +65519,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 33, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1354, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61442,8 +65536,8 @@ "softbank": "E232", "google": "FEAF8", "image": "2b06-fe0f.png", - "sheet_x": 55, - "sheet_y": 38, + "sheet_x": 56, + "sheet_y": 42, "short_name": "arrow_up", "short_names": [ "arrow_up" @@ -61451,8 +65545,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 27, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1348, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61467,8 +65562,8 @@ "softbank": "E233", "google": "FEAF9", "image": "2b07-fe0f.png", - "sheet_x": 55, - "sheet_y": 39, + "sheet_x": 56, + "sheet_y": 43, "short_name": "arrow_down", "short_names": [ "arrow_down" @@ -61476,8 +65571,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 31, - "added_in": "2.0", + "subcategory": "arrow", + "sort_order": 1352, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61492,8 +65588,8 @@ "softbank": null, "google": "FEB6C", "image": "2b1b.png", - "sheet_x": 55, - "sheet_y": 40, + "sheet_x": 56, + "sheet_y": 44, "short_name": "black_large_square", "short_names": [ "black_large_square" @@ -61501,8 +65597,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 200, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1524, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61517,8 +65614,8 @@ "softbank": null, "google": "FEB6B", "image": "2b1c.png", - "sheet_x": 55, - "sheet_y": 41, + "sheet_x": 56, + "sheet_y": 45, "short_name": "white_large_square", "short_names": [ "white_large_square" @@ -61526,8 +65623,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 201, - "added_in": "2.0", + "subcategory": "geometric", + "sort_order": 1525, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61542,8 +65640,8 @@ "softbank": "E32F", "google": "FEB68", "image": "2b50.png", - "sheet_x": 55, - "sheet_y": 42, + "sheet_x": 56, + "sheet_y": 46, "short_name": "star", "short_names": [ "star" @@ -61551,8 +65649,9 @@ "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 181, - "added_in": "2.0", + "subcategory": "sky & weather", + "sort_order": 958, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61567,8 +65666,8 @@ "softbank": "E332", "google": "FEB44", "image": "2b55.png", - "sheet_x": 55, - "sheet_y": 43, + "sheet_x": 56, + "sheet_y": 47, "short_name": "o", "short_names": [ "o" @@ -61576,8 +65675,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 106, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1441, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61592,8 +65692,8 @@ "softbank": null, "google": "FEB07", "image": "3030-fe0f.png", - "sheet_x": 55, - "sheet_y": 44, + "sheet_x": 56, + "sheet_y": 48, "short_name": "wavy_dash", "short_names": [ "wavy_dash" @@ -61601,8 +65701,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 128, - "added_in": "2.0", + "subcategory": "punctuation", + "sort_order": 1432, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61617,8 +65718,8 @@ "softbank": "E12C", "google": "FE81B", "image": "303d-fe0f.png", - "sheet_x": 55, - "sheet_y": 45, + "sheet_x": 56, + "sheet_y": 49, "short_name": "part_alternation_mark", "short_names": [ "part_alternation_mark" @@ -61626,8 +65727,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 118, - "added_in": "2.0", + "subcategory": "other-symbol", + "sort_order": 1449, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61642,8 +65744,8 @@ "softbank": "E30D", "google": "FEB43", "image": "3297-fe0f.png", - "sheet_x": 55, - "sheet_y": 46, + "sheet_x": 56, + "sheet_y": 50, "short_name": "congratulations", "short_names": [ "congratulations" @@ -61651,8 +65753,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 180, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1504, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, @@ -61667,8 +65770,8 @@ "softbank": "E315", "google": "FEB2B", "image": "3299-fe0f.png", - "sheet_x": 55, - "sheet_y": 47, + "sheet_x": 56, + "sheet_y": 51, "short_name": "secret", "short_names": [ "secret" @@ -61676,8 +65779,9 @@ "text": null, "texts": null, "category": "Symbols", - "sort_order": 181, - "added_in": "2.0", + "subcategory": "alphanum", + "sort_order": 1505, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, diff --git a/src/scripts/in/schema_additional_params.json b/src/scripts/in/schema_additional_params.json index adeae216..a27c7637 100644 --- a/src/scripts/in/schema_additional_params.json +++ b/src/scripts/in/schema_additional_params.json @@ -94,6 +94,13 @@ {"name": "length", "type": "number"} ], "type": "MessageEntity" +}, { + "predicate": "messageEntityCaret", + "params": [ + {"name": "offset", "type": "number"}, + {"name": "length", "type": "number"} + ], + "type": "MessageEntity" }, { "predicate": "user", "params": [ diff --git a/src/scripts/out/countries.json b/src/scripts/out/countries.json index c1ffecf4..ba3745b7 100644 --- a/src/scripts/out/countries.json +++ b/src/scripts/out/countries.json @@ -1 +1 @@ -[{"phoneCode":"7 840","code":"AB","name":"Abkhazia","pattern":"","emoji":"\r"},{"phoneCode":"93","code":"AF","name":"Afghanistan","pattern":"93 XXX XXX XXX","emoji":"🇦🇫\r"},{"phoneCode":"358 18","code":"AX","name":"Aland Islands","pattern":"","emoji":"🇦🇽\r"},{"phoneCode":"355","code":"AL","name":"Albania","pattern":"355 XX XXX XXXX","emoji":"🇦🇱\r"},{"phoneCode":"213","code":"DZ","name":"Algeria","pattern":"213 XXX XX XX XX","emoji":"🇩🇿\r"},{"phoneCode":"1 684","code":"AS","name":"American Samoa","pattern":"1684 XXX XXXX","emoji":"🇦🇸\r"},{"phoneCode":"376","code":"AD","name":"Andorra","pattern":"376 XX XX XX","emoji":"🇦🇩\r"},{"phoneCode":"244","code":"AO","name":"Angola","pattern":"244 XXX XXX XXX","emoji":"🇦🇴\r"},{"phoneCode":"1 264","code":"AI","name":"Anguilla","pattern":"1264 XXX XXXX","emoji":"🇦🇮\r"},{"phoneCode":"1 268","code":"AG","name":"Antigua & Barbuda","pattern":"1268 XXX XXXX","emoji":"🇦🇬\r"},{"phoneCode":"54","code":"AR","name":"Argentina","pattern":"","emoji":"🇦🇷\r"},{"phoneCode":"374","code":"AM","name":"Armenia","pattern":"374 XX XXX XXX","emoji":"🇦🇲\r"},{"phoneCode":"297","code":"AW","name":"Aruba","pattern":"297 XXX XXXX","emoji":"🇦🇼\r"},{"phoneCode":"247","code":"SH","name":"Ascension","pattern":"290 XX XXX","emoji":"🇸🇭\r"},{"phoneCode":"61","code":"AU","name":"Australia","pattern":"61 XXX XXX XXX","emoji":"🇦🇺\r"},{"phoneCode":"672","code":"AU","name":"Australian External Territories","pattern":"61 XXX XXX XXX","emoji":"🇦🇺\r"},{"phoneCode":"43","code":"AT","name":"Austria","pattern":"","emoji":"🇦🇹\r"},{"phoneCode":"994","code":"AZ","name":"Azerbaijan","pattern":"994 XX XXX XX XX","emoji":"🇦🇿\r"},{"phoneCode":"1 242","code":"BS","name":"Bahamas","pattern":"1242 XXX XXXX","emoji":"🇧🇸\r"},{"phoneCode":"973","code":"BH","name":"Bahrain","pattern":"973 XXXX XXXX","emoji":"🇧🇭\r"},{"phoneCode":"880","code":"BD","name":"Bangladesh","pattern":"","emoji":"🇧🇩\r"},{"phoneCode":"1 246","code":"BB","name":"Barbados","pattern":"1246 XXX XXXX","emoji":"🇧🇧\r"},{"phoneCode":"1 268","code":"AG","name":"Barbuda","pattern":"1268 XXX XXXX","emoji":"🇦🇬\r"},{"phoneCode":"375","code":"BY","name":"Belarus","pattern":"375 XX XXX XXXX","emoji":"🇧🇾\r"},{"phoneCode":"32","code":"BE","name":"Belgium","pattern":"32 XXX XX XX XX","emoji":"🇧🇪\r"},{"phoneCode":"501","code":"BZ","name":"Belize","pattern":"","emoji":"🇧🇿\r"},{"phoneCode":"229","code":"BJ","name":"Benin","pattern":"229 XX XXX XXX","emoji":"🇧🇯\r"},{"phoneCode":"1 441","code":"BM","name":"Bermuda","pattern":"1441 XXX XXXX","emoji":"🇧🇲\r"},{"phoneCode":"975","code":"BT","name":"Bhutan","pattern":"","emoji":"🇧🇹\r"},{"phoneCode":"591","code":"BO","name":"Bolivia","pattern":"591 X XXX XXXX","emoji":"🇧🇴\r"},{"phoneCode":"599 7","code":"BQ","name":"Caribbean Netherlands","pattern":"","emoji":"🇧🇶\r"},{"phoneCode":"387","code":"BA","name":"Bosnia & Herzegovina","pattern":"","emoji":"🇧🇦\r"},{"phoneCode":"267","code":"BW","name":"Botswana","pattern":"267 XX XXX XXX","emoji":"🇧🇼\r"},{"phoneCode":"55","code":"BR","name":"Brazil","pattern":"55 XX XXXXX XXXX","emoji":"🇧🇷\r"},{"phoneCode":"246","code":"IO","name":"British Indian Ocean Territory","pattern":"246 XXX XXXX","emoji":"🇮🇴\r"},{"phoneCode":"1 284","code":"VG","name":"British Virgin Islands","pattern":"1284 XXX XXXX","emoji":"🇻🇬\r"},{"phoneCode":"673","code":"BN","name":"Brunei","pattern":"673 XXX XXXX","emoji":"🇧🇳\r"},{"phoneCode":"359","code":"BG","name":"Bulgaria","pattern":"","emoji":"🇧🇬\r"},{"phoneCode":"226","code":"BF","name":"Burkina Faso","pattern":"226 XX XX XX XX","emoji":"🇧🇫\r"},{"phoneCode":"95","code":"MM","name":"Myanmar (Burma)","pattern":"","emoji":"🇲🇲\r"},{"phoneCode":"257","code":"BI","name":"Burundi","pattern":"257 XX XX XXXX","emoji":"🇧🇮\r"},{"phoneCode":"855","code":"KH","name":"Cambodia","pattern":"","emoji":"🇰🇭\r"},{"phoneCode":"237","code":"CM","name":"Cameroon","pattern":"237 XXXX XXXX","emoji":"🇨🇲\r"},{"phoneCode":"1","code":"CA","name":"Canada","pattern":"1 XXX XXX XXXX","emoji":"🇨🇦\r"},{"phoneCode":"238","code":"CV","name":"Cape Verde","pattern":"238 XXX XXXX","emoji":"🇨🇻\r"},{"phoneCode":"1 345","code":"KY","name":"Cayman Islands","pattern":"1345 XXX XXXX","emoji":"🇰🇾\r"},{"phoneCode":"236","code":"CF","name":"Central African Republic","pattern":"236 XX XX XX XX","emoji":"🇨🇫\r"},{"phoneCode":"235","code":"TD","name":"Chad","pattern":"235 XX XX XX XX","emoji":"🇹🇩\r"},{"phoneCode":"56","code":"CL","name":"Chile","pattern":"56 X XXXX XXXX","emoji":"🇨🇱\r"},{"phoneCode":"86","code":"CN","name":"China","pattern":"86 XXX XXXX XXXX","emoji":"🇨🇳\r"},{"phoneCode":"61","code":"CX","name":"Christmas Island","pattern":"","emoji":"🇨🇽\r"},{"phoneCode":"61","code":"CC","name":"Cocos (Keeling) Islands","pattern":"","emoji":"🇨🇨\r"},{"phoneCode":"57","code":"CO","name":"Colombia","pattern":"57 XXX XXX XXXX","emoji":"🇨🇴\r"},{"phoneCode":"269","code":"KM","name":"Comoros","pattern":"269 XXX XXXX","emoji":"🇰🇲\r"},{"phoneCode":"242","code":"CG","name":"Congo - Brazzaville","pattern":"242 XX XXX XXXX","emoji":"🇨🇬\r"},{"phoneCode":"243","code":"CD","name":"Congo - Kinshasa","pattern":"243 XX XXX XXXX","emoji":"🇨🇩\r"},{"phoneCode":"682","code":"CK","name":"Cook Islands","pattern":"","emoji":"🇨🇰\r"},{"phoneCode":"506","code":"CR","name":"Costa Rica","pattern":"","emoji":"🇨🇷\r"},{"phoneCode":"225","code":"CI","name":"Cote d’Ivoire","pattern":"225 XX XXX XXX","emoji":"🇨🇮\r"},{"phoneCode":"385","code":"HR","name":"Croatia","pattern":"","emoji":"🇭🇷\r"},{"phoneCode":"53","code":"CU","name":"Cuba","pattern":"53 XXXX XXXX","emoji":"🇨🇺\r"},{"phoneCode":"599 9","code":"CW","name":"Curacao","pattern":"","emoji":"🇨🇼\r"},{"phoneCode":"357","code":"CY","name":"Cyprus","pattern":"357 XXXX XXXX","emoji":"🇨🇾\r"},{"phoneCode":"420","code":"CZ","name":"Czech Republic","pattern":"","emoji":"🇨🇿\r"},{"phoneCode":"45","code":"DK","name":"Denmark","pattern":"45 XXXX XXXX","emoji":"🇩🇰\r"},{"phoneCode":"246","code":"DG","name":"Diego Garcia","pattern":"","emoji":"🇩🇬\r"},{"phoneCode":"253","code":"DJ","name":"Djibouti","pattern":"253 XX XX XX XX","emoji":"🇩🇯\r"},{"phoneCode":"1 767","code":"DM","name":"Dominica","pattern":"1767 XXX XXXX","emoji":"🇩🇲\r"},{"phoneCode":"1 809 and 1 829","code":"DO","name":"Dominican Republic","pattern":"1 XXX XXX XXXX","emoji":"🇩🇴\r"},{"phoneCode":"670","code":"TL","name":"Timor-Leste","pattern":"","emoji":"🇹🇱\r"},{"phoneCode":"593","code":"EC","name":"Ecuador","pattern":"","emoji":"🇪🇨\r"},{"phoneCode":"20","code":"EG","name":"Egypt","pattern":"20 XX XXX XXXX","emoji":"🇪🇬\r"},{"phoneCode":"503","code":"SV","name":"El Salvador","pattern":"503 XXXX XXXX","emoji":"🇸🇻\r"},{"phoneCode":"240","code":"GQ","name":"Equatorial Guinea","pattern":"240 XXX XXX XXX","emoji":"🇬🇶\r"},{"phoneCode":"291","code":"ER","name":"Eritrea","pattern":"291 X XXX XXX","emoji":"🇪🇷\r"},{"phoneCode":"372","code":"EE","name":"Estonia","pattern":"","emoji":"🇪🇪\r"},{"phoneCode":"251","code":"ET","name":"Ethiopia","pattern":"251 XX XXX XXXX","emoji":"🇪🇹\r"},{"phoneCode":"500","code":"FK","name":"Falkland Islands","pattern":"","emoji":"🇫🇰\r"},{"phoneCode":"298","code":"FO","name":"Faroe Islands","pattern":"298 XXX XXX","emoji":"🇫🇴\r"},{"phoneCode":"679","code":"FJ","name":"Fiji","pattern":"","emoji":"🇫🇯\r"},{"phoneCode":"358","code":"FI","name":"Finland","pattern":"","emoji":"🇫🇮\r"},{"phoneCode":"33","code":"FR","name":"France","pattern":"33 X XX XX XX XX","emoji":"🇫🇷\r"},{"phoneCode":"594","code":"GF","name":"French Guiana","pattern":"","emoji":"🇬🇫\r"},{"phoneCode":"689","code":"PF","name":"French Polynesia","pattern":"","emoji":"🇵🇫\r"},{"phoneCode":"241","code":"GA","name":"Gabon","pattern":"241 X XX XX XX","emoji":"🇬🇦\r"},{"phoneCode":"220","code":"GM","name":"Gambia","pattern":"220 XXX XXXX","emoji":"🇬🇲\r"},{"phoneCode":"995","code":"GE","name":"Georgia","pattern":"","emoji":"🇬🇪\r"},{"phoneCode":"49","code":"DE","name":"Germany","pattern":"49 XXX XXXXXXXX","emoji":"🇩🇪\r"},{"phoneCode":"233","code":"GH","name":"Ghana","pattern":"","emoji":"🇬🇭\r"},{"phoneCode":"350","code":"GI","name":"Gibraltar","pattern":"350 XXXX XXXX","emoji":"🇬🇮\r"},{"phoneCode":"30","code":"GR","name":"Greece","pattern":"30 XX XXXX XXXX","emoji":"🇬🇷\r"},{"phoneCode":"299","code":"GL","name":"Greenland","pattern":"299 XXX XXX","emoji":"🇬🇱\r"},{"phoneCode":"1 473","code":"GD","name":"Grenada","pattern":"1473 XXX XXXX","emoji":"🇬🇩\r"},{"phoneCode":"590","code":"GP","name":"Guadeloupe","pattern":"","emoji":"🇬🇵\r"},{"phoneCode":"1 671","code":"GU","name":"Guam","pattern":"1671 XXX XXXX","emoji":"🇬🇺\r"},{"phoneCode":"502","code":"GT","name":"Guatemala","pattern":"502 X XXX XXXX","emoji":"🇬🇹\r"},{"phoneCode":"44","code":"GG","name":"Guernsey","pattern":"","emoji":"🇬🇬\r"},{"phoneCode":"224","code":"GN","name":"Guinea","pattern":"224 XXX XXX XXX","emoji":"🇬🇳\r"},{"phoneCode":"245","code":"GW","name":"Guinea-Bissau","pattern":"245 XXX XXXX","emoji":"🇬🇼\r"},{"phoneCode":"592","code":"GY","name":"Guyana","pattern":"","emoji":"🇬🇾\r"},{"phoneCode":"509","code":"HT","name":"Haiti","pattern":"","emoji":"🇭🇹\r"},{"phoneCode":"504","code":"HN","name":"Honduras","pattern":"504 XXXX XXXX","emoji":"🇭🇳\r"},{"phoneCode":"852","code":"HK","name":"Hong Kong SAR China","pattern":"","emoji":"🇭🇰\r"},{"phoneCode":"36","code":"HU","name":"Hungary","pattern":"36 XX XXX XXXX","emoji":"🇭🇺\r"},{"phoneCode":"354","code":"IS","name":"Iceland","pattern":"354 XXX XXXX","emoji":"🇮🇸\r"},{"phoneCode":"91","code":"IN","name":"India","pattern":"91 XXXXX XXXXX","emoji":"🇮🇳\r"},{"phoneCode":"62","code":"ID","name":"Indonesia","pattern":"","emoji":"🇮🇩\r"},{"phoneCode":"98","code":"IR","name":"Iran","pattern":"98 XXX XXX XXXX","emoji":"🇮🇷\r"},{"phoneCode":"964","code":"IQ","name":"Iraq","pattern":"964 XXX XXX XXXX","emoji":"🇮🇶\r"},{"phoneCode":"353","code":"IE","name":"Ireland","pattern":"353 XX XXX XXXX","emoji":"🇮🇪\r"},{"phoneCode":"972","code":"IL","name":"Israel","pattern":"972 XX XXX XXXX","emoji":"🇮🇱\r"},{"phoneCode":"39","code":"IT","name":"Italy","pattern":"39 XXX XXX XXXX","emoji":"🇮🇹\r"},{"phoneCode":"1 876","code":"JM","name":"Jamaica","pattern":"1876 XXX XXXX","emoji":"🇯🇲\r"},{"phoneCode":"47 79","code":"SJ","name":"Svalbard & Jan Mayen","pattern":"","emoji":"🇸🇯\r"},{"phoneCode":"81","code":"JP","name":"Japan","pattern":"81 XX XXXX XXXX","emoji":"🇯🇵\r"},{"phoneCode":"44","code":"JE","name":"Jersey","pattern":"","emoji":"🇯🇪\r"},{"phoneCode":"962","code":"JO","name":"Jordan","pattern":"962 X XXXX XXXX","emoji":"🇯🇴\r"},{"phoneCode":"7 7","code":"KZ","name":"Kazakhstan","pattern":"7 XXX XXX XX XX","emoji":"🇰🇿\r"},{"phoneCode":"254","code":"KE","name":"Kenya","pattern":"254 XXX XXX XXX","emoji":"🇰🇪\r"},{"phoneCode":"686","code":"KI","name":"Kiribati","pattern":"","emoji":"🇰🇮\r"},{"phoneCode":"850","code":"KP","name":"North Korea","pattern":"","emoji":"🇰🇵\r"},{"phoneCode":"82","code":"KR","name":"South Korea","pattern":"","emoji":"🇰🇷\r"},{"phoneCode":"965","code":"KW","name":"Kuwait","pattern":"965 XXXX XXXX","emoji":"🇰🇼\r"},{"phoneCode":"996","code":"KG","name":"Kyrgyzstan","pattern":"","emoji":"🇰🇬\r"},{"phoneCode":"856","code":"LA","name":"Laos","pattern":"","emoji":"🇱🇦\r"},{"phoneCode":"371","code":"LV","name":"Latvia","pattern":"371 XXX XXXXX","emoji":"🇱🇻\r"},{"phoneCode":"961","code":"LB","name":"Lebanon","pattern":"","emoji":"🇱🇧\r"},{"phoneCode":"266","code":"LS","name":"Lesotho","pattern":"266 XX XXX XXX","emoji":"🇱🇸\r"},{"phoneCode":"231","code":"LR","name":"Liberia","pattern":"","emoji":"🇱🇷\r"},{"phoneCode":"218","code":"LY","name":"Libya","pattern":"218 XX XXX XXXX","emoji":"🇱🇾\r"},{"phoneCode":"423","code":"LI","name":"Liechtenstein","pattern":"","emoji":"🇱🇮\r"},{"phoneCode":"370","code":"LT","name":"Lithuania","pattern":"370 XXX XXXXX","emoji":"🇱🇹\r"},{"phoneCode":"352","code":"LU","name":"Luxembourg","pattern":"","emoji":"🇱🇺\r"},{"phoneCode":"853","code":"MO","name":"Macau SAR China","pattern":"","emoji":"🇲🇴\r"},{"phoneCode":"389","code":"MK","name":"Macedonia","pattern":"","emoji":"🇲🇰\r"},{"phoneCode":"261","code":"MG","name":"Madagascar","pattern":"261 XX XX XXX XX","emoji":"🇲🇬\r"},{"phoneCode":"265","code":"MW","name":"Malawi","pattern":"","emoji":"🇲🇼\r"},{"phoneCode":"60","code":"MM","name":"Malaysia","pattern":"","emoji":"🇲🇲\r"},{"phoneCode":"960","code":"MV","name":"Maldives","pattern":"","emoji":"🇲🇻\r"},{"phoneCode":"223","code":"ML","name":"Mali","pattern":"223 XXXX XXXX","emoji":"🇲🇱\r"},{"phoneCode":"356","code":"MT","name":"Malta","pattern":"356 XX XX XX XX","emoji":"🇲🇹\r"},{"phoneCode":"692","code":"MH","name":"Marshall Islands","pattern":"","emoji":"🇲🇭\r"},{"phoneCode":"596","code":"MQ","name":"Martinique","pattern":"","emoji":"🇲🇶\r"},{"phoneCode":"222","code":"MR","name":"Mauritania","pattern":"222 XXXX XXXX","emoji":"🇲🇷\r"},{"phoneCode":"230","code":"MU","name":"Mauritius","pattern":"","emoji":"🇲🇺\r"},{"phoneCode":"262","code":"YT","name":"Mayotte","pattern":"","emoji":"🇾🇹\r"},{"phoneCode":"52","code":"MX","name":"Mexico","pattern":"","emoji":"🇲🇽\r"},{"phoneCode":"691","code":"FM","name":"Micronesia","pattern":"","emoji":"🇫🇲\r"},{"phoneCode":"373","code":"MD","name":"Moldova","pattern":"373 XX XXX XXX","emoji":"🇲🇩\r"},{"phoneCode":"377","code":"MC","name":"Monaco","pattern":"377 XXXX XXXX","emoji":"🇲🇨\r"},{"phoneCode":"976","code":"MN","name":"Mongolia","pattern":"","emoji":"🇲🇳\r"},{"phoneCode":"382","code":"ME","name":"Montenegro","pattern":"","emoji":"🇲🇪\r"},{"phoneCode":"1 664","code":"MS","name":"Montserrat","pattern":"1664 XXX XXXX","emoji":"🇲🇸\r"},{"phoneCode":"212","code":"MA","name":"Morocco","pattern":"212 XX XXX XXXX","emoji":"🇲🇦\r"},{"phoneCode":"258","code":"MZ","name":"Mozambique","pattern":"258 XX XXX XXXX","emoji":"🇲🇿\r"},{"phoneCode":"264","code":"NA","name":"Namibia","pattern":"264 XX XXX XXXX","emoji":"🇳🇦\r"},{"phoneCode":"674","code":"NR","name":"Nauru","pattern":"","emoji":"🇳🇷\r"},{"phoneCode":"977","code":"NP","name":"Nepal","pattern":"","emoji":"🇳🇵\r"},{"phoneCode":"31","code":"NL","name":"Netherlands","pattern":"31 X XX XX XX XX","emoji":"🇳🇱\r"},{"phoneCode":"687","code":"NC","name":"New Caledonia","pattern":"","emoji":"🇳🇨\r"},{"phoneCode":"64","code":"NZ","name":"New Zealand","pattern":"","emoji":"🇳🇿\r"},{"phoneCode":"505","code":"NI","name":"Nicaragua","pattern":"505 XXXX XXXX","emoji":"🇳🇮\r"},{"phoneCode":"227","code":"NE","name":"Niger","pattern":"227 XX XX XX XX","emoji":"🇳🇪\r"},{"phoneCode":"234","code":"NG","name":"Nigeria","pattern":"","emoji":"🇳🇬\r"},{"phoneCode":"683","code":"NU","name":"Niue","pattern":"","emoji":"🇳🇺\r"},{"phoneCode":"672","code":"NF","name":"Norfolk Island","pattern":"","emoji":"🇳🇫\r"},{"phoneCode":"1 670","code":"MP","name":"Northern Mariana Islands","pattern":"1670 XXX XXXX","emoji":"🇲🇵\r"},{"phoneCode":"47","code":"NO","name":"Norway","pattern":"47 XXXX XXXX","emoji":"🇳🇴\r"},{"phoneCode":"968","code":"OM","name":"Oman","pattern":"968 XXXX XXXX","emoji":"🇴🇲\r"},{"phoneCode":"92","code":"PK","name":"Pakistan","pattern":"92 XXX XXX XXXX","emoji":"🇵🇰\r"},{"phoneCode":"680","code":"PW","name":"Palau","pattern":"","emoji":"🇵🇼\r"},{"phoneCode":"970","code":"PS","name":"Palestinian Territories","pattern":"970 XXX XX XXXX","emoji":"🇵🇸\r"},{"phoneCode":"507","code":"PA","name":"Panama","pattern":"507 XXXX XXXX","emoji":"🇵🇦\r"},{"phoneCode":"675","code":"PG","name":"Papua New Guinea","pattern":"","emoji":"🇵🇬\r"},{"phoneCode":"595","code":"PY","name":"Paraguay","pattern":"595 XXX XXX XXX","emoji":"🇵🇾\r"},{"phoneCode":"51","code":"PE","name":"Peru","pattern":"51 XXX XXX XXX","emoji":"🇵🇪\r"},{"phoneCode":"63","code":"PH","name":"Philippines","pattern":"63 XXX XXX XXXX","emoji":"🇵🇭\r"},{"phoneCode":"64","code":"PN","name":"Pitcairn Islands","pattern":"","emoji":"🇵🇳\r"},{"phoneCode":"48","code":"PL","name":"Poland","pattern":"48 XXX XXX XXX","emoji":"🇵🇱\r"},{"phoneCode":"351","code":"PT","name":"Portugal","pattern":"351 X XXXX XXXX","emoji":"🇵🇹\r"},{"phoneCode":"1 787 and 1 939","code":"PR","name":"Puerto Rico","pattern":"1 XXX XXX XXXX","emoji":"🇵🇷\r"},{"phoneCode":"974","code":"QA","name":"Qatar","pattern":"","emoji":"🇶🇦\r"},{"phoneCode":"262","code":"RE","name":"Reunion","pattern":"262 XXX XXX XXX","emoji":"🇷🇪\r"},{"phoneCode":"40","code":"RO","name":"Romania","pattern":"40 XXX XXX XXX","emoji":"🇷🇴\r"},{"phoneCode":"7","code":"RU","name":"Russia","pattern":"7 XXX XXX XX XX","emoji":"🇷🇺\r"},{"phoneCode":"250","code":"RW","name":"Rwanda","pattern":"250 XXX XXX XXX","emoji":"🇷🇼\r"},{"phoneCode":"590","code":"BL","name":"St. Barthelemy","pattern":"","emoji":"🇧🇱\r"},{"phoneCode":"290","code":"SH","name":"St. Helena","pattern":"290 XX XXX","emoji":"🇸🇭\r"},{"phoneCode":"1 869","code":"KN","name":"St. Kitts & Nevis","pattern":"1869 XXX XXXX","emoji":"🇰🇳\r"},{"phoneCode":"1 758","code":"LC","name":"St. Lucia","pattern":"1758 XXX XXXX","emoji":"🇱🇨\r"},{"phoneCode":"590","code":"MF","name":"St. Martin (France)","pattern":"","emoji":"🇲🇫\r"},{"phoneCode":"508","code":"PM","name":"St. Pierre and Miquelon","pattern":"","emoji":"🇵🇲\r"},{"phoneCode":"1 784","code":"VC","name":"St. Vincent and the Grenadines","pattern":"1784 XXX XXXX","emoji":"🇻🇨\r"},{"phoneCode":"685","code":"WS","name":"Samoa","pattern":"","emoji":"🇼🇸\r"},{"phoneCode":"378","code":"SM","name":"San Marino","pattern":"378 XXX XXX XXXX","emoji":"🇸🇲\r"},{"phoneCode":"239","code":"ST","name":"São Tome & Principe","pattern":"239 XX XXXXX","emoji":"🇸🇹\r"},{"phoneCode":"966","code":"SA","name":"Saudi Arabia","pattern":"","emoji":"🇸🇦\r"},{"phoneCode":"221","code":"SN","name":"Senegal","pattern":"221 XX XXX XXXX","emoji":"🇸🇳\r"},{"phoneCode":"381","code":"RS","name":"Serbia","pattern":"381 XX XXX XXXX","emoji":"🇷🇸\r"},{"phoneCode":"248","code":"SC","name":"Seychelles","pattern":"248 X XX XX XX","emoji":"🇸🇨\r"},{"phoneCode":"232","code":"SL","name":"Sierra Leone","pattern":"232 XX XXX XXX","emoji":"🇸🇱\r"},{"phoneCode":"65","code":"SG","name":"Singapore","pattern":"65 XXXX XXXX","emoji":"🇸🇬\r"},{"phoneCode":"599 3","code":"BQ","name":"Sint Eustatius","pattern":"","emoji":"🇧🇶\r"},{"phoneCode":"1 721","code":"SX","name":"Sint Maarten","pattern":"1721 XXX XXXX","emoji":"🇸🇽\r"},{"phoneCode":"421","code":"SK","name":"Slovakia","pattern":"","emoji":"🇸🇰\r"},{"phoneCode":"386","code":"SI","name":"Slovenia","pattern":"","emoji":"🇸🇮\r"},{"phoneCode":"677","code":"SB","name":"Solomon Islands","pattern":"","emoji":"🇸🇧\r"},{"phoneCode":"252","code":"SO","name":"Somalia","pattern":"252 XX XXX XXX","emoji":"🇸🇴\r"},{"phoneCode":"27","code":"ZA","name":"South Africa","pattern":"27 XX XXX XXXX","emoji":"🇿🇦\r"},{"phoneCode":"500","code":"GS","name":"South Georgia & South Sandwich Islands","pattern":"","emoji":"🇬🇸\r"},{"phoneCode":"995 34","code":"","name":"South Ossetia","pattern":"","emoji":"\r"},{"phoneCode":"211","code":"SS","name":"South Sudan","pattern":"211 XX XXX XXXX","emoji":"🇸🇸\r"},{"phoneCode":"34","code":"ES","name":"Spain","pattern":"34 XXX XXX XXX","emoji":"🇪🇸\r"},{"phoneCode":"94","code":"LK","name":"Sri Lanka","pattern":"94 XX XXX XXXX","emoji":"🇱🇰\r"},{"phoneCode":"249","code":"SD","name":"Sudan","pattern":"249 XX XXX XXXX","emoji":"🇸🇩\r"},{"phoneCode":"597","code":"SR","name":"Suriname","pattern":"597 XXX XXXX","emoji":"🇸🇷\r"},{"phoneCode":"47 79","code":"SJ","name":"Svalbard","pattern":"","emoji":"🇸🇯\r"},{"phoneCode":"268","code":"SZ","name":"Swaziland","pattern":"268 XXXX XXXX","emoji":"🇸🇿\r"},{"phoneCode":"46","code":"SE","name":"Sweden","pattern":"46 XX XXX XXXX","emoji":"🇸🇪\r"},{"phoneCode":"41","code":"CH","name":"Switzerland","pattern":"41 XX XXX XXXX","emoji":"🇨🇭\r"},{"phoneCode":"963","code":"SY","name":"Syria","pattern":"","emoji":"🇸🇾\r"},{"phoneCode":"886","code":"TW","name":"Taiwan","pattern":"","emoji":"🇹🇼\r"},{"phoneCode":"992","code":"TJ","name":"Tajikistan","pattern":"","emoji":"🇹🇯\r"},{"phoneCode":"255","code":"TZ","name":"Tanzania","pattern":"255 XX XXX XXXX","emoji":"🇹🇿\r"},{"phoneCode":"66","code":"TH","name":"Thailand","pattern":"66 X XXXX XXXX","emoji":"🇹🇭\r"},{"phoneCode":"228","code":"TG","name":"Togo","pattern":"228 XX XXX XXX","emoji":"🇹🇬\r"},{"phoneCode":"690","code":"TK","name":"Tokelau","pattern":"","emoji":"🇹🇰\r"},{"phoneCode":"676","code":"TO","name":"Tonga","pattern":"","emoji":"🇹🇴\r"},{"phoneCode":"1 868","code":"TT","name":"Trinidad & Tobago","pattern":"1868 XXX XXXX","emoji":"🇹🇹\r"},{"phoneCode":"216","code":"TN","name":"Tunisia","pattern":"216 XX XXX XXX","emoji":"🇹🇳\r"},{"phoneCode":"90","code":"TR","name":"Turkey","pattern":"90 XXX XXX XXXX","emoji":"🇹🇷\r"},{"phoneCode":"993","code":"TM","name":"Turkmenistan","pattern":"993 XX XXXXXX","emoji":"🇹🇲\r"},{"phoneCode":"1 649","code":"TC","name":"Turks & Caicos Islands","pattern":"1649 XXX XXXX","emoji":"🇹🇨\r"},{"phoneCode":"688","code":"TV","name":"Tuvalu","pattern":"","emoji":"🇹🇻\r"},{"phoneCode":"256","code":"UG","name":"Uganda","pattern":"256 XX XXX XXXX","emoji":"🇺🇬\r"},{"phoneCode":"380","code":"UA","name":"Ukraine","pattern":"380 XX XXX XX XX","emoji":"🇺🇦\r"},{"phoneCode":"971","code":"AE","name":"United Arab Emirates","pattern":"971 XX XXX XXXX","emoji":"🇦🇪\r"},{"phoneCode":"44","code":"GB","name":"United Kingdom","pattern":"44 XXXX XXXXXX","emoji":"🇬🇧\r"},{"phoneCode":"1","code":"US","name":"United States","pattern":"1 XXX XXX XXXX","emoji":"🇺🇸\r"},{"phoneCode":"598","code":"UY","name":"Uruguay","pattern":"598 XXXX XXXX","emoji":"🇺🇾\r"},{"phoneCode":"1 340","code":"VI","name":"U.S. Virgin Islands","pattern":"1340 XXX XXXX","emoji":"🇻🇮\r"},{"phoneCode":"998","code":"UZ","name":"Uzbekistan","pattern":"998 XX XXXXXXX","emoji":"🇺🇿\r"},{"phoneCode":"678","code":"VU","name":"Vanuatu","pattern":"","emoji":"🇻🇺\r"},{"phoneCode":"58","code":"VE","name":"Venezuela","pattern":"58 XXX XXX XXXX","emoji":"🇻🇪\r"},{"phoneCode":"39 06 698","code":"VA","name":"Vatican City","pattern":"","emoji":"🇻🇦\r"},{"phoneCode":"84","code":"VN","name":"Vietnam","pattern":"","emoji":"🇻🇳\r"},{"phoneCode":"681","code":"WF","name":"Wallis & Futuna","pattern":"","emoji":"🇼🇫\r"},{"phoneCode":"967","code":"YE","name":"Yemen","pattern":"967 XXX XXX XXX","emoji":"🇾🇪\r"},{"phoneCode":"260","code":"ZM","name":"Zambia","pattern":"260 XX XXX XXXX","emoji":"🇿🇲\r"},{"phoneCode":"255","code":"","name":"Zanzibar","pattern":"","emoji":"\r"},{"phoneCode":"263","code":"ZW","name":"Zimbabwe","pattern":"263 XX XXX XXXX","emoji":"🇿🇼\r"}] \ No newline at end of file +[{"phoneCode":"7 840","code":"AB","name":"Abkhazia","pattern":"","emoji":"\r"},{"phoneCode":"93","code":"AF","name":"Afghanistan","pattern":"93 XXX XXX XXX","emoji":"🇦🇫\r"},{"phoneCode":"358 18","code":"AX","name":"Aland Islands","pattern":"","emoji":"🇦🇽\r"},{"phoneCode":"355","code":"AL","name":"Albania","pattern":"355 XX XXX XXXX","emoji":"🇦🇱\r"},{"phoneCode":"213","code":"DZ","name":"Algeria","pattern":"213 XXX XX XX XX","emoji":"🇩🇿\r"},{"phoneCode":"1 684","code":"AS","name":"American Samoa","pattern":"1684 XXX XXXX","emoji":"🇦🇸\r"},{"phoneCode":"376","code":"AD","name":"Andorra","pattern":"376 XX XX XX","emoji":"🇦🇩\r"},{"phoneCode":"244","code":"AO","name":"Angola","pattern":"244 XXX XXX XXX","emoji":"🇦🇴\r"},{"phoneCode":"1 264","code":"AI","name":"Anguilla","pattern":"1264 XXX XXXX","emoji":"🇦🇮\r"},{"phoneCode":"1 268","code":"AG","name":"Antigua & Barbuda","pattern":"1268 XXX XXXX","emoji":"🇦🇬\r"},{"phoneCode":"54","code":"AR","name":"Argentina","pattern":"","emoji":"🇦🇷\r"},{"phoneCode":"374","code":"AM","name":"Armenia","pattern":"374 XX XXX XXX","emoji":"🇦🇲\r"},{"phoneCode":"297","code":"AW","name":"Aruba","pattern":"297 XXX XXXX","emoji":"🇦🇼\r"},{"phoneCode":"247","code":"SH","name":"Ascension","pattern":"290 XX XXX","emoji":"🇸🇭\r"},{"phoneCode":"61","code":"AU","name":"Australia","pattern":"61 XXX XXX XXX","emoji":"🇦🇺\r"},{"phoneCode":"672","code":"AU","name":"Australian External Territories","pattern":"61 XXX XXX XXX","emoji":"🇦🇺\r"},{"phoneCode":"43","code":"AT","name":"Austria","pattern":"","emoji":"🇦🇹\r"},{"phoneCode":"994","code":"AZ","name":"Azerbaijan","pattern":"994 XX XXX XX XX","emoji":"🇦🇿\r"},{"phoneCode":"1 242","code":"BS","name":"Bahamas","pattern":"1242 XXX XXXX","emoji":"🇧🇸\r"},{"phoneCode":"973","code":"BH","name":"Bahrain","pattern":"973 XXXX XXXX","emoji":"🇧🇭\r"},{"phoneCode":"880","code":"BD","name":"Bangladesh","pattern":"","emoji":"🇧🇩\r"},{"phoneCode":"1 246","code":"BB","name":"Barbados","pattern":"1246 XXX XXXX","emoji":"🇧🇧\r"},{"phoneCode":"1 268","code":"AG","name":"Barbuda","pattern":"1268 XXX XXXX","emoji":"🇦🇬\r"},{"phoneCode":"375","code":"BY","name":"Belarus","pattern":"375 XX XXX XXXX","emoji":"🇧🇾\r"},{"phoneCode":"32","code":"BE","name":"Belgium","pattern":"32 XXX XX XX XX","emoji":"🇧🇪\r"},{"phoneCode":"501","code":"BZ","name":"Belize","pattern":"","emoji":"🇧🇿\r"},{"phoneCode":"229","code":"BJ","name":"Benin","pattern":"229 XX XXX XXX","emoji":"🇧🇯\r"},{"phoneCode":"1 441","code":"BM","name":"Bermuda","pattern":"1441 XXX XXXX","emoji":"🇧🇲\r"},{"phoneCode":"975","code":"BT","name":"Bhutan","pattern":"","emoji":"🇧🇹\r"},{"phoneCode":"591","code":"BO","name":"Bolivia","pattern":"591 X XXX XXXX","emoji":"🇧🇴\r"},{"phoneCode":"599 7","code":"BQ","name":"Caribbean Netherlands","pattern":"","emoji":"🇧🇶\r"},{"phoneCode":"387","code":"BA","name":"Bosnia & Herzegovina","pattern":"","emoji":"🇧🇦\r"},{"phoneCode":"267","code":"BW","name":"Botswana","pattern":"267 XX XXX XXX","emoji":"🇧🇼\r"},{"phoneCode":"55","code":"BR","name":"Brazil","pattern":"55 XX XXXXX XXXX","emoji":"🇧🇷\r"},{"phoneCode":"246","code":"IO","name":"British Indian Ocean Territory","pattern":"246 XXX XXXX","emoji":"🇮🇴\r"},{"phoneCode":"1 284","code":"VG","name":"British Virgin Islands","pattern":"1284 XXX XXXX","emoji":"🇻🇬\r"},{"phoneCode":"673","code":"BN","name":"Brunei","pattern":"673 XXX XXXX","emoji":"🇧🇳\r"},{"phoneCode":"359","code":"BG","name":"Bulgaria","pattern":"","emoji":"🇧🇬\r"},{"phoneCode":"226","code":"BF","name":"Burkina Faso","pattern":"226 XX XX XX XX","emoji":"🇧🇫\r"},{"phoneCode":"95","code":"MM","name":"Myanmar (Burma)","pattern":"","emoji":"🇲🇲\r"},{"phoneCode":"257","code":"BI","name":"Burundi","pattern":"257 XX XX XXXX","emoji":"🇧🇮\r"},{"phoneCode":"855","code":"KH","name":"Cambodia","pattern":"","emoji":"🇰🇭\r"},{"phoneCode":"237","code":"CM","name":"Cameroon","pattern":"237 XXXX XXXX","emoji":"🇨🇲\r"},{"phoneCode":"1","code":"CA","name":"Canada","pattern":"1 XXX XXX XXXX","emoji":"🇨🇦\r"},{"phoneCode":"238","code":"CV","name":"Cape Verde","pattern":"238 XXX XXXX","emoji":"🇨🇻\r"},{"phoneCode":"1 345","code":"KY","name":"Cayman Islands","pattern":"1345 XXX XXXX","emoji":"🇰🇾\r"},{"phoneCode":"236","code":"CF","name":"Central African Republic","pattern":"236 XX XX XX XX","emoji":"🇨🇫\r"},{"phoneCode":"235","code":"TD","name":"Chad","pattern":"235 XX XX XX XX","emoji":"🇹🇩\r"},{"phoneCode":"56","code":"CL","name":"Chile","pattern":"56 X XXXX XXXX","emoji":"🇨🇱\r"},{"phoneCode":"86","code":"CN","name":"China","pattern":"86 XXX XXXX XXXX","emoji":"🇨🇳\r"},{"phoneCode":"61","code":"CX","name":"Christmas Island","pattern":"","emoji":"🇨🇽\r"},{"phoneCode":"61","code":"CC","name":"Cocos (Keeling) Islands","pattern":"","emoji":"🇨🇨\r"},{"phoneCode":"57","code":"CO","name":"Colombia","pattern":"57 XXX XXX XXXX","emoji":"🇨🇴\r"},{"phoneCode":"269","code":"KM","name":"Comoros","pattern":"269 XXX XXXX","emoji":"🇰🇲\r"},{"phoneCode":"242","code":"CG","name":"Congo - Brazzaville","pattern":"242 XX XXX XXXX","emoji":"🇨🇬\r"},{"phoneCode":"243","code":"CD","name":"Congo - Kinshasa","pattern":"243 XX XXX XXXX","emoji":"🇨🇩\r"},{"phoneCode":"682","code":"CK","name":"Cook Islands","pattern":"","emoji":"🇨🇰\r"},{"phoneCode":"506","code":"CR","name":"Costa Rica","pattern":"","emoji":"🇨🇷\r"},{"phoneCode":"225","code":"CI","name":"Cote d’Ivoire","pattern":"225 XX XXX XXX","emoji":"🇨🇮\r"},{"phoneCode":"385","code":"HR","name":"Croatia","pattern":"","emoji":"🇭🇷\r"},{"phoneCode":"53","code":"CU","name":"Cuba","pattern":"53 XXXX XXXX","emoji":"🇨🇺\r"},{"phoneCode":"599 9","code":"CW","name":"Curacao","pattern":"","emoji":"🇨🇼\r"},{"phoneCode":"357","code":"CY","name":"Cyprus","pattern":"357 XXXX XXXX","emoji":"🇨🇾\r"},{"phoneCode":"420","code":"CZ","name":"Czech Republic","pattern":"","emoji":"🇨🇿\r"},{"phoneCode":"45","code":"DK","name":"Denmark","pattern":"45 XXXX XXXX","emoji":"🇩🇰\r"},{"phoneCode":"246","code":"DG","name":"Diego Garcia","pattern":"","emoji":"🇩🇬\r"},{"phoneCode":"253","code":"DJ","name":"Djibouti","pattern":"253 XX XX XX XX","emoji":"🇩🇯\r"},{"phoneCode":"1 767","code":"DM","name":"Dominica","pattern":"1767 XXX XXXX","emoji":"🇩🇲\r"},{"phoneCode":"1 809 and 1 829","code":"DO","name":"Dominican Republic","pattern":"1 XXX XXX XXXX","emoji":"🇩🇴\r"},{"phoneCode":"670","code":"TL","name":"Timor-Leste","pattern":"","emoji":"🇹🇱\r"},{"phoneCode":"593","code":"EC","name":"Ecuador","pattern":"","emoji":"🇪🇨\r"},{"phoneCode":"20","code":"EG","name":"Egypt","pattern":"20 XX XXX XXXX","emoji":"🇪🇬\r"},{"phoneCode":"503","code":"SV","name":"El Salvador","pattern":"503 XXXX XXXX","emoji":"🇸🇻\r"},{"phoneCode":"240","code":"GQ","name":"Equatorial Guinea","pattern":"240 XXX XXX XXX","emoji":"🇬🇶\r"},{"phoneCode":"291","code":"ER","name":"Eritrea","pattern":"291 X XXX XXX","emoji":"🇪🇷\r"},{"phoneCode":"372","code":"EE","name":"Estonia","pattern":"","emoji":"🇪🇪\r"},{"phoneCode":"251","code":"ET","name":"Ethiopia","pattern":"251 XX XXX XXXX","emoji":"🇪🇹\r"},{"phoneCode":"500","code":"FK","name":"Falkland Islands","pattern":"","emoji":"🇫🇰\r"},{"phoneCode":"298","code":"FO","name":"Faroe Islands","pattern":"298 XXX XXX","emoji":"🇫🇴\r"},{"phoneCode":"679","code":"FJ","name":"Fiji","pattern":"","emoji":"🇫🇯\r"},{"phoneCode":"358","code":"FI","name":"Finland","pattern":"","emoji":"🇫🇮\r"},{"phoneCode":"33","code":"FR","name":"France","pattern":"33 X XX XX XX XX","emoji":"🇫🇷\r"},{"phoneCode":"594","code":"GF","name":"French Guiana","pattern":"","emoji":"🇬🇫\r"},{"phoneCode":"689","code":"PF","name":"French Polynesia","pattern":"","emoji":"🇵🇫\r"},{"phoneCode":"241","code":"GA","name":"Gabon","pattern":"241 X XX XX XX","emoji":"🇬🇦\r"},{"phoneCode":"220","code":"GM","name":"Gambia","pattern":"220 XXX XXXX","emoji":"🇬🇲\r"},{"phoneCode":"995","code":"GE","name":"Georgia","pattern":"","emoji":"🇬🇪\r"},{"phoneCode":"49","code":"DE","name":"Germany","pattern":"49 XXX XXXXXXXX","emoji":"🇩🇪\r"},{"phoneCode":"233","code":"GH","name":"Ghana","pattern":"","emoji":"🇬🇭\r"},{"phoneCode":"350","code":"GI","name":"Gibraltar","pattern":"350 XXXX XXXX","emoji":"🇬🇮\r"},{"phoneCode":"30","code":"GR","name":"Greece","pattern":"30 XX XXXX XXXX","emoji":"🇬🇷\r"},{"phoneCode":"299","code":"GL","name":"Greenland","pattern":"299 XXX XXX","emoji":"🇬🇱\r"},{"phoneCode":"1 473","code":"GD","name":"Grenada","pattern":"1473 XXX XXXX","emoji":"🇬🇩\r"},{"phoneCode":"590","code":"GP","name":"Guadeloupe","pattern":"","emoji":"🇬🇵\r"},{"phoneCode":"1 671","code":"GU","name":"Guam","pattern":"1671 XXX XXXX","emoji":"🇬🇺\r"},{"phoneCode":"502","code":"GT","name":"Guatemala","pattern":"502 X XXX XXXX","emoji":"🇬🇹\r"},{"phoneCode":"44","code":"GG","name":"Guernsey","pattern":"","emoji":"🇬🇬\r"},{"phoneCode":"224","code":"GN","name":"Guinea","pattern":"224 XXX XXX XXX","emoji":"🇬🇳\r"},{"phoneCode":"245","code":"GW","name":"Guinea-Bissau","pattern":"245 XXX XXXX","emoji":"🇬🇼\r"},{"phoneCode":"592","code":"GY","name":"Guyana","pattern":"","emoji":"🇬🇾\r"},{"phoneCode":"509","code":"HT","name":"Haiti","pattern":"","emoji":"🇭🇹\r"},{"phoneCode":"504","code":"HN","name":"Honduras","pattern":"504 XXXX XXXX","emoji":"🇭🇳\r"},{"phoneCode":"852","code":"HK","name":"Hong Kong SAR China","pattern":"","emoji":"🇭🇰\r"},{"phoneCode":"36","code":"HU","name":"Hungary","pattern":"36 XX XXX XXXX","emoji":"🇭🇺\r"},{"phoneCode":"354","code":"IS","name":"Iceland","pattern":"354 XXX XXXX","emoji":"🇮🇸\r"},{"phoneCode":"91","code":"IN","name":"India","pattern":"91 XXXXX XXXXX","emoji":"🇮🇳\r"},{"phoneCode":"62","code":"ID","name":"Indonesia","pattern":"","emoji":"🇮🇩\r"},{"phoneCode":"98","code":"IR","name":"Iran","pattern":"98 XXX XXX XXXX","emoji":"🇮🇷\r"},{"phoneCode":"964","code":"IQ","name":"Iraq","pattern":"964 XXX XXX XXXX","emoji":"🇮🇶\r"},{"phoneCode":"353","code":"IE","name":"Ireland","pattern":"353 XX XXX XXXX","emoji":"🇮🇪\r"},{"phoneCode":"972","code":"IL","name":"Israel","pattern":"972 XX XXX XXXX","emoji":"🇮🇱\r"},{"phoneCode":"39","code":"IT","name":"Italy","pattern":"39 XXX XXX XXXX","emoji":"🇮🇹\r"},{"phoneCode":"1 876","code":"JM","name":"Jamaica","pattern":"1876 XXX XXXX","emoji":"🇯🇲\r"},{"phoneCode":"47 79","code":"SJ","name":"Svalbard & Jan Mayen","pattern":"","emoji":"🇸🇯\r"},{"phoneCode":"81","code":"JP","name":"Japan","pattern":"81 XX XXXX XXXX","emoji":"🇯🇵\r"},{"phoneCode":"44","code":"JE","name":"Jersey","pattern":"","emoji":"🇯🇪\r"},{"phoneCode":"962","code":"JO","name":"Jordan","pattern":"962 X XXXX XXXX","emoji":"🇯🇴\r"},{"phoneCode":"7 7","code":"KZ","name":"Kazakhstan","pattern":"7 XXX XXX XX XX","emoji":"🇰🇿\r"},{"phoneCode":"254","code":"KE","name":"Kenya","pattern":"254 XXX XXX XXX","emoji":"🇰🇪\r"},{"phoneCode":"686","code":"KI","name":"Kiribati","pattern":"","emoji":"🇰🇮\r"},{"phoneCode":"850","code":"KP","name":"North Korea","pattern":"","emoji":"🇰🇵\r"},{"phoneCode":"82","code":"KR","name":"South Korea","pattern":"","emoji":"🇰🇷\r"},{"phoneCode":"965","code":"KW","name":"Kuwait","pattern":"965 XXXX XXXX","emoji":"🇰🇼\r"},{"phoneCode":"996","code":"KG","name":"Kyrgyzstan","pattern":"","emoji":"🇰🇬\r"},{"phoneCode":"856","code":"LA","name":"Laos","pattern":"","emoji":"🇱🇦\r"},{"phoneCode":"371","code":"LV","name":"Latvia","pattern":"371 XXX XXXXX","emoji":"🇱🇻\r"},{"phoneCode":"961","code":"LB","name":"Lebanon","pattern":"","emoji":"🇱🇧\r"},{"phoneCode":"266","code":"LS","name":"Lesotho","pattern":"266 XX XXX XXX","emoji":"🇱🇸\r"},{"phoneCode":"231","code":"LR","name":"Liberia","pattern":"","emoji":"🇱🇷\r"},{"phoneCode":"218","code":"LY","name":"Libya","pattern":"218 XX XXX XXXX","emoji":"🇱🇾\r"},{"phoneCode":"423","code":"LI","name":"Liechtenstein","pattern":"","emoji":"🇱🇮\r"},{"phoneCode":"370","code":"LT","name":"Lithuania","pattern":"370 XXX XXXXX","emoji":"🇱🇹\r"},{"phoneCode":"352","code":"LU","name":"Luxembourg","pattern":"","emoji":"🇱🇺\r"},{"phoneCode":"853","code":"MO","name":"Macau SAR China","pattern":"","emoji":"🇲🇴\r"},{"phoneCode":"389","code":"MK","name":"Macedonia","pattern":"","emoji":"🇲🇰\r"},{"phoneCode":"261","code":"MG","name":"Madagascar","pattern":"261 XX XX XXX XX","emoji":"🇲🇬\r"},{"phoneCode":"265","code":"MW","name":"Malawi","pattern":"","emoji":"🇲🇼\r"},{"phoneCode":"60","code":"MY","name":"Malaysia","pattern":"","emoji":"🇲🇾\r"},{"phoneCode":"960","code":"MV","name":"Maldives","pattern":"","emoji":"🇲🇻\r"},{"phoneCode":"223","code":"ML","name":"Mali","pattern":"223 XXXX XXXX","emoji":"🇲🇱\r"},{"phoneCode":"356","code":"MT","name":"Malta","pattern":"356 XX XX XX XX","emoji":"🇲🇹\r"},{"phoneCode":"692","code":"MH","name":"Marshall Islands","pattern":"","emoji":"🇲🇭\r"},{"phoneCode":"596","code":"MQ","name":"Martinique","pattern":"","emoji":"🇲🇶\r"},{"phoneCode":"222","code":"MR","name":"Mauritania","pattern":"222 XXXX XXXX","emoji":"🇲🇷\r"},{"phoneCode":"230","code":"MU","name":"Mauritius","pattern":"","emoji":"🇲🇺\r"},{"phoneCode":"262","code":"YT","name":"Mayotte","pattern":"","emoji":"🇾🇹\r"},{"phoneCode":"52","code":"MX","name":"Mexico","pattern":"","emoji":"🇲🇽\r"},{"phoneCode":"691","code":"FM","name":"Micronesia","pattern":"","emoji":"🇫🇲\r"},{"phoneCode":"373","code":"MD","name":"Moldova","pattern":"373 XX XXX XXX","emoji":"🇲🇩\r"},{"phoneCode":"377","code":"MC","name":"Monaco","pattern":"377 XXXX XXXX","emoji":"🇲🇨\r"},{"phoneCode":"976","code":"MN","name":"Mongolia","pattern":"","emoji":"🇲🇳\r"},{"phoneCode":"382","code":"ME","name":"Montenegro","pattern":"","emoji":"🇲🇪\r"},{"phoneCode":"1 664","code":"MS","name":"Montserrat","pattern":"1664 XXX XXXX","emoji":"🇲🇸\r"},{"phoneCode":"212","code":"MA","name":"Morocco","pattern":"212 XX XXX XXXX","emoji":"🇲🇦\r"},{"phoneCode":"258","code":"MZ","name":"Mozambique","pattern":"258 XX XXX XXXX","emoji":"🇲🇿\r"},{"phoneCode":"264","code":"NA","name":"Namibia","pattern":"264 XX XXX XXXX","emoji":"🇳🇦\r"},{"phoneCode":"674","code":"NR","name":"Nauru","pattern":"","emoji":"🇳🇷\r"},{"phoneCode":"977","code":"NP","name":"Nepal","pattern":"","emoji":"🇳🇵\r"},{"phoneCode":"31","code":"NL","name":"Netherlands","pattern":"31 X XX XX XX XX","emoji":"🇳🇱\r"},{"phoneCode":"687","code":"NC","name":"New Caledonia","pattern":"","emoji":"🇳🇨\r"},{"phoneCode":"64","code":"NZ","name":"New Zealand","pattern":"","emoji":"🇳🇿\r"},{"phoneCode":"505","code":"NI","name":"Nicaragua","pattern":"505 XXXX XXXX","emoji":"🇳🇮\r"},{"phoneCode":"227","code":"NE","name":"Niger","pattern":"227 XX XX XX XX","emoji":"🇳🇪\r"},{"phoneCode":"234","code":"NG","name":"Nigeria","pattern":"","emoji":"🇳🇬\r"},{"phoneCode":"683","code":"NU","name":"Niue","pattern":"","emoji":"🇳🇺\r"},{"phoneCode":"672","code":"NF","name":"Norfolk Island","pattern":"","emoji":"🇳🇫\r"},{"phoneCode":"1 670","code":"MP","name":"Northern Mariana Islands","pattern":"1670 XXX XXXX","emoji":"🇲🇵\r"},{"phoneCode":"47","code":"NO","name":"Norway","pattern":"47 XXXX XXXX","emoji":"🇳🇴\r"},{"phoneCode":"968","code":"OM","name":"Oman","pattern":"968 XXXX XXXX","emoji":"🇴🇲\r"},{"phoneCode":"92","code":"PK","name":"Pakistan","pattern":"92 XXX XXX XXXX","emoji":"🇵🇰\r"},{"phoneCode":"680","code":"PW","name":"Palau","pattern":"","emoji":"🇵🇼\r"},{"phoneCode":"970","code":"PS","name":"Palestinian Territories","pattern":"970 XXX XX XXXX","emoji":"🇵🇸\r"},{"phoneCode":"507","code":"PA","name":"Panama","pattern":"507 XXXX XXXX","emoji":"🇵🇦\r"},{"phoneCode":"675","code":"PG","name":"Papua New Guinea","pattern":"","emoji":"🇵🇬\r"},{"phoneCode":"595","code":"PY","name":"Paraguay","pattern":"595 XXX XXX XXX","emoji":"🇵🇾\r"},{"phoneCode":"51","code":"PE","name":"Peru","pattern":"51 XXX XXX XXX","emoji":"🇵🇪\r"},{"phoneCode":"63","code":"PH","name":"Philippines","pattern":"63 XXX XXX XXXX","emoji":"🇵🇭\r"},{"phoneCode":"64","code":"PN","name":"Pitcairn Islands","pattern":"","emoji":"🇵🇳\r"},{"phoneCode":"48","code":"PL","name":"Poland","pattern":"48 XXX XXX XXX","emoji":"🇵🇱\r"},{"phoneCode":"351","code":"PT","name":"Portugal","pattern":"351 X XXXX XXXX","emoji":"🇵🇹\r"},{"phoneCode":"1 787 and 1 939","code":"PR","name":"Puerto Rico","pattern":"1 XXX XXX XXXX","emoji":"🇵🇷\r"},{"phoneCode":"974","code":"QA","name":"Qatar","pattern":"","emoji":"🇶🇦\r"},{"phoneCode":"262","code":"RE","name":"Reunion","pattern":"262 XXX XXX XXX","emoji":"🇷🇪\r"},{"phoneCode":"40","code":"RO","name":"Romania","pattern":"40 XXX XXX XXX","emoji":"🇷🇴\r"},{"phoneCode":"7","code":"RU","name":"Russia","pattern":"7 XXX XXX XX XX","emoji":"🇷🇺\r"},{"phoneCode":"250","code":"RW","name":"Rwanda","pattern":"250 XXX XXX XXX","emoji":"🇷🇼\r"},{"phoneCode":"590","code":"BL","name":"St. Barthelemy","pattern":"","emoji":"🇧🇱\r"},{"phoneCode":"290","code":"SH","name":"St. Helena","pattern":"290 XX XXX","emoji":"🇸🇭\r"},{"phoneCode":"1 869","code":"KN","name":"St. Kitts & Nevis","pattern":"1869 XXX XXXX","emoji":"🇰🇳\r"},{"phoneCode":"1 758","code":"LC","name":"St. Lucia","pattern":"1758 XXX XXXX","emoji":"🇱🇨\r"},{"phoneCode":"590","code":"MF","name":"St. Martin (France)","pattern":"","emoji":"🇲🇫\r"},{"phoneCode":"508","code":"PM","name":"St. Pierre and Miquelon","pattern":"","emoji":"🇵🇲\r"},{"phoneCode":"1 784","code":"VC","name":"St. Vincent and the Grenadines","pattern":"1784 XXX XXXX","emoji":"🇻🇨\r"},{"phoneCode":"685","code":"WS","name":"Samoa","pattern":"","emoji":"🇼🇸\r"},{"phoneCode":"378","code":"SM","name":"San Marino","pattern":"378 XXX XXX XXXX","emoji":"🇸🇲\r"},{"phoneCode":"239","code":"ST","name":"São Tome & Principe","pattern":"239 XX XXXXX","emoji":"🇸🇹\r"},{"phoneCode":"966","code":"SA","name":"Saudi Arabia","pattern":"","emoji":"🇸🇦\r"},{"phoneCode":"221","code":"SN","name":"Senegal","pattern":"221 XX XXX XXXX","emoji":"🇸🇳\r"},{"phoneCode":"381","code":"RS","name":"Serbia","pattern":"381 XX XXX XXXX","emoji":"🇷🇸\r"},{"phoneCode":"248","code":"SC","name":"Seychelles","pattern":"248 X XX XX XX","emoji":"🇸🇨\r"},{"phoneCode":"232","code":"SL","name":"Sierra Leone","pattern":"232 XX XXX XXX","emoji":"🇸🇱\r"},{"phoneCode":"65","code":"SG","name":"Singapore","pattern":"65 XXXX XXXX","emoji":"🇸🇬\r"},{"phoneCode":"599 3","code":"BQ","name":"Sint Eustatius","pattern":"","emoji":"🇧🇶\r"},{"phoneCode":"1 721","code":"SX","name":"Sint Maarten","pattern":"1721 XXX XXXX","emoji":"🇸🇽\r"},{"phoneCode":"421","code":"SK","name":"Slovakia","pattern":"","emoji":"🇸🇰\r"},{"phoneCode":"386","code":"SI","name":"Slovenia","pattern":"","emoji":"🇸🇮\r"},{"phoneCode":"677","code":"SB","name":"Solomon Islands","pattern":"","emoji":"🇸🇧\r"},{"phoneCode":"252","code":"SO","name":"Somalia","pattern":"252 XX XXX XXX","emoji":"🇸🇴\r"},{"phoneCode":"27","code":"ZA","name":"South Africa","pattern":"27 XX XXX XXXX","emoji":"🇿🇦\r"},{"phoneCode":"500","code":"GS","name":"South Georgia & South Sandwich Islands","pattern":"","emoji":"🇬🇸\r"},{"phoneCode":"995 34","code":"","name":"South Ossetia","pattern":"","emoji":"\r"},{"phoneCode":"211","code":"SS","name":"South Sudan","pattern":"211 XX XXX XXXX","emoji":"🇸🇸\r"},{"phoneCode":"34","code":"ES","name":"Spain","pattern":"34 XXX XXX XXX","emoji":"🇪🇸\r"},{"phoneCode":"94","code":"LK","name":"Sri Lanka","pattern":"94 XX XXX XXXX","emoji":"🇱🇰\r"},{"phoneCode":"249","code":"SD","name":"Sudan","pattern":"249 XX XXX XXXX","emoji":"🇸🇩\r"},{"phoneCode":"597","code":"SR","name":"Suriname","pattern":"597 XXX XXXX","emoji":"🇸🇷\r"},{"phoneCode":"47 79","code":"SJ","name":"Svalbard","pattern":"","emoji":"🇸🇯\r"},{"phoneCode":"268","code":"SZ","name":"Swaziland","pattern":"268 XXXX XXXX","emoji":"🇸🇿\r"},{"phoneCode":"46","code":"SE","name":"Sweden","pattern":"46 XX XXX XXXX","emoji":"🇸🇪\r"},{"phoneCode":"41","code":"CH","name":"Switzerland","pattern":"41 XX XXX XXXX","emoji":"🇨🇭\r"},{"phoneCode":"963","code":"SY","name":"Syria","pattern":"","emoji":"🇸🇾\r"},{"phoneCode":"886","code":"TW","name":"Taiwan","pattern":"","emoji":"🇹🇼\r"},{"phoneCode":"992","code":"TJ","name":"Tajikistan","pattern":"","emoji":"🇹🇯\r"},{"phoneCode":"255","code":"TZ","name":"Tanzania","pattern":"255 XX XXX XXXX","emoji":"🇹🇿\r"},{"phoneCode":"66","code":"TH","name":"Thailand","pattern":"66 X XXXX XXXX","emoji":"🇹🇭\r"},{"phoneCode":"228","code":"TG","name":"Togo","pattern":"228 XX XXX XXX","emoji":"🇹🇬\r"},{"phoneCode":"690","code":"TK","name":"Tokelau","pattern":"","emoji":"🇹🇰\r"},{"phoneCode":"676","code":"TO","name":"Tonga","pattern":"","emoji":"🇹🇴\r"},{"phoneCode":"1 868","code":"TT","name":"Trinidad & Tobago","pattern":"1868 XXX XXXX","emoji":"🇹🇹\r"},{"phoneCode":"216","code":"TN","name":"Tunisia","pattern":"216 XX XXX XXX","emoji":"🇹🇳\r"},{"phoneCode":"90","code":"TR","name":"Turkey","pattern":"90 XXX XXX XXXX","emoji":"🇹🇷\r"},{"phoneCode":"993","code":"TM","name":"Turkmenistan","pattern":"993 XX XXXXXX","emoji":"🇹🇲\r"},{"phoneCode":"1 649","code":"TC","name":"Turks & Caicos Islands","pattern":"1649 XXX XXXX","emoji":"🇹🇨\r"},{"phoneCode":"688","code":"TV","name":"Tuvalu","pattern":"","emoji":"🇹🇻\r"},{"phoneCode":"256","code":"UG","name":"Uganda","pattern":"256 XX XXX XXXX","emoji":"🇺🇬\r"},{"phoneCode":"380","code":"UA","name":"Ukraine","pattern":"380 XX XXX XX XX","emoji":"🇺🇦\r"},{"phoneCode":"971","code":"AE","name":"United Arab Emirates","pattern":"971 XX XXX XXXX","emoji":"🇦🇪\r"},{"phoneCode":"44","code":"GB","name":"United Kingdom","pattern":"44 XXXX XXXXXX","emoji":"🇬🇧\r"},{"phoneCode":"1","code":"US","name":"United States","pattern":"1 XXX XXX XXXX","emoji":"🇺🇸\r"},{"phoneCode":"598","code":"UY","name":"Uruguay","pattern":"598 XXXX XXXX","emoji":"🇺🇾\r"},{"phoneCode":"1 340","code":"VI","name":"U.S. Virgin Islands","pattern":"1340 XXX XXXX","emoji":"🇻🇮\r"},{"phoneCode":"998","code":"UZ","name":"Uzbekistan","pattern":"998 XX XXXXXXX","emoji":"🇺🇿\r"},{"phoneCode":"678","code":"VU","name":"Vanuatu","pattern":"","emoji":"🇻🇺\r"},{"phoneCode":"58","code":"VE","name":"Venezuela","pattern":"58 XXX XXX XXXX","emoji":"🇻🇪\r"},{"phoneCode":"39 06 698","code":"VA","name":"Vatican City","pattern":"","emoji":"🇻🇦\r"},{"phoneCode":"84","code":"VN","name":"Vietnam","pattern":"","emoji":"🇻🇳\r"},{"phoneCode":"681","code":"WF","name":"Wallis & Futuna","pattern":"","emoji":"🇼🇫\r"},{"phoneCode":"967","code":"YE","name":"Yemen","pattern":"967 XXX XXX XXX","emoji":"🇾🇪\r"},{"phoneCode":"260","code":"ZM","name":"Zambia","pattern":"260 XX XXX XXXX","emoji":"🇿🇲\r"},{"phoneCode":"255","code":"","name":"Zanzibar","pattern":"","emoji":"\r"},{"phoneCode":"263","code":"ZW","name":"Zimbabwe","pattern":"263 XX XXX XXXX","emoji":"🇿🇼\r"}] \ No newline at end of file diff --git a/src/scripts/out/emoji.json b/src/scripts/out/emoji.json index d2c3dbc8..6b76f4e8 100644 --- a/src/scripts/out/emoji.json +++ b/src/scripts/out/emoji.json @@ -1 +1 @@ -{"2049":6356,"2122":6364,"2139":6389,"2194":6269,"2195":6268,"2196":6267,"2197":6261,"2198":6263,"2199":6265,"2328":680,"2600":4177,"2601":4185,"2602":4200,"2603":4205,"2604":4207,"2611":6341,"2614":4201,"2615":3101,"2618":2123,"2620":194,"2622":6258,"2623":6259,"2626":6288,"2638":6285,"2639":166,"2648":6293,"2649":6294,"2650":6301,"2651":6302,"2652":6303,"2653":6304,"2660":567,"2663":570,"2665":568,"2666":569,"2668":457,"2692":6184,"2693":4110,"2694":6187,"2696":6195,"2697":6201,"2699":6193,"2702":6171,"2705":6340,"2708":4118,"2709":6132,"2712":6146,"2714":6342,"2716":6343,"2721":6284,"2728":56,"2733":6352,"2734":6353,"2744":4204,"2747":6354,"2753":6357,"2754":6358,"2755":6359,"2757":6360,"2763":1125,"2764":1127,"2795":6346,"2796":6347,"2797":6348,"2934":6272,"2935":6273,"3030":6361,"3297":6413,"3299":6414,"0023-20e3":6365,"002a-20e3":6366,"0030-20e3":6367,"0031-20e3":6368,"0032-20e3":6369,"0033-20e3":6370,"0034-20e3":6371,"0035-20e3":6372,"0036-20e3":6373,"0037-20e3":6374,"0038-20e3":6375,"0039-20e3":6376,"00a9":6362,"00ae":6363,"1f004":573,"1f0cf":572,"1f170":6383,"1f171":6385,"1f17e":6394,"1f17f":6396,"1f18e":6384,"1f191":6386,"1f192":6387,"1f193":6388,"1f194":6390,"1f195":6392,"1f196":6393,"1f197":6395,"1f198":6397,"1f199":6398,"1f19a":6399,"1f1e6-1f1e8":78,"1f1e6-1f1e9":79,"1f1e6-1f1ea":710,"1f1e6-1f1eb":711,"1f1e6-1f1ec":712,"1f1e6-1f1ee":713,"1f1e6-1f1f1":714,"1f1e6-1f1f2":715,"1f1e6-1f1f4":716,"1f1e6-1f1f6":717,"1f1e6-1f1f7":718,"1f1e6-1f1f8":719,"1f1e6-1f1f9":720,"1f1e6-1f1fa":721,"1f1e6-1f1fc":722,"1f1e6-1f1fd":723,"1f1e6-1f1ff":724,"1f1e7-1f1e6":725,"1f1e7-1f1e7":726,"1f1e7-1f1e9":727,"1f1e7-1f1ea":728,"1f1e7-1f1eb":729,"1f1e7-1f1ec":730,"1f1e7-1f1ed":731,"1f1e7-1f1ee":732,"1f1e7-1f1ef":733,"1f1e7-1f1f1":734,"1f1e7-1f1f2":735,"1f1e7-1f1f3":736,"1f1e7-1f1f4":737,"1f1e7-1f1f6":738,"1f1e7-1f1f7":739,"1f1e7-1f1f8":740,"1f1e7-1f1f9":741,"1f1e7-1f1fb":742,"1f1e7-1f1fc":743,"1f1e7-1f1fe":744,"1f1e7-1f1ff":745,"1f1e8-1f1e6":746,"1f1e8-1f1e8":747,"1f1e8-1f1e9":748,"1f1e8-1f1eb":749,"1f1e8-1f1ec":750,"1f1e8-1f1ed":751,"1f1e8-1f1ee":752,"1f1e8-1f1f0":753,"1f1e8-1f1f1":754,"1f1e8-1f1f2":755,"1f1e8-1f1f3":756,"1f1e8-1f1f4":757,"1f1e8-1f1f5":758,"1f1e8-1f1f7":759,"1f1e8-1f1fa":760,"1f1e8-1f1fb":761,"1f1e8-1f1fc":762,"1f1e8-1f1fd":763,"1f1e8-1f1fe":764,"1f1e8-1f1ff":765,"1f1e9-1f1ea":766,"1f1e9-1f1ec":767,"1f1e9-1f1ef":768,"1f1e9-1f1f0":769,"1f1e9-1f1f2":770,"1f1e9-1f1f4":771,"1f1e9-1f1ff":772,"1f1ea-1f1e6":773,"1f1ea-1f1e8":774,"1f1ea-1f1ea":775,"1f1ea-1f1ec":776,"1f1ea-1f1ed":777,"1f1ea-1f1f7":778,"1f1ea-1f1f8":779,"1f1ea-1f1f9":780,"1f1ea-1f1fa":781,"1f1eb-1f1ee":782,"1f1eb-1f1ef":783,"1f1eb-1f1f0":784,"1f1eb-1f1f2":785,"1f1eb-1f1f4":786,"1f1eb-1f1f7":787,"1f1ec-1f1e6":788,"1f1ec-1f1e7":789,"1f1ec-1f1e9":790,"1f1ec-1f1ea":791,"1f1ec-1f1eb":792,"1f1ec-1f1ec":793,"1f1ec-1f1ed":794,"1f1ec-1f1ee":795,"1f1ec-1f1f1":796,"1f1ec-1f1f2":797,"1f1ec-1f1f3":798,"1f1ec-1f1f5":799,"1f1ec-1f1f6":7100,"1f1ec-1f1f7":7101,"1f1ec-1f1f8":7102,"1f1ec-1f1f9":7103,"1f1ec-1f1fa":7104,"1f1ec-1f1fc":7105,"1f1ec-1f1fe":7106,"1f1ed-1f1f0":7107,"1f1ed-1f1f2":7108,"1f1ed-1f1f3":7109,"1f1ed-1f1f7":7110,"1f1ed-1f1f9":7111,"1f1ed-1f1fa":7112,"1f1ee-1f1e8":7113,"1f1ee-1f1e9":7114,"1f1ee-1f1ea":7115,"1f1ee-1f1f1":7116,"1f1ee-1f1f2":7117,"1f1ee-1f1f3":7118,"1f1ee-1f1f4":7119,"1f1ee-1f1f6":7120,"1f1ee-1f1f7":7121,"1f1ee-1f1f8":7122,"1f1ee-1f1f9":7123,"1f1ef-1f1ea":7124,"1f1ef-1f1f2":7125,"1f1ef-1f1f4":7126,"1f1ef-1f1f5":7127,"1f1f0-1f1ea":7128,"1f1f0-1f1ec":7129,"1f1f0-1f1ed":7130,"1f1f0-1f1ee":7131,"1f1f0-1f1f2":7132,"1f1f0-1f1f3":7133,"1f1f0-1f1f5":7134,"1f1f0-1f1f7":7135,"1f1f0-1f1fc":7136,"1f1f0-1f1fe":7137,"1f1f0-1f1ff":7138,"1f1f1-1f1e6":7139,"1f1f1-1f1e7":7140,"1f1f1-1f1e8":7141,"1f1f1-1f1ee":7142,"1f1f1-1f1f0":7143,"1f1f1-1f1f7":7144,"1f1f1-1f1f8":7145,"1f1f1-1f1f9":7146,"1f1f1-1f1fa":7147,"1f1f1-1f1fb":7148,"1f1f1-1f1fe":7149,"1f1f2-1f1e6":7150,"1f1f2-1f1e8":7151,"1f1f2-1f1e9":7152,"1f1f2-1f1ea":7153,"1f1f2-1f1eb":7154,"1f1f2-1f1ec":7155,"1f1f2-1f1ed":7156,"1f1f2-1f1f0":7157,"1f1f2-1f1f1":7158,"1f1f2-1f1f2":7159,"1f1f2-1f1f3":7160,"1f1f2-1f1f4":7161,"1f1f2-1f1f5":7162,"1f1f2-1f1f6":7163,"1f1f2-1f1f7":7164,"1f1f2-1f1f8":7165,"1f1f2-1f1f9":7166,"1f1f2-1f1fa":7167,"1f1f2-1f1fb":7168,"1f1f2-1f1fc":7169,"1f1f2-1f1fd":7170,"1f1f2-1f1fe":7171,"1f1f2-1f1ff":7172,"1f1f3-1f1e6":7173,"1f1f3-1f1e8":7174,"1f1f3-1f1ea":7175,"1f1f3-1f1eb":7176,"1f1f3-1f1ec":7177,"1f1f3-1f1ee":7178,"1f1f3-1f1f1":7179,"1f1f3-1f1f4":7180,"1f1f3-1f1f5":7181,"1f1f3-1f1f7":7182,"1f1f3-1f1fa":7183,"1f1f3-1f1ff":7184,"1f1f4-1f1f2":7185,"1f1f5-1f1e6":7186,"1f1f5-1f1ea":7187,"1f1f5-1f1eb":7188,"1f1f5-1f1ec":7189,"1f1f5-1f1ed":7190,"1f1f5-1f1f0":7191,"1f1f5-1f1f1":7192,"1f1f5-1f1f2":7193,"1f1f5-1f1f3":7194,"1f1f5-1f1f7":7195,"1f1f5-1f1f8":7196,"1f1f5-1f1f9":7197,"1f1f5-1f1fc":7198,"1f1f5-1f1fe":7199,"1f1f6-1f1e6":7200,"1f1f7-1f1ea":7201,"1f1f7-1f1f4":7202,"1f1f7-1f1f8":7203,"1f1f7-1f1fa":7204,"1f1f7-1f1fc":7205,"1f1f8-1f1e6":7206,"1f1f8-1f1e7":7207,"1f1f8-1f1e8":7208,"1f1f8-1f1e9":7209,"1f1f8-1f1ea":7210,"1f1f8-1f1ec":7211,"1f1f8-1f1ed":7212,"1f1f8-1f1ee":7213,"1f1f8-1f1ef":7214,"1f1f8-1f1f0":7215,"1f1f8-1f1f1":7216,"1f1f8-1f1f2":7217,"1f1f8-1f1f3":7218,"1f1f8-1f1f4":7219,"1f1f8-1f1f7":7220,"1f1f8-1f1f8":7221,"1f1f8-1f1f9":7222,"1f1f8-1f1fb":7223,"1f1f8-1f1fd":7224,"1f1f8-1f1fe":7225,"1f1f8-1f1ff":7226,"1f1f9-1f1e6":7227,"1f1f9-1f1e8":7228,"1f1f9-1f1e9":7229,"1f1f9-1f1eb":7230,"1f1f9-1f1ec":7231,"1f1f9-1f1ed":7232,"1f1f9-1f1ef":7233,"1f1f9-1f1f0":7234,"1f1f9-1f1f1":7235,"1f1f9-1f1f2":7236,"1f1f9-1f1f3":7237,"1f1f9-1f1f4":7238,"1f1f9-1f1f7":7239,"1f1f9-1f1f9":7240,"1f1f9-1f1fb":7241,"1f1f9-1f1fc":7242,"1f1f9-1f1ff":7243,"1f1fa-1f1e6":7244,"1f1fa-1f1ec":7245,"1f1fa-1f1f2":7246,"1f1fa-1f1f3":7247,"1f1fa-1f1f8":7248,"1f1fa-1f1fe":7249,"1f1fa-1f1ff":7250,"1f1fb-1f1e6":7251,"1f1fb-1f1e8":7252,"1f1fb-1f1ea":7253,"1f1fb-1f1ec":7254,"1f1fb-1f1ee":7255,"1f1fb-1f1f3":7256,"1f1fb-1f1fa":7257,"1f1fc-1f1eb":7258,"1f1fc-1f1f8":7259,"1f1fd-1f1f0":7260,"1f1fe-1f1ea":7261,"1f1fe-1f1f9":7262,"1f1ff-1f1e6":7263,"1f1ff-1f1f2":7264,"1f1ff-1f1fc":7265,"1f201":6400,"1f202":6401,"1f21a":6407,"1f22f":6404,"1f232":6408,"1f233":6412,"1f234":6411,"1f235":6416,"1f236":6403,"1f237":6402,"1f238":6410,"1f239":6406,"1f23a":6415,"1f250":6405,"1f251":6409,"1f300":4197,"1f301":449,"1f302":4199,"1f303":450,"1f304":452,"1f305":453,"1f306":454,"1f307":455,"1f308":4198,"1f309":456,"1f30a":4210,"1f30b":410,"1f30c":4184,"1f30d":41,"1f30e":42,"1f30f":43,"1f310":44,"1f311":4164,"1f312":4165,"1f313":4166,"1f314":4167,"1f315":4168,"1f316":4169,"1f317":4170,"1f318":4171,"1f319":4172,"1f31a":4173,"1f31b":4174,"1f31c":4175,"1f31d":4178,"1f31e":4179,"1f31f":4182,"1f320":4183,"1f321":4176,"1f324":4188,"1f325":4189,"1f326":4190,"1f327":4191,"1f328":4192,"1f329":4193,"1f32a":4194,"1f32b":4195,"1f32c":4196,"1f32d":347,"1f32e":349,"1f32f":350,"1f330":331,"1f331":2116,"1f332":2117,"1f333":2118,"1f334":2119,"1f335":2120,"1f336":323,"1f337":2115,"1f338":2107,"1f339":2110,"1f33a":2112,"1f33b":2113,"1f33c":2114,"1f33d":322,"1f33e":2121,"1f33f":2122,"1f340":2124,"1f341":2125,"1f342":2126,"1f343":2127,"1f344":329,"1f345":316,"1f346":319,"1f347":31,"1f348":32,"1f349":33,"1f34a":34,"1f34b":35,"1f34c":36,"1f34d":37,"1f34e":39,"1f34f":310,"1f350":311,"1f351":312,"1f352":313,"1f353":314,"1f354":344,"1f355":346,"1f356":340,"1f357":341,"1f358":364,"1f359":365,"1f35a":366,"1f35b":367,"1f35c":368,"1f35d":369,"1f35e":332,"1f35f":345,"1f360":370,"1f361":376,"1f362":371,"1f363":372,"1f364":373,"1f365":374,"1f366":385,"1f367":386,"1f368":387,"1f369":388,"1f36a":389,"1f36b":394,"1f36c":395,"1f36d":396,"1f36e":397,"1f36f":398,"1f370":391,"1f371":363,"1f372":356,"1f373":354,"1f374":3118,"1f375":3102,"1f376":3103,"1f377":3105,"1f378":3106,"1f379":3107,"1f37a":3108,"1f37b":3109,"1f37c":399,"1f37d":3117,"1f37e":3104,"1f37f":359,"1f380":517,"1f381":518,"1f382":390,"1f383":51,"1f384":52,"1f385":1326,"1f386":53,"1f387":54,"1f388":57,"1f389":58,"1f38a":59,"1f38b":510,"1f38c":73,"1f38d":511,"1f38e":512,"1f38f":513,"1f390":514,"1f391":515,"1f392":625,"1f393":637,"1f396":522,"1f397":519,"1f399":656,"1f39a":657,"1f39b":658,"1f39e":689,"1f39f":520,"1f3a0":458,"1f3a1":459,"1f3a2":460,"1f3a3":549,"1f3a4":659,"1f3a5":688,"1f3a6":6324,"1f3a7":660,"1f3a8":577,"1f3a9":636,"1f3aa":462,"1f3ab":521,"1f3ac":691,"1f3ad":575,"1f3ae":561,"1f3af":555,"1f3b0":563,"1f3b1":558,"1f3b2":564,"1f3b3":537,"1f3b4":574,"1f3b5":654,"1f3b6":655,"1f3b7":662,"1f3b8":663,"1f3b9":664,"1f3ba":665,"1f3bb":666,"1f3bc":653,"1f3bd":551,"1f3be":535,"1f3bf":552,"1f3c0":531,"1f3c1":71,"1f3c2":1397,"1f3c3-200d-2640-fe0f":1381,"1f3c3-200d-2642-fe0f":1380,"1f3c3":1379,"1f3c4-200d-2640-fe0f":1403,"1f3c4-200d-2642-fe0f":1402,"1f3c4":1401,"1f3c5":524,"1f3c6":523,"1f3c7":1395,"1f3c8":533,"1f3c9":534,"1f3ca-200d-2640-fe0f":1409,"1f3ca-200d-2642-fe0f":1408,"1f3ca":1407,"1f3cb-fe0f-200d-2640-fe0f":1415,"1f3cb-fe0f-200d-2642-fe0f":1414,"1f3cb":1413,"1f3cc-fe0f-200d-2640-fe0f":1400,"1f3cc-fe0f-200d-2642-fe0f":1399,"1f3cc":1398,"1f3cd":492,"1f3ce":491,"1f3cf":538,"1f3d0":532,"1f3d1":539,"1f3d2":540,"1f3d3":542,"1f3d4":48,"1f3d5":412,"1f3d6":413,"1f3d7":419,"1f3d8":421,"1f3d9":451,"1f3da":422,"1f3db":418,"1f3dc":414,"1f3dd":415,"1f3de":416,"1f3df":417,"1f3e0":423,"1f3e1":424,"1f3e2":425,"1f3e3":426,"1f3e4":427,"1f3e5":428,"1f3e6":429,"1f3e7":6234,"1f3e8":430,"1f3e9":431,"1f3ea":432,"1f3eb":433,"1f3ec":434,"1f3ed":435,"1f3ee":6102,"1f3ef":436,"1f3f0":437,"1f3f3-fe0f-200d-1f308":76,"1f3f3":75,"1f3f4-200d-2620-fe0f":77,"1f3f4-e0067-e0062-e0065-e006e-e0067-e007f":7266,"1f3f4-e0067-e0062-e0073-e0063-e0074-e007f":7267,"1f3f4-e0067-e0062-e0077-e006c-e0073-e007f":7268,"1f3f4":74,"1f3f5":2109,"1f3f7":6120,"1f3f8":543,"1f3f9":6189,"1f3fa":3121,"1f3fb":81,"1f3fc":82,"1f3fd":83,"1f3fe":84,"1f3ff":85,"1f400":244,"1f401":243,"1f402":225,"1f403":226,"1f404":227,"1f405":217,"1f406":218,"1f407":247,"1f408":214,"1f409":282,"1f40a":277,"1f40b":286,"1f40c":294,"1f40d":280,"1f40e":220,"1f40f":232,"1f410":234,"1f411":233,"1f412":22,"1f413":262,"1f414":261,"1f415-200d-1f9ba":28,"1f415":26,"1f416":229,"1f417":230,"1f418":239,"1f419":292,"1f41a":293,"1f41b":296,"1f41c":297,"1f41d":298,"1f41e":299,"1f41f":288,"1f420":289,"1f421":290,"1f422":278,"1f423":263,"1f424":264,"1f425":265,"1f426":266,"1f427":267,"1f428":252,"1f429":29,"1f42a":235,"1f42b":236,"1f42c":287,"1f42d":242,"1f42e":224,"1f42f":216,"1f430":246,"1f431":213,"1f432":281,"1f433":285,"1f434":219,"1f435":21,"1f436":25,"1f437":228,"1f438":276,"1f439":245,"1f43a":210,"1f43b":251,"1f43c":253,"1f43d":231,"1f43e":259,"1f43f":248,"1f440":1194,"1f441-fe0f-200d-1f5e8-fe0f":1145,"1f441":1195,"1f442":1188,"1f443":1190,"1f444":1197,"1f445":1196,"1f446":1164,"1f447":1166,"1f448":1162,"1f449":1163,"1f44a":1171,"1f44b":1150,"1f44c":1155,"1f44d":1168,"1f44e":1169,"1f44f":1174,"1f450":1176,"1f451":634,"1f452":635,"1f453":61,"1f454":66,"1f455":67,"1f456":68,"1f457":613,"1f458":614,"1f459":619,"1f45a":620,"1f45b":621,"1f45c":622,"1f45d":623,"1f45e":626,"1f45f":627,"1f460":630,"1f461":631,"1f462":633,"1f463":1483,"1f464":1481,"1f465":1482,"1f466":1200,"1f467":1201,"1f468-200d-1f33e":1267,"1f468-200d-1f373":1270,"1f468-200d-1f393":1258,"1f468-200d-1f3a4":1288,"1f468-200d-1f3a8":1291,"1f468-200d-1f3eb":1261,"1f468-200d-1f3ed":1276,"1f468-200d-1f466-200d-1f466":1471,"1f468-200d-1f466":1470,"1f468-200d-1f467-200d-1f466":1473,"1f468-200d-1f467-200d-1f467":1474,"1f468-200d-1f467":1472,"1f468-200d-1f468-200d-1f466":1460,"1f468-200d-1f468-200d-1f466-200d-1f466":1463,"1f468-200d-1f468-200d-1f467":1461,"1f468-200d-1f468-200d-1f467-200d-1f466":1462,"1f468-200d-1f468-200d-1f467-200d-1f467":1464,"1f468-200d-1f469-200d-1f466":1455,"1f468-200d-1f469-200d-1f466-200d-1f466":1458,"1f468-200d-1f469-200d-1f467":1456,"1f468-200d-1f469-200d-1f467-200d-1f466":1457,"1f468-200d-1f469-200d-1f467-200d-1f467":1459,"1f468-200d-1f4bb":1285,"1f468-200d-1f4bc":1279,"1f468-200d-1f527":1273,"1f468-200d-1f52c":1282,"1f468-200d-1f680":1297,"1f468-200d-1f692":1300,"1f468-200d-1f9af":1371,"1f468-200d-1f9b0":1206,"1f468-200d-1f9b1":1207,"1f468-200d-1f9b2":1209,"1f468-200d-1f9b3":1208,"1f468-200d-1f9bc":1374,"1f468-200d-1f9bd":1377,"1f468-200d-2695-fe0f":1255,"1f468-200d-2696-fe0f":1264,"1f468-200d-2708-fe0f":1294,"1f468-200d-2764-fe0f-200d-1f468":1452,"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468":1448,"1f468":1204,"1f469-200d-1f33e":1268,"1f469-200d-1f373":1271,"1f469-200d-1f393":1259,"1f469-200d-1f3a4":1289,"1f469-200d-1f3a8":1292,"1f469-200d-1f3eb":1262,"1f469-200d-1f3ed":1277,"1f469-200d-1f466-200d-1f466":1476,"1f469-200d-1f466":1475,"1f469-200d-1f467-200d-1f466":1478,"1f469-200d-1f467-200d-1f467":1479,"1f469-200d-1f467":1477,"1f469-200d-1f469-200d-1f466":1465,"1f469-200d-1f469-200d-1f466-200d-1f466":1468,"1f469-200d-1f469-200d-1f467":1466,"1f469-200d-1f469-200d-1f467-200d-1f466":1467,"1f469-200d-1f469-200d-1f467-200d-1f467":1469,"1f469-200d-1f4bb":1286,"1f469-200d-1f4bc":1280,"1f469-200d-1f527":1274,"1f469-200d-1f52c":1283,"1f469-200d-1f680":1298,"1f469-200d-1f692":1301,"1f469-200d-1f9af":1372,"1f469-200d-1f9b0":1211,"1f469-200d-1f9b1":1213,"1f469-200d-1f9b2":1217,"1f469-200d-1f9b3":1215,"1f469-200d-1f9bc":1375,"1f469-200d-1f9bd":1378,"1f469-200d-2695-fe0f":1256,"1f469-200d-2696-fe0f":1265,"1f469-200d-2708-fe0f":1295,"1f469-200d-2764-fe0f-200d-1f468":1451,"1f469-200d-2764-fe0f-200d-1f469":1453,"1f469-200d-2764-fe0f-200d-1f48b-200d-1f468":1447,"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469":1449,"1f469":1210,"1f46a":1454,"1f46b":1444,"1f46c":1445,"1f46d":1443,"1f46e-200d-2640-fe0f":1304,"1f46e-200d-2642-fe0f":1303,"1f46e":1302,"1f46f-200d-2640-fe0f":1387,"1f46f-200d-2642-fe0f":1386,"1f46f":1385,"1f470":1322,"1f471-200d-2640-fe0f":1219,"1f471-200d-2642-fe0f":1220,"1f471":1203,"1f472":1319,"1f473-200d-2640-fe0f":1318,"1f473-200d-2642-fe0f":1317,"1f473":1316,"1f474":1222,"1f475":1223,"1f476":1198,"1f477-200d-2640-fe0f":1313,"1f477-200d-2642-fe0f":1312,"1f477":1311,"1f478":1315,"1f479":197,"1f47a":198,"1f47b":199,"1f47c":1325,"1f47d":1100,"1f47e":1101,"1f47f":192,"1f480":193,"1f481-200d-2640-fe0f":1238,"1f481-200d-2642-fe0f":1237,"1f481":1236,"1f482-200d-2640-fe0f":1310,"1f482-200d-2642-fe0f":1309,"1f482":1308,"1f483":1382,"1f484":641,"1f485":1181,"1f486-200d-2640-fe0f":1357,"1f486-200d-2642-fe0f":1356,"1f486":1355,"1f487-200d-2640-fe0f":1360,"1f487-200d-2642-fe0f":1359,"1f487":1358,"1f488":461,"1f489":6208,"1f48a":6210,"1f48b":1115,"1f48c":1116,"1f48d":642,"1f48e":643,"1f48f":1446,"1f490":2106,"1f491":1450,"1f492":438,"1f493":1121,"1f494":1126,"1f495":1123,"1f496":1119,"1f497":1120,"1f498":1117,"1f499":1131,"1f49a":1130,"1f49b":1129,"1f49c":1132,"1f49d":1118,"1f49e":1122,"1f49f":1124,"1f4a0":6447,"1f4a1":6100,"1f4a2":1137,"1f4a3":1143,"1f4a4":1149,"1f4a5":1138,"1f4a6":1140,"1f4a7":4209,"1f4a8":1141,"1f4a9":195,"1f4aa":1183,"1f4ab":1139,"1f4ac":1144,"1f4ad":1148,"1f4ae":2108,"1f4af":1136,"1f4b0":6121,"1f4b1":6130,"1f4b2":6131,"1f4b3":6127,"1f4b4":6122,"1f4b5":6123,"1f4b6":6124,"1f4b7":6125,"1f4b8":6126,"1f4b9":6129,"1f4ba":4123,"1f4bb":677,"1f4bc":6152,"1f4bd":683,"1f4be":684,"1f4bf":685,"1f4c0":686,"1f4c1":6153,"1f4c2":6154,"1f4c3":6113,"1f4c4":6115,"1f4c5":6156,"1f4c6":6157,"1f4c7":6160,"1f4c8":6161,"1f4c9":6162,"1f4ca":6163,"1f4cb":6164,"1f4cc":6165,"1f4cd":6166,"1f4ce":6167,"1f4cf":6169,"1f4d0":6170,"1f4d1":6118,"1f4d2":6112,"1f4d3":6111,"1f4d4":6104,"1f4d5":6105,"1f4d6":6106,"1f4d7":6107,"1f4d8":6108,"1f4d9":6109,"1f4da":6110,"1f4db":6337,"1f4dc":6114,"1f4dd":6151,"1f4de":672,"1f4df":673,"1f4e0":674,"1f4e1":6207,"1f4e2":648,"1f4e3":649,"1f4e4":6136,"1f4e5":6137,"1f4e6":6138,"1f4e7":6133,"1f4e8":6134,"1f4e9":6135,"1f4ea":6140,"1f4eb":6139,"1f4ec":6141,"1f4ed":6142,"1f4ee":6143,"1f4ef":650,"1f4f0":6116,"1f4f1":669,"1f4f2":670,"1f4f3":6328,"1f4f4":6329,"1f4f5":6256,"1f4f6":6327,"1f4f7":693,"1f4f8":694,"1f4f9":695,"1f4fa":692,"1f4fb":661,"1f4fc":696,"1f4fd":690,"1f4ff":640,"1f500":6306,"1f501":6307,"1f502":6308,"1f503":6274,"1f504":6275,"1f505":6325,"1f506":6326,"1f507":644,"1f508":645,"1f509":646,"1f50a":647,"1f50b":675,"1f50c":676,"1f50d":697,"1f50e":698,"1f50f":6177,"1f510":6178,"1f511":6179,"1f512":6175,"1f513":6176,"1f514":651,"1f515":652,"1f516":6119,"1f517":6197,"1f518":6448,"1f519":6276,"1f51a":6277,"1f51b":6278,"1f51c":6279,"1f51d":6280,"1f51e":6257,"1f51f":6377,"1f520":6378,"1f521":6379,"1f522":6380,"1f523":6381,"1f524":6382,"1f525":4208,"1f526":6101,"1f527":6191,"1f528":6181,"1f529":6192,"1f52a":3120,"1f52b":6188,"1f52c":6205,"1f52d":6206,"1f52e":559,"1f52f":6292,"1f530":6338,"1f531":6336,"1f532":6450,"1f533":6449,"1f534":6417,"1f535":6421,"1f536":6441,"1f537":6442,"1f538":6443,"1f539":6444,"1f53a":6445,"1f53b":6446,"1f53c":6316,"1f53d":6318,"1f549":6283,"1f54a":268,"1f54b":446,"1f54c":442,"1f54d":444,"1f54e":6291,"1f550":4142,"1f551":4144,"1f552":4146,"1f553":4148,"1f554":4150,"1f555":4152,"1f556":4154,"1f557":4156,"1f558":4158,"1f559":4160,"1f55a":4162,"1f55b":4140,"1f55c":4143,"1f55d":4145,"1f55e":4147,"1f55f":4149,"1f560":4151,"1f561":4153,"1f562":4155,"1f563":4157,"1f564":4159,"1f565":4161,"1f566":4163,"1f567":4141,"1f56f":699,"1f570":4139,"1f573":1142,"1f574":1384,"1f575-fe0f-200d-2640-fe0f":1307,"1f575-fe0f-200d-2642-fe0f":1306,"1f575":1305,"1f576":62,"1f577":2101,"1f578":2102,"1f579":562,"1f57a":1383,"1f587":6168,"1f58a":6148,"1f58b":6147,"1f58c":6149,"1f58d":6150,"1f590":1152,"1f595":1165,"1f596":1154,"1f5a4":1134,"1f5a5":678,"1f5a8":679,"1f5b1":681,"1f5b2":682,"1f5bc":576,"1f5c2":6155,"1f5c3":6172,"1f5c4":6173,"1f5d1":6174,"1f5d2":6158,"1f5d3":6159,"1f5dc":6194,"1f5dd":6180,"1f5de":6117,"1f5e1":6186,"1f5e3":1480,"1f5e8":1146,"1f5ef":1147,"1f5f3":6144,"1f5fa":45,"1f5fb":411,"1f5fc":439,"1f5fd":440,"1f5fe":46,"1f5ff":6233,"1f600":11,"1f601":14,"1f602":18,"1f603":12,"1f604":13,"1f605":16,"1f606":15,"1f607":113,"1f608":191,"1f609":111,"1f60a":112,"1f60b":122,"1f60c":142,"1f60d":115,"1f60e":160,"1f60f":137,"1f610":134,"1f611":135,"1f612":138,"1f613":183,"1f614":143,"1f615":163,"1f616":180,"1f617":118,"1f618":117,"1f619":121,"1f61a":120,"1f61b":123,"1f61c":124,"1f61d":126,"1f61e":182,"1f61f":164,"1f620":189,"1f621":188,"1f622":177,"1f623":181,"1f624":187,"1f625":176,"1f626":172,"1f627":173,"1f628":174,"1f629":184,"1f62a":144,"1f62b":185,"1f62c":140,"1f62d":178,"1f62e":167,"1f62f":168,"1f630":175,"1f631":179,"1f632":169,"1f633":170,"1f634":146,"1f635":156,"1f636":136,"1f637":147,"1f638":1104,"1f639":1105,"1f63a":1103,"1f63b":1106,"1f63c":1107,"1f63d":1108,"1f63e":1111,"1f63f":1110,"1f640":1109,"1f641":165,"1f642":19,"1f643":110,"1f644":139,"1f645-200d-2640-fe0f":1232,"1f645-200d-2642-fe0f":1231,"1f645":1230,"1f646-200d-2640-fe0f":1235,"1f646-200d-2642-fe0f":1234,"1f646":1233,"1f647-200d-2640-fe0f":1247,"1f647-200d-2642-fe0f":1246,"1f647":1245,"1f648":1112,"1f649":1113,"1f64a":1114,"1f64b-200d-2640-fe0f":1241,"1f64b-200d-2642-fe0f":1240,"1f64b":1239,"1f64c":1175,"1f64d-200d-2640-fe0f":1226,"1f64d-200d-2642-fe0f":1225,"1f64d":1224,"1f64e-200d-2640-fe0f":1229,"1f64e-200d-2642-fe0f":1228,"1f64e":1227,"1f64f":1179,"1f680":4129,"1f681":4124,"1f682":463,"1f683":464,"1f684":465,"1f685":466,"1f686":467,"1f687":468,"1f688":469,"1f689":470,"1f68a":471,"1f68b":474,"1f68c":475,"1f68d":476,"1f68e":477,"1f68f":4100,"1f690":478,"1f691":479,"1f692":480,"1f693":481,"1f694":482,"1f695":483,"1f696":484,"1f697":485,"1f698":486,"1f699":487,"1f69a":488,"1f69b":489,"1f69c":490,"1f69d":472,"1f69e":473,"1f69f":4125,"1f6a0":4126,"1f6a1":4127,"1f6a2":4117,"1f6a3-200d-2640-fe0f":1406,"1f6a3-200d-2642-fe0f":1405,"1f6a3":1404,"1f6a4":4113,"1f6a5":4106,"1f6a6":4107,"1f6a7":4109,"1f6a8":4105,"1f6a9":72,"1f6aa":6213,"1f6ab":6250,"1f6ac":6230,"1f6ad":6252,"1f6ae":6235,"1f6af":6253,"1f6b0":6236,"1f6b1":6254,"1f6b2":497,"1f6b3":6251,"1f6b4-200d-2640-fe0f":1418,"1f6b4-200d-2642-fe0f":1417,"1f6b4":1416,"1f6b5-200d-2640-fe0f":1421,"1f6b5-200d-2642-fe0f":1420,"1f6b5":1419,"1f6b6-200d-2640-fe0f":1363,"1f6b6-200d-2642-fe0f":1362,"1f6b6":1361,"1f6b7":6255,"1f6b8":6248,"1f6b9":6238,"1f6ba":6239,"1f6bb":6240,"1f6bc":6241,"1f6bd":6217,"1f6be":6242,"1f6bf":6218,"1f6c0":1440,"1f6c1":6219,"1f6c2":6243,"1f6c3":6244,"1f6c4":6245,"1f6c5":6246,"1f6cb":6215,"1f6cc":1441,"1f6cd":624,"1f6ce":4131,"1f6cf":6214,"1f6d0":6281,"1f6d1":4108,"1f6d2":6229,"1f6d5":443,"1f6e0":6185,"1f6e1":6190,"1f6e2":4103,"1f6e3":4101,"1f6e4":4102,"1f6e5":4116,"1f6e9":4119,"1f6eb":4120,"1f6ec":4121,"1f6f0":4128,"1f6f3":4114,"1f6f4":498,"1f6f5":493,"1f6f6":4112,"1f6f7":553,"1f6f8":4130,"1f6f9":499,"1f6fa":496,"1f7e0":6418,"1f7e1":6419,"1f7e2":6420,"1f7e3":6422,"1f7e4":6423,"1f7e5":6426,"1f7e6":6430,"1f7e7":6427,"1f7e8":6428,"1f7e9":6429,"1f7ea":6431,"1f7eb":6432,"1f90d":1135,"1f90e":1133,"1f90f":1156,"1f910":132,"1f911":127,"1f912":148,"1f913":161,"1f914":131,"1f915":149,"1f916":1102,"1f917":128,"1f918":1160,"1f919":1161,"1f91a":1151,"1f91b":1172,"1f91c":1173,"1f91d":1178,"1f91e":1158,"1f91f":1159,"1f920":158,"1f921":196,"1f922":150,"1f923":17,"1f924":145,"1f925":141,"1f926-200d-2640-fe0f":1250,"1f926-200d-2642-fe0f":1249,"1f926":1248,"1f927":152,"1f928":133,"1f929":116,"1f92a":125,"1f92b":130,"1f92c":190,"1f92d":129,"1f92e":151,"1f92f":157,"1f930":1323,"1f931":1324,"1f932":1177,"1f933":1182,"1f934":1314,"1f935":1321,"1f936":1327,"1f937-200d-2640-fe0f":1253,"1f937-200d-2642-fe0f":1252,"1f937":1251,"1f938-200d-2640-fe0f":1424,"1f938-200d-2642-fe0f":1423,"1f938":1422,"1f939-200d-2640-fe0f":1436,"1f939-200d-2642-fe0f":1435,"1f939":1434,"1f93a":1394,"1f93c-200d-2640-fe0f":1427,"1f93c-200d-2642-fe0f":1426,"1f93c":1425,"1f93d-200d-2640-fe0f":1430,"1f93d-200d-2642-fe0f":1429,"1f93d":1428,"1f93e-200d-2640-fe0f":1433,"1f93e-200d-2642-fe0f":1432,"1f93e":1431,"1f93f":550,"1f940":2111,"1f941":668,"1f942":3110,"1f943":3111,"1f944":3119,"1f945":546,"1f947":525,"1f948":526,"1f949":527,"1f94a":544,"1f94b":545,"1f94c":554,"1f94d":541,"1f94e":530,"1f94f":536,"1f950":333,"1f951":318,"1f952":324,"1f953":343,"1f954":320,"1f955":321,"1f956":334,"1f957":358,"1f958":355,"1f959":351,"1f95a":353,"1f95b":3100,"1f95c":330,"1f95d":315,"1f95e":337,"1f95f":377,"1f960":378,"1f961":379,"1f962":3116,"1f963":357,"1f964":3112,"1f965":317,"1f966":326,"1f967":393,"1f968":335,"1f969":342,"1f96a":348,"1f96b":362,"1f96c":325,"1f96d":38,"1f96e":375,"1f96f":336,"1f970":114,"1f971":186,"1f973":159,"1f974":155,"1f975":153,"1f976":154,"1f97a":171,"1f97b":615,"1f97c":64,"1f97d":63,"1f97e":628,"1f97f":629,"1f980":380,"1f981":215,"1f982":2103,"1f983":260,"1f984":221,"1f985":269,"1f986":270,"1f987":250,"1f988":291,"1f989":272,"1f98a":211,"1f98b":295,"1f98c":223,"1f98d":23,"1f98e":279,"1f98f":240,"1f990":382,"1f991":383,"1f992":238,"1f993":222,"1f994":249,"1f995":283,"1f996":284,"1f997":2100,"1f998":257,"1f999":237,"1f99a":274,"1f99b":241,"1f99c":275,"1f99d":212,"1f99e":381,"1f99f":2104,"1f9a0":2105,"1f9a1":258,"1f9a2":271,"1f9a5":254,"1f9a6":255,"1f9a7":24,"1f9a8":256,"1f9a9":273,"1f9aa":384,"1f9ae":27,"1f9af":6196,"1f9b4":1193,"1f9b5":1186,"1f9b6":1187,"1f9b7":1192,"1f9b8-200d-2640-fe0f":1330,"1f9b8-200d-2642-fe0f":1329,"1f9b8":1328,"1f9b9-200d-2640-fe0f":1333,"1f9b9-200d-2642-fe0f":1332,"1f9b9":1331,"1f9ba":65,"1f9bb":1189,"1f9bc":495,"1f9bd":494,"1f9be":1184,"1f9bf":1185,"1f9c0":339,"1f9c1":392,"1f9c2":361,"1f9c3":3113,"1f9c4":327,"1f9c5":328,"1f9c6":352,"1f9c7":338,"1f9c8":360,"1f9c9":3114,"1f9ca":3115,"1f9cd-200d-2640-fe0f":1366,"1f9cd-200d-2642-fe0f":1365,"1f9cd":1364,"1f9ce-200d-2640-fe0f":1369,"1f9ce-200d-2642-fe0f":1368,"1f9ce":1367,"1f9cf-200d-2640-fe0f":1244,"1f9cf-200d-2642-fe0f":1243,"1f9cf":1242,"1f9d0":162,"1f9d1-200d-1f33e":1266,"1f9d1-200d-1f373":1269,"1f9d1-200d-1f393":1257,"1f9d1-200d-1f3a4":1287,"1f9d1-200d-1f3a8":1290,"1f9d1-200d-1f3eb":1260,"1f9d1-200d-1f3ed":1275,"1f9d1-200d-1f4bb":1284,"1f9d1-200d-1f4bc":1278,"1f9d1-200d-1f527":1272,"1f9d1-200d-1f52c":1281,"1f9d1-200d-1f680":1296,"1f9d1-200d-1f692":1299,"1f9d1-200d-1f91d-200d-1f9d1":1442,"1f9d1-200d-1f9af":1370,"1f9d1-200d-1f9b0":1212,"1f9d1-200d-1f9b1":1214,"1f9d1-200d-1f9b2":1218,"1f9d1-200d-1f9b3":1216,"1f9d1-200d-1f9bc":1373,"1f9d1-200d-1f9bd":1376,"1f9d1-200d-2695-fe0f":1254,"1f9d1-200d-2696-fe0f":1263,"1f9d1-200d-2708-fe0f":1293,"1f9d1":1202,"1f9d2":1199,"1f9d3":1221,"1f9d4":1205,"1f9d5":1320,"1f9d6-200d-2640-fe0f":1390,"1f9d6-200d-2642-fe0f":1389,"1f9d6":1388,"1f9d7-200d-2640-fe0f":1393,"1f9d7-200d-2642-fe0f":1392,"1f9d7":1391,"1f9d8-200d-2640-fe0f":1439,"1f9d8-200d-2642-fe0f":1438,"1f9d8":1437,"1f9d9-200d-2640-fe0f":1336,"1f9d9-200d-2642-fe0f":1335,"1f9d9":1334,"1f9da-200d-2640-fe0f":1339,"1f9da-200d-2642-fe0f":1338,"1f9da":1337,"1f9db-200d-2640-fe0f":1342,"1f9db-200d-2642-fe0f":1341,"1f9db":1340,"1f9dc-200d-2640-fe0f":1345,"1f9dc-200d-2642-fe0f":1344,"1f9dc":1343,"1f9dd-200d-2640-fe0f":1348,"1f9dd-200d-2642-fe0f":1347,"1f9dd":1346,"1f9de-200d-2640-fe0f":1351,"1f9de-200d-2642-fe0f":1350,"1f9de":1349,"1f9df-200d-2640-fe0f":1354,"1f9df-200d-2642-fe0f":1353,"1f9df":1352,"1f9e0":1191,"1f9e1":1128,"1f9e2":638,"1f9e3":69,"1f9e4":610,"1f9e5":611,"1f9e6":612,"1f9e7":516,"1f9e8":55,"1f9e9":565,"1f9ea":6202,"1f9eb":6203,"1f9ec":6204,"1f9ed":47,"1f9ee":687,"1f9ef":6228,"1f9f0":6199,"1f9f1":420,"1f9f2":6200,"1f9f3":4132,"1f9f4":6221,"1f9f5":578,"1f9f6":579,"1f9f7":6222,"1f9f8":566,"1f9f9":6223,"1f9fa":6224,"1f9fb":6225,"1f9fc":6226,"1f9fd":6227,"1f9fe":6128,"1f9ff":560,"1fa70":632,"1fa71":616,"1fa72":617,"1fa73":618,"1fa78":6209,"1fa79":6211,"1fa7a":6212,"1fa80":556,"1fa81":557,"1fa82":4122,"1fa90":4180,"1fa91":6216,"1fa92":6220,"1fa93":6182,"1fa94":6103,"1fa95":667,"203c":6355,"21a9":6270,"21aa":6271,"231a":4135,"231b":4133,"23cf":6323,"23e9":6310,"23ea":6314,"23eb":6317,"23ec":6319,"23ed":6311,"23ee":6315,"23ef":6312,"23f0":4136,"23f1":4137,"23f2":4138,"23f3":4134,"23f8":6320,"23f9":6321,"23fa":6322,"24c2":6391,"25aa":6439,"25ab":6440,"25b6":6309,"25c0":6313,"25fb":6436,"25fc":6435,"25fd":6438,"25fe":6437,"260e":671,"261d":1167,"262a":6289,"262e":6290,"262f":6286,"263a":119,"264a":6295,"264b":6296,"264c":6297,"264d":6298,"264e":6299,"264f":6300,"265f":571,"267b":6334,"267e":6333,"267f":6237,"269b":6282,"269c":6335,"26a0":6247,"26a1":4203,"26aa":6425,"26ab":6424,"26b0":6231,"26b1":6232,"26bd":528,"26be":529,"26c4":4206,"26c5":4186,"26c8":4187,"26ce":6305,"26cf":6183,"26d1":639,"26d3":6198,"26d4":6249,"26e9":445,"26ea":441,"26f0":49,"26f1":4202,"26f2":447,"26f3":547,"26f4":4115,"26f5":4111,"26f7":1396,"26f8":548,"26f9-fe0f-200d-2640-fe0f":1412,"26f9-fe0f-200d-2642-fe0f":1411,"26f9":1410,"26fa":448,"26fd":4104,"270a":1170,"270b":1153,"270c":1157,"270d":1180,"270f":6145,"271d":6287,"274c":6344,"274e":6345,"27a1":6262,"27b0":6349,"27bf":6350,"2b05":6266,"2b06":6260,"2b07":6264,"2b1b":6433,"2b1c":6434,"2b50":4181,"2b55":6339,"303d":6351,"1f385-1f3fb":0,"1f385-1f3fc":0,"1f385-1f3fd":0,"1f385-1f3fe":0,"1f385-1f3ff":0,"1f3c2-1f3fb":0,"1f3c2-1f3fc":0,"1f3c2-1f3fd":0,"1f3c2-1f3fe":0,"1f3c2-1f3ff":0,"1f3c3-1f3fb-200d-2640-fe0f":0,"1f3c3-1f3fc-200d-2640-fe0f":0,"1f3c3-1f3fd-200d-2640-fe0f":0,"1f3c3-1f3fe-200d-2640-fe0f":0,"1f3c3-1f3ff-200d-2640-fe0f":0,"1f3c3-1f3fb-200d-2642-fe0f":0,"1f3c3-1f3fc-200d-2642-fe0f":0,"1f3c3-1f3fd-200d-2642-fe0f":0,"1f3c3-1f3fe-200d-2642-fe0f":0,"1f3c3-1f3ff-200d-2642-fe0f":0,"1f3c3-1f3fb":0,"1f3c3-1f3fc":0,"1f3c3-1f3fd":0,"1f3c3-1f3fe":0,"1f3c3-1f3ff":0,"1f3c4-1f3fb-200d-2640-fe0f":0,"1f3c4-1f3fc-200d-2640-fe0f":0,"1f3c4-1f3fd-200d-2640-fe0f":0,"1f3c4-1f3fe-200d-2640-fe0f":0,"1f3c4-1f3ff-200d-2640-fe0f":0,"1f3c4-1f3fb-200d-2642-fe0f":0,"1f3c4-1f3fc-200d-2642-fe0f":0,"1f3c4-1f3fd-200d-2642-fe0f":0,"1f3c4-1f3fe-200d-2642-fe0f":0,"1f3c4-1f3ff-200d-2642-fe0f":0,"1f3c4-1f3fb":0,"1f3c4-1f3fc":0,"1f3c4-1f3fd":0,"1f3c4-1f3fe":0,"1f3c4-1f3ff":0,"1f3c7-1f3fb":0,"1f3c7-1f3fc":0,"1f3c7-1f3fd":0,"1f3c7-1f3fe":0,"1f3c7-1f3ff":0,"1f3ca-1f3fb-200d-2640-fe0f":0,"1f3ca-1f3fc-200d-2640-fe0f":0,"1f3ca-1f3fd-200d-2640-fe0f":0,"1f3ca-1f3fe-200d-2640-fe0f":0,"1f3ca-1f3ff-200d-2640-fe0f":0,"1f3ca-1f3fb-200d-2642-fe0f":0,"1f3ca-1f3fc-200d-2642-fe0f":0,"1f3ca-1f3fd-200d-2642-fe0f":0,"1f3ca-1f3fe-200d-2642-fe0f":0,"1f3ca-1f3ff-200d-2642-fe0f":0,"1f3ca-1f3fb":0,"1f3ca-1f3fc":0,"1f3ca-1f3fd":0,"1f3ca-1f3fe":0,"1f3ca-1f3ff":0,"1f3cb-1f3fb-200d-2640-fe0f":0,"1f3cb-1f3fc-200d-2640-fe0f":0,"1f3cb-1f3fd-200d-2640-fe0f":0,"1f3cb-1f3fe-200d-2640-fe0f":0,"1f3cb-1f3ff-200d-2640-fe0f":0,"1f3cb-1f3fb-200d-2642-fe0f":0,"1f3cb-1f3fc-200d-2642-fe0f":0,"1f3cb-1f3fd-200d-2642-fe0f":0,"1f3cb-1f3fe-200d-2642-fe0f":0,"1f3cb-1f3ff-200d-2642-fe0f":0,"1f3cb-1f3fb":0,"1f3cb-1f3fc":0,"1f3cb-1f3fd":0,"1f3cb-1f3fe":0,"1f3cb-1f3ff":0,"1f3cc-1f3fb-200d-2640-fe0f":0,"1f3cc-1f3fc-200d-2640-fe0f":0,"1f3cc-1f3fd-200d-2640-fe0f":0,"1f3cc-1f3fe-200d-2640-fe0f":0,"1f3cc-1f3ff-200d-2640-fe0f":0,"1f3cc-1f3fb-200d-2642-fe0f":0,"1f3cc-1f3fc-200d-2642-fe0f":0,"1f3cc-1f3fd-200d-2642-fe0f":0,"1f3cc-1f3fe-200d-2642-fe0f":0,"1f3cc-1f3ff-200d-2642-fe0f":0,"1f3cc-1f3fb":0,"1f3cc-1f3fc":0,"1f3cc-1f3fd":0,"1f3cc-1f3fe":0,"1f3cc-1f3ff":0,"1f442-1f3fb":0,"1f442-1f3fc":0,"1f442-1f3fd":0,"1f442-1f3fe":0,"1f442-1f3ff":0,"1f443-1f3fb":0,"1f443-1f3fc":0,"1f443-1f3fd":0,"1f443-1f3fe":0,"1f443-1f3ff":0,"1f446-1f3fb":0,"1f446-1f3fc":0,"1f446-1f3fd":0,"1f446-1f3fe":0,"1f446-1f3ff":0,"1f447-1f3fb":0,"1f447-1f3fc":0,"1f447-1f3fd":0,"1f447-1f3fe":0,"1f447-1f3ff":0,"1f448-1f3fb":0,"1f448-1f3fc":0,"1f448-1f3fd":0,"1f448-1f3fe":0,"1f448-1f3ff":0,"1f449-1f3fb":0,"1f449-1f3fc":0,"1f449-1f3fd":0,"1f449-1f3fe":0,"1f449-1f3ff":0,"1f44a-1f3fb":0,"1f44a-1f3fc":0,"1f44a-1f3fd":0,"1f44a-1f3fe":0,"1f44a-1f3ff":0,"1f44b-1f3fb":0,"1f44b-1f3fc":0,"1f44b-1f3fd":0,"1f44b-1f3fe":0,"1f44b-1f3ff":0,"1f44c-1f3fb":0,"1f44c-1f3fc":0,"1f44c-1f3fd":0,"1f44c-1f3fe":0,"1f44c-1f3ff":0,"1f44d-1f3fb":0,"1f44d-1f3fc":0,"1f44d-1f3fd":0,"1f44d-1f3fe":0,"1f44d-1f3ff":0,"1f44e-1f3fb":0,"1f44e-1f3fc":0,"1f44e-1f3fd":0,"1f44e-1f3fe":0,"1f44e-1f3ff":0,"1f44f-1f3fb":0,"1f44f-1f3fc":0,"1f44f-1f3fd":0,"1f44f-1f3fe":0,"1f44f-1f3ff":0,"1f450-1f3fb":0,"1f450-1f3fc":0,"1f450-1f3fd":0,"1f450-1f3fe":0,"1f450-1f3ff":0,"1f466-1f3fb":0,"1f466-1f3fc":0,"1f466-1f3fd":0,"1f466-1f3fe":0,"1f466-1f3ff":0,"1f467-1f3fb":0,"1f467-1f3fc":0,"1f467-1f3fd":0,"1f467-1f3fe":0,"1f467-1f3ff":0,"1f468-1f3fb-200d-1f33e":0,"1f468-1f3fc-200d-1f33e":0,"1f468-1f3fd-200d-1f33e":0,"1f468-1f3fe-200d-1f33e":0,"1f468-1f3ff-200d-1f33e":0,"1f468-1f3fb-200d-1f373":0,"1f468-1f3fc-200d-1f373":0,"1f468-1f3fd-200d-1f373":0,"1f468-1f3fe-200d-1f373":0,"1f468-1f3ff-200d-1f373":0,"1f468-1f3fb-200d-1f393":0,"1f468-1f3fc-200d-1f393":0,"1f468-1f3fd-200d-1f393":0,"1f468-1f3fe-200d-1f393":0,"1f468-1f3ff-200d-1f393":0,"1f468-1f3fb-200d-1f3a4":0,"1f468-1f3fc-200d-1f3a4":0,"1f468-1f3fd-200d-1f3a4":0,"1f468-1f3fe-200d-1f3a4":0,"1f468-1f3ff-200d-1f3a4":0,"1f468-1f3fb-200d-1f3a8":0,"1f468-1f3fc-200d-1f3a8":0,"1f468-1f3fd-200d-1f3a8":0,"1f468-1f3fe-200d-1f3a8":0,"1f468-1f3ff-200d-1f3a8":0,"1f468-1f3fb-200d-1f3eb":0,"1f468-1f3fc-200d-1f3eb":0,"1f468-1f3fd-200d-1f3eb":0,"1f468-1f3fe-200d-1f3eb":0,"1f468-1f3ff-200d-1f3eb":0,"1f468-1f3fb-200d-1f3ed":0,"1f468-1f3fc-200d-1f3ed":0,"1f468-1f3fd-200d-1f3ed":0,"1f468-1f3fe-200d-1f3ed":0,"1f468-1f3ff-200d-1f3ed":0,"1f468-1f3fb-200d-1f4bb":0,"1f468-1f3fc-200d-1f4bb":0,"1f468-1f3fd-200d-1f4bb":0,"1f468-1f3fe-200d-1f4bb":0,"1f468-1f3ff-200d-1f4bb":0,"1f468-1f3fb-200d-1f4bc":0,"1f468-1f3fc-200d-1f4bc":0,"1f468-1f3fd-200d-1f4bc":0,"1f468-1f3fe-200d-1f4bc":0,"1f468-1f3ff-200d-1f4bc":0,"1f468-1f3fb-200d-1f527":0,"1f468-1f3fc-200d-1f527":0,"1f468-1f3fd-200d-1f527":0,"1f468-1f3fe-200d-1f527":0,"1f468-1f3ff-200d-1f527":0,"1f468-1f3fb-200d-1f52c":0,"1f468-1f3fc-200d-1f52c":0,"1f468-1f3fd-200d-1f52c":0,"1f468-1f3fe-200d-1f52c":0,"1f468-1f3ff-200d-1f52c":0,"1f468-1f3fb-200d-1f680":0,"1f468-1f3fc-200d-1f680":0,"1f468-1f3fd-200d-1f680":0,"1f468-1f3fe-200d-1f680":0,"1f468-1f3ff-200d-1f680":0,"1f468-1f3fb-200d-1f692":0,"1f468-1f3fc-200d-1f692":0,"1f468-1f3fd-200d-1f692":0,"1f468-1f3fe-200d-1f692":0,"1f468-1f3ff-200d-1f692":0,"1f468-1f3fb-200d-1f9af":0,"1f468-1f3fc-200d-1f9af":0,"1f468-1f3fd-200d-1f9af":0,"1f468-1f3fe-200d-1f9af":0,"1f468-1f3ff-200d-1f9af":0,"1f468-1f3fb-200d-1f9b0":0,"1f468-1f3fc-200d-1f9b0":0,"1f468-1f3fd-200d-1f9b0":0,"1f468-1f3fe-200d-1f9b0":0,"1f468-1f3ff-200d-1f9b0":0,"1f468-1f3fb-200d-1f9b1":0,"1f468-1f3fc-200d-1f9b1":0,"1f468-1f3fd-200d-1f9b1":0,"1f468-1f3fe-200d-1f9b1":0,"1f468-1f3ff-200d-1f9b1":0,"1f468-1f3fb-200d-1f9b2":0,"1f468-1f3fc-200d-1f9b2":0,"1f468-1f3fd-200d-1f9b2":0,"1f468-1f3fe-200d-1f9b2":0,"1f468-1f3ff-200d-1f9b2":0,"1f468-1f3fb-200d-1f9b3":0,"1f468-1f3fc-200d-1f9b3":0,"1f468-1f3fd-200d-1f9b3":0,"1f468-1f3fe-200d-1f9b3":0,"1f468-1f3ff-200d-1f9b3":0,"1f468-1f3fb-200d-1f9bc":0,"1f468-1f3fc-200d-1f9bc":0,"1f468-1f3fd-200d-1f9bc":0,"1f468-1f3fe-200d-1f9bc":0,"1f468-1f3ff-200d-1f9bc":0,"1f468-1f3fb-200d-1f9bd":0,"1f468-1f3fc-200d-1f9bd":0,"1f468-1f3fd-200d-1f9bd":0,"1f468-1f3fe-200d-1f9bd":0,"1f468-1f3ff-200d-1f9bd":0,"1f468-1f3fb-200d-2695-fe0f":0,"1f468-1f3fc-200d-2695-fe0f":0,"1f468-1f3fd-200d-2695-fe0f":0,"1f468-1f3fe-200d-2695-fe0f":0,"1f468-1f3ff-200d-2695-fe0f":0,"1f468-1f3fb-200d-2696-fe0f":0,"1f468-1f3fc-200d-2696-fe0f":0,"1f468-1f3fd-200d-2696-fe0f":0,"1f468-1f3fe-200d-2696-fe0f":0,"1f468-1f3ff-200d-2696-fe0f":0,"1f468-1f3fb-200d-2708-fe0f":0,"1f468-1f3fc-200d-2708-fe0f":0,"1f468-1f3fd-200d-2708-fe0f":0,"1f468-1f3fe-200d-2708-fe0f":0,"1f468-1f3ff-200d-2708-fe0f":0,"1f468-1f3fb":0,"1f468-1f3fc":0,"1f468-1f3fd":0,"1f468-1f3fe":0,"1f468-1f3ff":0,"1f469-1f3fb-200d-1f33e":0,"1f469-1f3fc-200d-1f33e":0,"1f469-1f3fd-200d-1f33e":0,"1f469-1f3fe-200d-1f33e":0,"1f469-1f3ff-200d-1f33e":0,"1f469-1f3fb-200d-1f373":0,"1f469-1f3fc-200d-1f373":0,"1f469-1f3fd-200d-1f373":0,"1f469-1f3fe-200d-1f373":0,"1f469-1f3ff-200d-1f373":0,"1f469-1f3fb-200d-1f393":0,"1f469-1f3fc-200d-1f393":0,"1f469-1f3fd-200d-1f393":0,"1f469-1f3fe-200d-1f393":0,"1f469-1f3ff-200d-1f393":0,"1f469-1f3fb-200d-1f3a4":0,"1f469-1f3fc-200d-1f3a4":0,"1f469-1f3fd-200d-1f3a4":0,"1f469-1f3fe-200d-1f3a4":0,"1f469-1f3ff-200d-1f3a4":0,"1f469-1f3fb-200d-1f3a8":0,"1f469-1f3fc-200d-1f3a8":0,"1f469-1f3fd-200d-1f3a8":0,"1f469-1f3fe-200d-1f3a8":0,"1f469-1f3ff-200d-1f3a8":0,"1f469-1f3fb-200d-1f3eb":0,"1f469-1f3fc-200d-1f3eb":0,"1f469-1f3fd-200d-1f3eb":0,"1f469-1f3fe-200d-1f3eb":0,"1f469-1f3ff-200d-1f3eb":0,"1f469-1f3fb-200d-1f3ed":0,"1f469-1f3fc-200d-1f3ed":0,"1f469-1f3fd-200d-1f3ed":0,"1f469-1f3fe-200d-1f3ed":0,"1f469-1f3ff-200d-1f3ed":0,"1f469-1f3fb-200d-1f4bb":0,"1f469-1f3fc-200d-1f4bb":0,"1f469-1f3fd-200d-1f4bb":0,"1f469-1f3fe-200d-1f4bb":0,"1f469-1f3ff-200d-1f4bb":0,"1f469-1f3fb-200d-1f4bc":0,"1f469-1f3fc-200d-1f4bc":0,"1f469-1f3fd-200d-1f4bc":0,"1f469-1f3fe-200d-1f4bc":0,"1f469-1f3ff-200d-1f4bc":0,"1f469-1f3fb-200d-1f527":0,"1f469-1f3fc-200d-1f527":0,"1f469-1f3fd-200d-1f527":0,"1f469-1f3fe-200d-1f527":0,"1f469-1f3ff-200d-1f527":0,"1f469-1f3fb-200d-1f52c":0,"1f469-1f3fc-200d-1f52c":0,"1f469-1f3fd-200d-1f52c":0,"1f469-1f3fe-200d-1f52c":0,"1f469-1f3ff-200d-1f52c":0,"1f469-1f3fb-200d-1f680":0,"1f469-1f3fc-200d-1f680":0,"1f469-1f3fd-200d-1f680":0,"1f469-1f3fe-200d-1f680":0,"1f469-1f3ff-200d-1f680":0,"1f469-1f3fb-200d-1f692":0,"1f469-1f3fc-200d-1f692":0,"1f469-1f3fd-200d-1f692":0,"1f469-1f3fe-200d-1f692":0,"1f469-1f3ff-200d-1f692":0,"1f469-1f3fb-200d-1f9af":0,"1f469-1f3fc-200d-1f9af":0,"1f469-1f3fd-200d-1f9af":0,"1f469-1f3fe-200d-1f9af":0,"1f469-1f3ff-200d-1f9af":0,"1f469-1f3fb-200d-1f9b0":0,"1f469-1f3fc-200d-1f9b0":0,"1f469-1f3fd-200d-1f9b0":0,"1f469-1f3fe-200d-1f9b0":0,"1f469-1f3ff-200d-1f9b0":0,"1f469-1f3fb-200d-1f9b1":0,"1f469-1f3fc-200d-1f9b1":0,"1f469-1f3fd-200d-1f9b1":0,"1f469-1f3fe-200d-1f9b1":0,"1f469-1f3ff-200d-1f9b1":0,"1f469-1f3fb-200d-1f9b2":0,"1f469-1f3fc-200d-1f9b2":0,"1f469-1f3fd-200d-1f9b2":0,"1f469-1f3fe-200d-1f9b2":0,"1f469-1f3ff-200d-1f9b2":0,"1f469-1f3fb-200d-1f9b3":0,"1f469-1f3fc-200d-1f9b3":0,"1f469-1f3fd-200d-1f9b3":0,"1f469-1f3fe-200d-1f9b3":0,"1f469-1f3ff-200d-1f9b3":0,"1f469-1f3fb-200d-1f9bc":0,"1f469-1f3fc-200d-1f9bc":0,"1f469-1f3fd-200d-1f9bc":0,"1f469-1f3fe-200d-1f9bc":0,"1f469-1f3ff-200d-1f9bc":0,"1f469-1f3fb-200d-1f9bd":0,"1f469-1f3fc-200d-1f9bd":0,"1f469-1f3fd-200d-1f9bd":0,"1f469-1f3fe-200d-1f9bd":0,"1f469-1f3ff-200d-1f9bd":0,"1f469-1f3fb-200d-2695-fe0f":0,"1f469-1f3fc-200d-2695-fe0f":0,"1f469-1f3fd-200d-2695-fe0f":0,"1f469-1f3fe-200d-2695-fe0f":0,"1f469-1f3ff-200d-2695-fe0f":0,"1f469-1f3fb-200d-2696-fe0f":0,"1f469-1f3fc-200d-2696-fe0f":0,"1f469-1f3fd-200d-2696-fe0f":0,"1f469-1f3fe-200d-2696-fe0f":0,"1f469-1f3ff-200d-2696-fe0f":0,"1f469-1f3fb-200d-2708-fe0f":0,"1f469-1f3fc-200d-2708-fe0f":0,"1f469-1f3fd-200d-2708-fe0f":0,"1f469-1f3fe-200d-2708-fe0f":0,"1f469-1f3ff-200d-2708-fe0f":0,"1f469-1f3fb":0,"1f469-1f3fc":0,"1f469-1f3fd":0,"1f469-1f3fe":0,"1f469-1f3ff":0,"1f46b-1f3fb":0,"1f46b-1f3fc":0,"1f46b-1f3fd":0,"1f46b-1f3fe":0,"1f46b-1f3ff":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe":0,"1f46c-1f3fb":0,"1f46c-1f3fc":0,"1f46c-1f3fd":0,"1f46c-1f3fe":0,"1f46c-1f3ff":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe":0,"1f46d-1f3fb":0,"1f46d-1f3fc":0,"1f46d-1f3fd":0,"1f46d-1f3fe":0,"1f46d-1f3ff":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe":0,"1f46e-1f3fb-200d-2640-fe0f":0,"1f46e-1f3fc-200d-2640-fe0f":0,"1f46e-1f3fd-200d-2640-fe0f":0,"1f46e-1f3fe-200d-2640-fe0f":0,"1f46e-1f3ff-200d-2640-fe0f":0,"1f46e-1f3fb-200d-2642-fe0f":0,"1f46e-1f3fc-200d-2642-fe0f":0,"1f46e-1f3fd-200d-2642-fe0f":0,"1f46e-1f3fe-200d-2642-fe0f":0,"1f46e-1f3ff-200d-2642-fe0f":0,"1f46e-1f3fb":0,"1f46e-1f3fc":0,"1f46e-1f3fd":0,"1f46e-1f3fe":0,"1f46e-1f3ff":0,"1f470-1f3fb":0,"1f470-1f3fc":0,"1f470-1f3fd":0,"1f470-1f3fe":0,"1f470-1f3ff":0,"1f471-1f3fb-200d-2640-fe0f":0,"1f471-1f3fc-200d-2640-fe0f":0,"1f471-1f3fd-200d-2640-fe0f":0,"1f471-1f3fe-200d-2640-fe0f":0,"1f471-1f3ff-200d-2640-fe0f":0,"1f471-1f3fb-200d-2642-fe0f":0,"1f471-1f3fc-200d-2642-fe0f":0,"1f471-1f3fd-200d-2642-fe0f":0,"1f471-1f3fe-200d-2642-fe0f":0,"1f471-1f3ff-200d-2642-fe0f":0,"1f471-1f3fb":0,"1f471-1f3fc":0,"1f471-1f3fd":0,"1f471-1f3fe":0,"1f471-1f3ff":0,"1f472-1f3fb":0,"1f472-1f3fc":0,"1f472-1f3fd":0,"1f472-1f3fe":0,"1f472-1f3ff":0,"1f473-1f3fb-200d-2640-fe0f":0,"1f473-1f3fc-200d-2640-fe0f":0,"1f473-1f3fd-200d-2640-fe0f":0,"1f473-1f3fe-200d-2640-fe0f":0,"1f473-1f3ff-200d-2640-fe0f":0,"1f473-1f3fb-200d-2642-fe0f":0,"1f473-1f3fc-200d-2642-fe0f":0,"1f473-1f3fd-200d-2642-fe0f":0,"1f473-1f3fe-200d-2642-fe0f":0,"1f473-1f3ff-200d-2642-fe0f":0,"1f473-1f3fb":0,"1f473-1f3fc":0,"1f473-1f3fd":0,"1f473-1f3fe":0,"1f473-1f3ff":0,"1f474-1f3fb":0,"1f474-1f3fc":0,"1f474-1f3fd":0,"1f474-1f3fe":0,"1f474-1f3ff":0,"1f475-1f3fb":0,"1f475-1f3fc":0,"1f475-1f3fd":0,"1f475-1f3fe":0,"1f475-1f3ff":0,"1f476-1f3fb":0,"1f476-1f3fc":0,"1f476-1f3fd":0,"1f476-1f3fe":0,"1f476-1f3ff":0,"1f477-1f3fb-200d-2640-fe0f":0,"1f477-1f3fc-200d-2640-fe0f":0,"1f477-1f3fd-200d-2640-fe0f":0,"1f477-1f3fe-200d-2640-fe0f":0,"1f477-1f3ff-200d-2640-fe0f":0,"1f477-1f3fb-200d-2642-fe0f":0,"1f477-1f3fc-200d-2642-fe0f":0,"1f477-1f3fd-200d-2642-fe0f":0,"1f477-1f3fe-200d-2642-fe0f":0,"1f477-1f3ff-200d-2642-fe0f":0,"1f477-1f3fb":0,"1f477-1f3fc":0,"1f477-1f3fd":0,"1f477-1f3fe":0,"1f477-1f3ff":0,"1f478-1f3fb":0,"1f478-1f3fc":0,"1f478-1f3fd":0,"1f478-1f3fe":0,"1f478-1f3ff":0,"1f47c-1f3fb":0,"1f47c-1f3fc":0,"1f47c-1f3fd":0,"1f47c-1f3fe":0,"1f47c-1f3ff":0,"1f481-1f3fb-200d-2640-fe0f":0,"1f481-1f3fc-200d-2640-fe0f":0,"1f481-1f3fd-200d-2640-fe0f":0,"1f481-1f3fe-200d-2640-fe0f":0,"1f481-1f3ff-200d-2640-fe0f":0,"1f481-1f3fb-200d-2642-fe0f":0,"1f481-1f3fc-200d-2642-fe0f":0,"1f481-1f3fd-200d-2642-fe0f":0,"1f481-1f3fe-200d-2642-fe0f":0,"1f481-1f3ff-200d-2642-fe0f":0,"1f481-1f3fb":0,"1f481-1f3fc":0,"1f481-1f3fd":0,"1f481-1f3fe":0,"1f481-1f3ff":0,"1f482-1f3fb-200d-2640-fe0f":0,"1f482-1f3fc-200d-2640-fe0f":0,"1f482-1f3fd-200d-2640-fe0f":0,"1f482-1f3fe-200d-2640-fe0f":0,"1f482-1f3ff-200d-2640-fe0f":0,"1f482-1f3fb-200d-2642-fe0f":0,"1f482-1f3fc-200d-2642-fe0f":0,"1f482-1f3fd-200d-2642-fe0f":0,"1f482-1f3fe-200d-2642-fe0f":0,"1f482-1f3ff-200d-2642-fe0f":0,"1f482-1f3fb":0,"1f482-1f3fc":0,"1f482-1f3fd":0,"1f482-1f3fe":0,"1f482-1f3ff":0,"1f483-1f3fb":0,"1f483-1f3fc":0,"1f483-1f3fd":0,"1f483-1f3fe":0,"1f483-1f3ff":0,"1f485-1f3fb":0,"1f485-1f3fc":0,"1f485-1f3fd":0,"1f485-1f3fe":0,"1f485-1f3ff":0,"1f486-1f3fb-200d-2640-fe0f":0,"1f486-1f3fc-200d-2640-fe0f":0,"1f486-1f3fd-200d-2640-fe0f":0,"1f486-1f3fe-200d-2640-fe0f":0,"1f486-1f3ff-200d-2640-fe0f":0,"1f486-1f3fb-200d-2642-fe0f":0,"1f486-1f3fc-200d-2642-fe0f":0,"1f486-1f3fd-200d-2642-fe0f":0,"1f486-1f3fe-200d-2642-fe0f":0,"1f486-1f3ff-200d-2642-fe0f":0,"1f486-1f3fb":0,"1f486-1f3fc":0,"1f486-1f3fd":0,"1f486-1f3fe":0,"1f486-1f3ff":0,"1f487-1f3fb-200d-2640-fe0f":0,"1f487-1f3fc-200d-2640-fe0f":0,"1f487-1f3fd-200d-2640-fe0f":0,"1f487-1f3fe-200d-2640-fe0f":0,"1f487-1f3ff-200d-2640-fe0f":0,"1f487-1f3fb-200d-2642-fe0f":0,"1f487-1f3fc-200d-2642-fe0f":0,"1f487-1f3fd-200d-2642-fe0f":0,"1f487-1f3fe-200d-2642-fe0f":0,"1f487-1f3ff-200d-2642-fe0f":0,"1f487-1f3fb":0,"1f487-1f3fc":0,"1f487-1f3fd":0,"1f487-1f3fe":0,"1f487-1f3ff":0,"1f4aa-1f3fb":0,"1f4aa-1f3fc":0,"1f4aa-1f3fd":0,"1f4aa-1f3fe":0,"1f4aa-1f3ff":0,"1f574-1f3fb":0,"1f574-1f3fc":0,"1f574-1f3fd":0,"1f574-1f3fe":0,"1f574-1f3ff":0,"1f575-1f3fb-200d-2640-fe0f":0,"1f575-1f3fc-200d-2640-fe0f":0,"1f575-1f3fd-200d-2640-fe0f":0,"1f575-1f3fe-200d-2640-fe0f":0,"1f575-1f3ff-200d-2640-fe0f":0,"1f575-1f3fb-200d-2642-fe0f":0,"1f575-1f3fc-200d-2642-fe0f":0,"1f575-1f3fd-200d-2642-fe0f":0,"1f575-1f3fe-200d-2642-fe0f":0,"1f575-1f3ff-200d-2642-fe0f":0,"1f575-1f3fb":0,"1f575-1f3fc":0,"1f575-1f3fd":0,"1f575-1f3fe":0,"1f575-1f3ff":0,"1f57a-1f3fb":0,"1f57a-1f3fc":0,"1f57a-1f3fd":0,"1f57a-1f3fe":0,"1f57a-1f3ff":0,"1f590-1f3fb":0,"1f590-1f3fc":0,"1f590-1f3fd":0,"1f590-1f3fe":0,"1f590-1f3ff":0,"1f595-1f3fb":0,"1f595-1f3fc":0,"1f595-1f3fd":0,"1f595-1f3fe":0,"1f595-1f3ff":0,"1f596-1f3fb":0,"1f596-1f3fc":0,"1f596-1f3fd":0,"1f596-1f3fe":0,"1f596-1f3ff":0,"1f645-1f3fb-200d-2640-fe0f":0,"1f645-1f3fc-200d-2640-fe0f":0,"1f645-1f3fd-200d-2640-fe0f":0,"1f645-1f3fe-200d-2640-fe0f":0,"1f645-1f3ff-200d-2640-fe0f":0,"1f645-1f3fb-200d-2642-fe0f":0,"1f645-1f3fc-200d-2642-fe0f":0,"1f645-1f3fd-200d-2642-fe0f":0,"1f645-1f3fe-200d-2642-fe0f":0,"1f645-1f3ff-200d-2642-fe0f":0,"1f645-1f3fb":0,"1f645-1f3fc":0,"1f645-1f3fd":0,"1f645-1f3fe":0,"1f645-1f3ff":0,"1f646-1f3fb-200d-2640-fe0f":0,"1f646-1f3fc-200d-2640-fe0f":0,"1f646-1f3fd-200d-2640-fe0f":0,"1f646-1f3fe-200d-2640-fe0f":0,"1f646-1f3ff-200d-2640-fe0f":0,"1f646-1f3fb-200d-2642-fe0f":0,"1f646-1f3fc-200d-2642-fe0f":0,"1f646-1f3fd-200d-2642-fe0f":0,"1f646-1f3fe-200d-2642-fe0f":0,"1f646-1f3ff-200d-2642-fe0f":0,"1f646-1f3fb":0,"1f646-1f3fc":0,"1f646-1f3fd":0,"1f646-1f3fe":0,"1f646-1f3ff":0,"1f647-1f3fb-200d-2640-fe0f":0,"1f647-1f3fc-200d-2640-fe0f":0,"1f647-1f3fd-200d-2640-fe0f":0,"1f647-1f3fe-200d-2640-fe0f":0,"1f647-1f3ff-200d-2640-fe0f":0,"1f647-1f3fb-200d-2642-fe0f":0,"1f647-1f3fc-200d-2642-fe0f":0,"1f647-1f3fd-200d-2642-fe0f":0,"1f647-1f3fe-200d-2642-fe0f":0,"1f647-1f3ff-200d-2642-fe0f":0,"1f647-1f3fb":0,"1f647-1f3fc":0,"1f647-1f3fd":0,"1f647-1f3fe":0,"1f647-1f3ff":0,"1f64b-1f3fb-200d-2640-fe0f":0,"1f64b-1f3fc-200d-2640-fe0f":0,"1f64b-1f3fd-200d-2640-fe0f":0,"1f64b-1f3fe-200d-2640-fe0f":0,"1f64b-1f3ff-200d-2640-fe0f":0,"1f64b-1f3fb-200d-2642-fe0f":0,"1f64b-1f3fc-200d-2642-fe0f":0,"1f64b-1f3fd-200d-2642-fe0f":0,"1f64b-1f3fe-200d-2642-fe0f":0,"1f64b-1f3ff-200d-2642-fe0f":0,"1f64b-1f3fb":0,"1f64b-1f3fc":0,"1f64b-1f3fd":0,"1f64b-1f3fe":0,"1f64b-1f3ff":0,"1f64c-1f3fb":0,"1f64c-1f3fc":0,"1f64c-1f3fd":0,"1f64c-1f3fe":0,"1f64c-1f3ff":0,"1f64d-1f3fb-200d-2640-fe0f":0,"1f64d-1f3fc-200d-2640-fe0f":0,"1f64d-1f3fd-200d-2640-fe0f":0,"1f64d-1f3fe-200d-2640-fe0f":0,"1f64d-1f3ff-200d-2640-fe0f":0,"1f64d-1f3fb-200d-2642-fe0f":0,"1f64d-1f3fc-200d-2642-fe0f":0,"1f64d-1f3fd-200d-2642-fe0f":0,"1f64d-1f3fe-200d-2642-fe0f":0,"1f64d-1f3ff-200d-2642-fe0f":0,"1f64d-1f3fb":0,"1f64d-1f3fc":0,"1f64d-1f3fd":0,"1f64d-1f3fe":0,"1f64d-1f3ff":0,"1f64e-1f3fb-200d-2640-fe0f":0,"1f64e-1f3fc-200d-2640-fe0f":0,"1f64e-1f3fd-200d-2640-fe0f":0,"1f64e-1f3fe-200d-2640-fe0f":0,"1f64e-1f3ff-200d-2640-fe0f":0,"1f64e-1f3fb-200d-2642-fe0f":0,"1f64e-1f3fc-200d-2642-fe0f":0,"1f64e-1f3fd-200d-2642-fe0f":0,"1f64e-1f3fe-200d-2642-fe0f":0,"1f64e-1f3ff-200d-2642-fe0f":0,"1f64e-1f3fb":0,"1f64e-1f3fc":0,"1f64e-1f3fd":0,"1f64e-1f3fe":0,"1f64e-1f3ff":0,"1f64f-1f3fb":0,"1f64f-1f3fc":0,"1f64f-1f3fd":0,"1f64f-1f3fe":0,"1f64f-1f3ff":0,"1f6a3-1f3fb-200d-2640-fe0f":0,"1f6a3-1f3fc-200d-2640-fe0f":0,"1f6a3-1f3fd-200d-2640-fe0f":0,"1f6a3-1f3fe-200d-2640-fe0f":0,"1f6a3-1f3ff-200d-2640-fe0f":0,"1f6a3-1f3fb-200d-2642-fe0f":0,"1f6a3-1f3fc-200d-2642-fe0f":0,"1f6a3-1f3fd-200d-2642-fe0f":0,"1f6a3-1f3fe-200d-2642-fe0f":0,"1f6a3-1f3ff-200d-2642-fe0f":0,"1f6a3-1f3fb":0,"1f6a3-1f3fc":0,"1f6a3-1f3fd":0,"1f6a3-1f3fe":0,"1f6a3-1f3ff":0,"1f6b4-1f3fb-200d-2640-fe0f":0,"1f6b4-1f3fc-200d-2640-fe0f":0,"1f6b4-1f3fd-200d-2640-fe0f":0,"1f6b4-1f3fe-200d-2640-fe0f":0,"1f6b4-1f3ff-200d-2640-fe0f":0,"1f6b4-1f3fb-200d-2642-fe0f":0,"1f6b4-1f3fc-200d-2642-fe0f":0,"1f6b4-1f3fd-200d-2642-fe0f":0,"1f6b4-1f3fe-200d-2642-fe0f":0,"1f6b4-1f3ff-200d-2642-fe0f":0,"1f6b4-1f3fb":0,"1f6b4-1f3fc":0,"1f6b4-1f3fd":0,"1f6b4-1f3fe":0,"1f6b4-1f3ff":0,"1f6b5-1f3fb-200d-2640-fe0f":0,"1f6b5-1f3fc-200d-2640-fe0f":0,"1f6b5-1f3fd-200d-2640-fe0f":0,"1f6b5-1f3fe-200d-2640-fe0f":0,"1f6b5-1f3ff-200d-2640-fe0f":0,"1f6b5-1f3fb-200d-2642-fe0f":0,"1f6b5-1f3fc-200d-2642-fe0f":0,"1f6b5-1f3fd-200d-2642-fe0f":0,"1f6b5-1f3fe-200d-2642-fe0f":0,"1f6b5-1f3ff-200d-2642-fe0f":0,"1f6b5-1f3fb":0,"1f6b5-1f3fc":0,"1f6b5-1f3fd":0,"1f6b5-1f3fe":0,"1f6b5-1f3ff":0,"1f6b6-1f3fb-200d-2640-fe0f":0,"1f6b6-1f3fc-200d-2640-fe0f":0,"1f6b6-1f3fd-200d-2640-fe0f":0,"1f6b6-1f3fe-200d-2640-fe0f":0,"1f6b6-1f3ff-200d-2640-fe0f":0,"1f6b6-1f3fb-200d-2642-fe0f":0,"1f6b6-1f3fc-200d-2642-fe0f":0,"1f6b6-1f3fd-200d-2642-fe0f":0,"1f6b6-1f3fe-200d-2642-fe0f":0,"1f6b6-1f3ff-200d-2642-fe0f":0,"1f6b6-1f3fb":0,"1f6b6-1f3fc":0,"1f6b6-1f3fd":0,"1f6b6-1f3fe":0,"1f6b6-1f3ff":0,"1f6c0-1f3fb":0,"1f6c0-1f3fc":0,"1f6c0-1f3fd":0,"1f6c0-1f3fe":0,"1f6c0-1f3ff":0,"1f6cc-1f3fb":0,"1f6cc-1f3fc":0,"1f6cc-1f3fd":0,"1f6cc-1f3fe":0,"1f6cc-1f3ff":0,"1f90f-1f3fb":0,"1f90f-1f3fc":0,"1f90f-1f3fd":0,"1f90f-1f3fe":0,"1f90f-1f3ff":0,"1f918-1f3fb":0,"1f918-1f3fc":0,"1f918-1f3fd":0,"1f918-1f3fe":0,"1f918-1f3ff":0,"1f919-1f3fb":0,"1f919-1f3fc":0,"1f919-1f3fd":0,"1f919-1f3fe":0,"1f919-1f3ff":0,"1f91a-1f3fb":0,"1f91a-1f3fc":0,"1f91a-1f3fd":0,"1f91a-1f3fe":0,"1f91a-1f3ff":0,"1f91b-1f3fb":0,"1f91b-1f3fc":0,"1f91b-1f3fd":0,"1f91b-1f3fe":0,"1f91b-1f3ff":0,"1f91c-1f3fb":0,"1f91c-1f3fc":0,"1f91c-1f3fd":0,"1f91c-1f3fe":0,"1f91c-1f3ff":0,"1f91e-1f3fb":0,"1f91e-1f3fc":0,"1f91e-1f3fd":0,"1f91e-1f3fe":0,"1f91e-1f3ff":0,"1f91f-1f3fb":0,"1f91f-1f3fc":0,"1f91f-1f3fd":0,"1f91f-1f3fe":0,"1f91f-1f3ff":0,"1f926-1f3fb-200d-2640-fe0f":0,"1f926-1f3fc-200d-2640-fe0f":0,"1f926-1f3fd-200d-2640-fe0f":0,"1f926-1f3fe-200d-2640-fe0f":0,"1f926-1f3ff-200d-2640-fe0f":0,"1f926-1f3fb-200d-2642-fe0f":0,"1f926-1f3fc-200d-2642-fe0f":0,"1f926-1f3fd-200d-2642-fe0f":0,"1f926-1f3fe-200d-2642-fe0f":0,"1f926-1f3ff-200d-2642-fe0f":0,"1f926-1f3fb":0,"1f926-1f3fc":0,"1f926-1f3fd":0,"1f926-1f3fe":0,"1f926-1f3ff":0,"1f930-1f3fb":0,"1f930-1f3fc":0,"1f930-1f3fd":0,"1f930-1f3fe":0,"1f930-1f3ff":0,"1f931-1f3fb":0,"1f931-1f3fc":0,"1f931-1f3fd":0,"1f931-1f3fe":0,"1f931-1f3ff":0,"1f932-1f3fb":0,"1f932-1f3fc":0,"1f932-1f3fd":0,"1f932-1f3fe":0,"1f932-1f3ff":0,"1f933-1f3fb":0,"1f933-1f3fc":0,"1f933-1f3fd":0,"1f933-1f3fe":0,"1f933-1f3ff":0,"1f934-1f3fb":0,"1f934-1f3fc":0,"1f934-1f3fd":0,"1f934-1f3fe":0,"1f934-1f3ff":0,"1f935-1f3fb":0,"1f935-1f3fc":0,"1f935-1f3fd":0,"1f935-1f3fe":0,"1f935-1f3ff":0,"1f936-1f3fb":0,"1f936-1f3fc":0,"1f936-1f3fd":0,"1f936-1f3fe":0,"1f936-1f3ff":0,"1f937-1f3fb-200d-2640-fe0f":0,"1f937-1f3fc-200d-2640-fe0f":0,"1f937-1f3fd-200d-2640-fe0f":0,"1f937-1f3fe-200d-2640-fe0f":0,"1f937-1f3ff-200d-2640-fe0f":0,"1f937-1f3fb-200d-2642-fe0f":0,"1f937-1f3fc-200d-2642-fe0f":0,"1f937-1f3fd-200d-2642-fe0f":0,"1f937-1f3fe-200d-2642-fe0f":0,"1f937-1f3ff-200d-2642-fe0f":0,"1f937-1f3fb":0,"1f937-1f3fc":0,"1f937-1f3fd":0,"1f937-1f3fe":0,"1f937-1f3ff":0,"1f938-1f3fb-200d-2640-fe0f":0,"1f938-1f3fc-200d-2640-fe0f":0,"1f938-1f3fd-200d-2640-fe0f":0,"1f938-1f3fe-200d-2640-fe0f":0,"1f938-1f3ff-200d-2640-fe0f":0,"1f938-1f3fb-200d-2642-fe0f":0,"1f938-1f3fc-200d-2642-fe0f":0,"1f938-1f3fd-200d-2642-fe0f":0,"1f938-1f3fe-200d-2642-fe0f":0,"1f938-1f3ff-200d-2642-fe0f":0,"1f938-1f3fb":0,"1f938-1f3fc":0,"1f938-1f3fd":0,"1f938-1f3fe":0,"1f938-1f3ff":0,"1f939-1f3fb-200d-2640-fe0f":0,"1f939-1f3fc-200d-2640-fe0f":0,"1f939-1f3fd-200d-2640-fe0f":0,"1f939-1f3fe-200d-2640-fe0f":0,"1f939-1f3ff-200d-2640-fe0f":0,"1f939-1f3fb-200d-2642-fe0f":0,"1f939-1f3fc-200d-2642-fe0f":0,"1f939-1f3fd-200d-2642-fe0f":0,"1f939-1f3fe-200d-2642-fe0f":0,"1f939-1f3ff-200d-2642-fe0f":0,"1f939-1f3fb":0,"1f939-1f3fc":0,"1f939-1f3fd":0,"1f939-1f3fe":0,"1f939-1f3ff":0,"1f93d-1f3fb-200d-2640-fe0f":0,"1f93d-1f3fc-200d-2640-fe0f":0,"1f93d-1f3fd-200d-2640-fe0f":0,"1f93d-1f3fe-200d-2640-fe0f":0,"1f93d-1f3ff-200d-2640-fe0f":0,"1f93d-1f3fb-200d-2642-fe0f":0,"1f93d-1f3fc-200d-2642-fe0f":0,"1f93d-1f3fd-200d-2642-fe0f":0,"1f93d-1f3fe-200d-2642-fe0f":0,"1f93d-1f3ff-200d-2642-fe0f":0,"1f93d-1f3fb":0,"1f93d-1f3fc":0,"1f93d-1f3fd":0,"1f93d-1f3fe":0,"1f93d-1f3ff":0,"1f93e-1f3fb-200d-2640-fe0f":0,"1f93e-1f3fc-200d-2640-fe0f":0,"1f93e-1f3fd-200d-2640-fe0f":0,"1f93e-1f3fe-200d-2640-fe0f":0,"1f93e-1f3ff-200d-2640-fe0f":0,"1f93e-1f3fb-200d-2642-fe0f":0,"1f93e-1f3fc-200d-2642-fe0f":0,"1f93e-1f3fd-200d-2642-fe0f":0,"1f93e-1f3fe-200d-2642-fe0f":0,"1f93e-1f3ff-200d-2642-fe0f":0,"1f93e-1f3fb":0,"1f93e-1f3fc":0,"1f93e-1f3fd":0,"1f93e-1f3fe":0,"1f93e-1f3ff":0,"1f9b5-1f3fb":0,"1f9b5-1f3fc":0,"1f9b5-1f3fd":0,"1f9b5-1f3fe":0,"1f9b5-1f3ff":0,"1f9b6-1f3fb":0,"1f9b6-1f3fc":0,"1f9b6-1f3fd":0,"1f9b6-1f3fe":0,"1f9b6-1f3ff":0,"1f9b8-1f3fb-200d-2640-fe0f":0,"1f9b8-1f3fc-200d-2640-fe0f":0,"1f9b8-1f3fd-200d-2640-fe0f":0,"1f9b8-1f3fe-200d-2640-fe0f":0,"1f9b8-1f3ff-200d-2640-fe0f":0,"1f9b8-1f3fb-200d-2642-fe0f":0,"1f9b8-1f3fc-200d-2642-fe0f":0,"1f9b8-1f3fd-200d-2642-fe0f":0,"1f9b8-1f3fe-200d-2642-fe0f":0,"1f9b8-1f3ff-200d-2642-fe0f":0,"1f9b8-1f3fb":0,"1f9b8-1f3fc":0,"1f9b8-1f3fd":0,"1f9b8-1f3fe":0,"1f9b8-1f3ff":0,"1f9b9-1f3fb-200d-2640-fe0f":0,"1f9b9-1f3fc-200d-2640-fe0f":0,"1f9b9-1f3fd-200d-2640-fe0f":0,"1f9b9-1f3fe-200d-2640-fe0f":0,"1f9b9-1f3ff-200d-2640-fe0f":0,"1f9b9-1f3fb-200d-2642-fe0f":0,"1f9b9-1f3fc-200d-2642-fe0f":0,"1f9b9-1f3fd-200d-2642-fe0f":0,"1f9b9-1f3fe-200d-2642-fe0f":0,"1f9b9-1f3ff-200d-2642-fe0f":0,"1f9b9-1f3fb":0,"1f9b9-1f3fc":0,"1f9b9-1f3fd":0,"1f9b9-1f3fe":0,"1f9b9-1f3ff":0,"1f9bb-1f3fb":0,"1f9bb-1f3fc":0,"1f9bb-1f3fd":0,"1f9bb-1f3fe":0,"1f9bb-1f3ff":0,"1f9cd-1f3fb-200d-2640-fe0f":0,"1f9cd-1f3fc-200d-2640-fe0f":0,"1f9cd-1f3fd-200d-2640-fe0f":0,"1f9cd-1f3fe-200d-2640-fe0f":0,"1f9cd-1f3ff-200d-2640-fe0f":0,"1f9cd-1f3fb-200d-2642-fe0f":0,"1f9cd-1f3fc-200d-2642-fe0f":0,"1f9cd-1f3fd-200d-2642-fe0f":0,"1f9cd-1f3fe-200d-2642-fe0f":0,"1f9cd-1f3ff-200d-2642-fe0f":0,"1f9cd-1f3fb":0,"1f9cd-1f3fc":0,"1f9cd-1f3fd":0,"1f9cd-1f3fe":0,"1f9cd-1f3ff":0,"1f9ce-1f3fb-200d-2640-fe0f":0,"1f9ce-1f3fc-200d-2640-fe0f":0,"1f9ce-1f3fd-200d-2640-fe0f":0,"1f9ce-1f3fe-200d-2640-fe0f":0,"1f9ce-1f3ff-200d-2640-fe0f":0,"1f9ce-1f3fb-200d-2642-fe0f":0,"1f9ce-1f3fc-200d-2642-fe0f":0,"1f9ce-1f3fd-200d-2642-fe0f":0,"1f9ce-1f3fe-200d-2642-fe0f":0,"1f9ce-1f3ff-200d-2642-fe0f":0,"1f9ce-1f3fb":0,"1f9ce-1f3fc":0,"1f9ce-1f3fd":0,"1f9ce-1f3fe":0,"1f9ce-1f3ff":0,"1f9cf-1f3fb-200d-2640-fe0f":0,"1f9cf-1f3fc-200d-2640-fe0f":0,"1f9cf-1f3fd-200d-2640-fe0f":0,"1f9cf-1f3fe-200d-2640-fe0f":0,"1f9cf-1f3ff-200d-2640-fe0f":0,"1f9cf-1f3fb-200d-2642-fe0f":0,"1f9cf-1f3fc-200d-2642-fe0f":0,"1f9cf-1f3fd-200d-2642-fe0f":0,"1f9cf-1f3fe-200d-2642-fe0f":0,"1f9cf-1f3ff-200d-2642-fe0f":0,"1f9cf-1f3fb":0,"1f9cf-1f3fc":0,"1f9cf-1f3fd":0,"1f9cf-1f3fe":0,"1f9cf-1f3ff":0,"1f9d1-1f3fb-200d-1f33e":0,"1f9d1-1f3fc-200d-1f33e":0,"1f9d1-1f3fd-200d-1f33e":0,"1f9d1-1f3fe-200d-1f33e":0,"1f9d1-1f3ff-200d-1f33e":0,"1f9d1-1f3fb-200d-1f373":0,"1f9d1-1f3fc-200d-1f373":0,"1f9d1-1f3fd-200d-1f373":0,"1f9d1-1f3fe-200d-1f373":0,"1f9d1-1f3ff-200d-1f373":0,"1f9d1-1f3fb-200d-1f393":0,"1f9d1-1f3fc-200d-1f393":0,"1f9d1-1f3fd-200d-1f393":0,"1f9d1-1f3fe-200d-1f393":0,"1f9d1-1f3ff-200d-1f393":0,"1f9d1-1f3fb-200d-1f3a4":0,"1f9d1-1f3fc-200d-1f3a4":0,"1f9d1-1f3fd-200d-1f3a4":0,"1f9d1-1f3fe-200d-1f3a4":0,"1f9d1-1f3ff-200d-1f3a4":0,"1f9d1-1f3fb-200d-1f3a8":0,"1f9d1-1f3fc-200d-1f3a8":0,"1f9d1-1f3fd-200d-1f3a8":0,"1f9d1-1f3fe-200d-1f3a8":0,"1f9d1-1f3ff-200d-1f3a8":0,"1f9d1-1f3fb-200d-1f3eb":0,"1f9d1-1f3fc-200d-1f3eb":0,"1f9d1-1f3fd-200d-1f3eb":0,"1f9d1-1f3fe-200d-1f3eb":0,"1f9d1-1f3ff-200d-1f3eb":0,"1f9d1-1f3fb-200d-1f3ed":0,"1f9d1-1f3fc-200d-1f3ed":0,"1f9d1-1f3fd-200d-1f3ed":0,"1f9d1-1f3fe-200d-1f3ed":0,"1f9d1-1f3ff-200d-1f3ed":0,"1f9d1-1f3fb-200d-1f4bb":0,"1f9d1-1f3fc-200d-1f4bb":0,"1f9d1-1f3fd-200d-1f4bb":0,"1f9d1-1f3fe-200d-1f4bb":0,"1f9d1-1f3ff-200d-1f4bb":0,"1f9d1-1f3fb-200d-1f4bc":0,"1f9d1-1f3fc-200d-1f4bc":0,"1f9d1-1f3fd-200d-1f4bc":0,"1f9d1-1f3fe-200d-1f4bc":0,"1f9d1-1f3ff-200d-1f4bc":0,"1f9d1-1f3fb-200d-1f527":0,"1f9d1-1f3fc-200d-1f527":0,"1f9d1-1f3fd-200d-1f527":0,"1f9d1-1f3fe-200d-1f527":0,"1f9d1-1f3ff-200d-1f527":0,"1f9d1-1f3fb-200d-1f52c":0,"1f9d1-1f3fc-200d-1f52c":0,"1f9d1-1f3fd-200d-1f52c":0,"1f9d1-1f3fe-200d-1f52c":0,"1f9d1-1f3ff-200d-1f52c":0,"1f9d1-1f3fb-200d-1f680":0,"1f9d1-1f3fc-200d-1f680":0,"1f9d1-1f3fd-200d-1f680":0,"1f9d1-1f3fe-200d-1f680":0,"1f9d1-1f3ff-200d-1f680":0,"1f9d1-1f3fb-200d-1f692":0,"1f9d1-1f3fc-200d-1f692":0,"1f9d1-1f3fd-200d-1f692":0,"1f9d1-1f3fe-200d-1f692":0,"1f9d1-1f3ff-200d-1f692":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fb-200d-1f9af":0,"1f9d1-1f3fc-200d-1f9af":0,"1f9d1-1f3fd-200d-1f9af":0,"1f9d1-1f3fe-200d-1f9af":0,"1f9d1-1f3ff-200d-1f9af":0,"1f9d1-1f3fb-200d-1f9b0":0,"1f9d1-1f3fc-200d-1f9b0":0,"1f9d1-1f3fd-200d-1f9b0":0,"1f9d1-1f3fe-200d-1f9b0":0,"1f9d1-1f3ff-200d-1f9b0":0,"1f9d1-1f3fb-200d-1f9b1":0,"1f9d1-1f3fc-200d-1f9b1":0,"1f9d1-1f3fd-200d-1f9b1":0,"1f9d1-1f3fe-200d-1f9b1":0,"1f9d1-1f3ff-200d-1f9b1":0,"1f9d1-1f3fb-200d-1f9b2":0,"1f9d1-1f3fc-200d-1f9b2":0,"1f9d1-1f3fd-200d-1f9b2":0,"1f9d1-1f3fe-200d-1f9b2":0,"1f9d1-1f3ff-200d-1f9b2":0,"1f9d1-1f3fb-200d-1f9b3":0,"1f9d1-1f3fc-200d-1f9b3":0,"1f9d1-1f3fd-200d-1f9b3":0,"1f9d1-1f3fe-200d-1f9b3":0,"1f9d1-1f3ff-200d-1f9b3":0,"1f9d1-1f3fb-200d-1f9bc":0,"1f9d1-1f3fc-200d-1f9bc":0,"1f9d1-1f3fd-200d-1f9bc":0,"1f9d1-1f3fe-200d-1f9bc":0,"1f9d1-1f3ff-200d-1f9bc":0,"1f9d1-1f3fb-200d-1f9bd":0,"1f9d1-1f3fc-200d-1f9bd":0,"1f9d1-1f3fd-200d-1f9bd":0,"1f9d1-1f3fe-200d-1f9bd":0,"1f9d1-1f3ff-200d-1f9bd":0,"1f9d1-1f3fb-200d-2695-fe0f":0,"1f9d1-1f3fc-200d-2695-fe0f":0,"1f9d1-1f3fd-200d-2695-fe0f":0,"1f9d1-1f3fe-200d-2695-fe0f":0,"1f9d1-1f3ff-200d-2695-fe0f":0,"1f9d1-1f3fb-200d-2696-fe0f":0,"1f9d1-1f3fc-200d-2696-fe0f":0,"1f9d1-1f3fd-200d-2696-fe0f":0,"1f9d1-1f3fe-200d-2696-fe0f":0,"1f9d1-1f3ff-200d-2696-fe0f":0,"1f9d1-1f3fb-200d-2708-fe0f":0,"1f9d1-1f3fc-200d-2708-fe0f":0,"1f9d1-1f3fd-200d-2708-fe0f":0,"1f9d1-1f3fe-200d-2708-fe0f":0,"1f9d1-1f3ff-200d-2708-fe0f":0,"1f9d1-1f3fb":0,"1f9d1-1f3fc":0,"1f9d1-1f3fd":0,"1f9d1-1f3fe":0,"1f9d1-1f3ff":0,"1f9d2-1f3fb":0,"1f9d2-1f3fc":0,"1f9d2-1f3fd":0,"1f9d2-1f3fe":0,"1f9d2-1f3ff":0,"1f9d3-1f3fb":0,"1f9d3-1f3fc":0,"1f9d3-1f3fd":0,"1f9d3-1f3fe":0,"1f9d3-1f3ff":0,"1f9d4-1f3fb":0,"1f9d4-1f3fc":0,"1f9d4-1f3fd":0,"1f9d4-1f3fe":0,"1f9d4-1f3ff":0,"1f9d5-1f3fb":0,"1f9d5-1f3fc":0,"1f9d5-1f3fd":0,"1f9d5-1f3fe":0,"1f9d5-1f3ff":0,"1f9d6-1f3fb-200d-2640-fe0f":0,"1f9d6-1f3fc-200d-2640-fe0f":0,"1f9d6-1f3fd-200d-2640-fe0f":0,"1f9d6-1f3fe-200d-2640-fe0f":0,"1f9d6-1f3ff-200d-2640-fe0f":0,"1f9d6-1f3fb-200d-2642-fe0f":0,"1f9d6-1f3fc-200d-2642-fe0f":0,"1f9d6-1f3fd-200d-2642-fe0f":0,"1f9d6-1f3fe-200d-2642-fe0f":0,"1f9d6-1f3ff-200d-2642-fe0f":0,"1f9d6-1f3fb":0,"1f9d6-1f3fc":0,"1f9d6-1f3fd":0,"1f9d6-1f3fe":0,"1f9d6-1f3ff":0,"1f9d7-1f3fb-200d-2640-fe0f":0,"1f9d7-1f3fc-200d-2640-fe0f":0,"1f9d7-1f3fd-200d-2640-fe0f":0,"1f9d7-1f3fe-200d-2640-fe0f":0,"1f9d7-1f3ff-200d-2640-fe0f":0,"1f9d7-1f3fb-200d-2642-fe0f":0,"1f9d7-1f3fc-200d-2642-fe0f":0,"1f9d7-1f3fd-200d-2642-fe0f":0,"1f9d7-1f3fe-200d-2642-fe0f":0,"1f9d7-1f3ff-200d-2642-fe0f":0,"1f9d7-1f3fb":0,"1f9d7-1f3fc":0,"1f9d7-1f3fd":0,"1f9d7-1f3fe":0,"1f9d7-1f3ff":0,"1f9d8-1f3fb-200d-2640-fe0f":0,"1f9d8-1f3fc-200d-2640-fe0f":0,"1f9d8-1f3fd-200d-2640-fe0f":0,"1f9d8-1f3fe-200d-2640-fe0f":0,"1f9d8-1f3ff-200d-2640-fe0f":0,"1f9d8-1f3fb-200d-2642-fe0f":0,"1f9d8-1f3fc-200d-2642-fe0f":0,"1f9d8-1f3fd-200d-2642-fe0f":0,"1f9d8-1f3fe-200d-2642-fe0f":0,"1f9d8-1f3ff-200d-2642-fe0f":0,"1f9d8-1f3fb":0,"1f9d8-1f3fc":0,"1f9d8-1f3fd":0,"1f9d8-1f3fe":0,"1f9d8-1f3ff":0,"1f9d9-1f3fb-200d-2640-fe0f":0,"1f9d9-1f3fc-200d-2640-fe0f":0,"1f9d9-1f3fd-200d-2640-fe0f":0,"1f9d9-1f3fe-200d-2640-fe0f":0,"1f9d9-1f3ff-200d-2640-fe0f":0,"1f9d9-1f3fb-200d-2642-fe0f":0,"1f9d9-1f3fc-200d-2642-fe0f":0,"1f9d9-1f3fd-200d-2642-fe0f":0,"1f9d9-1f3fe-200d-2642-fe0f":0,"1f9d9-1f3ff-200d-2642-fe0f":0,"1f9d9-1f3fb":0,"1f9d9-1f3fc":0,"1f9d9-1f3fd":0,"1f9d9-1f3fe":0,"1f9d9-1f3ff":0,"1f9da-1f3fb-200d-2640-fe0f":0,"1f9da-1f3fc-200d-2640-fe0f":0,"1f9da-1f3fd-200d-2640-fe0f":0,"1f9da-1f3fe-200d-2640-fe0f":0,"1f9da-1f3ff-200d-2640-fe0f":0,"1f9da-1f3fb-200d-2642-fe0f":0,"1f9da-1f3fc-200d-2642-fe0f":0,"1f9da-1f3fd-200d-2642-fe0f":0,"1f9da-1f3fe-200d-2642-fe0f":0,"1f9da-1f3ff-200d-2642-fe0f":0,"1f9da-1f3fb":0,"1f9da-1f3fc":0,"1f9da-1f3fd":0,"1f9da-1f3fe":0,"1f9da-1f3ff":0,"1f9db-1f3fb-200d-2640-fe0f":0,"1f9db-1f3fc-200d-2640-fe0f":0,"1f9db-1f3fd-200d-2640-fe0f":0,"1f9db-1f3fe-200d-2640-fe0f":0,"1f9db-1f3ff-200d-2640-fe0f":0,"1f9db-1f3fb-200d-2642-fe0f":0,"1f9db-1f3fc-200d-2642-fe0f":0,"1f9db-1f3fd-200d-2642-fe0f":0,"1f9db-1f3fe-200d-2642-fe0f":0,"1f9db-1f3ff-200d-2642-fe0f":0,"1f9db-1f3fb":0,"1f9db-1f3fc":0,"1f9db-1f3fd":0,"1f9db-1f3fe":0,"1f9db-1f3ff":0,"1f9dc-1f3fb-200d-2640-fe0f":0,"1f9dc-1f3fc-200d-2640-fe0f":0,"1f9dc-1f3fd-200d-2640-fe0f":0,"1f9dc-1f3fe-200d-2640-fe0f":0,"1f9dc-1f3ff-200d-2640-fe0f":0,"1f9dc-1f3fb-200d-2642-fe0f":0,"1f9dc-1f3fc-200d-2642-fe0f":0,"1f9dc-1f3fd-200d-2642-fe0f":0,"1f9dc-1f3fe-200d-2642-fe0f":0,"1f9dc-1f3ff-200d-2642-fe0f":0,"1f9dc-1f3fb":0,"1f9dc-1f3fc":0,"1f9dc-1f3fd":0,"1f9dc-1f3fe":0,"1f9dc-1f3ff":0,"1f9dd-1f3fb-200d-2640-fe0f":0,"1f9dd-1f3fc-200d-2640-fe0f":0,"1f9dd-1f3fd-200d-2640-fe0f":0,"1f9dd-1f3fe-200d-2640-fe0f":0,"1f9dd-1f3ff-200d-2640-fe0f":0,"1f9dd-1f3fb-200d-2642-fe0f":0,"1f9dd-1f3fc-200d-2642-fe0f":0,"1f9dd-1f3fd-200d-2642-fe0f":0,"1f9dd-1f3fe-200d-2642-fe0f":0,"1f9dd-1f3ff-200d-2642-fe0f":0,"1f9dd-1f3fb":0,"1f9dd-1f3fc":0,"1f9dd-1f3fd":0,"1f9dd-1f3fe":0,"1f9dd-1f3ff":0,"261d-1f3fb":0,"261d-1f3fc":0,"261d-1f3fd":0,"261d-1f3fe":0,"261d-1f3ff":0,"26f9-1f3fb-200d-2640-fe0f":0,"26f9-1f3fc-200d-2640-fe0f":0,"26f9-1f3fd-200d-2640-fe0f":0,"26f9-1f3fe-200d-2640-fe0f":0,"26f9-1f3ff-200d-2640-fe0f":0,"26f9-1f3fb-200d-2642-fe0f":0,"26f9-1f3fc-200d-2642-fe0f":0,"26f9-1f3fd-200d-2642-fe0f":0,"26f9-1f3fe-200d-2642-fe0f":0,"26f9-1f3ff-200d-2642-fe0f":0,"26f9-1f3fb":0,"26f9-1f3fc":0,"26f9-1f3fd":0,"26f9-1f3fe":0,"26f9-1f3ff":0,"270a-1f3fb":0,"270a-1f3fc":0,"270a-1f3fd":0,"270a-1f3fe":0,"270a-1f3ff":0,"270b-1f3fb":0,"270b-1f3fc":0,"270b-1f3fd":0,"270b-1f3fe":0,"270b-1f3ff":0,"270c-1f3fb":0,"270c-1f3fc":0,"270c-1f3fd":0,"270c-1f3fe":0,"270c-1f3ff":0,"270d-1f3fb":0,"270d-1f3fc":0,"270d-1f3fd":0,"270d-1f3fe":0,"270d-1f3ff":0} \ No newline at end of file +{"2049":62748,"2122":62776,"2139":62801,"2194":62678,"2195":62677,"2196":62676,"2197":62670,"2198":62672,"2199":62674,"2328":61155,"2600":4954,"2601":4962,"2602":4977,"2603":4982,"2604":4984,"2611":62764,"2614":4978,"2615":3750,"2618":2639,"2620":196,"2622":62667,"2623":62668,"2626":62697,"2638":62694,"2639":168,"2648":62702,"2649":62703,"2650":62710,"2651":62711,"2652":62712,"2653":62713,"2660":51057,"2663":51060,"2665":51058,"2666":51059,"2668":4832,"2692":61258,"2693":4887,"2694":61261,"2696":61272,"2697":61280,"2699":61270,"2702":61245,"2705":62763,"2708":4895,"2709":61206,"2712":61220,"2714":62765,"2716":62742,"2721":62693,"2728":5993,"2733":62771,"2734":62772,"2744":4981,"2747":62773,"2753":62749,"2754":62750,"2755":62751,"2757":62752,"2763":1127,"2764":1129,"2795":62743,"2796":62744,"2797":62745,"2934":62681,"2935":62682,"3030":62753,"3297":62825,"3299":62826,"0023-20e3":62777,"002a-20e3":62778,"0030-20e3":62779,"0031-20e3":62780,"0032-20e3":62781,"0033-20e3":62782,"0034-20e3":62783,"0035-20e3":62784,"0036-20e3":62785,"0037-20e3":62786,"0038-20e3":62787,"0039-20e3":62788,"00a9":62774,"00ae":62775,"1f004":51063,"1f0cf":51062,"1f170":62795,"1f171":62797,"1f17e":62806,"1f17f":62808,"1f18e":62796,"1f191":62798,"1f192":62799,"1f193":62800,"1f194":62802,"1f195":62804,"1f196":62805,"1f197":62807,"1f198":62809,"1f199":62810,"1f19a":62811,"1f1e6-1f1e8":71550,"1f1e6-1f1e9":71551,"1f1e6-1f1ea":71552,"1f1e6-1f1eb":71553,"1f1e6-1f1ec":71554,"1f1e6-1f1ee":71555,"1f1e6-1f1f1":71556,"1f1e6-1f1f2":71557,"1f1e6-1f1f4":71558,"1f1e6-1f1f6":71559,"1f1e6-1f1f7":71560,"1f1e6-1f1f8":71561,"1f1e6-1f1f9":71562,"1f1e6-1f1fa":71563,"1f1e6-1f1fc":71564,"1f1e6-1f1fd":71565,"1f1e6-1f1ff":71566,"1f1e7-1f1e6":71567,"1f1e7-1f1e7":71568,"1f1e7-1f1e9":71569,"1f1e7-1f1ea":71570,"1f1e7-1f1eb":71571,"1f1e7-1f1ec":71572,"1f1e7-1f1ed":71573,"1f1e7-1f1ee":71574,"1f1e7-1f1ef":71575,"1f1e7-1f1f1":71576,"1f1e7-1f1f2":71577,"1f1e7-1f1f3":71578,"1f1e7-1f1f4":71579,"1f1e7-1f1f6":71580,"1f1e7-1f1f7":71581,"1f1e7-1f1f8":71582,"1f1e7-1f1f9":71583,"1f1e7-1f1fb":71584,"1f1e7-1f1fc":71585,"1f1e7-1f1fe":71586,"1f1e7-1f1ff":71587,"1f1e8-1f1e6":71588,"1f1e8-1f1e8":71589,"1f1e8-1f1e9":71590,"1f1e8-1f1eb":71591,"1f1e8-1f1ec":71592,"1f1e8-1f1ed":71593,"1f1e8-1f1ee":71594,"1f1e8-1f1f0":71595,"1f1e8-1f1f1":71596,"1f1e8-1f1f2":71597,"1f1e8-1f1f3":71598,"1f1e8-1f1f4":71599,"1f1e8-1f1f5":71600,"1f1e8-1f1f7":71601,"1f1e8-1f1fa":71602,"1f1e8-1f1fb":71603,"1f1e8-1f1fc":71604,"1f1e8-1f1fd":71605,"1f1e8-1f1fe":71606,"1f1e8-1f1ff":71607,"1f1e9-1f1ea":71608,"1f1e9-1f1ec":71609,"1f1e9-1f1ef":71610,"1f1e9-1f1f0":71611,"1f1e9-1f1f2":71612,"1f1e9-1f1f4":71613,"1f1e9-1f1ff":71614,"1f1ea-1f1e6":71615,"1f1ea-1f1e8":71616,"1f1ea-1f1ea":71617,"1f1ea-1f1ec":71618,"1f1ea-1f1ed":71619,"1f1ea-1f1f7":71620,"1f1ea-1f1f8":71621,"1f1ea-1f1f9":71622,"1f1ea-1f1fa":71623,"1f1eb-1f1ee":71624,"1f1eb-1f1ef":71625,"1f1eb-1f1f0":71626,"1f1eb-1f1f2":71627,"1f1eb-1f1f4":71628,"1f1eb-1f1f7":71629,"1f1ec-1f1e6":71630,"1f1ec-1f1e7":71631,"1f1ec-1f1e9":71632,"1f1ec-1f1ea":71633,"1f1ec-1f1eb":71634,"1f1ec-1f1ec":71635,"1f1ec-1f1ed":71636,"1f1ec-1f1ee":71637,"1f1ec-1f1f1":71638,"1f1ec-1f1f2":71639,"1f1ec-1f1f3":71640,"1f1ec-1f1f5":71641,"1f1ec-1f1f6":71642,"1f1ec-1f1f7":71643,"1f1ec-1f1f8":71644,"1f1ec-1f1f9":71645,"1f1ec-1f1fa":71646,"1f1ec-1f1fc":71647,"1f1ec-1f1fe":71648,"1f1ed-1f1f0":71649,"1f1ed-1f1f2":71650,"1f1ed-1f1f3":71651,"1f1ed-1f1f7":71652,"1f1ed-1f1f9":71653,"1f1ed-1f1fa":71654,"1f1ee-1f1e8":71655,"1f1ee-1f1e9":71656,"1f1ee-1f1ea":71657,"1f1ee-1f1f1":71658,"1f1ee-1f1f2":71659,"1f1ee-1f1f3":71660,"1f1ee-1f1f4":71661,"1f1ee-1f1f6":71662,"1f1ee-1f1f7":71663,"1f1ee-1f1f8":71664,"1f1ee-1f1f9":71665,"1f1ef-1f1ea":71666,"1f1ef-1f1f2":71667,"1f1ef-1f1f4":71668,"1f1ef-1f1f5":71669,"1f1f0-1f1ea":71670,"1f1f0-1f1ec":71671,"1f1f0-1f1ed":71672,"1f1f0-1f1ee":71673,"1f1f0-1f1f2":71674,"1f1f0-1f1f3":71675,"1f1f0-1f1f5":71676,"1f1f0-1f1f7":71677,"1f1f0-1f1fc":71678,"1f1f0-1f1fe":71679,"1f1f0-1f1ff":71680,"1f1f1-1f1e6":71681,"1f1f1-1f1e7":71682,"1f1f1-1f1e8":71683,"1f1f1-1f1ee":71684,"1f1f1-1f1f0":71685,"1f1f1-1f1f7":71686,"1f1f1-1f1f8":71687,"1f1f1-1f1f9":71688,"1f1f1-1f1fa":71689,"1f1f1-1f1fb":71690,"1f1f1-1f1fe":71691,"1f1f2-1f1e6":71692,"1f1f2-1f1e8":71693,"1f1f2-1f1e9":71694,"1f1f2-1f1ea":71695,"1f1f2-1f1eb":71696,"1f1f2-1f1ec":71697,"1f1f2-1f1ed":71698,"1f1f2-1f1f0":71699,"1f1f2-1f1f1":71700,"1f1f2-1f1f2":71701,"1f1f2-1f1f3":71702,"1f1f2-1f1f4":71703,"1f1f2-1f1f5":71704,"1f1f2-1f1f6":71705,"1f1f2-1f1f7":71706,"1f1f2-1f1f8":71707,"1f1f2-1f1f9":71708,"1f1f2-1f1fa":71709,"1f1f2-1f1fb":71710,"1f1f2-1f1fc":71711,"1f1f2-1f1fd":71712,"1f1f2-1f1fe":71713,"1f1f2-1f1ff":71714,"1f1f3-1f1e6":71715,"1f1f3-1f1e8":71716,"1f1f3-1f1ea":71717,"1f1f3-1f1eb":71718,"1f1f3-1f1ec":71719,"1f1f3-1f1ee":71720,"1f1f3-1f1f1":71721,"1f1f3-1f1f4":71722,"1f1f3-1f1f5":71723,"1f1f3-1f1f7":71724,"1f1f3-1f1fa":71725,"1f1f3-1f1ff":71726,"1f1f4-1f1f2":71727,"1f1f5-1f1e6":71728,"1f1f5-1f1ea":71729,"1f1f5-1f1eb":71730,"1f1f5-1f1ec":71731,"1f1f5-1f1ed":71732,"1f1f5-1f1f0":71733,"1f1f5-1f1f1":71734,"1f1f5-1f1f2":71735,"1f1f5-1f1f3":71736,"1f1f5-1f1f7":71737,"1f1f5-1f1f8":71738,"1f1f5-1f1f9":71739,"1f1f5-1f1fc":71740,"1f1f5-1f1fe":71741,"1f1f6-1f1e6":71742,"1f1f7-1f1ea":71743,"1f1f7-1f1f4":71744,"1f1f7-1f1f8":71745,"1f1f7-1f1fa":71746,"1f1f7-1f1fc":71747,"1f1f8-1f1e6":71748,"1f1f8-1f1e7":71749,"1f1f8-1f1e8":71750,"1f1f8-1f1e9":71751,"1f1f8-1f1ea":71752,"1f1f8-1f1ec":71753,"1f1f8-1f1ed":71754,"1f1f8-1f1ee":71755,"1f1f8-1f1ef":71756,"1f1f8-1f1f0":71757,"1f1f8-1f1f1":71758,"1f1f8-1f1f2":71759,"1f1f8-1f1f3":71760,"1f1f8-1f1f4":71761,"1f1f8-1f1f7":71762,"1f1f8-1f1f8":71763,"1f1f8-1f1f9":71764,"1f1f8-1f1fb":71765,"1f1f8-1f1fd":71766,"1f1f8-1f1fe":71767,"1f1f8-1f1ff":71768,"1f1f9-1f1e6":71769,"1f1f9-1f1e8":71770,"1f1f9-1f1e9":71771,"1f1f9-1f1eb":71772,"1f1f9-1f1ec":71773,"1f1f9-1f1ed":71774,"1f1f9-1f1ef":71775,"1f1f9-1f1f0":71776,"1f1f9-1f1f1":71777,"1f1f9-1f1f2":71778,"1f1f9-1f1f3":71779,"1f1f9-1f1f4":71780,"1f1f9-1f1f7":71781,"1f1f9-1f1f9":71782,"1f1f9-1f1fb":71783,"1f1f9-1f1fc":71784,"1f1f9-1f1ff":71785,"1f1fa-1f1e6":71786,"1f1fa-1f1ec":71787,"1f1fa-1f1f2":71788,"1f1fa-1f1f3":71789,"1f1fa-1f1f8":71790,"1f1fa-1f1fe":71791,"1f1fa-1f1ff":71792,"1f1fb-1f1e6":71793,"1f1fb-1f1e8":71794,"1f1fb-1f1ea":71795,"1f1fb-1f1ec":71796,"1f1fb-1f1ee":71797,"1f1fb-1f1f3":71798,"1f1fb-1f1fa":71799,"1f1fc-1f1eb":71800,"1f1fc-1f1f8":71801,"1f1fd-1f1f0":71802,"1f1fe-1f1ea":71803,"1f1fe-1f1f9":71804,"1f1ff-1f1e6":71805,"1f1ff-1f1f2":71806,"1f1ff-1f1fc":71807,"1f201":62812,"1f202":62813,"1f21a":62819,"1f22f":62816,"1f232":62820,"1f233":62824,"1f234":62823,"1f235":62828,"1f236":62815,"1f237":62814,"1f238":62822,"1f239":62818,"1f23a":62827,"1f250":62817,"1f251":62821,"1f300":4974,"1f301":4824,"1f302":4976,"1f303":4825,"1f304":4827,"1f305":4828,"1f306":4829,"1f307":4830,"1f308":4975,"1f309":4831,"1f30a":4987,"1f30b":4782,"1f30c":4961,"1f30d":4773,"1f30e":4774,"1f30f":4775,"1f310":4776,"1f311":4941,"1f312":4942,"1f313":4943,"1f314":4944,"1f315":4945,"1f316":4946,"1f317":4947,"1f318":4948,"1f319":4949,"1f31a":4950,"1f31b":4951,"1f31c":4952,"1f31d":4955,"1f31e":4956,"1f31f":4959,"1f320":4960,"1f321":4953,"1f324":4965,"1f325":4966,"1f326":4967,"1f327":4968,"1f328":4969,"1f329":4970,"1f32a":4971,"1f32b":4972,"1f32c":4973,"1f32d":3694,"1f32e":3696,"1f32f":3697,"1f330":3677,"1f331":2631,"1f332":2633,"1f333":2634,"1f334":2635,"1f335":2636,"1f336":3668,"1f337":2630,"1f338":2622,"1f339":2625,"1f33a":2627,"1f33b":2628,"1f33c":2629,"1f33d":3667,"1f33e":2637,"1f33f":2638,"1f340":2640,"1f341":2641,"1f342":2642,"1f343":2643,"1f344":3675,"1f345":3660,"1f346":3664,"1f347":3644,"1f348":3645,"1f349":3646,"1f34a":3647,"1f34b":3648,"1f34c":3649,"1f34d":3650,"1f34e":3652,"1f34f":3653,"1f350":3654,"1f351":3655,"1f352":3656,"1f353":3657,"1f354":3691,"1f355":3693,"1f356":3687,"1f357":3688,"1f358":3713,"1f359":3714,"1f35a":3715,"1f35b":3716,"1f35c":3717,"1f35d":3718,"1f35e":3678,"1f35f":3692,"1f360":3719,"1f361":3725,"1f362":3720,"1f363":3721,"1f364":3722,"1f365":3723,"1f366":3734,"1f367":3735,"1f368":3736,"1f369":3737,"1f36a":3738,"1f36b":3743,"1f36c":3744,"1f36d":3745,"1f36e":3746,"1f36f":3747,"1f370":3740,"1f371":3712,"1f372":3704,"1f373":3702,"1f374":3769,"1f375":3752,"1f376":3753,"1f377":3755,"1f378":3756,"1f379":3757,"1f37a":3758,"1f37b":3759,"1f37c":3748,"1f37d":3768,"1f37e":3754,"1f37f":3708,"1f380":51004,"1f381":51005,"1f382":3739,"1f383":5988,"1f384":5989,"1f385":1490,"1f386":5990,"1f387":5991,"1f388":5994,"1f389":5995,"1f38a":5996,"1f38b":5997,"1f38c":71544,"1f38d":5998,"1f38e":5999,"1f38f":51000,"1f390":51001,"1f391":51002,"1f392":61096,"1f393":61109,"1f396":51009,"1f397":51006,"1f399":61129,"1f39a":61130,"1f39b":61131,"1f39e":61164,"1f39f":51007,"1f3a0":4833,"1f3a1":4834,"1f3a2":4835,"1f3a3":51036,"1f3a4":61132,"1f3a5":61163,"1f3a6":62733,"1f3a7":61133,"1f3a8":51067,"1f3a9":61108,"1f3aa":4837,"1f3ab":51008,"1f3ac":61166,"1f3ad":51065,"1f3ae":51049,"1f3af":51042,"1f3b0":51051,"1f3b1":51045,"1f3b2":51052,"1f3b3":51024,"1f3b4":51064,"1f3b5":61127,"1f3b6":61128,"1f3b7":61135,"1f3b8":61137,"1f3b9":61138,"1f3ba":61139,"1f3bb":61140,"1f3bc":61126,"1f3bd":51038,"1f3be":51022,"1f3bf":51039,"1f3c0":51018,"1f3c1":71542,"1f3c2":1562,"1f3c3-200d-2640":1546,"1f3c3-200d-2642":1545,"1f3c3":1544,"1f3c4-200d-2640":1568,"1f3c4-200d-2642":1567,"1f3c4":1566,"1f3c5":51011,"1f3c6":51010,"1f3c7":1560,"1f3c8":51020,"1f3c9":51021,"1f3ca-200d-2640":1574,"1f3ca-200d-2642":1573,"1f3ca":1572,"1f3cb-fe0f-200d-2640":1580,"1f3cb-fe0f-200d-2642":1579,"1f3cb":1578,"1f3cc-fe0f-200d-2640":1565,"1f3cc-fe0f-200d-2642":1564,"1f3cc":1563,"1f3cd":4868,"1f3ce":4867,"1f3cf":51025,"1f3d0":51019,"1f3d1":51026,"1f3d2":51027,"1f3d3":51029,"1f3d4":4780,"1f3d5":4784,"1f3d6":4785,"1f3d7":4791,"1f3d8":4796,"1f3d9":4826,"1f3da":4797,"1f3db":4790,"1f3dc":4786,"1f3dd":4787,"1f3de":4788,"1f3df":4789,"1f3e0":4798,"1f3e1":4799,"1f3e2":4800,"1f3e3":4801,"1f3e4":4802,"1f3e5":4803,"1f3e6":4804,"1f3e7":62643,"1f3e8":4805,"1f3e9":4806,"1f3ea":4807,"1f3eb":4808,"1f3ec":4809,"1f3ed":4810,"1f3ee":61177,"1f3ef":4811,"1f3f0":4812,"1f3f3-fe0f-200d-1f308":71547,"1f3f3-fe0f-200d-26a7":71548,"1f3f3":71546,"1f3f4-200d-2620":71549,"1f3f4-e0067-e0062-e0065-e006e-e0067-e007f":71808,"1f3f4-e0067-e0062-e0073-e0063-e0074-e007f":71809,"1f3f4-e0067-e0062-e0077-e006c-e0073-e007f":71810,"1f3f4":71545,"1f3f5":2624,"1f3f7":61195,"1f3f8":51030,"1f3f9":61264,"1f3fa":3772,"1f3fb":9499,"1f3fc":9500,"1f3fd":9501,"1f3fe":9502,"1f3ff":9503,"1f400":2550,"1f401":2549,"1f402":2530,"1f403":2531,"1f404":2532,"1f405":2521,"1f406":2522,"1f407":2553,"1f408-200d-2b1b":2518,"1f408":2517,"1f409":2592,"1f40a":2587,"1f40b":2596,"1f40c":2605,"1f40d":2590,"1f40e":2524,"1f40f":2537,"1f410":2539,"1f411":2538,"1f412":2505,"1f413":2570,"1f414":2569,"1f415-200d-1f9ba":2511,"1f415":2509,"1f416":2534,"1f417":2535,"1f418":2544,"1f419":2603,"1f41a":2604,"1f41b":2607,"1f41c":2608,"1f41d":2609,"1f41e":2611,"1f41f":2599,"1f420":2600,"1f421":2601,"1f422":2588,"1f423":2571,"1f424":2572,"1f425":2573,"1f426":2574,"1f427":2575,"1f428":2560,"1f429":2512,"1f42a":2540,"1f42b":2541,"1f42c":2597,"1f42d":2548,"1f42e":2529,"1f42f":2520,"1f430":2552,"1f431":2516,"1f432":2591,"1f433":2595,"1f434":2523,"1f435":2504,"1f436":2508,"1f437":2533,"1f438":2586,"1f439":2551,"1f43a":2513,"1f43b-200d-2744":2559,"1f43b":2558,"1f43c":2561,"1f43d":2536,"1f43e":2567,"1f43f":2554,"1f440":1350,"1f441-fe0f-200d-1f5e8":1147,"1f441":1351,"1f442":1342,"1f443":1344,"1f444":1353,"1f445":1352,"1f446":1318,"1f447":1320,"1f448":1316,"1f449":1317,"1f44a":1325,"1f44b":1303,"1f44c":1308,"1f44d":1322,"1f44e":1323,"1f44f":1328,"1f450":1330,"1f451":61106,"1f452":61107,"1f453":61072,"1f454":61077,"1f455":61078,"1f456":61079,"1f457":61084,"1f458":61085,"1f459":61090,"1f45a":61091,"1f45b":61092,"1f45c":61093,"1f45d":61094,"1f45e":61098,"1f45f":61099,"1f460":61102,"1f461":61103,"1f462":61105,"1f463":1649,"1f464":1646,"1f465":1647,"1f466":1356,"1f467":1357,"1f468-200d-1f33e":1423,"1f468-200d-1f373":1426,"1f468-200d-1f37c":1487,"1f468-200d-1f393":1414,"1f468-200d-1f3a4":1444,"1f468-200d-1f3a8":1447,"1f468-200d-1f3eb":1417,"1f468-200d-1f3ed":1432,"1f468-200d-1f466-200d-1f466":1636,"1f468-200d-1f466":1635,"1f468-200d-1f467-200d-1f466":1638,"1f468-200d-1f467-200d-1f467":1639,"1f468-200d-1f467":1637,"1f468-200d-1f468-200d-1f466":1625,"1f468-200d-1f468-200d-1f466-200d-1f466":1628,"1f468-200d-1f468-200d-1f467":1626,"1f468-200d-1f468-200d-1f467-200d-1f466":1627,"1f468-200d-1f468-200d-1f467-200d-1f467":1629,"1f468-200d-1f469-200d-1f466":1620,"1f468-200d-1f469-200d-1f466-200d-1f466":1623,"1f468-200d-1f469-200d-1f467":1621,"1f468-200d-1f469-200d-1f467-200d-1f466":1622,"1f468-200d-1f469-200d-1f467-200d-1f467":1624,"1f468-200d-1f4bb":1441,"1f468-200d-1f4bc":1435,"1f468-200d-1f527":1429,"1f468-200d-1f52c":1438,"1f468-200d-1f680":1453,"1f468-200d-1f692":1456,"1f468-200d-1f9af":1536,"1f468-200d-1f9b0":1362,"1f468-200d-1f9b1":1363,"1f468-200d-1f9b2":1365,"1f468-200d-1f9b3":1364,"1f468-200d-1f9bc":1539,"1f468-200d-1f9bd":1542,"1f468-200d-2695":1411,"1f468-200d-2696":1420,"1f468-200d-2708":1450,"1f468-200d-2764-fe0f-200d-1f468":1617,"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468":1613,"1f468":1360,"1f469-200d-1f33e":1424,"1f469-200d-1f373":1427,"1f469-200d-1f37c":1486,"1f469-200d-1f393":1415,"1f469-200d-1f3a4":1445,"1f469-200d-1f3a8":1448,"1f469-200d-1f3eb":1418,"1f469-200d-1f3ed":1433,"1f469-200d-1f466-200d-1f466":1641,"1f469-200d-1f466":1640,"1f469-200d-1f467-200d-1f466":1643,"1f469-200d-1f467-200d-1f467":1644,"1f469-200d-1f467":1642,"1f469-200d-1f469-200d-1f466":1630,"1f469-200d-1f469-200d-1f466-200d-1f466":1633,"1f469-200d-1f469-200d-1f467":1631,"1f469-200d-1f469-200d-1f467-200d-1f466":1632,"1f469-200d-1f469-200d-1f467-200d-1f467":1634,"1f469-200d-1f4bb":1442,"1f469-200d-1f4bc":1436,"1f469-200d-1f527":1430,"1f469-200d-1f52c":1439,"1f469-200d-1f680":1454,"1f469-200d-1f692":1457,"1f469-200d-1f9af":1537,"1f469-200d-1f9b0":1367,"1f469-200d-1f9b1":1369,"1f469-200d-1f9b2":1373,"1f469-200d-1f9b3":1371,"1f469-200d-1f9bc":1540,"1f469-200d-1f9bd":1543,"1f469-200d-2695":1412,"1f469-200d-2696":1421,"1f469-200d-2708":1451,"1f469-200d-2764-fe0f-200d-1f468":1616,"1f469-200d-2764-fe0f-200d-1f469":1618,"1f469-200d-2764-fe0f-200d-1f48b-200d-1f468":1612,"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469":1614,"1f469":1366,"1f46a":1619,"1f46b":1609,"1f46c":1610,"1f46d":1608,"1f46e-200d-2640":1460,"1f46e-200d-2642":1459,"1f46e":1458,"1f46f-200d-2640":1552,"1f46f-200d-2642":1551,"1f46f":1550,"1f470-200d-2640":1483,"1f470-200d-2642":1482,"1f470":1481,"1f471-200d-2640":1375,"1f471-200d-2642":1376,"1f471":1359,"1f472":1476,"1f473-200d-2640":1475,"1f473-200d-2642":1474,"1f473":1473,"1f474":1378,"1f475":1379,"1f476":1354,"1f477-200d-2640":1470,"1f477-200d-2642":1469,"1f477":1468,"1f478":1472,"1f479":199,"1f47a":1100,"1f47b":1101,"1f47c":1489,"1f47d":1102,"1f47e":1103,"1f47f":194,"1f480":195,"1f481-200d-2640":1394,"1f481-200d-2642":1393,"1f481":1392,"1f482-200d-2640":1466,"1f482-200d-2642":1465,"1f482":1464,"1f483":1547,"1f484":61114,"1f485":1335,"1f486-200d-2640":1522,"1f486-200d-2642":1521,"1f486":1520,"1f487-200d-2640":1525,"1f487-200d-2642":1524,"1f487":1523,"1f488":4836,"1f489":61287,"1f48a":61289,"1f48b":1117,"1f48c":1118,"1f48d":61115,"1f48e":61116,"1f48f":1611,"1f490":2621,"1f491":1615,"1f492":4813,"1f493":1123,"1f494":1128,"1f495":1125,"1f496":1121,"1f497":1122,"1f498":1119,"1f499":1133,"1f49a":1132,"1f49b":1131,"1f49c":1134,"1f49d":1120,"1f49e":1124,"1f49f":1126,"1f4a0":62859,"1f4a1":61175,"1f4a2":1139,"1f4a3":1145,"1f4a4":1151,"1f4a5":1140,"1f4a6":1142,"1f4a7":4986,"1f4a8":1143,"1f4a9":197,"1f4aa":1337,"1f4ab":1141,"1f4ac":1146,"1f4ad":1150,"1f4ae":2623,"1f4af":1138,"1f4b0":61196,"1f4b1":62754,"1f4b2":62755,"1f4b3":61203,"1f4b4":61198,"1f4b5":61199,"1f4b6":61200,"1f4b7":61201,"1f4b8":61202,"1f4b9":61205,"1f4ba":4900,"1f4bb":61152,"1f4bc":61226,"1f4bd":61158,"1f4be":61159,"1f4bf":61160,"1f4c0":61161,"1f4c1":61227,"1f4c2":61228,"1f4c3":61188,"1f4c4":61190,"1f4c5":61230,"1f4c6":61231,"1f4c7":61234,"1f4c8":61235,"1f4c9":61236,"1f4ca":61237,"1f4cb":61238,"1f4cc":61239,"1f4cd":61240,"1f4ce":61241,"1f4cf":61243,"1f4d0":61244,"1f4d1":61193,"1f4d2":61187,"1f4d3":61186,"1f4d4":61179,"1f4d5":61180,"1f4d6":61181,"1f4d7":61182,"1f4d8":61183,"1f4d9":61184,"1f4da":61185,"1f4db":62760,"1f4dc":61189,"1f4dd":61225,"1f4de":61147,"1f4df":61148,"1f4e0":61149,"1f4e1":61286,"1f4e2":61121,"1f4e3":61122,"1f4e4":61210,"1f4e5":61211,"1f4e6":61212,"1f4e7":61207,"1f4e8":61208,"1f4e9":61209,"1f4ea":61214,"1f4eb":61213,"1f4ec":61215,"1f4ed":61216,"1f4ee":61217,"1f4ef":61123,"1f4f0":61191,"1f4f1":61144,"1f4f2":61145,"1f4f3":62737,"1f4f4":62738,"1f4f5":62665,"1f4f6":62736,"1f4f7":61168,"1f4f8":61169,"1f4f9":61170,"1f4fa":61167,"1f4fb":61134,"1f4fc":61171,"1f4fd":61165,"1f4ff":61113,"1f500":62715,"1f501":62716,"1f502":62717,"1f503":62683,"1f504":62684,"1f505":62734,"1f506":62735,"1f507":61117,"1f508":61118,"1f509":61119,"1f50a":61120,"1f50b":61150,"1f50c":61151,"1f50d":61172,"1f50e":61173,"1f50f":61251,"1f510":61252,"1f511":61253,"1f512":61249,"1f513":61250,"1f514":61124,"1f515":61125,"1f516":61194,"1f517":61274,"1f518":62860,"1f519":62685,"1f51a":62686,"1f51b":62687,"1f51c":62688,"1f51d":62689,"1f51e":62666,"1f51f":62789,"1f520":62790,"1f521":62791,"1f522":62792,"1f523":62793,"1f524":62794,"1f525":4985,"1f526":61176,"1f527":61267,"1f528":61255,"1f529":61269,"1f52a":3771,"1f52b":61262,"1f52c":61284,"1f52d":61285,"1f52e":51046,"1f52f":62701,"1f530":62761,"1f531":62759,"1f532":62862,"1f533":62861,"1f534":62829,"1f535":62833,"1f536":62853,"1f537":62854,"1f538":62855,"1f539":62856,"1f53a":62857,"1f53b":62858,"1f53c":62725,"1f53d":62727,"1f549":62692,"1f54a":2576,"1f54b":4821,"1f54c":4817,"1f54d":4819,"1f54e":62700,"1f550":4919,"1f551":4921,"1f552":4923,"1f553":4925,"1f554":4927,"1f555":4929,"1f556":4931,"1f557":4933,"1f558":4935,"1f559":4937,"1f55a":4939,"1f55b":4917,"1f55c":4920,"1f55d":4922,"1f55e":4924,"1f55f":4926,"1f560":4928,"1f561":4930,"1f562":4932,"1f563":4934,"1f564":4936,"1f565":4938,"1f566":4940,"1f567":4918,"1f56f":61174,"1f570":4916,"1f573":1144,"1f574":1549,"1f575-fe0f-200d-2640":1463,"1f575-fe0f-200d-2642":1462,"1f575":1461,"1f576":61073,"1f577":2614,"1f578":2615,"1f579":51050,"1f57a":1548,"1f587":61242,"1f58a":61222,"1f58b":61221,"1f58c":61223,"1f58d":61224,"1f590":1305,"1f595":1319,"1f596":1307,"1f5a4":1136,"1f5a5":61153,"1f5a8":61154,"1f5b1":61156,"1f5b2":61157,"1f5bc":51066,"1f5c2":61229,"1f5c3":61246,"1f5c4":61247,"1f5d1":61248,"1f5d2":61232,"1f5d3":61233,"1f5dc":61271,"1f5dd":61254,"1f5de":61192,"1f5e1":61260,"1f5e3":1645,"1f5e8":1148,"1f5ef":1149,"1f5f3":61218,"1f5fa":4777,"1f5fb":4783,"1f5fc":4814,"1f5fd":4815,"1f5fe":4778,"1f5ff":61320,"1f600":11,"1f601":14,"1f602":18,"1f603":12,"1f604":13,"1f605":16,"1f606":15,"1f607":113,"1f608":193,"1f609":111,"1f60a":112,"1f60b":123,"1f60c":143,"1f60d":115,"1f60e":162,"1f60f":138,"1f610":135,"1f611":136,"1f612":139,"1f613":185,"1f614":144,"1f615":165,"1f616":182,"1f617":118,"1f618":117,"1f619":121,"1f61a":120,"1f61b":124,"1f61c":125,"1f61d":127,"1f61e":184,"1f61f":166,"1f620":191,"1f621":190,"1f622":179,"1f623":183,"1f624":189,"1f625":178,"1f626":174,"1f627":175,"1f628":176,"1f629":186,"1f62a":145,"1f62b":187,"1f62c":141,"1f62d":180,"1f62e":169,"1f62f":170,"1f630":177,"1f631":181,"1f632":171,"1f633":172,"1f634":147,"1f635":157,"1f636":137,"1f637":148,"1f638":1106,"1f639":1107,"1f63a":1105,"1f63b":1108,"1f63c":1109,"1f63d":1110,"1f63e":1113,"1f63f":1112,"1f640":1111,"1f641":167,"1f642":19,"1f643":110,"1f644":140,"1f645-200d-2640":1388,"1f645-200d-2642":1387,"1f645":1386,"1f646-200d-2640":1391,"1f646-200d-2642":1390,"1f646":1389,"1f647-200d-2640":1403,"1f647-200d-2642":1402,"1f647":1401,"1f648":1114,"1f649":1115,"1f64a":1116,"1f64b-200d-2640":1397,"1f64b-200d-2642":1396,"1f64b":1395,"1f64c":1329,"1f64d-200d-2640":1382,"1f64d-200d-2642":1381,"1f64d":1380,"1f64e-200d-2640":1385,"1f64e-200d-2642":1384,"1f64e":1383,"1f64f":1333,"1f680":4906,"1f681":4901,"1f682":4838,"1f683":4839,"1f684":4840,"1f685":4841,"1f686":4842,"1f687":4843,"1f688":4844,"1f689":4845,"1f68a":4846,"1f68b":4849,"1f68c":4850,"1f68d":4851,"1f68e":4852,"1f68f":4877,"1f690":4853,"1f691":4854,"1f692":4855,"1f693":4856,"1f694":4857,"1f695":4858,"1f696":4859,"1f697":4860,"1f698":4861,"1f699":4862,"1f69a":4864,"1f69b":4865,"1f69c":4866,"1f69d":4847,"1f69e":4848,"1f69f":4902,"1f6a0":4903,"1f6a1":4904,"1f6a2":4894,"1f6a3-200d-2640":1571,"1f6a3-200d-2642":1570,"1f6a3":1569,"1f6a4":4890,"1f6a5":4883,"1f6a6":4884,"1f6a7":4886,"1f6a8":4882,"1f6a9":71543,"1f6aa":61292,"1f6ab":62659,"1f6ac":61316,"1f6ad":62661,"1f6ae":62644,"1f6af":62662,"1f6b0":62645,"1f6b1":62663,"1f6b2":4873,"1f6b3":62660,"1f6b4-200d-2640":1583,"1f6b4-200d-2642":1582,"1f6b4":1581,"1f6b5-200d-2640":1586,"1f6b5-200d-2642":1585,"1f6b5":1584,"1f6b6-200d-2640":1528,"1f6b6-200d-2642":1527,"1f6b6":1526,"1f6b7":62664,"1f6b8":62657,"1f6b9":62647,"1f6ba":62648,"1f6bb":62649,"1f6bc":62650,"1f6bd":61299,"1f6be":62651,"1f6bf":61301,"1f6c0":1605,"1f6c1":61302,"1f6c2":62652,"1f6c3":62653,"1f6c4":62654,"1f6c5":62655,"1f6cb":61297,"1f6cc":1606,"1f6cd":61095,"1f6ce":4908,"1f6cf":61296,"1f6d0":62690,"1f6d1":4885,"1f6d2":61315,"1f6d5":4818,"1f6d6":4795,"1f6d7":61293,"1f6e0":61259,"1f6e1":61265,"1f6e2":4880,"1f6e3":4878,"1f6e4":4879,"1f6e5":4893,"1f6e9":4896,"1f6eb":4897,"1f6ec":4898,"1f6f0":4905,"1f6f3":4891,"1f6f4":4874,"1f6f5":4869,"1f6f6":4889,"1f6f7":51040,"1f6f8":4907,"1f6f9":4875,"1f6fa":4872,"1f6fb":4863,"1f6fc":4876,"1f7e0":62830,"1f7e1":62831,"1f7e2":62832,"1f7e3":62834,"1f7e4":62835,"1f7e5":62838,"1f7e6":62842,"1f7e7":62839,"1f7e8":62840,"1f7e9":62841,"1f7ea":62843,"1f7eb":62844,"1f90c":1309,"1f90d":1137,"1f90e":1135,"1f90f":1310,"1f910":133,"1f911":128,"1f912":149,"1f913":163,"1f914":132,"1f915":150,"1f916":1104,"1f917":129,"1f918":1314,"1f919":1315,"1f91a":1304,"1f91b":1326,"1f91c":1327,"1f91d":1332,"1f91e":1312,"1f91f":1313,"1f920":159,"1f921":198,"1f922":151,"1f923":17,"1f924":146,"1f925":142,"1f926-200d-2640":1406,"1f926-200d-2642":1405,"1f926":1404,"1f927":153,"1f928":134,"1f929":116,"1f92a":126,"1f92b":131,"1f92c":192,"1f92d":130,"1f92e":152,"1f92f":158,"1f930":1484,"1f931":1485,"1f932":1331,"1f933":1336,"1f934":1471,"1f935-200d-2640":1480,"1f935-200d-2642":1479,"1f935":1478,"1f936":1491,"1f937-200d-2640":1409,"1f937-200d-2642":1408,"1f937":1407,"1f938-200d-2640":1589,"1f938-200d-2642":1588,"1f938":1587,"1f939-200d-2640":1601,"1f939-200d-2642":1600,"1f939":1599,"1f93a":1559,"1f93c-200d-2640":1592,"1f93c-200d-2642":1591,"1f93c":1590,"1f93d-200d-2640":1595,"1f93d-200d-2642":1594,"1f93d":1593,"1f93e-200d-2640":1598,"1f93e-200d-2642":1597,"1f93e":1596,"1f93f":51037,"1f940":2626,"1f941":61142,"1f942":3760,"1f943":3761,"1f944":3770,"1f945":51033,"1f947":51012,"1f948":51013,"1f949":51014,"1f94a":51031,"1f94b":51032,"1f94c":51041,"1f94d":51028,"1f94e":51017,"1f94f":51023,"1f950":3679,"1f951":3663,"1f952":3670,"1f953":3690,"1f954":3665,"1f955":3666,"1f956":3680,"1f957":3707,"1f958":3703,"1f959":3699,"1f95a":3701,"1f95b":3749,"1f95c":3676,"1f95d":3659,"1f95e":3684,"1f95f":3726,"1f960":3727,"1f961":3728,"1f962":3767,"1f963":3706,"1f964":3762,"1f965":3662,"1f966":3672,"1f967":3742,"1f968":3682,"1f969":3689,"1f96a":3695,"1f96b":3711,"1f96c":3671,"1f96d":3651,"1f96e":3724,"1f96f":3683,"1f970":114,"1f971":188,"1f972":122,"1f973":160,"1f974":156,"1f975":154,"1f976":155,"1f977":1467,"1f978":161,"1f97a":173,"1f97b":61086,"1f97c":61075,"1f97d":61074,"1f97e":61100,"1f97f":61101,"1f980":3729,"1f981":2519,"1f982":2616,"1f983":2568,"1f984":2525,"1f985":2577,"1f986":2578,"1f987":2557,"1f988":2602,"1f989":2580,"1f98a":2514,"1f98b":2606,"1f98c":2527,"1f98d":2506,"1f98e":2589,"1f98f":2546,"1f990":3731,"1f991":3732,"1f992":2543,"1f993":2526,"1f994":2556,"1f995":2593,"1f996":2594,"1f997":2612,"1f998":2565,"1f999":2542,"1f99a":2584,"1f99b":2547,"1f99c":2585,"1f99d":2515,"1f99e":3730,"1f99f":2617,"1f9a0":2620,"1f9a1":2566,"1f9a2":2579,"1f9a3":2545,"1f9a4":2581,"1f9a5":2562,"1f9a6":2563,"1f9a7":2507,"1f9a8":2564,"1f9a9":2583,"1f9aa":3733,"1f9ab":2555,"1f9ac":2528,"1f9ad":2598,"1f9ae":2510,"1f9af":61273,"1f9b4":1349,"1f9b5":1340,"1f9b6":1341,"1f9b7":1348,"1f9b8-200d-2640":1495,"1f9b8-200d-2642":1494,"1f9b8":1493,"1f9b9-200d-2640":1498,"1f9b9-200d-2642":1497,"1f9b9":1496,"1f9ba":61076,"1f9bb":1343,"1f9bc":4871,"1f9bd":4870,"1f9be":1338,"1f9bf":1339,"1f9c0":3686,"1f9c1":3741,"1f9c2":3710,"1f9c3":3764,"1f9c4":3673,"1f9c5":3674,"1f9c6":3700,"1f9c7":3685,"1f9c8":3709,"1f9c9":3765,"1f9ca":3766,"1f9cb":3763,"1f9cd-200d-2640":1531,"1f9cd-200d-2642":1530,"1f9cd":1529,"1f9ce-200d-2640":1534,"1f9ce-200d-2642":1533,"1f9ce":1532,"1f9cf-200d-2640":1400,"1f9cf-200d-2642":1399,"1f9cf":1398,"1f9d0":164,"1f9d1-200d-1f33e":1422,"1f9d1-200d-1f373":1425,"1f9d1-200d-1f37c":1488,"1f9d1-200d-1f384":1492,"1f9d1-200d-1f393":1413,"1f9d1-200d-1f3a4":1443,"1f9d1-200d-1f3a8":1446,"1f9d1-200d-1f3eb":1416,"1f9d1-200d-1f3ed":1431,"1f9d1-200d-1f4bb":1440,"1f9d1-200d-1f4bc":1434,"1f9d1-200d-1f527":1428,"1f9d1-200d-1f52c":1437,"1f9d1-200d-1f680":1452,"1f9d1-200d-1f692":1455,"1f9d1-200d-1f91d-200d-1f9d1":1607,"1f9d1-200d-1f9af":1535,"1f9d1-200d-1f9b0":1368,"1f9d1-200d-1f9b1":1370,"1f9d1-200d-1f9b2":1374,"1f9d1-200d-1f9b3":1372,"1f9d1-200d-1f9bc":1538,"1f9d1-200d-1f9bd":1541,"1f9d1-200d-2695":1410,"1f9d1-200d-2696":1419,"1f9d1-200d-2708":1449,"1f9d1":1358,"1f9d2":1355,"1f9d3":1377,"1f9d4":1361,"1f9d5":1477,"1f9d6-200d-2640":1555,"1f9d6-200d-2642":1554,"1f9d6":1553,"1f9d7-200d-2640":1558,"1f9d7-200d-2642":1557,"1f9d7":1556,"1f9d8-200d-2640":1604,"1f9d8-200d-2642":1603,"1f9d8":1602,"1f9d9-200d-2640":1501,"1f9d9-200d-2642":1500,"1f9d9":1499,"1f9da-200d-2640":1504,"1f9da-200d-2642":1503,"1f9da":1502,"1f9db-200d-2640":1507,"1f9db-200d-2642":1506,"1f9db":1505,"1f9dc-200d-2640":1510,"1f9dc-200d-2642":1509,"1f9dc":1508,"1f9dd-200d-2640":1513,"1f9dd-200d-2642":1512,"1f9dd":1511,"1f9de-200d-2640":1516,"1f9de-200d-2642":1515,"1f9de":1514,"1f9df-200d-2640":1519,"1f9df-200d-2642":1518,"1f9df":1517,"1f9e0":1345,"1f9e1":1130,"1f9e2":61110,"1f9e3":61080,"1f9e4":61081,"1f9e5":61082,"1f9e6":61083,"1f9e7":51003,"1f9e8":5992,"1f9e9":51053,"1f9ea":61281,"1f9eb":61282,"1f9ec":61283,"1f9ed":4779,"1f9ee":61162,"1f9ef":61314,"1f9f0":61277,"1f9f1":4792,"1f9f2":61278,"1f9f3":4909,"1f9f4":61305,"1f9f5":51068,"1f9f6":51070,"1f9f7":61306,"1f9f8":51054,"1f9f9":61307,"1f9fa":61308,"1f9fb":61309,"1f9fc":61311,"1f9fd":61313,"1f9fe":61204,"1f9ff":51048,"1fa70":61104,"1fa71":61087,"1fa72":61088,"1fa73":61089,"1fa74":61097,"1fa78":61288,"1fa79":61290,"1fa7a":61291,"1fa80":51043,"1fa81":51044,"1fa82":4899,"1fa83":61263,"1fa84":51047,"1fa85":51055,"1fa86":51056,"1fa90":4957,"1fa91":61298,"1fa92":61304,"1fa93":61256,"1fa94":61178,"1fa95":61141,"1fa96":61111,"1fa97":61136,"1fa98":61143,"1fa99":61197,"1fa9a":61266,"1fa9b":61268,"1fa9c":61279,"1fa9d":61276,"1fa9e":61294,"1fa9f":61295,"1faa0":61300,"1faa1":51069,"1faa2":51071,"1faa3":61310,"1faa4":61303,"1faa5":61312,"1faa6":61318,"1faa7":61321,"1faa8":4793,"1fab0":2618,"1fab1":2619,"1fab2":2610,"1fab3":2613,"1fab4":2632,"1fab5":4794,"1fab6":2582,"1fac0":1346,"1fac1":1347,"1fac2":1648,"1fad0":3658,"1fad1":3669,"1fad2":3661,"1fad3":3681,"1fad4":3698,"1fad5":3705,"1fad6":3751,"203c":62747,"21a9":62679,"21aa":62680,"231a":4912,"231b":4910,"23cf":62732,"23e9":62719,"23ea":62723,"23eb":62726,"23ec":62728,"23ed":62720,"23ee":62724,"23ef":62721,"23f0":4913,"23f1":4914,"23f2":4915,"23f3":4911,"23f8":62729,"23f9":62730,"23fa":62731,"24c2":62803,"25aa":62851,"25ab":62852,"25b6":62718,"25c0":62722,"25fb":62848,"25fc":62847,"25fd":62850,"25fe":62849,"260e":61146,"261d":1321,"262a":62698,"262e":62699,"262f":62695,"263a":119,"264a":62704,"264b":62705,"264c":62706,"264d":62707,"264e":62708,"264f":62709,"265f":51061,"267b":62757,"267e":62746,"267f":62646,"269b":62691,"269c":62758,"26a0":62656,"26a1":4980,"26a7":62741,"26aa":62837,"26ab":62836,"26b0":61317,"26b1":61319,"26bd":51015,"26be":51016,"26c4":4983,"26c5":4963,"26c8":4964,"26ce":62714,"26cf":61257,"26d1":61112,"26d3":61275,"26d4":62658,"26e9":4820,"26ea":4816,"26f0":4781,"26f1":4979,"26f2":4822,"26f3":51034,"26f4":4892,"26f5":4888,"26f7":1561,"26f8":51035,"26f9-fe0f-200d-2640":1577,"26f9-fe0f-200d-2642":1576,"26f9":1575,"26fa":4823,"26fd":4881,"270a":1324,"270b":1306,"270c":1311,"270d":1334,"270f":61219,"271d":62696,"274c":62766,"274e":62767,"27a1":62671,"27b0":62768,"27bf":62769,"2b05":62675,"2b06":62669,"2b07":62673,"2b1b":62845,"2b1c":62846,"2b50":4958,"2b55":62762,"303d":62770,"1f385-1f3fb":0,"1f385-1f3fc":0,"1f385-1f3fd":0,"1f385-1f3fe":0,"1f385-1f3ff":0,"1f3c2-1f3fb":0,"1f3c2-1f3fc":0,"1f3c2-1f3fd":0,"1f3c2-1f3fe":0,"1f3c2-1f3ff":0,"1f3c3-1f3fb-200d-2640":0,"1f3c3-1f3fc-200d-2640":0,"1f3c3-1f3fd-200d-2640":0,"1f3c3-1f3fe-200d-2640":0,"1f3c3-1f3ff-200d-2640":0,"1f3c3-1f3fb-200d-2642":0,"1f3c3-1f3fc-200d-2642":0,"1f3c3-1f3fd-200d-2642":0,"1f3c3-1f3fe-200d-2642":0,"1f3c3-1f3ff-200d-2642":0,"1f3c3-1f3fb":0,"1f3c3-1f3fc":0,"1f3c3-1f3fd":0,"1f3c3-1f3fe":0,"1f3c3-1f3ff":0,"1f3c4-1f3fb-200d-2640":0,"1f3c4-1f3fc-200d-2640":0,"1f3c4-1f3fd-200d-2640":0,"1f3c4-1f3fe-200d-2640":0,"1f3c4-1f3ff-200d-2640":0,"1f3c4-1f3fb-200d-2642":0,"1f3c4-1f3fc-200d-2642":0,"1f3c4-1f3fd-200d-2642":0,"1f3c4-1f3fe-200d-2642":0,"1f3c4-1f3ff-200d-2642":0,"1f3c4-1f3fb":0,"1f3c4-1f3fc":0,"1f3c4-1f3fd":0,"1f3c4-1f3fe":0,"1f3c4-1f3ff":0,"1f3c7-1f3fb":0,"1f3c7-1f3fc":0,"1f3c7-1f3fd":0,"1f3c7-1f3fe":0,"1f3c7-1f3ff":0,"1f3ca-1f3fb-200d-2640":0,"1f3ca-1f3fc-200d-2640":0,"1f3ca-1f3fd-200d-2640":0,"1f3ca-1f3fe-200d-2640":0,"1f3ca-1f3ff-200d-2640":0,"1f3ca-1f3fb-200d-2642":0,"1f3ca-1f3fc-200d-2642":0,"1f3ca-1f3fd-200d-2642":0,"1f3ca-1f3fe-200d-2642":0,"1f3ca-1f3ff-200d-2642":0,"1f3ca-1f3fb":0,"1f3ca-1f3fc":0,"1f3ca-1f3fd":0,"1f3ca-1f3fe":0,"1f3ca-1f3ff":0,"1f3cb-1f3fb-200d-2640":0,"1f3cb-1f3fc-200d-2640":0,"1f3cb-1f3fd-200d-2640":0,"1f3cb-1f3fe-200d-2640":0,"1f3cb-1f3ff-200d-2640":0,"1f3cb-1f3fb-200d-2642":0,"1f3cb-1f3fc-200d-2642":0,"1f3cb-1f3fd-200d-2642":0,"1f3cb-1f3fe-200d-2642":0,"1f3cb-1f3ff-200d-2642":0,"1f3cb-1f3fb":0,"1f3cb-1f3fc":0,"1f3cb-1f3fd":0,"1f3cb-1f3fe":0,"1f3cb-1f3ff":0,"1f3cc-1f3fb-200d-2640":0,"1f3cc-1f3fc-200d-2640":0,"1f3cc-1f3fd-200d-2640":0,"1f3cc-1f3fe-200d-2640":0,"1f3cc-1f3ff-200d-2640":0,"1f3cc-1f3fb-200d-2642":0,"1f3cc-1f3fc-200d-2642":0,"1f3cc-1f3fd-200d-2642":0,"1f3cc-1f3fe-200d-2642":0,"1f3cc-1f3ff-200d-2642":0,"1f3cc-1f3fb":0,"1f3cc-1f3fc":0,"1f3cc-1f3fd":0,"1f3cc-1f3fe":0,"1f3cc-1f3ff":0,"1f442-1f3fb":0,"1f442-1f3fc":0,"1f442-1f3fd":0,"1f442-1f3fe":0,"1f442-1f3ff":0,"1f443-1f3fb":0,"1f443-1f3fc":0,"1f443-1f3fd":0,"1f443-1f3fe":0,"1f443-1f3ff":0,"1f446-1f3fb":0,"1f446-1f3fc":0,"1f446-1f3fd":0,"1f446-1f3fe":0,"1f446-1f3ff":0,"1f447-1f3fb":0,"1f447-1f3fc":0,"1f447-1f3fd":0,"1f447-1f3fe":0,"1f447-1f3ff":0,"1f448-1f3fb":0,"1f448-1f3fc":0,"1f448-1f3fd":0,"1f448-1f3fe":0,"1f448-1f3ff":0,"1f449-1f3fb":0,"1f449-1f3fc":0,"1f449-1f3fd":0,"1f449-1f3fe":0,"1f449-1f3ff":0,"1f44a-1f3fb":0,"1f44a-1f3fc":0,"1f44a-1f3fd":0,"1f44a-1f3fe":0,"1f44a-1f3ff":0,"1f44b-1f3fb":0,"1f44b-1f3fc":0,"1f44b-1f3fd":0,"1f44b-1f3fe":0,"1f44b-1f3ff":0,"1f44c-1f3fb":0,"1f44c-1f3fc":0,"1f44c-1f3fd":0,"1f44c-1f3fe":0,"1f44c-1f3ff":0,"1f44d-1f3fb":0,"1f44d-1f3fc":0,"1f44d-1f3fd":0,"1f44d-1f3fe":0,"1f44d-1f3ff":0,"1f44e-1f3fb":0,"1f44e-1f3fc":0,"1f44e-1f3fd":0,"1f44e-1f3fe":0,"1f44e-1f3ff":0,"1f44f-1f3fb":0,"1f44f-1f3fc":0,"1f44f-1f3fd":0,"1f44f-1f3fe":0,"1f44f-1f3ff":0,"1f450-1f3fb":0,"1f450-1f3fc":0,"1f450-1f3fd":0,"1f450-1f3fe":0,"1f450-1f3ff":0,"1f466-1f3fb":0,"1f466-1f3fc":0,"1f466-1f3fd":0,"1f466-1f3fe":0,"1f466-1f3ff":0,"1f467-1f3fb":0,"1f467-1f3fc":0,"1f467-1f3fd":0,"1f467-1f3fe":0,"1f467-1f3ff":0,"1f468-1f3fb-200d-1f33e":0,"1f468-1f3fc-200d-1f33e":0,"1f468-1f3fd-200d-1f33e":0,"1f468-1f3fe-200d-1f33e":0,"1f468-1f3ff-200d-1f33e":0,"1f468-1f3fb-200d-1f373":0,"1f468-1f3fc-200d-1f373":0,"1f468-1f3fd-200d-1f373":0,"1f468-1f3fe-200d-1f373":0,"1f468-1f3ff-200d-1f373":0,"1f468-1f3fb-200d-1f37c":0,"1f468-1f3fc-200d-1f37c":0,"1f468-1f3fd-200d-1f37c":0,"1f468-1f3fe-200d-1f37c":0,"1f468-1f3ff-200d-1f37c":0,"1f468-1f3fb-200d-1f393":0,"1f468-1f3fc-200d-1f393":0,"1f468-1f3fd-200d-1f393":0,"1f468-1f3fe-200d-1f393":0,"1f468-1f3ff-200d-1f393":0,"1f468-1f3fb-200d-1f3a4":0,"1f468-1f3fc-200d-1f3a4":0,"1f468-1f3fd-200d-1f3a4":0,"1f468-1f3fe-200d-1f3a4":0,"1f468-1f3ff-200d-1f3a4":0,"1f468-1f3fb-200d-1f3a8":0,"1f468-1f3fc-200d-1f3a8":0,"1f468-1f3fd-200d-1f3a8":0,"1f468-1f3fe-200d-1f3a8":0,"1f468-1f3ff-200d-1f3a8":0,"1f468-1f3fb-200d-1f3eb":0,"1f468-1f3fc-200d-1f3eb":0,"1f468-1f3fd-200d-1f3eb":0,"1f468-1f3fe-200d-1f3eb":0,"1f468-1f3ff-200d-1f3eb":0,"1f468-1f3fb-200d-1f3ed":0,"1f468-1f3fc-200d-1f3ed":0,"1f468-1f3fd-200d-1f3ed":0,"1f468-1f3fe-200d-1f3ed":0,"1f468-1f3ff-200d-1f3ed":0,"1f468-1f3fb-200d-1f4bb":0,"1f468-1f3fc-200d-1f4bb":0,"1f468-1f3fd-200d-1f4bb":0,"1f468-1f3fe-200d-1f4bb":0,"1f468-1f3ff-200d-1f4bb":0,"1f468-1f3fb-200d-1f4bc":0,"1f468-1f3fc-200d-1f4bc":0,"1f468-1f3fd-200d-1f4bc":0,"1f468-1f3fe-200d-1f4bc":0,"1f468-1f3ff-200d-1f4bc":0,"1f468-1f3fb-200d-1f527":0,"1f468-1f3fc-200d-1f527":0,"1f468-1f3fd-200d-1f527":0,"1f468-1f3fe-200d-1f527":0,"1f468-1f3ff-200d-1f527":0,"1f468-1f3fb-200d-1f52c":0,"1f468-1f3fc-200d-1f52c":0,"1f468-1f3fd-200d-1f52c":0,"1f468-1f3fe-200d-1f52c":0,"1f468-1f3ff-200d-1f52c":0,"1f468-1f3fb-200d-1f680":0,"1f468-1f3fc-200d-1f680":0,"1f468-1f3fd-200d-1f680":0,"1f468-1f3fe-200d-1f680":0,"1f468-1f3ff-200d-1f680":0,"1f468-1f3fb-200d-1f692":0,"1f468-1f3fc-200d-1f692":0,"1f468-1f3fd-200d-1f692":0,"1f468-1f3fe-200d-1f692":0,"1f468-1f3ff-200d-1f692":0,"1f468-1f3fb-200d-1f9af":0,"1f468-1f3fc-200d-1f9af":0,"1f468-1f3fd-200d-1f9af":0,"1f468-1f3fe-200d-1f9af":0,"1f468-1f3ff-200d-1f9af":0,"1f468-1f3fb-200d-1f9b0":0,"1f468-1f3fc-200d-1f9b0":0,"1f468-1f3fd-200d-1f9b0":0,"1f468-1f3fe-200d-1f9b0":0,"1f468-1f3ff-200d-1f9b0":0,"1f468-1f3fb-200d-1f9b1":0,"1f468-1f3fc-200d-1f9b1":0,"1f468-1f3fd-200d-1f9b1":0,"1f468-1f3fe-200d-1f9b1":0,"1f468-1f3ff-200d-1f9b1":0,"1f468-1f3fb-200d-1f9b2":0,"1f468-1f3fc-200d-1f9b2":0,"1f468-1f3fd-200d-1f9b2":0,"1f468-1f3fe-200d-1f9b2":0,"1f468-1f3ff-200d-1f9b2":0,"1f468-1f3fb-200d-1f9b3":0,"1f468-1f3fc-200d-1f9b3":0,"1f468-1f3fd-200d-1f9b3":0,"1f468-1f3fe-200d-1f9b3":0,"1f468-1f3ff-200d-1f9b3":0,"1f468-1f3fb-200d-1f9bc":0,"1f468-1f3fc-200d-1f9bc":0,"1f468-1f3fd-200d-1f9bc":0,"1f468-1f3fe-200d-1f9bc":0,"1f468-1f3ff-200d-1f9bc":0,"1f468-1f3fb-200d-1f9bd":0,"1f468-1f3fc-200d-1f9bd":0,"1f468-1f3fd-200d-1f9bd":0,"1f468-1f3fe-200d-1f9bd":0,"1f468-1f3ff-200d-1f9bd":0,"1f468-1f3fb-200d-2695":0,"1f468-1f3fc-200d-2695":0,"1f468-1f3fd-200d-2695":0,"1f468-1f3fe-200d-2695":0,"1f468-1f3ff-200d-2695":0,"1f468-1f3fb-200d-2696":0,"1f468-1f3fc-200d-2696":0,"1f468-1f3fd-200d-2696":0,"1f468-1f3fe-200d-2696":0,"1f468-1f3ff-200d-2696":0,"1f468-1f3fb-200d-2708":0,"1f468-1f3fc-200d-2708":0,"1f468-1f3fd-200d-2708":0,"1f468-1f3fe-200d-2708":0,"1f468-1f3ff-200d-2708":0,"1f468-1f3fb":0,"1f468-1f3fc":0,"1f468-1f3fd":0,"1f468-1f3fe":0,"1f468-1f3ff":0,"1f469-1f3fb-200d-1f33e":0,"1f469-1f3fc-200d-1f33e":0,"1f469-1f3fd-200d-1f33e":0,"1f469-1f3fe-200d-1f33e":0,"1f469-1f3ff-200d-1f33e":0,"1f469-1f3fb-200d-1f373":0,"1f469-1f3fc-200d-1f373":0,"1f469-1f3fd-200d-1f373":0,"1f469-1f3fe-200d-1f373":0,"1f469-1f3ff-200d-1f373":0,"1f469-1f3fb-200d-1f37c":0,"1f469-1f3fc-200d-1f37c":0,"1f469-1f3fd-200d-1f37c":0,"1f469-1f3fe-200d-1f37c":0,"1f469-1f3ff-200d-1f37c":0,"1f469-1f3fb-200d-1f393":0,"1f469-1f3fc-200d-1f393":0,"1f469-1f3fd-200d-1f393":0,"1f469-1f3fe-200d-1f393":0,"1f469-1f3ff-200d-1f393":0,"1f469-1f3fb-200d-1f3a4":0,"1f469-1f3fc-200d-1f3a4":0,"1f469-1f3fd-200d-1f3a4":0,"1f469-1f3fe-200d-1f3a4":0,"1f469-1f3ff-200d-1f3a4":0,"1f469-1f3fb-200d-1f3a8":0,"1f469-1f3fc-200d-1f3a8":0,"1f469-1f3fd-200d-1f3a8":0,"1f469-1f3fe-200d-1f3a8":0,"1f469-1f3ff-200d-1f3a8":0,"1f469-1f3fb-200d-1f3eb":0,"1f469-1f3fc-200d-1f3eb":0,"1f469-1f3fd-200d-1f3eb":0,"1f469-1f3fe-200d-1f3eb":0,"1f469-1f3ff-200d-1f3eb":0,"1f469-1f3fb-200d-1f3ed":0,"1f469-1f3fc-200d-1f3ed":0,"1f469-1f3fd-200d-1f3ed":0,"1f469-1f3fe-200d-1f3ed":0,"1f469-1f3ff-200d-1f3ed":0,"1f469-1f3fb-200d-1f4bb":0,"1f469-1f3fc-200d-1f4bb":0,"1f469-1f3fd-200d-1f4bb":0,"1f469-1f3fe-200d-1f4bb":0,"1f469-1f3ff-200d-1f4bb":0,"1f469-1f3fb-200d-1f4bc":0,"1f469-1f3fc-200d-1f4bc":0,"1f469-1f3fd-200d-1f4bc":0,"1f469-1f3fe-200d-1f4bc":0,"1f469-1f3ff-200d-1f4bc":0,"1f469-1f3fb-200d-1f527":0,"1f469-1f3fc-200d-1f527":0,"1f469-1f3fd-200d-1f527":0,"1f469-1f3fe-200d-1f527":0,"1f469-1f3ff-200d-1f527":0,"1f469-1f3fb-200d-1f52c":0,"1f469-1f3fc-200d-1f52c":0,"1f469-1f3fd-200d-1f52c":0,"1f469-1f3fe-200d-1f52c":0,"1f469-1f3ff-200d-1f52c":0,"1f469-1f3fb-200d-1f680":0,"1f469-1f3fc-200d-1f680":0,"1f469-1f3fd-200d-1f680":0,"1f469-1f3fe-200d-1f680":0,"1f469-1f3ff-200d-1f680":0,"1f469-1f3fb-200d-1f692":0,"1f469-1f3fc-200d-1f692":0,"1f469-1f3fd-200d-1f692":0,"1f469-1f3fe-200d-1f692":0,"1f469-1f3ff-200d-1f692":0,"1f469-1f3fb-200d-1f9af":0,"1f469-1f3fc-200d-1f9af":0,"1f469-1f3fd-200d-1f9af":0,"1f469-1f3fe-200d-1f9af":0,"1f469-1f3ff-200d-1f9af":0,"1f469-1f3fb-200d-1f9b0":0,"1f469-1f3fc-200d-1f9b0":0,"1f469-1f3fd-200d-1f9b0":0,"1f469-1f3fe-200d-1f9b0":0,"1f469-1f3ff-200d-1f9b0":0,"1f469-1f3fb-200d-1f9b1":0,"1f469-1f3fc-200d-1f9b1":0,"1f469-1f3fd-200d-1f9b1":0,"1f469-1f3fe-200d-1f9b1":0,"1f469-1f3ff-200d-1f9b1":0,"1f469-1f3fb-200d-1f9b2":0,"1f469-1f3fc-200d-1f9b2":0,"1f469-1f3fd-200d-1f9b2":0,"1f469-1f3fe-200d-1f9b2":0,"1f469-1f3ff-200d-1f9b2":0,"1f469-1f3fb-200d-1f9b3":0,"1f469-1f3fc-200d-1f9b3":0,"1f469-1f3fd-200d-1f9b3":0,"1f469-1f3fe-200d-1f9b3":0,"1f469-1f3ff-200d-1f9b3":0,"1f469-1f3fb-200d-1f9bc":0,"1f469-1f3fc-200d-1f9bc":0,"1f469-1f3fd-200d-1f9bc":0,"1f469-1f3fe-200d-1f9bc":0,"1f469-1f3ff-200d-1f9bc":0,"1f469-1f3fb-200d-1f9bd":0,"1f469-1f3fc-200d-1f9bd":0,"1f469-1f3fd-200d-1f9bd":0,"1f469-1f3fe-200d-1f9bd":0,"1f469-1f3ff-200d-1f9bd":0,"1f469-1f3fb-200d-2695":0,"1f469-1f3fc-200d-2695":0,"1f469-1f3fd-200d-2695":0,"1f469-1f3fe-200d-2695":0,"1f469-1f3ff-200d-2695":0,"1f469-1f3fb-200d-2696":0,"1f469-1f3fc-200d-2696":0,"1f469-1f3fd-200d-2696":0,"1f469-1f3fe-200d-2696":0,"1f469-1f3ff-200d-2696":0,"1f469-1f3fb-200d-2708":0,"1f469-1f3fc-200d-2708":0,"1f469-1f3fd-200d-2708":0,"1f469-1f3fe-200d-2708":0,"1f469-1f3ff-200d-2708":0,"1f469-1f3fb":0,"1f469-1f3fc":0,"1f469-1f3fd":0,"1f469-1f3fe":0,"1f469-1f3ff":0,"1f46b-1f3fb":0,"1f46b-1f3fc":0,"1f46b-1f3fd":0,"1f46b-1f3fe":0,"1f46b-1f3ff":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe":0,"1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe":0,"1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe":0,"1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd":0,"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe":0,"1f46c-1f3fb":0,"1f46c-1f3fc":0,"1f46c-1f3fd":0,"1f46c-1f3fe":0,"1f46c-1f3ff":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe":0,"1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe":0,"1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe":0,"1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd":0,"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe":0,"1f46d-1f3fb":0,"1f46d-1f3fc":0,"1f46d-1f3fd":0,"1f46d-1f3fe":0,"1f46d-1f3ff":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe":0,"1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe":0,"1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe":0,"1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd":0,"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe":0,"1f46e-1f3fb-200d-2640":0,"1f46e-1f3fc-200d-2640":0,"1f46e-1f3fd-200d-2640":0,"1f46e-1f3fe-200d-2640":0,"1f46e-1f3ff-200d-2640":0,"1f46e-1f3fb-200d-2642":0,"1f46e-1f3fc-200d-2642":0,"1f46e-1f3fd-200d-2642":0,"1f46e-1f3fe-200d-2642":0,"1f46e-1f3ff-200d-2642":0,"1f46e-1f3fb":0,"1f46e-1f3fc":0,"1f46e-1f3fd":0,"1f46e-1f3fe":0,"1f46e-1f3ff":0,"1f470-1f3fb-200d-2640":0,"1f470-1f3fc-200d-2640":0,"1f470-1f3fd-200d-2640":0,"1f470-1f3fe-200d-2640":0,"1f470-1f3ff-200d-2640":0,"1f470-1f3fb-200d-2642":0,"1f470-1f3fc-200d-2642":0,"1f470-1f3fd-200d-2642":0,"1f470-1f3fe-200d-2642":0,"1f470-1f3ff-200d-2642":0,"1f470-1f3fb":0,"1f470-1f3fc":0,"1f470-1f3fd":0,"1f470-1f3fe":0,"1f470-1f3ff":0,"1f471-1f3fb-200d-2640":0,"1f471-1f3fc-200d-2640":0,"1f471-1f3fd-200d-2640":0,"1f471-1f3fe-200d-2640":0,"1f471-1f3ff-200d-2640":0,"1f471-1f3fb-200d-2642":0,"1f471-1f3fc-200d-2642":0,"1f471-1f3fd-200d-2642":0,"1f471-1f3fe-200d-2642":0,"1f471-1f3ff-200d-2642":0,"1f471-1f3fb":0,"1f471-1f3fc":0,"1f471-1f3fd":0,"1f471-1f3fe":0,"1f471-1f3ff":0,"1f472-1f3fb":0,"1f472-1f3fc":0,"1f472-1f3fd":0,"1f472-1f3fe":0,"1f472-1f3ff":0,"1f473-1f3fb-200d-2640":0,"1f473-1f3fc-200d-2640":0,"1f473-1f3fd-200d-2640":0,"1f473-1f3fe-200d-2640":0,"1f473-1f3ff-200d-2640":0,"1f473-1f3fb-200d-2642":0,"1f473-1f3fc-200d-2642":0,"1f473-1f3fd-200d-2642":0,"1f473-1f3fe-200d-2642":0,"1f473-1f3ff-200d-2642":0,"1f473-1f3fb":0,"1f473-1f3fc":0,"1f473-1f3fd":0,"1f473-1f3fe":0,"1f473-1f3ff":0,"1f474-1f3fb":0,"1f474-1f3fc":0,"1f474-1f3fd":0,"1f474-1f3fe":0,"1f474-1f3ff":0,"1f475-1f3fb":0,"1f475-1f3fc":0,"1f475-1f3fd":0,"1f475-1f3fe":0,"1f475-1f3ff":0,"1f476-1f3fb":0,"1f476-1f3fc":0,"1f476-1f3fd":0,"1f476-1f3fe":0,"1f476-1f3ff":0,"1f477-1f3fb-200d-2640":0,"1f477-1f3fc-200d-2640":0,"1f477-1f3fd-200d-2640":0,"1f477-1f3fe-200d-2640":0,"1f477-1f3ff-200d-2640":0,"1f477-1f3fb-200d-2642":0,"1f477-1f3fc-200d-2642":0,"1f477-1f3fd-200d-2642":0,"1f477-1f3fe-200d-2642":0,"1f477-1f3ff-200d-2642":0,"1f477-1f3fb":0,"1f477-1f3fc":0,"1f477-1f3fd":0,"1f477-1f3fe":0,"1f477-1f3ff":0,"1f478-1f3fb":0,"1f478-1f3fc":0,"1f478-1f3fd":0,"1f478-1f3fe":0,"1f478-1f3ff":0,"1f47c-1f3fb":0,"1f47c-1f3fc":0,"1f47c-1f3fd":0,"1f47c-1f3fe":0,"1f47c-1f3ff":0,"1f481-1f3fb-200d-2640":0,"1f481-1f3fc-200d-2640":0,"1f481-1f3fd-200d-2640":0,"1f481-1f3fe-200d-2640":0,"1f481-1f3ff-200d-2640":0,"1f481-1f3fb-200d-2642":0,"1f481-1f3fc-200d-2642":0,"1f481-1f3fd-200d-2642":0,"1f481-1f3fe-200d-2642":0,"1f481-1f3ff-200d-2642":0,"1f481-1f3fb":0,"1f481-1f3fc":0,"1f481-1f3fd":0,"1f481-1f3fe":0,"1f481-1f3ff":0,"1f482-1f3fb-200d-2640":0,"1f482-1f3fc-200d-2640":0,"1f482-1f3fd-200d-2640":0,"1f482-1f3fe-200d-2640":0,"1f482-1f3ff-200d-2640":0,"1f482-1f3fb-200d-2642":0,"1f482-1f3fc-200d-2642":0,"1f482-1f3fd-200d-2642":0,"1f482-1f3fe-200d-2642":0,"1f482-1f3ff-200d-2642":0,"1f482-1f3fb":0,"1f482-1f3fc":0,"1f482-1f3fd":0,"1f482-1f3fe":0,"1f482-1f3ff":0,"1f483-1f3fb":0,"1f483-1f3fc":0,"1f483-1f3fd":0,"1f483-1f3fe":0,"1f483-1f3ff":0,"1f485-1f3fb":0,"1f485-1f3fc":0,"1f485-1f3fd":0,"1f485-1f3fe":0,"1f485-1f3ff":0,"1f486-1f3fb-200d-2640":0,"1f486-1f3fc-200d-2640":0,"1f486-1f3fd-200d-2640":0,"1f486-1f3fe-200d-2640":0,"1f486-1f3ff-200d-2640":0,"1f486-1f3fb-200d-2642":0,"1f486-1f3fc-200d-2642":0,"1f486-1f3fd-200d-2642":0,"1f486-1f3fe-200d-2642":0,"1f486-1f3ff-200d-2642":0,"1f486-1f3fb":0,"1f486-1f3fc":0,"1f486-1f3fd":0,"1f486-1f3fe":0,"1f486-1f3ff":0,"1f487-1f3fb-200d-2640":0,"1f487-1f3fc-200d-2640":0,"1f487-1f3fd-200d-2640":0,"1f487-1f3fe-200d-2640":0,"1f487-1f3ff-200d-2640":0,"1f487-1f3fb-200d-2642":0,"1f487-1f3fc-200d-2642":0,"1f487-1f3fd-200d-2642":0,"1f487-1f3fe-200d-2642":0,"1f487-1f3ff-200d-2642":0,"1f487-1f3fb":0,"1f487-1f3fc":0,"1f487-1f3fd":0,"1f487-1f3fe":0,"1f487-1f3ff":0,"1f4aa-1f3fb":0,"1f4aa-1f3fc":0,"1f4aa-1f3fd":0,"1f4aa-1f3fe":0,"1f4aa-1f3ff":0,"1f574-1f3fb":0,"1f574-1f3fc":0,"1f574-1f3fd":0,"1f574-1f3fe":0,"1f574-1f3ff":0,"1f575-1f3fb-200d-2640":0,"1f575-1f3fc-200d-2640":0,"1f575-1f3fd-200d-2640":0,"1f575-1f3fe-200d-2640":0,"1f575-1f3ff-200d-2640":0,"1f575-1f3fb-200d-2642":0,"1f575-1f3fc-200d-2642":0,"1f575-1f3fd-200d-2642":0,"1f575-1f3fe-200d-2642":0,"1f575-1f3ff-200d-2642":0,"1f575-1f3fb":0,"1f575-1f3fc":0,"1f575-1f3fd":0,"1f575-1f3fe":0,"1f575-1f3ff":0,"1f57a-1f3fb":0,"1f57a-1f3fc":0,"1f57a-1f3fd":0,"1f57a-1f3fe":0,"1f57a-1f3ff":0,"1f590-1f3fb":0,"1f590-1f3fc":0,"1f590-1f3fd":0,"1f590-1f3fe":0,"1f590-1f3ff":0,"1f595-1f3fb":0,"1f595-1f3fc":0,"1f595-1f3fd":0,"1f595-1f3fe":0,"1f595-1f3ff":0,"1f596-1f3fb":0,"1f596-1f3fc":0,"1f596-1f3fd":0,"1f596-1f3fe":0,"1f596-1f3ff":0,"1f645-1f3fb-200d-2640":0,"1f645-1f3fc-200d-2640":0,"1f645-1f3fd-200d-2640":0,"1f645-1f3fe-200d-2640":0,"1f645-1f3ff-200d-2640":0,"1f645-1f3fb-200d-2642":0,"1f645-1f3fc-200d-2642":0,"1f645-1f3fd-200d-2642":0,"1f645-1f3fe-200d-2642":0,"1f645-1f3ff-200d-2642":0,"1f645-1f3fb":0,"1f645-1f3fc":0,"1f645-1f3fd":0,"1f645-1f3fe":0,"1f645-1f3ff":0,"1f646-1f3fb-200d-2640":0,"1f646-1f3fc-200d-2640":0,"1f646-1f3fd-200d-2640":0,"1f646-1f3fe-200d-2640":0,"1f646-1f3ff-200d-2640":0,"1f646-1f3fb-200d-2642":0,"1f646-1f3fc-200d-2642":0,"1f646-1f3fd-200d-2642":0,"1f646-1f3fe-200d-2642":0,"1f646-1f3ff-200d-2642":0,"1f646-1f3fb":0,"1f646-1f3fc":0,"1f646-1f3fd":0,"1f646-1f3fe":0,"1f646-1f3ff":0,"1f647-1f3fb-200d-2640":0,"1f647-1f3fc-200d-2640":0,"1f647-1f3fd-200d-2640":0,"1f647-1f3fe-200d-2640":0,"1f647-1f3ff-200d-2640":0,"1f647-1f3fb-200d-2642":0,"1f647-1f3fc-200d-2642":0,"1f647-1f3fd-200d-2642":0,"1f647-1f3fe-200d-2642":0,"1f647-1f3ff-200d-2642":0,"1f647-1f3fb":0,"1f647-1f3fc":0,"1f647-1f3fd":0,"1f647-1f3fe":0,"1f647-1f3ff":0,"1f64b-1f3fb-200d-2640":0,"1f64b-1f3fc-200d-2640":0,"1f64b-1f3fd-200d-2640":0,"1f64b-1f3fe-200d-2640":0,"1f64b-1f3ff-200d-2640":0,"1f64b-1f3fb-200d-2642":0,"1f64b-1f3fc-200d-2642":0,"1f64b-1f3fd-200d-2642":0,"1f64b-1f3fe-200d-2642":0,"1f64b-1f3ff-200d-2642":0,"1f64b-1f3fb":0,"1f64b-1f3fc":0,"1f64b-1f3fd":0,"1f64b-1f3fe":0,"1f64b-1f3ff":0,"1f64c-1f3fb":0,"1f64c-1f3fc":0,"1f64c-1f3fd":0,"1f64c-1f3fe":0,"1f64c-1f3ff":0,"1f64d-1f3fb-200d-2640":0,"1f64d-1f3fc-200d-2640":0,"1f64d-1f3fd-200d-2640":0,"1f64d-1f3fe-200d-2640":0,"1f64d-1f3ff-200d-2640":0,"1f64d-1f3fb-200d-2642":0,"1f64d-1f3fc-200d-2642":0,"1f64d-1f3fd-200d-2642":0,"1f64d-1f3fe-200d-2642":0,"1f64d-1f3ff-200d-2642":0,"1f64d-1f3fb":0,"1f64d-1f3fc":0,"1f64d-1f3fd":0,"1f64d-1f3fe":0,"1f64d-1f3ff":0,"1f64e-1f3fb-200d-2640":0,"1f64e-1f3fc-200d-2640":0,"1f64e-1f3fd-200d-2640":0,"1f64e-1f3fe-200d-2640":0,"1f64e-1f3ff-200d-2640":0,"1f64e-1f3fb-200d-2642":0,"1f64e-1f3fc-200d-2642":0,"1f64e-1f3fd-200d-2642":0,"1f64e-1f3fe-200d-2642":0,"1f64e-1f3ff-200d-2642":0,"1f64e-1f3fb":0,"1f64e-1f3fc":0,"1f64e-1f3fd":0,"1f64e-1f3fe":0,"1f64e-1f3ff":0,"1f64f-1f3fb":0,"1f64f-1f3fc":0,"1f64f-1f3fd":0,"1f64f-1f3fe":0,"1f64f-1f3ff":0,"1f6a3-1f3fb-200d-2640":0,"1f6a3-1f3fc-200d-2640":0,"1f6a3-1f3fd-200d-2640":0,"1f6a3-1f3fe-200d-2640":0,"1f6a3-1f3ff-200d-2640":0,"1f6a3-1f3fb-200d-2642":0,"1f6a3-1f3fc-200d-2642":0,"1f6a3-1f3fd-200d-2642":0,"1f6a3-1f3fe-200d-2642":0,"1f6a3-1f3ff-200d-2642":0,"1f6a3-1f3fb":0,"1f6a3-1f3fc":0,"1f6a3-1f3fd":0,"1f6a3-1f3fe":0,"1f6a3-1f3ff":0,"1f6b4-1f3fb-200d-2640":0,"1f6b4-1f3fc-200d-2640":0,"1f6b4-1f3fd-200d-2640":0,"1f6b4-1f3fe-200d-2640":0,"1f6b4-1f3ff-200d-2640":0,"1f6b4-1f3fb-200d-2642":0,"1f6b4-1f3fc-200d-2642":0,"1f6b4-1f3fd-200d-2642":0,"1f6b4-1f3fe-200d-2642":0,"1f6b4-1f3ff-200d-2642":0,"1f6b4-1f3fb":0,"1f6b4-1f3fc":0,"1f6b4-1f3fd":0,"1f6b4-1f3fe":0,"1f6b4-1f3ff":0,"1f6b5-1f3fb-200d-2640":0,"1f6b5-1f3fc-200d-2640":0,"1f6b5-1f3fd-200d-2640":0,"1f6b5-1f3fe-200d-2640":0,"1f6b5-1f3ff-200d-2640":0,"1f6b5-1f3fb-200d-2642":0,"1f6b5-1f3fc-200d-2642":0,"1f6b5-1f3fd-200d-2642":0,"1f6b5-1f3fe-200d-2642":0,"1f6b5-1f3ff-200d-2642":0,"1f6b5-1f3fb":0,"1f6b5-1f3fc":0,"1f6b5-1f3fd":0,"1f6b5-1f3fe":0,"1f6b5-1f3ff":0,"1f6b6-1f3fb-200d-2640":0,"1f6b6-1f3fc-200d-2640":0,"1f6b6-1f3fd-200d-2640":0,"1f6b6-1f3fe-200d-2640":0,"1f6b6-1f3ff-200d-2640":0,"1f6b6-1f3fb-200d-2642":0,"1f6b6-1f3fc-200d-2642":0,"1f6b6-1f3fd-200d-2642":0,"1f6b6-1f3fe-200d-2642":0,"1f6b6-1f3ff-200d-2642":0,"1f6b6-1f3fb":0,"1f6b6-1f3fc":0,"1f6b6-1f3fd":0,"1f6b6-1f3fe":0,"1f6b6-1f3ff":0,"1f6c0-1f3fb":0,"1f6c0-1f3fc":0,"1f6c0-1f3fd":0,"1f6c0-1f3fe":0,"1f6c0-1f3ff":0,"1f6cc-1f3fb":0,"1f6cc-1f3fc":0,"1f6cc-1f3fd":0,"1f6cc-1f3fe":0,"1f6cc-1f3ff":0,"1f90c-1f3fb":0,"1f90c-1f3fc":0,"1f90c-1f3fd":0,"1f90c-1f3fe":0,"1f90c-1f3ff":0,"1f90f-1f3fb":0,"1f90f-1f3fc":0,"1f90f-1f3fd":0,"1f90f-1f3fe":0,"1f90f-1f3ff":0,"1f918-1f3fb":0,"1f918-1f3fc":0,"1f918-1f3fd":0,"1f918-1f3fe":0,"1f918-1f3ff":0,"1f919-1f3fb":0,"1f919-1f3fc":0,"1f919-1f3fd":0,"1f919-1f3fe":0,"1f919-1f3ff":0,"1f91a-1f3fb":0,"1f91a-1f3fc":0,"1f91a-1f3fd":0,"1f91a-1f3fe":0,"1f91a-1f3ff":0,"1f91b-1f3fb":0,"1f91b-1f3fc":0,"1f91b-1f3fd":0,"1f91b-1f3fe":0,"1f91b-1f3ff":0,"1f91c-1f3fb":0,"1f91c-1f3fc":0,"1f91c-1f3fd":0,"1f91c-1f3fe":0,"1f91c-1f3ff":0,"1f91e-1f3fb":0,"1f91e-1f3fc":0,"1f91e-1f3fd":0,"1f91e-1f3fe":0,"1f91e-1f3ff":0,"1f91f-1f3fb":0,"1f91f-1f3fc":0,"1f91f-1f3fd":0,"1f91f-1f3fe":0,"1f91f-1f3ff":0,"1f926-1f3fb-200d-2640":0,"1f926-1f3fc-200d-2640":0,"1f926-1f3fd-200d-2640":0,"1f926-1f3fe-200d-2640":0,"1f926-1f3ff-200d-2640":0,"1f926-1f3fb-200d-2642":0,"1f926-1f3fc-200d-2642":0,"1f926-1f3fd-200d-2642":0,"1f926-1f3fe-200d-2642":0,"1f926-1f3ff-200d-2642":0,"1f926-1f3fb":0,"1f926-1f3fc":0,"1f926-1f3fd":0,"1f926-1f3fe":0,"1f926-1f3ff":0,"1f930-1f3fb":0,"1f930-1f3fc":0,"1f930-1f3fd":0,"1f930-1f3fe":0,"1f930-1f3ff":0,"1f931-1f3fb":0,"1f931-1f3fc":0,"1f931-1f3fd":0,"1f931-1f3fe":0,"1f931-1f3ff":0,"1f932-1f3fb":0,"1f932-1f3fc":0,"1f932-1f3fd":0,"1f932-1f3fe":0,"1f932-1f3ff":0,"1f933-1f3fb":0,"1f933-1f3fc":0,"1f933-1f3fd":0,"1f933-1f3fe":0,"1f933-1f3ff":0,"1f934-1f3fb":0,"1f934-1f3fc":0,"1f934-1f3fd":0,"1f934-1f3fe":0,"1f934-1f3ff":0,"1f935-1f3fb-200d-2640":0,"1f935-1f3fc-200d-2640":0,"1f935-1f3fd-200d-2640":0,"1f935-1f3fe-200d-2640":0,"1f935-1f3ff-200d-2640":0,"1f935-1f3fb-200d-2642":0,"1f935-1f3fc-200d-2642":0,"1f935-1f3fd-200d-2642":0,"1f935-1f3fe-200d-2642":0,"1f935-1f3ff-200d-2642":0,"1f935-1f3fb":0,"1f935-1f3fc":0,"1f935-1f3fd":0,"1f935-1f3fe":0,"1f935-1f3ff":0,"1f936-1f3fb":0,"1f936-1f3fc":0,"1f936-1f3fd":0,"1f936-1f3fe":0,"1f936-1f3ff":0,"1f937-1f3fb-200d-2640":0,"1f937-1f3fc-200d-2640":0,"1f937-1f3fd-200d-2640":0,"1f937-1f3fe-200d-2640":0,"1f937-1f3ff-200d-2640":0,"1f937-1f3fb-200d-2642":0,"1f937-1f3fc-200d-2642":0,"1f937-1f3fd-200d-2642":0,"1f937-1f3fe-200d-2642":0,"1f937-1f3ff-200d-2642":0,"1f937-1f3fb":0,"1f937-1f3fc":0,"1f937-1f3fd":0,"1f937-1f3fe":0,"1f937-1f3ff":0,"1f938-1f3fb-200d-2640":0,"1f938-1f3fc-200d-2640":0,"1f938-1f3fd-200d-2640":0,"1f938-1f3fe-200d-2640":0,"1f938-1f3ff-200d-2640":0,"1f938-1f3fb-200d-2642":0,"1f938-1f3fc-200d-2642":0,"1f938-1f3fd-200d-2642":0,"1f938-1f3fe-200d-2642":0,"1f938-1f3ff-200d-2642":0,"1f938-1f3fb":0,"1f938-1f3fc":0,"1f938-1f3fd":0,"1f938-1f3fe":0,"1f938-1f3ff":0,"1f939-1f3fb-200d-2640":0,"1f939-1f3fc-200d-2640":0,"1f939-1f3fd-200d-2640":0,"1f939-1f3fe-200d-2640":0,"1f939-1f3ff-200d-2640":0,"1f939-1f3fb-200d-2642":0,"1f939-1f3fc-200d-2642":0,"1f939-1f3fd-200d-2642":0,"1f939-1f3fe-200d-2642":0,"1f939-1f3ff-200d-2642":0,"1f939-1f3fb":0,"1f939-1f3fc":0,"1f939-1f3fd":0,"1f939-1f3fe":0,"1f939-1f3ff":0,"1f93d-1f3fb-200d-2640":0,"1f93d-1f3fc-200d-2640":0,"1f93d-1f3fd-200d-2640":0,"1f93d-1f3fe-200d-2640":0,"1f93d-1f3ff-200d-2640":0,"1f93d-1f3fb-200d-2642":0,"1f93d-1f3fc-200d-2642":0,"1f93d-1f3fd-200d-2642":0,"1f93d-1f3fe-200d-2642":0,"1f93d-1f3ff-200d-2642":0,"1f93d-1f3fb":0,"1f93d-1f3fc":0,"1f93d-1f3fd":0,"1f93d-1f3fe":0,"1f93d-1f3ff":0,"1f93e-1f3fb-200d-2640":0,"1f93e-1f3fc-200d-2640":0,"1f93e-1f3fd-200d-2640":0,"1f93e-1f3fe-200d-2640":0,"1f93e-1f3ff-200d-2640":0,"1f93e-1f3fb-200d-2642":0,"1f93e-1f3fc-200d-2642":0,"1f93e-1f3fd-200d-2642":0,"1f93e-1f3fe-200d-2642":0,"1f93e-1f3ff-200d-2642":0,"1f93e-1f3fb":0,"1f93e-1f3fc":0,"1f93e-1f3fd":0,"1f93e-1f3fe":0,"1f93e-1f3ff":0,"1f977-1f3fb":0,"1f977-1f3fc":0,"1f977-1f3fd":0,"1f977-1f3fe":0,"1f977-1f3ff":0,"1f9b5-1f3fb":0,"1f9b5-1f3fc":0,"1f9b5-1f3fd":0,"1f9b5-1f3fe":0,"1f9b5-1f3ff":0,"1f9b6-1f3fb":0,"1f9b6-1f3fc":0,"1f9b6-1f3fd":0,"1f9b6-1f3fe":0,"1f9b6-1f3ff":0,"1f9b8-1f3fb-200d-2640":0,"1f9b8-1f3fc-200d-2640":0,"1f9b8-1f3fd-200d-2640":0,"1f9b8-1f3fe-200d-2640":0,"1f9b8-1f3ff-200d-2640":0,"1f9b8-1f3fb-200d-2642":0,"1f9b8-1f3fc-200d-2642":0,"1f9b8-1f3fd-200d-2642":0,"1f9b8-1f3fe-200d-2642":0,"1f9b8-1f3ff-200d-2642":0,"1f9b8-1f3fb":0,"1f9b8-1f3fc":0,"1f9b8-1f3fd":0,"1f9b8-1f3fe":0,"1f9b8-1f3ff":0,"1f9b9-1f3fb-200d-2640":0,"1f9b9-1f3fc-200d-2640":0,"1f9b9-1f3fd-200d-2640":0,"1f9b9-1f3fe-200d-2640":0,"1f9b9-1f3ff-200d-2640":0,"1f9b9-1f3fb-200d-2642":0,"1f9b9-1f3fc-200d-2642":0,"1f9b9-1f3fd-200d-2642":0,"1f9b9-1f3fe-200d-2642":0,"1f9b9-1f3ff-200d-2642":0,"1f9b9-1f3fb":0,"1f9b9-1f3fc":0,"1f9b9-1f3fd":0,"1f9b9-1f3fe":0,"1f9b9-1f3ff":0,"1f9bb-1f3fb":0,"1f9bb-1f3fc":0,"1f9bb-1f3fd":0,"1f9bb-1f3fe":0,"1f9bb-1f3ff":0,"1f9cd-1f3fb-200d-2640":0,"1f9cd-1f3fc-200d-2640":0,"1f9cd-1f3fd-200d-2640":0,"1f9cd-1f3fe-200d-2640":0,"1f9cd-1f3ff-200d-2640":0,"1f9cd-1f3fb-200d-2642":0,"1f9cd-1f3fc-200d-2642":0,"1f9cd-1f3fd-200d-2642":0,"1f9cd-1f3fe-200d-2642":0,"1f9cd-1f3ff-200d-2642":0,"1f9cd-1f3fb":0,"1f9cd-1f3fc":0,"1f9cd-1f3fd":0,"1f9cd-1f3fe":0,"1f9cd-1f3ff":0,"1f9ce-1f3fb-200d-2640":0,"1f9ce-1f3fc-200d-2640":0,"1f9ce-1f3fd-200d-2640":0,"1f9ce-1f3fe-200d-2640":0,"1f9ce-1f3ff-200d-2640":0,"1f9ce-1f3fb-200d-2642":0,"1f9ce-1f3fc-200d-2642":0,"1f9ce-1f3fd-200d-2642":0,"1f9ce-1f3fe-200d-2642":0,"1f9ce-1f3ff-200d-2642":0,"1f9ce-1f3fb":0,"1f9ce-1f3fc":0,"1f9ce-1f3fd":0,"1f9ce-1f3fe":0,"1f9ce-1f3ff":0,"1f9cf-1f3fb-200d-2640":0,"1f9cf-1f3fc-200d-2640":0,"1f9cf-1f3fd-200d-2640":0,"1f9cf-1f3fe-200d-2640":0,"1f9cf-1f3ff-200d-2640":0,"1f9cf-1f3fb-200d-2642":0,"1f9cf-1f3fc-200d-2642":0,"1f9cf-1f3fd-200d-2642":0,"1f9cf-1f3fe-200d-2642":0,"1f9cf-1f3ff-200d-2642":0,"1f9cf-1f3fb":0,"1f9cf-1f3fc":0,"1f9cf-1f3fd":0,"1f9cf-1f3fe":0,"1f9cf-1f3ff":0,"1f9d1-1f3fb-200d-1f33e":0,"1f9d1-1f3fc-200d-1f33e":0,"1f9d1-1f3fd-200d-1f33e":0,"1f9d1-1f3fe-200d-1f33e":0,"1f9d1-1f3ff-200d-1f33e":0,"1f9d1-1f3fb-200d-1f373":0,"1f9d1-1f3fc-200d-1f373":0,"1f9d1-1f3fd-200d-1f373":0,"1f9d1-1f3fe-200d-1f373":0,"1f9d1-1f3ff-200d-1f373":0,"1f9d1-1f3fb-200d-1f37c":0,"1f9d1-1f3fc-200d-1f37c":0,"1f9d1-1f3fd-200d-1f37c":0,"1f9d1-1f3fe-200d-1f37c":0,"1f9d1-1f3ff-200d-1f37c":0,"1f9d1-1f3fb-200d-1f384":0,"1f9d1-1f3fc-200d-1f384":0,"1f9d1-1f3fd-200d-1f384":0,"1f9d1-1f3fe-200d-1f384":0,"1f9d1-1f3ff-200d-1f384":0,"1f9d1-1f3fb-200d-1f393":0,"1f9d1-1f3fc-200d-1f393":0,"1f9d1-1f3fd-200d-1f393":0,"1f9d1-1f3fe-200d-1f393":0,"1f9d1-1f3ff-200d-1f393":0,"1f9d1-1f3fb-200d-1f3a4":0,"1f9d1-1f3fc-200d-1f3a4":0,"1f9d1-1f3fd-200d-1f3a4":0,"1f9d1-1f3fe-200d-1f3a4":0,"1f9d1-1f3ff-200d-1f3a4":0,"1f9d1-1f3fb-200d-1f3a8":0,"1f9d1-1f3fc-200d-1f3a8":0,"1f9d1-1f3fd-200d-1f3a8":0,"1f9d1-1f3fe-200d-1f3a8":0,"1f9d1-1f3ff-200d-1f3a8":0,"1f9d1-1f3fb-200d-1f3eb":0,"1f9d1-1f3fc-200d-1f3eb":0,"1f9d1-1f3fd-200d-1f3eb":0,"1f9d1-1f3fe-200d-1f3eb":0,"1f9d1-1f3ff-200d-1f3eb":0,"1f9d1-1f3fb-200d-1f3ed":0,"1f9d1-1f3fc-200d-1f3ed":0,"1f9d1-1f3fd-200d-1f3ed":0,"1f9d1-1f3fe-200d-1f3ed":0,"1f9d1-1f3ff-200d-1f3ed":0,"1f9d1-1f3fb-200d-1f4bb":0,"1f9d1-1f3fc-200d-1f4bb":0,"1f9d1-1f3fd-200d-1f4bb":0,"1f9d1-1f3fe-200d-1f4bb":0,"1f9d1-1f3ff-200d-1f4bb":0,"1f9d1-1f3fb-200d-1f4bc":0,"1f9d1-1f3fc-200d-1f4bc":0,"1f9d1-1f3fd-200d-1f4bc":0,"1f9d1-1f3fe-200d-1f4bc":0,"1f9d1-1f3ff-200d-1f4bc":0,"1f9d1-1f3fb-200d-1f527":0,"1f9d1-1f3fc-200d-1f527":0,"1f9d1-1f3fd-200d-1f527":0,"1f9d1-1f3fe-200d-1f527":0,"1f9d1-1f3ff-200d-1f527":0,"1f9d1-1f3fb-200d-1f52c":0,"1f9d1-1f3fc-200d-1f52c":0,"1f9d1-1f3fd-200d-1f52c":0,"1f9d1-1f3fe-200d-1f52c":0,"1f9d1-1f3ff-200d-1f52c":0,"1f9d1-1f3fb-200d-1f680":0,"1f9d1-1f3fc-200d-1f680":0,"1f9d1-1f3fd-200d-1f680":0,"1f9d1-1f3fe-200d-1f680":0,"1f9d1-1f3ff-200d-1f680":0,"1f9d1-1f3fb-200d-1f692":0,"1f9d1-1f3fc-200d-1f692":0,"1f9d1-1f3fd-200d-1f692":0,"1f9d1-1f3fe-200d-1f692":0,"1f9d1-1f3ff-200d-1f692":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe":0,"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff":0,"1f9d1-1f3fb-200d-1f9af":0,"1f9d1-1f3fc-200d-1f9af":0,"1f9d1-1f3fd-200d-1f9af":0,"1f9d1-1f3fe-200d-1f9af":0,"1f9d1-1f3ff-200d-1f9af":0,"1f9d1-1f3fb-200d-1f9b0":0,"1f9d1-1f3fc-200d-1f9b0":0,"1f9d1-1f3fd-200d-1f9b0":0,"1f9d1-1f3fe-200d-1f9b0":0,"1f9d1-1f3ff-200d-1f9b0":0,"1f9d1-1f3fb-200d-1f9b1":0,"1f9d1-1f3fc-200d-1f9b1":0,"1f9d1-1f3fd-200d-1f9b1":0,"1f9d1-1f3fe-200d-1f9b1":0,"1f9d1-1f3ff-200d-1f9b1":0,"1f9d1-1f3fb-200d-1f9b2":0,"1f9d1-1f3fc-200d-1f9b2":0,"1f9d1-1f3fd-200d-1f9b2":0,"1f9d1-1f3fe-200d-1f9b2":0,"1f9d1-1f3ff-200d-1f9b2":0,"1f9d1-1f3fb-200d-1f9b3":0,"1f9d1-1f3fc-200d-1f9b3":0,"1f9d1-1f3fd-200d-1f9b3":0,"1f9d1-1f3fe-200d-1f9b3":0,"1f9d1-1f3ff-200d-1f9b3":0,"1f9d1-1f3fb-200d-1f9bc":0,"1f9d1-1f3fc-200d-1f9bc":0,"1f9d1-1f3fd-200d-1f9bc":0,"1f9d1-1f3fe-200d-1f9bc":0,"1f9d1-1f3ff-200d-1f9bc":0,"1f9d1-1f3fb-200d-1f9bd":0,"1f9d1-1f3fc-200d-1f9bd":0,"1f9d1-1f3fd-200d-1f9bd":0,"1f9d1-1f3fe-200d-1f9bd":0,"1f9d1-1f3ff-200d-1f9bd":0,"1f9d1-1f3fb-200d-2695":0,"1f9d1-1f3fc-200d-2695":0,"1f9d1-1f3fd-200d-2695":0,"1f9d1-1f3fe-200d-2695":0,"1f9d1-1f3ff-200d-2695":0,"1f9d1-1f3fb-200d-2696":0,"1f9d1-1f3fc-200d-2696":0,"1f9d1-1f3fd-200d-2696":0,"1f9d1-1f3fe-200d-2696":0,"1f9d1-1f3ff-200d-2696":0,"1f9d1-1f3fb-200d-2708":0,"1f9d1-1f3fc-200d-2708":0,"1f9d1-1f3fd-200d-2708":0,"1f9d1-1f3fe-200d-2708":0,"1f9d1-1f3ff-200d-2708":0,"1f9d1-1f3fb":0,"1f9d1-1f3fc":0,"1f9d1-1f3fd":0,"1f9d1-1f3fe":0,"1f9d1-1f3ff":0,"1f9d2-1f3fb":0,"1f9d2-1f3fc":0,"1f9d2-1f3fd":0,"1f9d2-1f3fe":0,"1f9d2-1f3ff":0,"1f9d3-1f3fb":0,"1f9d3-1f3fc":0,"1f9d3-1f3fd":0,"1f9d3-1f3fe":0,"1f9d3-1f3ff":0,"1f9d4-1f3fb":0,"1f9d4-1f3fc":0,"1f9d4-1f3fd":0,"1f9d4-1f3fe":0,"1f9d4-1f3ff":0,"1f9d5-1f3fb":0,"1f9d5-1f3fc":0,"1f9d5-1f3fd":0,"1f9d5-1f3fe":0,"1f9d5-1f3ff":0,"1f9d6-1f3fb-200d-2640":0,"1f9d6-1f3fc-200d-2640":0,"1f9d6-1f3fd-200d-2640":0,"1f9d6-1f3fe-200d-2640":0,"1f9d6-1f3ff-200d-2640":0,"1f9d6-1f3fb-200d-2642":0,"1f9d6-1f3fc-200d-2642":0,"1f9d6-1f3fd-200d-2642":0,"1f9d6-1f3fe-200d-2642":0,"1f9d6-1f3ff-200d-2642":0,"1f9d6-1f3fb":0,"1f9d6-1f3fc":0,"1f9d6-1f3fd":0,"1f9d6-1f3fe":0,"1f9d6-1f3ff":0,"1f9d7-1f3fb-200d-2640":0,"1f9d7-1f3fc-200d-2640":0,"1f9d7-1f3fd-200d-2640":0,"1f9d7-1f3fe-200d-2640":0,"1f9d7-1f3ff-200d-2640":0,"1f9d7-1f3fb-200d-2642":0,"1f9d7-1f3fc-200d-2642":0,"1f9d7-1f3fd-200d-2642":0,"1f9d7-1f3fe-200d-2642":0,"1f9d7-1f3ff-200d-2642":0,"1f9d7-1f3fb":0,"1f9d7-1f3fc":0,"1f9d7-1f3fd":0,"1f9d7-1f3fe":0,"1f9d7-1f3ff":0,"1f9d8-1f3fb-200d-2640":0,"1f9d8-1f3fc-200d-2640":0,"1f9d8-1f3fd-200d-2640":0,"1f9d8-1f3fe-200d-2640":0,"1f9d8-1f3ff-200d-2640":0,"1f9d8-1f3fb-200d-2642":0,"1f9d8-1f3fc-200d-2642":0,"1f9d8-1f3fd-200d-2642":0,"1f9d8-1f3fe-200d-2642":0,"1f9d8-1f3ff-200d-2642":0,"1f9d8-1f3fb":0,"1f9d8-1f3fc":0,"1f9d8-1f3fd":0,"1f9d8-1f3fe":0,"1f9d8-1f3ff":0,"1f9d9-1f3fb-200d-2640":0,"1f9d9-1f3fc-200d-2640":0,"1f9d9-1f3fd-200d-2640":0,"1f9d9-1f3fe-200d-2640":0,"1f9d9-1f3ff-200d-2640":0,"1f9d9-1f3fb-200d-2642":0,"1f9d9-1f3fc-200d-2642":0,"1f9d9-1f3fd-200d-2642":0,"1f9d9-1f3fe-200d-2642":0,"1f9d9-1f3ff-200d-2642":0,"1f9d9-1f3fb":0,"1f9d9-1f3fc":0,"1f9d9-1f3fd":0,"1f9d9-1f3fe":0,"1f9d9-1f3ff":0,"1f9da-1f3fb-200d-2640":0,"1f9da-1f3fc-200d-2640":0,"1f9da-1f3fd-200d-2640":0,"1f9da-1f3fe-200d-2640":0,"1f9da-1f3ff-200d-2640":0,"1f9da-1f3fb-200d-2642":0,"1f9da-1f3fc-200d-2642":0,"1f9da-1f3fd-200d-2642":0,"1f9da-1f3fe-200d-2642":0,"1f9da-1f3ff-200d-2642":0,"1f9da-1f3fb":0,"1f9da-1f3fc":0,"1f9da-1f3fd":0,"1f9da-1f3fe":0,"1f9da-1f3ff":0,"1f9db-1f3fb-200d-2640":0,"1f9db-1f3fc-200d-2640":0,"1f9db-1f3fd-200d-2640":0,"1f9db-1f3fe-200d-2640":0,"1f9db-1f3ff-200d-2640":0,"1f9db-1f3fb-200d-2642":0,"1f9db-1f3fc-200d-2642":0,"1f9db-1f3fd-200d-2642":0,"1f9db-1f3fe-200d-2642":0,"1f9db-1f3ff-200d-2642":0,"1f9db-1f3fb":0,"1f9db-1f3fc":0,"1f9db-1f3fd":0,"1f9db-1f3fe":0,"1f9db-1f3ff":0,"1f9dc-1f3fb-200d-2640":0,"1f9dc-1f3fc-200d-2640":0,"1f9dc-1f3fd-200d-2640":0,"1f9dc-1f3fe-200d-2640":0,"1f9dc-1f3ff-200d-2640":0,"1f9dc-1f3fb-200d-2642":0,"1f9dc-1f3fc-200d-2642":0,"1f9dc-1f3fd-200d-2642":0,"1f9dc-1f3fe-200d-2642":0,"1f9dc-1f3ff-200d-2642":0,"1f9dc-1f3fb":0,"1f9dc-1f3fc":0,"1f9dc-1f3fd":0,"1f9dc-1f3fe":0,"1f9dc-1f3ff":0,"1f9dd-1f3fb-200d-2640":0,"1f9dd-1f3fc-200d-2640":0,"1f9dd-1f3fd-200d-2640":0,"1f9dd-1f3fe-200d-2640":0,"1f9dd-1f3ff-200d-2640":0,"1f9dd-1f3fb-200d-2642":0,"1f9dd-1f3fc-200d-2642":0,"1f9dd-1f3fd-200d-2642":0,"1f9dd-1f3fe-200d-2642":0,"1f9dd-1f3ff-200d-2642":0,"1f9dd-1f3fb":0,"1f9dd-1f3fc":0,"1f9dd-1f3fd":0,"1f9dd-1f3fe":0,"1f9dd-1f3ff":0,"261d-1f3fb":0,"261d-1f3fc":0,"261d-1f3fd":0,"261d-1f3fe":0,"261d-1f3ff":0,"26f9-1f3fb-200d-2640":0,"26f9-1f3fc-200d-2640":0,"26f9-1f3fd-200d-2640":0,"26f9-1f3fe-200d-2640":0,"26f9-1f3ff-200d-2640":0,"26f9-1f3fb-200d-2642":0,"26f9-1f3fc-200d-2642":0,"26f9-1f3fd-200d-2642":0,"26f9-1f3fe-200d-2642":0,"26f9-1f3ff-200d-2642":0,"26f9-1f3fb":0,"26f9-1f3fc":0,"26f9-1f3fd":0,"26f9-1f3fe":0,"26f9-1f3ff":0,"270a-1f3fb":0,"270a-1f3fc":0,"270a-1f3fd":0,"270a-1f3fe":0,"270a-1f3ff":0,"270b-1f3fb":0,"270b-1f3fc":0,"270b-1f3fd":0,"270b-1f3fe":0,"270b-1f3ff":0,"270c-1f3fb":0,"270c-1f3fc":0,"270c-1f3fd":0,"270c-1f3fe":0,"270c-1f3ff":0,"270d-1f3fb":0,"270d-1f3fc":0,"270d-1f3fd":0,"270d-1f3fe":0,"270d-1f3ff":0} \ No newline at end of file diff --git a/src/scss/partials/_chatBubble.scss b/src/scss/partials/_chatBubble.scss index 7164be32..2b63e051 100644 --- a/src/scss/partials/_chatBubble.scss +++ b/src/scss/partials/_chatBubble.scss @@ -824,9 +824,12 @@ $bubble-margin: .25rem; margin: 0 4px 6px 4px; cursor: pointer; border-radius: 4px; + min-width: 10rem; &-content { - max-width: 300px; + //max-width: 300px; + position: absolute; + max-width: calc(100% - 24px); } } diff --git a/src/scss/partials/_chatEmojiHelper.scss b/src/scss/partials/_chatEmojiHelper.scss index 0205f6c8..66ebcbbd 100644 --- a/src/scss/partials/_chatEmojiHelper.scss +++ b/src/scss/partials/_chatEmojiHelper.scss @@ -12,8 +12,12 @@ } .super-emoji:not(.active) { - @include hover() { - background: none; - } - } + @include hover() { + background: none; + } + } + + .super-emoji.active { + background-color: var(--primary-color) !important; + } } diff --git a/src/scss/partials/_chatlist.scss b/src/scss/partials/_chatlist.scss index 0c68b629..8319b52f 100644 --- a/src/scss/partials/_chatlist.scss +++ b/src/scss/partials/_chatlist.scss @@ -76,11 +76,11 @@ } ul.chatlist { - padding: 0 .5rem .5rem; + padding: 0 .5rem/* .5rem */; - @include respond-to(handhelds) { + /* @include respond-to(handhelds) { padding: 0 0 .5rem; - } + } */ } .chatlist { diff --git a/src/scss/partials/popups/_instanceDeactivated.scss b/src/scss/partials/popups/_instanceDeactivated.scss new file mode 100644 index 00000000..c1081a0d --- /dev/null +++ b/src/scss/partials/popups/_instanceDeactivated.scss @@ -0,0 +1,22 @@ +.popup-instance-deactivated { + background-color: rgba(0, 0, 0, .6); + + .instance-deactivated-container { + margin: auto; + text-align: center; + pointer-events: none; + } + + .header { + font-size: 2rem; + color: #fff; + //line-height: var(--line-height); + } + + .subtitle { + color: #fff; + opacity: .6; + font-size: 1.5rem; + line-height: var(--line-height); + } +} diff --git a/src/scss/style.scss b/src/scss/style.scss index cdb3c988..b1512591 100644 --- a/src/scss/style.scss +++ b/src/scss/style.scss @@ -270,6 +270,7 @@ html.night { @import "partials/popups/datePicker"; @import "partials/popups/createPoll"; @import "partials/popups/forward"; +@import "partials/popups/instanceDeactivated"; @import "partials/pages/pages"; @import "partials/pages/authCode"; @@ -419,6 +420,34 @@ body { color: var(--primary-text-color); } +body.deactivated { + animation: grayscale-in var(--transition-standard-in) forwards; +} + +body.deactivated-backwards { + animation: grayscale-out var(--transition-standard-out) forwards; +} + +@keyframes grayscale-in { + 0% { + filter: grayscale(0); + } + + 100% { + filter: grayscale(1); + } +} + +@keyframes grayscale-out { + 0% { + filter: grayscale(1); + } + + 100% { + filter: grayscale(0); + } +} + /* body { position: absolute; top: 0; diff --git a/src/types.d.ts b/src/types.d.ts index ade9a964..1c107f97 100644 --- a/src/types.d.ts +++ b/src/types.d.ts @@ -81,5 +81,6 @@ export type ConnectionStatusChange = { name: string, isFileNetworker: boolean, isFileDownload: boolean, - isFileUpload: boolean + isFileUpload: boolean, + timeout?: number }; diff --git a/src/vendor/emoji/regex.ts b/src/vendor/emoji/regex.ts index b31120a8..84d1e11d 100644 --- a/src/vendor/emoji/regex.ts +++ b/src/vendor/emoji/regex.ts @@ -1,4 +1,21 @@ // Copyright Twitter Inc. Licensed under MIT // https://github.com/twitter/twemoji-parser/blob/master/LICENSE.md -export default "(?:\ud83d\udc68\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffc-\udfff]|\ud83d\udc68\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffd-\udfff]|\ud83d\udc68\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc68\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffd\udfff]|\ud83d\udc68\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffe]|\ud83d\udc69\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffc-\udfff]|\ud83d\udc69\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffc-\udfff]|\ud83d\udc69\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffd-\udfff]|\ud83d\udc69\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb\udffd-\udfff]|\ud83d\udc69\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc69\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc69\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffd\udfff]|\ud83d\udc69\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb-\udffd\udfff]|\ud83d\udc69\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffe]|\ud83d\udc69\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb-\udffe]|\ud83e\uddd1\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\u200d\ud83e\udd1d\u200d\ud83e\uddd1|\ud83d\udc6b\ud83c[\udffb-\udfff]|\ud83d\udc6c\ud83c[\udffb-\udfff]|\ud83d\udc6d\ud83c[\udffb-\udfff]|\ud83d[\udc6b-\udc6d])|(?:\ud83d[\udc68\udc69]|\ud83e\uddd1)(?:\ud83c[\udffb-\udfff])?\u200d(?:\u2695\ufe0f|\u2696\ufe0f|\u2708\ufe0f|\ud83c[\udf3e\udf73\udf7c\udf84\udf93\udfa4\udfa8\udfeb\udfed]|\ud83d[\udcbb\udcbc\udd27\udd2c\ude80\ude92]|\ud83e[\uddaf-\uddb3\uddbc\uddbd])|(?:\ud83c[\udfcb\udfcc]|\ud83d[\udd74\udd75]|\u26f9)((?:\ud83c[\udffb-\udfff]|\ufe0f)\u200d[\u2640\u2642]\ufe0f)|(?:\ud83c[\udfc3\udfc4\udfca]|\ud83d[\udc6e\udc70\udc71\udc73\udc77\udc81\udc82\udc86\udc87\ude45-\ude47\ude4b\ude4d\ude4e\udea3\udeb4-\udeb6]|\ud83e[\udd26\udd35\udd37-\udd39\udd3d\udd3e\uddb8\uddb9\uddcd-\uddcf\uddd6-\udddd])(?:\ud83c[\udffb-\udfff])?\u200d[\u2640\u2642]\ufe0f|(?:\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc68|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d[\udc68\udc69]|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc68|\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d[\udc68\udc69]|\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f|\ud83c\udff3\ufe0f\u200d\ud83c\udf08|\ud83c\udff4\u200d\u2620\ufe0f|\ud83d\udc15\u200d\ud83e\uddba|\ud83d\udc3b\u200d\u2744\ufe0f|\ud83d\udc41\u200d\ud83d\udde8|\ud83d\udc68\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83d\udc6f\u200d\u2640\ufe0f|\ud83d\udc6f\u200d\u2642\ufe0f|\ud83e\udd3c\u200d\u2640\ufe0f|\ud83e\udd3c\u200d\u2642\ufe0f|\ud83e\uddde\u200d\u2640\ufe0f|\ud83e\uddde\u200d\u2642\ufe0f|\ud83e\udddf\u200d\u2640\ufe0f|\ud83e\udddf\u200d\u2642\ufe0f|\ud83d\udc08\u200d\u2b1b)|[#*0-9]\ufe0f?\u20e3|(?:[©®\u2122\u265f]\ufe0f)|(?:\ud83c[\udc04\udd70\udd71\udd7e\udd7f\ude02\ude1a\ude2f\ude37\udf21\udf24-\udf2c\udf36\udf7d\udf96\udf97\udf99-\udf9b\udf9e\udf9f\udfcd\udfce\udfd4-\udfdf\udff3\udff5\udff7]|\ud83d[\udc3f\udc41\udcfd\udd49\udd4a\udd6f\udd70\udd73\udd76-\udd79\udd87\udd8a-\udd8d\udda5\udda8\uddb1\uddb2\uddbc\uddc2-\uddc4\uddd1-\uddd3\udddc-\uddde\udde1\udde3\udde8\uddef\uddf3\uddfa\udecb\udecd-\udecf\udee0-\udee5\udee9\udef0\udef3]|[\u203c\u2049\u2139\u2194-\u2199\u21a9\u21aa\u231a\u231b\u2328\u23cf\u23ed-\u23ef\u23f1\u23f2\u23f8-\u23fa\u24c2\u25aa\u25ab\u25b6\u25c0\u25fb-\u25fe\u2600-\u2604\u260e\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262a\u262e\u262f\u2638-\u263a\u2640\u2642\u2648-\u2653\u2660\u2663\u2665\u2666\u2668\u267b\u267f\u2692-\u2697\u2699\u269b\u269c\u26a0\u26a1\u26a7\u26aa\u26ab\u26b0\u26b1\u26bd\u26be\u26c4\u26c5\u26c8\u26cf\u26d1\u26d3\u26d4\u26e9\u26ea\u26f0-\u26f5\u26f8\u26fa\u26fd\u2702\u2708\u2709\u270f\u2712\u2714\u2716\u271d\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u2764\u27a1\u2934\u2935\u2b05-\u2b07\u2b1b\u2b1c\u2b50\u2b55\u3030\u303d\u3297\u3299])(?:\ufe0f|(?!\ufe0e))|(?:(?:\ud83c[\udfcb\udfcc]|\ud83d[\udd74\udd75\udd90]|[\u261d\u26f7\u26f9\u270c\u270d])(?:\ufe0f|(?!\ufe0e))|(?:\ud83c[\udf85\udfc2-\udfc4\udfc7\udfca]|\ud83d[\udc42\udc43\udc46-\udc50\udc66-\udc69\udc6e\udc70-\udc78\udc7c\udc81-\udc83\udc85-\udc87\udcaa\udd7a\udd95\udd96\ude45-\ude47\ude4b-\ude4f\udea3\udeb4-\udeb6\udec0\udecc]|\ud83e[\udd0c\udd0f\udd18-\udd1c\udd1e\udd1f\udd26\udd30-\udd39\udd3d\udd3e\udd77\uddb5\uddb6\uddb8\uddb9\uddbb\uddcd-\uddcf\uddd1-\udddd]|[\u270a\u270b]))(?:\ud83c[\udffb-\udfff])?|(?:\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f|\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f|\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f|\ud83c\udde6\ud83c[\udde8-\uddec\uddee\uddf1\uddf2\uddf4\uddf6-\uddfa\uddfc\uddfd\uddff]|\ud83c\udde7\ud83c[\udde6\udde7\udde9-\uddef\uddf1-\uddf4\uddf6-\uddf9\uddfb\uddfc\uddfe\uddff]|\ud83c\udde8\ud83c[\udde6\udde8\udde9\uddeb-\uddee\uddf0-\uddf5\uddf7\uddfa-\uddff]|\ud83c\udde9\ud83c[\uddea\uddec\uddef\uddf0\uddf2\uddf4\uddff]|\ud83c\uddea\ud83c[\udde6\udde8\uddea\uddec\udded\uddf7-\uddfa]|\ud83c\uddeb\ud83c[\uddee-\uddf0\uddf2\uddf4\uddf7]|\ud83c\uddec\ud83c[\udde6\udde7\udde9-\uddee\uddf1-\uddf3\uddf5-\uddfa\uddfc\uddfe]|\ud83c\udded\ud83c[\uddf0\uddf2\uddf3\uddf7\uddf9\uddfa]|\ud83c\uddee\ud83c[\udde8-\uddea\uddf1-\uddf4\uddf6-\uddf9]|\ud83c\uddef\ud83c[\uddea\uddf2\uddf4\uddf5]|\ud83c\uddf0\ud83c[\uddea\uddec-\uddee\uddf2\uddf3\uddf5\uddf7\uddfc\uddfe\uddff]|\ud83c\uddf1\ud83c[\udde6-\udde8\uddee\uddf0\uddf7-\uddfb\uddfe]|\ud83c\uddf2\ud83c[\udde6\udde8-\udded\uddf0-\uddff]|\ud83c\uddf3\ud83c[\udde6\udde8\uddea-\uddec\uddee\uddf1\uddf4\uddf5\uddf7\uddfa\uddff]|\ud83c\uddf4\ud83c\uddf2|\ud83c\uddf5\ud83c[\udde6\uddea-\udded\uddf0-\uddf3\uddf7-\uddf9\uddfc\uddfe]|\ud83c\uddf6\ud83c\udde6|\ud83c\uddf7\ud83c[\uddea\uddf4\uddf8\uddfa\uddfc]|\ud83c\uddf8\ud83c[\udde6-\uddea\uddec-\uddf4\uddf7-\uddf9\uddfb\uddfd-\uddff]|\ud83c\uddf9\ud83c[\udde6\udde8\udde9\uddeb-\udded\uddef-\uddf4\uddf7\uddf9\uddfb\uddfc\uddff]|\ud83c\uddfa\ud83c[\udde6\uddec\uddf2\uddf3\uddf8\uddfe\uddff]|\ud83c\uddfb\ud83c[\udde6\udde8\uddea\uddec\uddee\uddf3\uddfa]|\ud83c\uddfc\ud83c[\uddeb\uddf8]|\ud83c\uddfd\ud83c\uddf0|\ud83c\uddfe\ud83c[\uddea\uddf9]|\ud83c\uddff\ud83c[\udde6\uddf2\uddfc]|\ud83c[\udccf\udd8e\udd91-\udd9a\udde6-\uddff\ude01\ude32-\ude36\ude38-\ude3a\ude50\ude51\udf00-\udf20\udf2d-\udf35\udf37-\udf7c\udf7e-\udf84\udf86-\udf93\udfa0-\udfc1\udfc5\udfc6\udfc8\udfc9\udfcf-\udfd3\udfe0-\udff0\udff4\udff8-\udfff]|\ud83d[\udc00-\udc3e\udc40\udc44\udc45\udc51-\udc65\udc6a\udc6f\udc79-\udc7b\udc7d-\udc80\udc84\udc88-\udca9\udcab-\udcfc\udcff-\udd3d\udd4b-\udd4e\udd50-\udd67\udda4\uddfb-\ude44\ude48-\ude4a\ude80-\udea2\udea4-\udeb3\udeb7-\udebf\udec1-\udec5\uded0-\uded2\uded5-\uded7\udeeb\udeec\udef4-\udefc\udfe0-\udfeb]|\ud83e[\udd0d\udd0e\udd10-\udd17\udd1d\udd20-\udd25\udd27-\udd2f\udd3a\udd3c\udd3f-\udd45\udd47-\udd76\udd78\udd7a-\uddb4\uddb7\uddba\uddbc-\uddcb\uddd0\uddde-\uddff\ude70-\ude74\ude78-\ude7a\ude80-\ude86\ude90-\udea8\udeb0-\udeb6\udec0-\udec2\uded0-\uded6]|[\u23e9-\u23ec\u23f0\u23f3\u267e\u26ce\u2705\u2728\u274c\u274e\u2753-\u2755\u2795-\u2797\u27b0\u27bf\ue50a])|\ufe0f"; \ No newline at end of file +//const originalString = "(?:\ud83d\udc68\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffc-\udfff]|\ud83d\udc68\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffd-\udfff]|\ud83d\udc68\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc68\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffd\udfff]|\ud83d\udc68\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffe]|\ud83d\udc69\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffc-\udfff]|\ud83d\udc69\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffc-\udfff]|\ud83d\udc69\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffd-\udfff]|\ud83d\udc69\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb\udffd-\udfff]|\ud83d\udc69\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc69\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc69\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffd\udfff]|\ud83d\udc69\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb-\udffd\udfff]|\ud83d\udc69\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffe]|\ud83d\udc69\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb-\udffe]|\ud83e\uddd1\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\u200d\ud83e\udd1d\u200d\ud83e\uddd1|\ud83d\udc6b\ud83c[\udffb-\udfff]|\ud83d\udc6c\ud83c[\udffb-\udfff]|\ud83d\udc6d\ud83c[\udffb-\udfff]|\ud83d[\udc6b-\udc6d])|(?:\ud83d[\udc68\udc69]|\ud83e\uddd1)(?:\ud83c[\udffb-\udfff])?\u200d(?:\u2695\ufe0f|\u2696\ufe0f|\u2708\ufe0f|\ud83c[\udf3e\udf73\udf7c\udf84\udf93\udfa4\udfa8\udfeb\udfed]|\ud83d[\udcbb\udcbc\udd27\udd2c\ude80\ude92]|\ud83e[\uddaf-\uddb3\uddbc\uddbd])|(?:\ud83c[\udfcb\udfcc]|\ud83d[\udd74\udd75]|\u26f9)((?:\ud83c[\udffb-\udfff]|\ufe0f)\u200d[\u2640\u2642]\ufe0f)|(?:\ud83c[\udfc3\udfc4\udfca]|\ud83d[\udc6e\udc70\udc71\udc73\udc77\udc81\udc82\udc86\udc87\ude45-\ude47\ude4b\ude4d\ude4e\udea3\udeb4-\udeb6]|\ud83e[\udd26\udd35\udd37-\udd39\udd3d\udd3e\uddb8\uddb9\uddcd-\uddcf\uddd6-\udddd])(?:\ud83c[\udffb-\udfff])?\u200d[\u2640\u2642]\ufe0f|(?:\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc68|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d[\udc68\udc69]|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc68|\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d[\udc68\udc69]|\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f|\ud83c\udff3\ufe0f\u200d\ud83c\udf08|\ud83c\udff4\u200d\u2620\ufe0f|\ud83d\udc15\u200d\ud83e\uddba|\ud83d\udc3b\u200d\u2744\ufe0f|\ud83d\udc41\u200d\ud83d\udde8|\ud83d\udc68\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83d\udc6f\u200d\u2640\ufe0f|\ud83d\udc6f\u200d\u2642\ufe0f|\ud83e\udd3c\u200d\u2640\ufe0f|\ud83e\udd3c\u200d\u2642\ufe0f|\ud83e\uddde\u200d\u2640\ufe0f|\ud83e\uddde\u200d\u2642\ufe0f|\ud83e\udddf\u200d\u2640\ufe0f|\ud83e\udddf\u200d\u2642\ufe0f|\ud83d\udc08\u200d\u2b1b)|[#*0-9]\ufe0f?\u20e3|(?:[©®\u2122\u265f]\ufe0f)|(?:\ud83c[\udc04\udd70\udd71\udd7e\udd7f\ude02\ude1a\ude2f\ude37\udf21\udf24-\udf2c\udf36\udf7d\udf96\udf97\udf99-\udf9b\udf9e\udf9f\udfcd\udfce\udfd4-\udfdf\udff3\udff5\udff7]|\ud83d[\udc3f\udc41\udcfd\udd49\udd4a\udd6f\udd70\udd73\udd76-\udd79\udd87\udd8a-\udd8d\udda5\udda8\uddb1\uddb2\uddbc\uddc2-\uddc4\uddd1-\uddd3\udddc-\uddde\udde1\udde3\udde8\uddef\uddf3\uddfa\udecb\udecd-\udecf\udee0-\udee5\udee9\udef0\udef3]|[\u203c\u2049\u2139\u2194-\u2199\u21a9\u21aa\u231a\u231b\u2328\u23cf\u23ed-\u23ef\u23f1\u23f2\u23f8-\u23fa\u24c2\u25aa\u25ab\u25b6\u25c0\u25fb-\u25fe\u2600-\u2604\u260e\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262a\u262e\u262f\u2638-\u263a\u2640\u2642\u2648-\u2653\u2660\u2663\u2665\u2666\u2668\u267b\u267f\u2692-\u2697\u2699\u269b\u269c\u26a0\u26a1\u26a7\u26aa\u26ab\u26b0\u26b1\u26bd\u26be\u26c4\u26c5\u26c8\u26cf\u26d1\u26d3\u26d4\u26e9\u26ea\u26f0-\u26f5\u26f8\u26fa\u26fd\u2702\u2708\u2709\u270f\u2712\u2714\u2716\u271d\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u2764\u27a1\u2934\u2935\u2b05-\u2b07\u2b1b\u2b1c\u2b50\u2b55\u3030\u303d\u3297\u3299])(?:\ufe0f|(?!\ufe0e))|(?:(?:\ud83c[\udfcb\udfcc]|\ud83d[\udd74\udd75\udd90]|[\u261d\u26f7\u26f9\u270c\u270d])(?:\ufe0f|(?!\ufe0e))|(?:\ud83c[\udf85\udfc2-\udfc4\udfc7\udfca]|\ud83d[\udc42\udc43\udc46-\udc50\udc66-\udc69\udc6e\udc70-\udc78\udc7c\udc81-\udc83\udc85-\udc87\udcaa\udd7a\udd95\udd96\ude45-\ude47\ude4b-\ude4f\udea3\udeb4-\udeb6\udec0\udecc]|\ud83e[\udd0c\udd0f\udd18-\udd1c\udd1e\udd1f\udd26\udd30-\udd39\udd3d\udd3e\udd77\uddb5\uddb6\uddb8\uddb9\uddbb\uddcd-\uddcf\uddd1-\udddd]|[\u270a\u270b]))(?:\ud83c[\udffb-\udfff])?|(?:\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f|\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f|\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f|\ud83c\udde6\ud83c[\udde8-\uddec\uddee\uddf1\uddf2\uddf4\uddf6-\uddfa\uddfc\uddfd\uddff]|\ud83c\udde7\ud83c[\udde6\udde7\udde9-\uddef\uddf1-\uddf4\uddf6-\uddf9\uddfb\uddfc\uddfe\uddff]|\ud83c\udde8\ud83c[\udde6\udde8\udde9\uddeb-\uddee\uddf0-\uddf5\uddf7\uddfa-\uddff]|\ud83c\udde9\ud83c[\uddea\uddec\uddef\uddf0\uddf2\uddf4\uddff]|\ud83c\uddea\ud83c[\udde6\udde8\uddea\uddec\udded\uddf7-\uddfa]|\ud83c\uddeb\ud83c[\uddee-\uddf0\uddf2\uddf4\uddf7]|\ud83c\uddec\ud83c[\udde6\udde7\udde9-\uddee\uddf1-\uddf3\uddf5-\uddfa\uddfc\uddfe]|\ud83c\udded\ud83c[\uddf0\uddf2\uddf3\uddf7\uddf9\uddfa]|\ud83c\uddee\ud83c[\udde8-\uddea\uddf1-\uddf4\uddf6-\uddf9]|\ud83c\uddef\ud83c[\uddea\uddf2\uddf4\uddf5]|\ud83c\uddf0\ud83c[\uddea\uddec-\uddee\uddf2\uddf3\uddf5\uddf7\uddfc\uddfe\uddff]|\ud83c\uddf1\ud83c[\udde6-\udde8\uddee\uddf0\uddf7-\uddfb\uddfe]|\ud83c\uddf2\ud83c[\udde6\udde8-\udded\uddf0-\uddff]|\ud83c\uddf3\ud83c[\udde6\udde8\uddea-\uddec\uddee\uddf1\uddf4\uddf5\uddf7\uddfa\uddff]|\ud83c\uddf4\ud83c\uddf2|\ud83c\uddf5\ud83c[\udde6\uddea-\udded\uddf0-\uddf3\uddf7-\uddf9\uddfc\uddfe]|\ud83c\uddf6\ud83c\udde6|\ud83c\uddf7\ud83c[\uddea\uddf4\uddf8\uddfa\uddfc]|\ud83c\uddf8\ud83c[\udde6-\uddea\uddec-\uddf4\uddf7-\uddf9\uddfb\uddfd-\uddff]|\ud83c\uddf9\ud83c[\udde6\udde8\udde9\uddeb-\udded\uddef-\uddf4\uddf7\uddf9\uddfb\uddfc\uddff]|\ud83c\uddfa\ud83c[\udde6\uddec\uddf2\uddf3\uddf8\uddfe\uddff]|\ud83c\uddfb\ud83c[\udde6\udde8\uddea\uddec\uddee\uddf3\uddfa]|\ud83c\uddfc\ud83c[\uddeb\uddf8]|\ud83c\uddfd\ud83c\uddf0|\ud83c\uddfe\ud83c[\uddea\uddf9]|\ud83c\uddff\ud83c[\udde6\uddf2\uddfc]|\ud83c[\udccf\udd8e\udd91-\udd9a\udde6-\uddff\ude01\ude32-\ude36\ude38-\ude3a\ude50\ude51\udf00-\udf20\udf2d-\udf35\udf37-\udf7c\udf7e-\udf84\udf86-\udf93\udfa0-\udfc1\udfc5\udfc6\udfc8\udfc9\udfcf-\udfd3\udfe0-\udff0\udff4\udff8-\udfff]|\ud83d[\udc00-\udc3e\udc40\udc44\udc45\udc51-\udc65\udc6a\udc6f\udc79-\udc7b\udc7d-\udc80\udc84\udc88-\udca9\udcab-\udcfc\udcff-\udd3d\udd4b-\udd4e\udd50-\udd67\udda4\uddfb-\ude44\ude48-\ude4a\ude80-\udea2\udea4-\udeb3\udeb7-\udebf\udec1-\udec5\uded0-\uded2\uded5-\uded7\udeeb\udeec\udef4-\udefc\udfe0-\udfeb]|\ud83e[\udd0d\udd0e\udd10-\udd17\udd1d\udd20-\udd25\udd27-\udd2f\udd3a\udd3c\udd3f-\udd45\udd47-\udd76\udd78\udd7a-\uddb4\uddb7\uddba\uddbc-\uddcb\uddd0\uddde-\uddff\ude70-\ude74\ude78-\ude7a\ude80-\ude86\ude90-\udea8\udeb0-\udeb6\udec0-\udec2\uded0-\uded6]|[\u23e9-\u23ec\u23f0\u23f3\u267e\u26ce\u2705\u2728\u274c\u274e\u2753-\u2755\u2795-\u2797\u27b0\u27bf\ue50a])|\ufe0f"; +const originalString = "(?:\ud83d\udc68\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffc-\udfff]|\ud83d\udc68\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffd-\udfff]|\ud83d\udc68\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc68\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffd\udfff]|\ud83d\udc68\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffe]|\ud83d\udc69\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffc-\udfff]|\ud83d\udc69\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffc-\udfff]|\ud83d\udc69\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffd-\udfff]|\ud83d\udc69\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb\udffd-\udfff]|\ud83d\udc69\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc69\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc69\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffd\udfff]|\ud83d\udc69\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb-\udffd\udfff]|\ud83d\udc69\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffe]|\ud83d\udc69\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb-\udffe]|\ud83e\uddd1\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\u200d\ud83e\udd1d\u200d\ud83e\uddd1|\ud83d\udc6b\ud83c[\udffb-\udfff]|\ud83d\udc6c\ud83c[\udffb-\udfff]|\ud83d\udc6d\ud83c[\udffb-\udfff]|\ud83d[\udc6b-\udc6d])|(?:\ud83d[\udc68\udc69]|\ud83e\uddd1)(?:\ud83c[\udffb-\udfff])?\u200d(?:\u2695\ufe0f|\u2696\ufe0f|\u2708\ufe0f|\ud83c[\udf3e\udf73\udf7c\udf84\udf93\udfa4\udfa8\udfeb\udfed]|\ud83d[\udcbb\udcbc\udd27\udd2c\ude80\ude92]|\ud83e[\uddaf-\uddb3\uddbc\uddbd])|(?:\ud83c[\udfcb\udfcc]|\ud83d[\udd74\udd75]|\u26f9)((?:\ud83c[\udffb-\udfff]|\ufe0f)\u200d[\u2640\u2642]\ufe0f)|(?:\ud83c[\udfc3\udfc4\udfca]|\ud83d[\udc6e\udc70\udc71\udc73\udc77\udc81\udc82\udc86\udc87\ude45-\ude47\ude4b\ude4d\ude4e\udea3\udeb4-\udeb6]|\ud83e[\udd26\udd35\udd37-\udd39\udd3d\udd3e\uddb8\uddb9\uddcd-\uddcf\uddd6-\udddd])(?:\ud83c[\udffb-\udfff])?\u200d[\u2640\u2642]\ufe0f|(?:\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc68|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d[\udc68\udc69]|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc68|\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d[\udc68\udc69]|\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f|\ud83c\udff3\ufe0f\u200d\ud83c\udf08|\ud83c\udff4\u200d\u2620\ufe0f|\ud83d\udc15\u200d\ud83e\uddba|\ud83d\udc3b\u200d\u2744\ufe0f|\ud83d\udc41\u200d\ud83d\udde8|\ud83d\udc68\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83d\udc6f\u200d\u2640\ufe0f|\ud83d\udc6f\u200d\u2642\ufe0f|\ud83e\udd3c\u200d\u2640\ufe0f|\ud83e\udd3c\u200d\u2642\ufe0f|\ud83e\uddde\u200d\u2640\ufe0f|\ud83e\uddde\u200d\u2642\ufe0f|\ud83e\udddf\u200d\u2640\ufe0f|\ud83e\udddf\u200d\u2642\ufe0f|\ud83d\udc08\u200d\u2b1b)|[#*0-9]\ufe0f?\u20e3|(?:[©®\u2122\u265f]\ufe0f)|(?:\ud83c[\udc04\udd70\udd71\udd7e\udd7f\ude02\ude1a\ude2f\ude37\udf21\udf24-\udf2c\udf36\udf7d\udf96\udf97\udf99-\udf9b\udf9e\udf9f\udfcd\udfce\udfd4-\udfdf\udff3\udff5\udff7]|\ud83d[\udc3f\udc41\udcfd\udd49\udd4a\udd6f\udd70\udd73\udd76-\udd79\udd87\udd8a-\udd8d\udda5\udda8\uddb1\uddb2\uddbc\uddc2-\uddc4\uddd1-\uddd3\udddc-\uddde\udde1\udde3\udde8\uddef\uddf3\uddfa\udecb\udecd-\udecf\udee0-\udee5\udee9\udef0\udef3]|[\u203c\u2049\u2139\u2194-\u2199\u21a9\u21aa\u231a\u231b\u2328\u23cf\u23ed-\u23ef\u23f1\u23f2\u23f8-\u23fa\u24c2\u25aa\u25ab\u25b6\u25c0\u25fb-\u25fe\u2600-\u2604\u260e\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262a\u262e\u262f\u2638-\u263a\u2640\u2642\u2648-\u2653\u2660\u2663\u2665\u2666\u2668\u267b\u267f\u2692-\u2697\u2699\u269b\u269c\u26a0\u26a1\u26a7\u26aa\u26ab\u26b0\u26b1\u26bd\u26be\u26c4\u26c5\u26c8\u26cf\u26d1\u26d3\u26d4\u26e9\u26ea\u26f0-\u26f5\u26f8\u26fa\u26fd\u2702\u2708\u2709\u270f\u2712\u2714\u2716\u271d\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u2764\u27a1\u2934\u2935\u2b05-\u2b07\u2b1b\u2b1c\u2b50\u2b55\u3030\u303d\u3297\u3299])(?:\ufe0f|(?!\ufe0e))|(?:(?:\ud83c[\udfcb\udfcc]|\ud83d[\udd74\udd75\udd90]|[\u261d\u26f7\u26f9\u270c\u270d])(?:\ufe0f|(?!\ufe0e))|(?:\ud83c[\udf85\udfc2-\udfc4\udfc7\udfca]|\ud83d[\udc42\udc43\udc46-\udc50\udc66-\udc69\udc6e\udc70-\udc78\udc7c\udc81-\udc83\udc85-\udc87\udcaa\udd7a\udd95\udd96\ude45-\ude47\ude4b-\ude4f\udea3\udeb4-\udeb6\udec0\udecc]|\ud83e[\udd0c\udd0f\udd18-\udd1c\udd1e\udd1f\udd26\udd30-\udd39\udd3d\udd3e\udd77\uddb5\uddb6\uddb8\uddb9\uddbb\uddcd-\uddcf\uddd1-\udddd]|[\u270a\u270b]))(?:\ud83c[\udffb-\udfff])?|(?:\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f|\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f|\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f|\ud83c\udde6\ud83c[\udde8-\uddec\uddee\uddf1\uddf2\uddf4\uddf6-\uddfa\uddfc\uddfd\uddff]|\ud83c\udde7\ud83c[\udde6\udde7\udde9-\uddef\uddf1-\uddf4\uddf6-\uddf9\uddfb\uddfc\uddfe\uddff]|\ud83c\udde8\ud83c[\udde6\udde8\udde9\uddeb-\uddee\uddf0-\uddf5\uddf7\uddfa-\uddff]|\ud83c\udde9\ud83c[\uddea\uddec\uddef\uddf0\uddf2\uddf4\uddff]|\ud83c\uddea\ud83c[\udde6\udde8\uddea\uddec\udded\uddf7-\uddfa]|\ud83c\uddeb\ud83c[\uddee-\uddf0\uddf2\uddf4\uddf7]|\ud83c\uddec\ud83c[\udde6\udde7\udde9-\uddee\uddf1-\uddf3\uddf5-\uddfa\uddfc\uddfe]|\ud83c\udded\ud83c[\uddf0\uddf2\uddf3\uddf7\uddf9\uddfa]|\ud83c\uddee\ud83c[\udde8-\uddea\uddf1-\uddf4\uddf6-\uddf9]|\ud83c\uddef\ud83c[\uddea\uddf2\uddf4\uddf5]|\ud83c\uddf0\ud83c[\uddea\uddec-\uddee\uddf2\uddf3\uddf5\uddf7\uddfc\uddfe\uddff]|\ud83c\uddf1\ud83c[\udde6-\udde8\uddee\uddf0\uddf7-\uddfb\uddfe]|\ud83c\uddf2\ud83c[\udde6\udde8-\udded\uddf0-\uddff]|\ud83c\uddf3\ud83c[\udde6\udde8\uddea-\uddec\uddee\uddf1\uddf4\uddf5\uddf7\uddfa\uddff]|\ud83c\uddf4\ud83c\uddf2|\ud83c\uddf5\ud83c[\udde6\uddea-\udded\uddf0-\uddf3\uddf7-\uddf9\uddfc\uddfe]|\ud83c\uddf6\ud83c\udde6|\ud83c\uddf7\ud83c[\uddea\uddf4\uddf8\uddfa\uddfc]|\ud83c\uddf8\ud83c[\udde6-\uddea\uddec-\uddf4\uddf7-\uddf9\uddfb\uddfd-\uddff]|\ud83c\uddf9\ud83c[\udde6\udde8\udde9\uddeb-\udded\uddef-\uddf4\uddf7\uddf9\uddfb\uddfc\uddff]|\ud83c\uddfa\ud83c[\udde6\uddec\uddf2\uddf3\uddf8\uddfe\uddff]|\ud83c\uddfb\ud83c[\udde6\udde8\uddea\uddec\uddee\uddf3\uddfa]|\ud83c\uddfc\ud83c[\uddeb\uddf8]|\ud83c\uddfd\ud83c\uddf0|\ud83c\uddfe\ud83c[\uddea\uddf9]|\ud83c\uddff\ud83c[\udde6\uddf2\uddfc]|\ud83c[\udccf\udd8e\udd91-\udd9a\udde6-\uddff\ude01\ude32-\ude36\ude38-\ude3a\ude50\ude51\udf00-\udf20\udf2d-\udf35\udf37-\udf7c\udf7e-\udf84\udf86-\udf93\udfa0-\udfc1\udfc5\udfc6\udfc8\udfc9\udfcf-\udfd3\udfe0-\udff0\udff4\udff8-\udfff]|\ud83d[\udc00-\udc3e\udc40\udc44\udc45\udc51-\udc65\udc6a\udc6f\udc79-\udc7b\udc7d-\udc80\udc84\udc88-\udca9\udcab-\udcfc\udcff-\udd3d\udd4b-\udd4e\udd50-\udd67\udda4\uddfb-\ude44\ude48-\ude4a\ude80-\udea2\udea4-\udeb3\udeb7-\udebf\udec1-\udec5\uded0-\uded2\uded5-\uded7\udeeb\udeec\udef4-\udefc\udfe0-\udfeb]|\ud83e[\udd0d\udd0e\udd10-\udd17\udd1d\udd20-\udd25\udd27-\udd2f\udd3a\udd3c\udd3f-\udd45\udd47-\udd76\udd78\udd7a-\uddb4\uddb7\uddba\uddbc-\uddcb\uddd0\uddde-\uddff\ude70-\ude74\ude78-\ude7a\ude80-\ude86\ude90-\udea8\udeb0-\udeb6\udec0-\udec2\uded0-\uded6]|[\u23e9-\u23ec\u23f0\u23f3\u267e\u26ce\u2705\u2728\u274c\u274e\u2753-\u2755\u2795-\u2797\u27b0\u27bf\ue50a])|\ufe0f"; + +// clear \ufe0f because it is unneeded (in most cases) +const correctString = originalString + // .replace(/\|?\ufe0f/g, '') + // .replace(/\|?\ufe0f(?!\?|\u200d|\()/g, '') + // .replace(/\|?\ufe0f(?!\?|\)?\u200d|\()/g, '') // this one is correct + .replace(/\|?\ufe0f(?!\?|\)?\u200d|\()/g, '\ufe0f?') // better use it with below one + .replace(/\|\ufe0f\?/g, '|\ufe0f') + ///////////.replace(/(\?:.+?\|\ufe0f\))/g, '$1?') + /* .replace(/\|?\ufe0f(?!\?|\)?\u200d|\()/g, '\ufe0f?') // better use it with below one + .replace(/\|\ufe0f\?(\))?/g, '|\ufe0f$1?') */ + // .replace(/\ufe0f(?!\?)/g, '\ufe0f?') + //.replace(new RegExp(escapeRegExp("(?:|(?!︎))"), 'g'), ''); + .replace(/(\?:)\|/g, '$1') + '|\ufe0f'; +//console.log('emoji regexp', /* originalString, */correctString, correctString.includes("\ufe0f"), correctString.includes("\ud83c\udff3\ufe0f\u200d\ud83c\udf08")); +export default correctString;