├── .eslintrc.js ├── .gitignore ├── LICENSE.md ├── README.md ├── css └── style.css ├── emojiworker.js ├── favicon ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── mstile-150x150.png └── safari-pinned-tab.svg ├── fetcher └── svg.php ├── img ├── backward.png ├── clear.png ├── copy.png ├── delete.png ├── download.png ├── forward.png ├── handle.png ├── info.png ├── logo.svg └── oval.svg ├── index.html ├── js └── emojibuilder.js ├── manifest.json ├── svgs_detailed.json └── svgs_latest.json /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "extends": "google", 3 | "parserOptions": { 4 | "ecmaVersion": 8, 5 | }, 6 | "env": { 7 | "node": true, 8 | "es6": true 9 | }, 10 | "rules": { 11 | "max-len": 0 12 | } 13 | }; -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | yarn.lock 4 | *.code-workspace 5 | .htaccess 6 | .vscode 7 | fetcher/svg/ 8 | 9 | fetcher/twemoji/ 10 | 11 | fetcher/emoji-test\.txt 12 | 13 | svg/ 14 | 15 | css/style\.min\.css 16 | 17 | js/emojibuilder\.min\.js 18 | 19 | svg_detailed/ 20 | 21 | svg_latest/ 22 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | 2 | GNU AFFERO GENERAL PUBLIC LICENSE 3 | Version 3, 19 November 2007 4 | 5 | Copyright (C) 2007 Free Software Foundation, Inc. 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The GNU Affero General Public License is a free, copyleft license for 12 | software and other kinds of works, specifically designed to ensure 13 | cooperation with the community in the case of network server software. 14 | 15 | The licenses for most software and other practical works are designed 16 | to take away your freedom to share and change the works. By contrast, 17 | our General Public Licenses are intended to guarantee your freedom to 18 | share and change all versions of a program--to make sure it remains free 19 | software for all its users. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | them if you wish), that you receive source code or can get it if you 25 | want it, that you can change the software or use pieces of it in new 26 | free programs, and that you know you can do these things. 27 | 28 | Developers that use our General Public Licenses protect your rights 29 | with two steps: (1) assert copyright on the software, and (2) offer 30 | you this License which gives you legal permission to copy, distribute 31 | and/or modify the software. 32 | 33 | A secondary benefit of defending all users' freedom is that 34 | improvements made in alternate versions of the program, if they 35 | receive widespread use, become available for other developers to 36 | incorporate. Many developers of free software are heartened and 37 | encouraged by the resulting cooperation. However, in the case of 38 | software used on network servers, this result may fail to come about. 39 | The GNU General Public License permits making a modified version and 40 | letting the public access it on a server without ever releasing its 41 | source code to the public. 42 | 43 | The GNU Affero General Public License is designed specifically to 44 | ensure that, in such cases, the modified source code becomes available 45 | to the community. It requires the operator of a network server to 46 | provide the source code of the modified version running there to the 47 | users of that server. Therefore, public use of a modified version, on 48 | a publicly accessible server, gives the public access to the source 49 | code of the modified version. 50 | 51 | An older license, called the Affero General Public License and 52 | published by Affero, was designed to accomplish similar goals. This is 53 | a different license, not a version of the Affero GPL, but Affero has 54 | released a new version of the Affero GPL which permits relicensing under 55 | this license. 56 | 57 | The precise terms and conditions for copying, distribution and 58 | modification follow. 59 | 60 | TERMS AND CONDITIONS 61 | 62 | 0. Definitions. 63 | 64 | "This License" refers to version 3 of the GNU Affero General Public License. 65 | 66 | "Copyright" also means copyright-like laws that apply to other kinds of 67 | works, such as semiconductor masks. 68 | 69 | "The Program" refers to any copyrightable work licensed under this 70 | License. Each licensee is addressed as "you". "Licensees" and 71 | "recipients" may be individuals or organizations. 72 | 73 | To "modify" a work means to copy from or adapt all or part of the work 74 | in a fashion requiring copyright permission, other than the making of an 75 | exact copy. The resulting work is called a "modified version" of the 76 | earlier work or a work "based on" the earlier work. 77 | 78 | A "covered work" means either the unmodified Program or a work based 79 | on the Program. 80 | 81 | To "propagate" a work means to do anything with it that, without 82 | permission, would make you directly or secondarily liable for 83 | infringement under applicable copyright law, except executing it on a 84 | computer or modifying a private copy. Propagation includes copying, 85 | distribution (with or without modification), making available to the 86 | public, and in some countries other activities as well. 87 | 88 | To "convey" a work means any kind of propagation that enables other 89 | parties to make or receive copies. Mere interaction with a user through 90 | a computer network, with no transfer of a copy, is not conveying. 91 | 92 | An interactive user interface displays "Appropriate Legal Notices" 93 | to the extent that it includes a convenient and prominently visible 94 | feature that (1) displays an appropriate copyright notice, and (2) 95 | tells the user that there is no warranty for the work (except to the 96 | extent that warranties are provided), that licensees may convey the 97 | work under this License, and how to view a copy of this License. If 98 | the interface presents a list of user commands or options, such as a 99 | menu, a prominent item in the list meets this criterion. 100 | 101 | 1. Source Code. 102 | 103 | The "source code" for a work means the preferred form of the work 104 | for making modifications to it. "Object code" means any non-source 105 | form of a work. 106 | 107 | A "Standard Interface" means an interface that either is an official 108 | standard defined by a recognized standards body, or, in the case of 109 | interfaces specified for a particular programming language, one that 110 | is widely used among developers working in that language. 111 | 112 | The "System Libraries" of an executable work include anything, other 113 | than the work as a whole, that (a) is included in the normal form of 114 | packaging a Major Component, but which is not part of that Major 115 | Component, and (b) serves only to enable use of the work with that 116 | Major Component, or to implement a Standard Interface for which an 117 | implementation is available to the public in source code form. A 118 | "Major Component", in this context, means a major essential component 119 | (kernel, window system, and so on) of the specific operating system 120 | (if any) on which the executable work runs, or a compiler used to 121 | produce the work, or an object code interpreter used to run it. 122 | 123 | The "Corresponding Source" for a work in object code form means all 124 | the source code needed to generate, install, and (for an executable 125 | work) run the object code and to modify the work, including scripts to 126 | control those activities. However, it does not include the work's 127 | System Libraries, or general-purpose tools or generally available free 128 | programs which are used unmodified in performing those activities but 129 | which are not part of the work. For example, Corresponding Source 130 | includes interface definition files associated with source files for 131 | the work, and the source code for shared libraries and dynamically 132 | linked subprograms that the work is specifically designed to require, 133 | such as by intimate data communication or control flow between those 134 | subprograms and other parts of the work. 135 | 136 | The Corresponding Source need not include anything that users 137 | can regenerate automatically from other parts of the Corresponding 138 | Source. 139 | 140 | The Corresponding Source for a work in source code form is that 141 | same work. 142 | 143 | 2. Basic Permissions. 144 | 145 | All rights granted under this License are granted for the term of 146 | copyright on the Program, and are irrevocable provided the stated 147 | conditions are met. This License explicitly affirms your unlimited 148 | permission to run the unmodified Program. The output from running a 149 | covered work is covered by this License only if the output, given its 150 | content, constitutes a covered work. This License acknowledges your 151 | rights of fair use or other equivalent, as provided by copyright law. 152 | 153 | You may make, run and propagate covered works that you do not 154 | convey, without conditions so long as your license otherwise remains 155 | in force. You may convey covered works to others for the sole purpose 156 | of having them make modifications exclusively for you, or provide you 157 | with facilities for running those works, provided that you comply with 158 | the terms of this License in conveying all material for which you do 159 | not control copyright. Those thus making or running the covered works 160 | for you must do so exclusively on your behalf, under your direction 161 | and control, on terms that prohibit them from making any copies of 162 | your copyrighted material outside their relationship with you. 163 | 164 | Conveying under any other circumstances is permitted solely under 165 | the conditions stated below. Sublicensing is not allowed; section 10 166 | makes it unnecessary. 167 | 168 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 169 | 170 | No covered work shall be deemed part of an effective technological 171 | measure under any applicable law fulfilling obligations under article 172 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 173 | similar laws prohibiting or restricting circumvention of such 174 | measures. 175 | 176 | When you convey a covered work, you waive any legal power to forbid 177 | circumvention of technological measures to the extent such circumvention 178 | is effected by exercising rights under this License with respect to 179 | the covered work, and you disclaim any intention to limit operation or 180 | modification of the work as a means of enforcing, against the work's 181 | users, your or third parties' legal rights to forbid circumvention of 182 | technological measures. 183 | 184 | 4. Conveying Verbatim Copies. 185 | 186 | You may convey verbatim copies of the Program's source code as you 187 | receive it, in any medium, provided that you conspicuously and 188 | appropriately publish on each copy an appropriate copyright notice; 189 | keep intact all notices stating that this License and any 190 | non-permissive terms added in accord with section 7 apply to the code; 191 | keep intact all notices of the absence of any warranty; and give all 192 | recipients a copy of this License along with the Program. 193 | 194 | You may charge any price or no price for each copy that you convey, 195 | and you may offer support or warranty protection for a fee. 196 | 197 | 5. Conveying Modified Source Versions. 198 | 199 | You may convey a work based on the Program, or the modifications to 200 | produce it from the Program, in the form of source code under the 201 | terms of section 4, provided that you also meet all of these conditions: 202 | 203 | a) The work must carry prominent notices stating that you modified 204 | it, and giving a relevant date. 205 | 206 | b) The work must carry prominent notices stating that it is 207 | released under this License and any conditions added under section 208 | 7. This requirement modifies the requirement in section 4 to 209 | "keep intact all notices". 210 | 211 | c) You must license the entire work, as a whole, under this 212 | License to anyone who comes into possession of a copy. This 213 | License will therefore apply, along with any applicable section 7 214 | additional terms, to the whole of the work, and all its parts, 215 | regardless of how they are packaged. This License gives no 216 | permission to license the work in any other way, but it does not 217 | invalidate such permission if you have separately received it. 218 | 219 | d) If the work has interactive user interfaces, each must display 220 | Appropriate Legal Notices; however, if the Program has interactive 221 | interfaces that do not display Appropriate Legal Notices, your 222 | work need not make them do so. 223 | 224 | A compilation of a covered work with other separate and independent 225 | works, which are not by their nature extensions of the covered work, 226 | and which are not combined with it such as to form a larger program, 227 | in or on a volume of a storage or distribution medium, is called an 228 | "aggregate" if the compilation and its resulting copyright are not 229 | used to limit the access or legal rights of the compilation's users 230 | beyond what the individual works permit. Inclusion of a covered work 231 | in an aggregate does not cause this License to apply to the other 232 | parts of the aggregate. 233 | 234 | 6. Conveying Non-Source Forms. 235 | 236 | You may convey a covered work in object code form under the terms 237 | of sections 4 and 5, provided that you also convey the 238 | machine-readable Corresponding Source under the terms of this License, 239 | in one of these ways: 240 | 241 | a) Convey the object code in, or embodied in, a physical product 242 | (including a physical distribution medium), accompanied by the 243 | Corresponding Source fixed on a durable physical medium 244 | customarily used for software interchange. 245 | 246 | b) Convey the object code in, or embodied in, a physical product 247 | (including a physical distribution medium), accompanied by a 248 | written offer, valid for at least three years and valid for as 249 | long as you offer spare parts or customer support for that product 250 | model, to give anyone who possesses the object code either (1) a 251 | copy of the Corresponding Source for all the software in the 252 | product that is covered by this License, on a durable physical 253 | medium customarily used for software interchange, for a price no 254 | more than your reasonable cost of physically performing this 255 | conveying of source, or (2) access to copy the 256 | Corresponding Source from a network server at no charge. 257 | 258 | c) Convey individual copies of the object code with a copy of the 259 | written offer to provide the Corresponding Source. This 260 | alternative is allowed only occasionally and noncommercially, and 261 | only if you received the object code with such an offer, in accord 262 | with subsection 6b. 263 | 264 | d) Convey the object code by offering access from a designated 265 | place (gratis or for a charge), and offer equivalent access to the 266 | Corresponding Source in the same way through the same place at no 267 | further charge. You need not require recipients to copy the 268 | Corresponding Source along with the object code. If the place to 269 | copy the object code is a network server, the Corresponding Source 270 | may be on a different server (operated by you or a third party) 271 | that supports equivalent copying facilities, provided you maintain 272 | clear directions next to the object code saying where to find the 273 | Corresponding Source. Regardless of what server hosts the 274 | Corresponding Source, you remain obligated to ensure that it is 275 | available for as long as needed to satisfy these requirements. 276 | 277 | e) Convey the object code using peer-to-peer transmission, provided 278 | you inform other peers where the object code and Corresponding 279 | Source of the work are being offered to the general public at no 280 | charge under subsection 6d. 281 | 282 | A separable portion of the object code, whose source code is excluded 283 | from the Corresponding Source as a System Library, need not be 284 | included in conveying the object code work. 285 | 286 | A "User Product" is either (1) a "consumer product", which means any 287 | tangible personal property which is normally used for personal, family, 288 | or household purposes, or (2) anything designed or sold for incorporation 289 | into a dwelling. In determining whether a product is a consumer product, 290 | doubtful cases shall be resolved in favor of coverage. For a particular 291 | product received by a particular user, "normally used" refers to a 292 | typical or common use of that class of product, regardless of the status 293 | of the particular user or of the way in which the particular user 294 | actually uses, or expects or is expected to use, the product. A product 295 | is a consumer product regardless of whether the product has substantial 296 | commercial, industrial or non-consumer uses, unless such uses represent 297 | the only significant mode of use of the product. 298 | 299 | "Installation Information" for a User Product means any methods, 300 | procedures, authorization keys, or other information required to install 301 | and execute modified versions of a covered work in that User Product from 302 | a modified version of its Corresponding Source. The information must 303 | suffice to ensure that the continued functioning of the modified object 304 | code is in no case prevented or interfered with solely because 305 | modification has been made. 306 | 307 | If you convey an object code work under this section in, or with, or 308 | specifically for use in, a User Product, and the conveying occurs as 309 | part of a transaction in which the right of possession and use of the 310 | User Product is transferred to the recipient in perpetuity or for a 311 | fixed term (regardless of how the transaction is characterized), the 312 | Corresponding Source conveyed under this section must be accompanied 313 | by the Installation Information. But this requirement does not apply 314 | if neither you nor any third party retains the ability to install 315 | modified object code on the User Product (for example, the work has 316 | been installed in ROM). 317 | 318 | The requirement to provide Installation Information does not include a 319 | requirement to continue to provide support service, warranty, or updates 320 | for a work that has been modified or installed by the recipient, or for 321 | the User Product in which it has been modified or installed. Access to a 322 | network may be denied when the modification itself materially and 323 | adversely affects the operation of the network or violates the rules and 324 | protocols for communication across the network. 325 | 326 | Corresponding Source conveyed, and Installation Information provided, 327 | in accord with this section must be in a format that is publicly 328 | documented (and with an implementation available to the public in 329 | source code form), and must require no special password or key for 330 | unpacking, reading or copying. 331 | 332 | 7. Additional Terms. 333 | 334 | "Additional permissions" are terms that supplement the terms of this 335 | License by making exceptions from one or more of its conditions. 336 | Additional permissions that are applicable to the entire Program shall 337 | be treated as though they were included in this License, to the extent 338 | that they are valid under applicable law. If additional permissions 339 | apply only to part of the Program, that part may be used separately 340 | under those permissions, but the entire Program remains governed by 341 | this License without regard to the additional permissions. 342 | 343 | When you convey a copy of a covered work, you may at your option 344 | remove any additional permissions from that copy, or from any part of 345 | it. (Additional permissions may be written to require their own 346 | removal in certain cases when you modify the work.) You may place 347 | additional permissions on material, added by you to a covered work, 348 | for which you have or can give appropriate copyright permission. 349 | 350 | Notwithstanding any other provision of this License, for material you 351 | add to a covered work, you may (if authorized by the copyright holders of 352 | that material) supplement the terms of this License with terms: 353 | 354 | a) Disclaiming warranty or limiting liability differently from the 355 | terms of sections 15 and 16 of this License; or 356 | 357 | b) Requiring preservation of specified reasonable legal notices or 358 | author attributions in that material or in the Appropriate Legal 359 | Notices displayed by works containing it; or 360 | 361 | c) Prohibiting misrepresentation of the origin of that material, or 362 | requiring that modified versions of such material be marked in 363 | reasonable ways as different from the original version; or 364 | 365 | d) Limiting the use for publicity purposes of names of licensors or 366 | authors of the material; or 367 | 368 | e) Declining to grant rights under trademark law for use of some 369 | trade names, trademarks, or service marks; or 370 | 371 | f) Requiring indemnification of licensors and authors of that 372 | material by anyone who conveys the material (or modified versions of 373 | it) with contractual assumptions of liability to the recipient, for 374 | any liability that these contractual assumptions directly impose on 375 | those licensors and authors. 376 | 377 | All other non-permissive additional terms are considered "further 378 | restrictions" within the meaning of section 10. If the Program as you 379 | received it, or any part of it, contains a notice stating that it is 380 | governed by this License along with a term that is a further 381 | restriction, you may remove that term. If a license document contains 382 | a further restriction but permits relicensing or conveying under this 383 | License, you may add to a covered work material governed by the terms 384 | of that license document, provided that the further restriction does 385 | not survive such relicensing or conveying. 386 | 387 | If you add terms to a covered work in accord with this section, you 388 | must place, in the relevant source files, a statement of the 389 | additional terms that apply to those files, or a notice indicating 390 | where to find the applicable terms. 391 | 392 | Additional terms, permissive or non-permissive, may be stated in the 393 | form of a separately written license, or stated as exceptions; 394 | the above requirements apply either way. 395 | 396 | 8. Termination. 397 | 398 | You may not propagate or modify a covered work except as expressly 399 | provided under this License. Any attempt otherwise to propagate or 400 | modify it is void, and will automatically terminate your rights under 401 | this License (including any patent licenses granted under the third 402 | paragraph of section 11). 403 | 404 | However, if you cease all violation of this License, then your 405 | license from a particular copyright holder is reinstated (a) 406 | provisionally, unless and until the copyright holder explicitly and 407 | finally terminates your license, and (b) permanently, if the copyright 408 | holder fails to notify you of the violation by some reasonable means 409 | prior to 60 days after the cessation. 410 | 411 | Moreover, your license from a particular copyright holder is 412 | reinstated permanently if the copyright holder notifies you of the 413 | violation by some reasonable means, this is the first time you have 414 | received notice of violation of this License (for any work) from that 415 | copyright holder, and you cure the violation prior to 30 days after 416 | your receipt of the notice. 417 | 418 | Termination of your rights under this section does not terminate the 419 | licenses of parties who have received copies or rights from you under 420 | this License. If your rights have been terminated and not permanently 421 | reinstated, you do not qualify to receive new licenses for the same 422 | material under section 10. 423 | 424 | 9. Acceptance Not Required for Having Copies. 425 | 426 | You are not required to accept this License in order to receive or 427 | run a copy of the Program. Ancillary propagation of a covered work 428 | occurring solely as a consequence of using peer-to-peer transmission 429 | to receive a copy likewise does not require acceptance. However, 430 | nothing other than this License grants you permission to propagate or 431 | modify any covered work. These actions infringe copyright if you do 432 | not accept this License. Therefore, by modifying or propagating a 433 | covered work, you indicate your acceptance of this License to do so. 434 | 435 | 10. Automatic Licensing of Downstream Recipients. 436 | 437 | Each time you convey a covered work, the recipient automatically 438 | receives a license from the original licensors, to run, modify and 439 | propagate that work, subject to this License. You are not responsible 440 | for enforcing compliance by third parties with this License. 441 | 442 | An "entity transaction" is a transaction transferring control of an 443 | organization, or substantially all assets of one, or subdividing an 444 | organization, or merging organizations. If propagation of a covered 445 | work results from an entity transaction, each party to that 446 | transaction who receives a copy of the work also receives whatever 447 | licenses to the work the party's predecessor in interest had or could 448 | give under the previous paragraph, plus a right to possession of the 449 | Corresponding Source of the work from the predecessor in interest, if 450 | the predecessor has it or can get it with reasonable efforts. 451 | 452 | You may not impose any further restrictions on the exercise of the 453 | rights granted or affirmed under this License. For example, you may 454 | not impose a license fee, royalty, or other charge for exercise of 455 | rights granted under this License, and you may not initiate litigation 456 | (including a cross-claim or counterclaim in a lawsuit) alleging that 457 | any patent claim is infringed by making, using, selling, offering for 458 | sale, or importing the Program or any portion of it. 459 | 460 | 11. Patents. 461 | 462 | A "contributor" is a copyright holder who authorizes use under this 463 | License of the Program or a work on which the Program is based. The 464 | work thus licensed is called the contributor's "contributor version". 465 | 466 | A contributor's "essential patent claims" are all patent claims 467 | owned or controlled by the contributor, whether already acquired or 468 | hereafter acquired, that would be infringed by some manner, permitted 469 | by this License, of making, using, or selling its contributor version, 470 | but do not include claims that would be infringed only as a 471 | consequence of further modification of the contributor version. For 472 | purposes of this definition, "control" includes the right to grant 473 | patent sublicenses in a manner consistent with the requirements of 474 | this License. 475 | 476 | Each contributor grants you a non-exclusive, worldwide, royalty-free 477 | patent license under the contributor's essential patent claims, to 478 | make, use, sell, offer for sale, import and otherwise run, modify and 479 | propagate the contents of its contributor version. 480 | 481 | In the following three paragraphs, a "patent license" is any express 482 | agreement or commitment, however denominated, not to enforce a patent 483 | (such as an express permission to practice a patent or covenant not to 484 | sue for patent infringement). To "grant" such a patent license to a 485 | party means to make such an agreement or commitment not to enforce a 486 | patent against the party. 487 | 488 | If you convey a covered work, knowingly relying on a patent license, 489 | and the Corresponding Source of the work is not available for anyone 490 | to copy, free of charge and under the terms of this License, through a 491 | publicly available network server or other readily accessible means, 492 | then you must either (1) cause the Corresponding Source to be so 493 | available, or (2) arrange to deprive yourself of the benefit of the 494 | patent license for this particular work, or (3) arrange, in a manner 495 | consistent with the requirements of this License, to extend the patent 496 | license to downstream recipients. "Knowingly relying" means you have 497 | actual knowledge that, but for the patent license, your conveying the 498 | covered work in a country, or your recipient's use of the covered work 499 | in a country, would infringe one or more identifiable patents in that 500 | country that you have reason to believe are valid. 501 | 502 | If, pursuant to or in connection with a single transaction or 503 | arrangement, you convey, or propagate by procuring conveyance of, a 504 | covered work, and grant a patent license to some of the parties 505 | receiving the covered work authorizing them to use, propagate, modify 506 | or convey a specific copy of the covered work, then the patent license 507 | you grant is automatically extended to all recipients of the covered 508 | work and works based on it. 509 | 510 | A patent license is "discriminatory" if it does not include within 511 | the scope of its coverage, prohibits the exercise of, or is 512 | conditioned on the non-exercise of one or more of the rights that are 513 | specifically granted under this License. You may not convey a covered 514 | work if you are a party to an arrangement with a third party that is 515 | in the business of distributing software, under which you make payment 516 | to the third party based on the extent of your activity of conveying 517 | the work, and under which the third party grants, to any of the 518 | parties who would receive the covered work from you, a discriminatory 519 | patent license (a) in connection with copies of the covered work 520 | conveyed by you (or copies made from those copies), or (b) primarily 521 | for and in connection with specific products or compilations that 522 | contain the covered work, unless you entered into that arrangement, 523 | or that patent license was granted, prior to 28 March 2007. 524 | 525 | Nothing in this License shall be construed as excluding or limiting 526 | any implied license or other defenses to infringement that may 527 | otherwise be available to you under applicable patent law. 528 | 529 | 12. No Surrender of Others' Freedom. 530 | 531 | If conditions are imposed on you (whether by court order, agreement or 532 | otherwise) that contradict the conditions of this License, they do not 533 | excuse you from the conditions of this License. If you cannot convey a 534 | covered work so as to satisfy simultaneously your obligations under this 535 | License and any other pertinent obligations, then as a consequence you may 536 | not convey it at all. For example, if you agree to terms that obligate you 537 | to collect a royalty for further conveying from those to whom you convey 538 | the Program, the only way you could satisfy both those terms and this 539 | License would be to refrain entirely from conveying the Program. 540 | 541 | 13. Remote Network Interaction; Use with the GNU General Public License. 542 | 543 | Notwithstanding any other provision of this License, if you modify the 544 | Program, your modified version must prominently offer all users 545 | interacting with it remotely through a computer network (if your version 546 | supports such interaction) an opportunity to receive the Corresponding 547 | Source of your version by providing access to the Corresponding Source 548 | from a network server at no charge, through some standard or customary 549 | means of facilitating copying of software. This Corresponding Source 550 | shall include the Corresponding Source for any work covered by version 3 551 | of the GNU General Public License that is incorporated pursuant to the 552 | following paragraph. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the work with which it is combined will remain governed by version 560 | 3 of the GNU General Public License. 561 | 562 | 14. Revised Versions of this License. 563 | 564 | The Free Software Foundation may publish revised and/or new versions of 565 | the GNU Affero General Public License from time to time. Such new versions 566 | will be similar in spirit to the present version, but may differ in detail to 567 | address new problems or concerns. 568 | 569 | Each version is given a distinguishing version number. If the 570 | Program specifies that a certain numbered version of the GNU Affero General 571 | Public License "or any later version" applies to it, you have the 572 | option of following the terms and conditions either of that numbered 573 | version or of any later version published by the Free Software 574 | Foundation. If the Program does not specify a version number of the 575 | GNU Affero General Public License, you may choose any version ever published 576 | by the Free Software Foundation. 577 | 578 | If the Program specifies that a proxy can decide which future 579 | versions of the GNU Affero General Public License can be used, that proxy's 580 | public statement of acceptance of a version permanently authorizes you 581 | to choose that version for the Program. 582 | 583 | Later license versions may give you additional or different 584 | permissions. However, no additional obligations are imposed on any 585 | author or copyright holder as a result of your choosing to follow a 586 | later version. 587 | 588 | 15. Disclaimer of Warranty. 589 | 590 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 591 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 592 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 593 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 594 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 595 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 596 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 597 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 598 | 599 | 16. Limitation of Liability. 600 | 601 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 602 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 603 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 604 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 605 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 606 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 607 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 608 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 609 | SUCH DAMAGES. 610 | 611 | 17. Interpretation of Sections 15 and 16. 612 | 613 | If the disclaimer of warranty and limitation of liability provided 614 | above cannot be given local legal effect according to their terms, 615 | reviewing courts shall apply local law that most closely approximates 616 | an absolute waiver of all civil liability in connection with the 617 | Program, unless a warranty or assumption of liability accompanies a 618 | copy of the Program in return for a fee. 619 | 620 | END OF TERMS AND CONDITIONS 621 | 622 | How to Apply These Terms to Your New Programs 623 | 624 | If you develop a new program, and you want it to be of the greatest 625 | possible use to the public, the best way to achieve this is to make it 626 | free software which everyone can redistribute and change under these terms. 627 | 628 | To do so, attach the following notices to the program. It is safest 629 | to attach them to the start of each source file to most effectively 630 | state the exclusion of warranty; and each file should have at least 631 | the "copyright" line and a pointer to where the full notice is found. 632 | 633 | 634 | Copyright (C) 635 | 636 | This program is free software: you can redistribute it and/or modify 637 | it under the terms of the GNU Affero General Public License as published 638 | by the Free Software Foundation, either version 3 of the License, or 639 | (at your option) any later version. 640 | 641 | This program is distributed in the hope that it will be useful, 642 | but WITHOUT ANY WARRANTY; without even the implied warranty of 643 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 644 | GNU Affero General Public License for more details. 645 | 646 | You should have received a copy of the GNU Affero General Public License 647 | along with this program. If not, see . 648 | 649 | Also add information on how to contact you by electronic and paper mail. 650 | 651 | If your software can interact with users remotely through a computer 652 | network, you should also make sure that it provides a way for users to 653 | get its source. For example, if your program is a web application, its 654 | interface could display a "Source" link that leads users to an archive 655 | of the code. There are many ways you could offer source, and different 656 | solutions will be better for different programs; see section 13 for the 657 | specific requirements. 658 | 659 | You should also get your employer (if you work as a programmer) or school, 660 | if any, to sign a "copyright disclaimer" for the program, if necessary. 661 | For more information on this, and how to apply and follow the GNU AGPL, see 662 | . 663 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [EmojiBuilder](https://emoji.debijl.xyz/) 2 | 3 | ## Summary: 4 | Use Twitter's Open Source SVG emoji to build your own emoji/abominations. 5 | 6 | ## Roadmap: 7 | EmojiBuilder is still very much in development, check out the [roadmap project](https://github.com/Fdebijl/EmojiBuilder/projects/1) for all the function that should be implemented shortly. If you think something is missing, put in an issue above! 8 | 9 | ## Contributing & Building: 10 | Yes please 11 | 12 | Build your local copy by downloading or cloning the repo and doing the following: 13 | ```SH 14 | sudo apt-get install nodejs npm && sudo apt-get update 15 | npm install 16 | gulp 17 | ``` 18 | 19 | Build/update the emoji collection by running svg.php - this script is also set to run after npm install by default: 20 | ```SH 21 | # You should also install git in the unlikely event you have not done so yet. 22 | sudo apt-get install php && sudo apt-get update 23 | # Assuming cwd is emojibuilder root 24 | php -f fetcher/svg.php 25 | ``` 26 | 27 | When deploying you should only upload the following files: 28 | ``` 29 | css 30 | favicon 31 | img 32 | js 33 | svg_detailed 34 | svg_latest 35 | emojiworker.js 36 | index.html 37 | svgs_detailed.json 38 | svgs_latest.json 39 | manifest.json 40 | ``` -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | /* Global/general styles 2 | ===================================================== */ 3 | @import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro'); 4 | 5 | * { 6 | box-sizing: border-box; 7 | font-family: 'Source Sans Pro', sans-serif; 8 | } 9 | 10 | svg { 11 | overflow: visible !important; 12 | width: auto; 13 | max-width: 100%; 14 | height: auto; 15 | max-height: calc(100vh - 100px); 16 | position: absolute; 17 | touch-action: none; 18 | } 19 | 20 | body { 21 | margin: 0; 22 | color: #FFF; 23 | overflow: hidden; 24 | } 25 | 26 | .hidden { 27 | display: none; 28 | } 29 | 30 | /* Main elements 31 | ===================================================== */ 32 | 33 | g { 34 | pointer-events: visible; 35 | } 36 | 37 | .content { 38 | display: flex; 39 | flex-flow: row nowrap; 40 | } 41 | 42 | .wrapper { 43 | width: 100vw; 44 | height: 100vh; 45 | top: 0; 46 | left: 0; 47 | position: absolute; 48 | overflow: hidden; 49 | } 50 | 51 | .hinter { 52 | text-align: center; 53 | color: #000; 54 | width: 100%; 55 | } 56 | 57 | /* Renderbox needs the same properties as drawboard to properly reflect the current emoji */ 58 | #drawboard { 59 | padding: 50px; 60 | max-height: calc(100vh - 50px); 61 | display: flex; 62 | justify-content: center; 63 | align-items: center; 64 | font-size: 20pt; 65 | touch-action: none; 66 | flex: 1; 67 | } 68 | 69 | #drawboard.hinting:after { 70 | content: "Drop emoji from the right onto here"; 71 | display: block; 72 | color: #000; 73 | } 74 | 75 | #renderbox { 76 | padding: 0px; 77 | top: 50px; 78 | position: absolute; 79 | display: block; 80 | content: " "; 81 | } 82 | 83 | /* On-page controls 84 | ===================================================== */ 85 | 86 | .inline-controls { 87 | position: absolute; 88 | bottom: 5px; 89 | left: 5px; 90 | width: 50px; 91 | z-index: 5; 92 | } 93 | 94 | .inline-controls > div > i { 95 | width: 50px; 96 | height: 50px; 97 | display: block; 98 | background-size: contain; 99 | cursor: pointer; 100 | margin: 0; 101 | padding: 0; 102 | transition: 333ms all ease; 103 | } 104 | 105 | .inline-controls > div > i:hover { 106 | box-shadow: inset 0px 0 16px 0px rgba(0, 0, 0, 0.3); 107 | transform: scale(1.1); 108 | } 109 | 110 | .inline-controls > .group > .clear { 111 | background: url("../img/clear.png"); 112 | background-size: 30px !important; 113 | background-repeat: no-repeat; 114 | background-position: center; 115 | } 116 | 117 | .inline-controls > .group > .download { 118 | background: url("../img/download.png"); 119 | } 120 | 121 | .inline-controls > .group > .delete { 122 | background: url("../img/delete.png"); 123 | background-size: 30px !important; 124 | background-repeat: no-repeat; 125 | background-position: center; 126 | } 127 | 128 | .inline-controls > .group > .forward { 129 | background: url("../img/forward.png"); 130 | background-size: contain; 131 | } 132 | 133 | .inline-controls > .group > .backward { 134 | background: url("../img/backward.png"); 135 | background-size: contain; 136 | } 137 | 138 | .scrollhandle { 139 | display: none; 140 | } 141 | 142 | /* Modals 143 | ===================================================== */ 144 | .uk-modal { 145 | color: #000; 146 | } 147 | 148 | #loading-modal { 149 | justify-content: center; 150 | align-items: center; 151 | height: 100vh; 152 | width: 100vw; 153 | padding: 0; 154 | margin: 0; 155 | flex-flow: column; 156 | font-size: 25pt; 157 | } 158 | 159 | #loading-modal.uk-open { 160 | display: flex !important; 161 | } 162 | 163 | #info-modal, #persist-modal p { 164 | white-space: pre-line; 165 | } 166 | 167 | .uk-modal .uk-card { 168 | padding: 10px; 169 | margin: 30px 0px; 170 | box-shadow: 0 5px 15px rgba(0,0,0,.15); 171 | transition: box-shadow .3s ease-in-out; 172 | } 173 | 174 | .uk-modal .uk-card:hover { 175 | padding: 10px; 176 | margin: 30px 0px; 177 | box-shadow: 0 5px 15px rgba(0,0,0,.25); 178 | } 179 | 180 | 181 | /* Sidebar 182 | ===================================================== */ 183 | .sidebar { 184 | position: relative; 185 | float: right; 186 | display: block; 187 | right: 0; 188 | top: 0; 189 | height: 100vh; 190 | width: 20vw; 191 | background: #f3e7e3; 192 | } 193 | 194 | .tabs { 195 | display: flex; 196 | flex-flow: row wrap; 197 | } 198 | 199 | .tab { 200 | background: #2d2d2d; 201 | flex: 1 1 50%; 202 | display: flex; 203 | justify-content: center; 204 | align-items: center; 205 | padding: 8px; 206 | cursor: pointer; 207 | transition: 333ms all cubic-bezier(0.075, 0.82, 0.165, 1); 208 | } 209 | 210 | .tab.tab_active { 211 | background: #333; 212 | } 213 | 214 | .tabheader { 215 | flex: 1 1 100%; 216 | } 217 | 218 | .svg-icon { 219 | width: 33%; 220 | padding: 5px; 221 | } 222 | 223 | .grid { 224 | display: none; 225 | overflow-y: scroll; 226 | width: 100%; 227 | height: 80vh; 228 | } 229 | 230 | .lazyloading, .lazyload { 231 | object-fit: scale-down; 232 | } 233 | 234 | /* Menubar 235 | ===================================================== */ 236 | .menubar { 237 | background: #2d2d2d !important; 238 | color: #FFF; 239 | z-index: 5; 240 | } 241 | 242 | .menubar > .uk-navbar-left > .uk-navbar-nav > li > a { 243 | color: #FFF; 244 | font-family: 'Source Sans Pro', sans-serif; 245 | text-transform: capitalize; 246 | font-size: 16px; 247 | height: 50px; 248 | } 249 | 250 | .uk-navbar-dropdown { 251 | margin-top: 0; 252 | margin: 0; 253 | padding: 10px; 254 | background: #2d2d2d; 255 | } 256 | 257 | .uk-navbar-dropdown-nav { 258 | font-size: 1rem; 259 | } 260 | 261 | .uk-navbar-dropdown-nav > li > a, 262 | .uk-navbar-dropdown-nav > .uk-inline > a { 263 | padding: 5px; 264 | color: #EEE; 265 | } 266 | 267 | .uk-navbar-dropdown-nav > li > a:hover, 268 | .uk-navbar-dropdown-nav > .uk-inline > a:hover { 269 | color: #FFF; 270 | background: #0078d7; 271 | text-decoration: none; 272 | } 273 | 274 | .uk-navbar-item { 275 | height: unset !important; 276 | } 277 | 278 | .menubar .nav-logo { 279 | height: 25px; 280 | width: 25px; 281 | } 282 | 283 | .disabled { 284 | pointer-events: none; 285 | color: #999 !important; 286 | cursor: not-allowed; 287 | } 288 | 289 | #add-emoji-input { 290 | width: 100%; 291 | margin-bottom: 5px; 292 | } 293 | 294 | /* SVG-specific styles 295 | ===================================================== */ 296 | 297 | .selected { 298 | stroke: #333333 !important; 299 | stroke-dasharray: 0.2; 300 | stroke-width: 0.2; 301 | animation: 80s selectorStroke infinite; 302 | } 303 | 304 | .dragged { 305 | stroke: #626262 !important; 306 | stroke-dasharray: 0.2; 307 | stroke-width: 0.2; 308 | animation: 50s selectorStroke infinite; 309 | } 310 | 311 | @keyframes selectorStroke { 312 | from {stroke-dashoffset: 0%;} 313 | to {stroke-dashoffset: 100%}; 314 | } 315 | 316 | 317 | /* Mobile styles 318 | ===================================================== */ 319 | 320 | @media only screen and (max-width: 850px) { 321 | .sidebar { 322 | bottom: unset; 323 | top: 0; 324 | height: 100vh; 325 | width: 25vw; 326 | } 327 | } 328 | 329 | @media only screen and (max-width: 500px) { 330 | .content { 331 | flex-flow: column nowrap; 332 | } 333 | 334 | .sidebar { 335 | bottom: -50px; 336 | top: unset; 337 | height: 15vh; 338 | width: 100vw; 339 | } 340 | 341 | .hinter { 342 | width: 100vw; 343 | } 344 | 345 | .wrapper { 346 | overflow: visible; 347 | overflow-x: hidden; 348 | } 349 | 350 | .grid { 351 | overflow-y: visible; 352 | width: 100vw; 353 | height: unset; 354 | } 355 | 356 | #drawboard { 357 | width: 100vw; 358 | height: calc(100vh - 100px); 359 | text-align: center; 360 | } 361 | 362 | #drawboard.hinting:after { 363 | content: "Use the handle (bottom right) to scroll down to view the emoji, then tap one to start editing."; 364 | } 365 | 366 | .controls { 367 | bottom: 65px; 368 | } 369 | 370 | .scrollhandle { 371 | width: 70px; 372 | height: 70px; 373 | display: block; 374 | position: absolute; 375 | bottom: 10px; 376 | border-radius: 50%; 377 | right: 10px; 378 | background-color: #2d2d2d; 379 | background-image: url(../img/handle.png); 380 | background-size: contain; 381 | background-repeat: no-repeat; 382 | } 383 | 384 | svg { 385 | max-width: calc(100% - 40px); 386 | max-height: calc(100vh - 50px); 387 | } 388 | 389 | .menubar > .uk-navbar-left > .uk-navbar-nav > li > a { 390 | font-size: 16pt; 391 | height: 60px; 392 | } 393 | } -------------------------------------------------------------------------------- /emojiworker.js: -------------------------------------------------------------------------------- 1 | const PAGE_ROOT = ''; 2 | const CACHE_NAME = 'emojicache'; 3 | 4 | self.addEventListener('install', function(event) { 5 | event.waitUntil( 6 | caches.open(CACHE_NAME) 7 | .then((cache) => { 8 | return cache.addAll([ 9 | `${PAGE_ROOT}/index.html`, 10 | `${PAGE_ROOT}/manifest.json`, 11 | `${PAGE_ROOT}/js/emojibuilder.js`, 12 | `${PAGE_ROOT}/js/emojibuilder.min.js`, 13 | `${PAGE_ROOT}/css/style.css`, 14 | `${PAGE_ROOT}/css/style.min.css`, 15 | `${PAGE_ROOT}/svgs_detailed.json`, 16 | `${PAGE_ROOT}/svgs_latest.json`, 17 | `${PAGE_ROOT}/img/backward.png`, 18 | `${PAGE_ROOT}/img/clear.png`, 19 | `${PAGE_ROOT}/img/copy.png`, 20 | `${PAGE_ROOT}/img/delete.png`, 21 | `${PAGE_ROOT}/img/download.png`, 22 | `${PAGE_ROOT}/img/forward.png`, 23 | `${PAGE_ROOT}/img/handle.png`, 24 | `${PAGE_ROOT}/img/info.png`, 25 | `${PAGE_ROOT}/img/logo.svg`, 26 | `${PAGE_ROOT}/img/oval.svg`, 27 | `${PAGE_ROOT}/favicon/android-chrome-192x192.png`, 28 | `${PAGE_ROOT}/favicon/android-chrome-512x512.png`, 29 | `${PAGE_ROOT}/favicon/apple-touch-icon.png`, 30 | `${PAGE_ROOT}/favicon/browserconfig.xml`, 31 | `${PAGE_ROOT}/favicon/favicon-16x16.png`, 32 | `${PAGE_ROOT}/favicon/favicon-32x32.png`, 33 | `${PAGE_ROOT}/favicon/favicon.ico`, 34 | `${PAGE_ROOT}/favicon/mstile-150x150.png`, 35 | `${PAGE_ROOT}/favicon/safari-pinned-tabs.svg`, 36 | ]); 37 | }) 38 | .catch((error) => { 39 | console.error(error); 40 | }) 41 | ); 42 | }); 43 | 44 | self.addEventListener('fetch', function(event) { 45 | event.respondWith( 46 | caches.open(CACHE_NAME).then(function(cache) { 47 | return cache.match(event.request).then(function(response) { 48 | return response || fetch(event.request).then(function(response) { 49 | cache.put(event.request, response.clone()); 50 | return response; 51 | }); 52 | }); 53 | }) 54 | ); 55 | }); 56 | -------------------------------------------------------------------------------- /favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /favicon/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #2d89ef 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/favicon/favicon.ico -------------------------------------------------------------------------------- /favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fetcher/svg.php: -------------------------------------------------------------------------------- 1 | isDot()) { 33 | // Dot files like '.' and '..' must be skipped. 34 | continue; 35 | } 36 | 37 | $path = $f->getPathname(); 38 | $name = $f->getFilename(); 39 | 40 | if ($f->isFile()) { 41 | $data[] = [ 'file' => $name ]; 42 | } else { 43 | // Process the content of the directory. 44 | $files = dir_to_array($path); 45 | 46 | $data[] = [ 'dir' => $files, 47 | 'name' => $name ]; 48 | // A directory has a 'name' attribute 49 | // to be able to retrieve its name. 50 | // In case it is not needed, just delete it. 51 | } 52 | } 53 | 54 | // Sorts files and directories if they are not on your system. 55 | \usort($data, function($a, $b) { 56 | $aa = isset($a['file']) ? $a['file'] : $a['name']; 57 | $bb = isset($b['file']) ? $b['file'] : $b['name']; 58 | 59 | return \strcmp($aa, $bb); 60 | }); 61 | 62 | return $data; 63 | } 64 | 65 | // Dir contents to JSON 66 | function dir_to_json($dir) { 67 | $data = dir_to_array($dir); 68 | $data = json_encode($data); 69 | 70 | return $data; 71 | } 72 | 73 | // All caps logging so it looks more l33t 74 | echo('GENERATING GROUPED EMOJI SEQUENCE - [/fetcher/emoji.test.txt]' . PHP_EOL); 75 | 76 | // Adapted from https://github.com/lcherone/emoji-parse 77 | file_put_contents('emoji-test.txt', file_get_contents('http://unicode.org/Public/emoji/latest/emoji-test.txt')); 78 | // break into blocks 79 | $blocks = explode(PHP_EOL.PHP_EOL, file_get_contents('emoji-test.txt')); 80 | // unset header 81 | unset($blocks[0]); 82 | $emoji = []; 83 | foreach ($blocks as $chunk) { 84 | $top = explode(PHP_EOL, $chunk)[0]; 85 | if (substr($top, 0, strlen('# group:')) == '# group:') { 86 | $group = trim(str_replace('# group:', '', $top)); 87 | } elseif (substr($top, 0, strlen('# subgroup:')) == '# subgroup:') { 88 | $lines = explode(PHP_EOL, $chunk); 89 | unset($lines[0]); 90 | foreach ($lines as $line) { 91 | $subgroup = trim(str_replace('# subgroup:', '', $top)); 92 | $linegroup = explode(';', $line); 93 | $parts = explode('#', $linegroup[1]); 94 | $icon = explode(' ', trim($parts[1]), 2); 95 | $emoji[$group][$subgroup][] = [ 96 | 'group' => trim($group), 97 | 'subgroup' => $subgroup, 98 | 'name' => trim($linegroup[0]), 99 | 'status' => trim($parts[0]), 100 | 'emoji' => trim($icon[0]), 101 | 'description' => trim($icon[1]), 102 | ]; 103 | } 104 | } 105 | } 106 | 107 | echo('DONE' . PHP_EOL); 108 | 109 | // Fetch twemoji and put each into directories, as per the groups fetched from emoji-test.txt 110 | echo('RETRIEVING TWEMOJI FROM REPOSITORY - [/fetcher/twemoji] ' . PHP_EOL); 111 | shell_exec('git clone https://github.com/twitter/twemoji.git twemoji'); 112 | chdir('twemoji'); 113 | shell_exec('git fetch --all'); 114 | shell_exec('git pull --all'); 115 | chdir('..'); 116 | echo('DONE.' . PHP_EOL); 117 | 118 | $branches = ['gh-pages' => '_latest', 'tags/v2.4.0' => '_detailed']; 119 | 120 | // Get both the latest and the older, detailed version 121 | foreach($branches as $branchname => $collectionname) { 122 | echo('CHECKING OUT REPOSITORY INTO BRANCH ' . $branchname . ' - [/fetcher/twemoji] ' . PHP_EOL); 123 | chdir('twemoji'); 124 | shell_exec('git checkout ' . $branchname); 125 | chdir('..'); 126 | 127 | echo('RESOLVING SEQUENCE TO AVAILABLE TWEMOJI - [/svg' . $collectionname . '].' . PHP_EOL); 128 | 129 | $svgdir = '../svg' . $collectionname; 130 | // Completely DESTROY the svg dir if it already exists - we're gonna override it anyway 131 | if (is_dir($svgdir)) { 132 | rrmdir($svgdir); 133 | } 134 | 135 | mkdir($svgdir); 136 | 137 | // Suppress errors for file-not-found warnings, but do increment the counter so we know how many emoji weren't found. 138 | $errorcount = 0; 139 | set_error_handler(function($errno, $errstr) { 140 | $errorcount++; 141 | }, E_WARNING); 142 | 143 | foreach($emoji as $groupname => $group) { 144 | mkdir($svgdir . '/' . $groupname); 145 | foreach($group as $subgroup) { 146 | foreach($subgroup as $glyph) { 147 | $filename = strtolower(str_replace(' ', '-', $glyph['name'])) . '.svg'; 148 | copy('twemoji/2/svg/' . $filename, $svgdir . '/' . $groupname . '/' . $filename); 149 | } 150 | } 151 | } 152 | 153 | if ($errorcount > 0) { 154 | echo('WARN: ' . $errorcount . ' EMOJI COULD NOT BE RESOLVED.' . PHP_EOL); 155 | } 156 | 157 | echo('DONE.' . PHP_EOL); 158 | } 159 | 160 | restore_error_handler(); 161 | 162 | //rrmdir('twemoji'); 163 | 164 | echo('GENERATING JSON INDEX FOR RESOLVED LATEST EMOJI - [/svgs_latest.json]' . PHP_EOL); 165 | file_put_contents("../svgs_latest.json", dir_to_json("../svg_latest")); 166 | echo('DONE.' . PHP_EOL); 167 | 168 | echo('GENERATING JSON INDEX FOR RESOLVED DETAILED EMOJI - [/svgs_detailed.json]' . PHP_EOL); 169 | file_put_contents("../svgs_detailed.json", dir_to_json("../svg_detailed")); 170 | echo('DONE, EXITING.' . PHP_EOL); 171 | ?> -------------------------------------------------------------------------------- /img/backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/img/backward.png -------------------------------------------------------------------------------- /img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/img/clear.png -------------------------------------------------------------------------------- /img/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/img/copy.png -------------------------------------------------------------------------------- /img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/img/delete.png -------------------------------------------------------------------------------- /img/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/img/download.png -------------------------------------------------------------------------------- /img/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/img/forward.png -------------------------------------------------------------------------------- /img/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/img/handle.png -------------------------------------------------------------------------------- /img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdebijl/EmojiBuilder/acc964757e12cd8770d2c5d3a734d9b4db0239fc/img/info.png -------------------------------------------------------------------------------- /img/logo.svg: -------------------------------------------------------------------------------- 1 | image/svg+xml 2 | -------------------------------------------------------------------------------- /img/oval.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 30 | 31 | Emojibuilder 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 |
65 | 66 | 132 | 133 |
134 |
135 |
136 | 137 | 138 | 139 |
140 |
141 | 142 |
143 | 144 |
145 | 146 | 153 |
154 | 155 |
156 | 176 | 177 | 181 | 182 | 202 | 203 | 219 | 220 | 232 | 233 | 251 | 252 | 253 | 260 |
261 | 262 |
263 | 264 | 265 | -------------------------------------------------------------------------------- /js/emojibuilder.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable require-jsdoc */ 2 | 3 | (function() { 4 | 'use strict'; 5 | 6 | // Allow access to the files from the SVGdir in all methods. This variable is populated in the window.onload event handler. 7 | let svg_files; 8 | let mode; 9 | 10 | // Config and enums 11 | const URLS = Object.freeze({ 12 | WORKERPATH: '/emojiworker.js', 13 | SVG_DIR_PATH_DETAILED: 'svg_detailed/', 14 | SVG_DIR_PATH_LATEST: 'svg_latest/', 15 | JSON_PATH_DETAILED: 'svgs_detailed.json', 16 | JSON_PATH_LATEST: 'svgs_latest.json', 17 | }); 18 | 19 | const TRANSFORMS = Object.freeze({ 20 | SCALE: 'scale', 21 | FLIP: 'flip', 22 | TRANSLATE: 'translate', 23 | ROTATE: 'rotate', 24 | }); 25 | 26 | const FLIPS = Object.freeze({ 27 | HORIZONTAL: 'horizontal', 28 | VERTICAL: 'vertical', 29 | }); 30 | 31 | const MODES = Object.freeze({ 32 | DETAILED: 'DETAILED', 33 | LATEST: 'LATEST', 34 | }); 35 | 36 | $(window).on('load', function() { 37 | // The CSP prevents inline event binding, so we bind the drag-and-drop listeners here 38 | document 39 | .getElementById('drawboard') 40 | .addEventListener('drop', function(event) { 41 | event.preventDefault(); 42 | event.stopPropagation(); 43 | appendEmoji(event); 44 | }); 45 | 46 | document 47 | .getElementById('drawboard') 48 | .addEventListener('dragover', function(event) { 49 | event.preventDefault(); 50 | event.stopPropagation(); 51 | allowDrop(event); 52 | }); 53 | 54 | // Remove superfluous elements 55 | $('.ui-loader').remove(); 56 | 57 | // Bind all clickhandlers to the menus and on-screen contrls 58 | ControlsAndMenu(); 59 | 60 | // Let the user select their emoji type, if they haven't already (determined by cookie) 61 | selectEmojiType(); 62 | 63 | // Register the serviceworker used to cache all resources 64 | if ('serviceWorker' in navigator) { 65 | navigator.serviceWorker.register(URLS.WORKERPATH); 66 | } 67 | 68 | // Check for availability of the persistent storage API 69 | if (navigator.storage && navigator.storage.persist) { 70 | $('.persist').removeClass('disabled'); 71 | 72 | // Get usage in MB so the user can decide if the space is worth it 73 | navigator.storage.estimate().then(estimate => { 74 | $('.cachesize').html( 75 | `${Math.round((estimate.usage / 1000 / 1000) * 100) / 100}MB` 76 | ); 77 | }); 78 | 79 | $('.persist').on('click touch', function(evt) { 80 | showModal('persist-modal', 0); 81 | }); 82 | 83 | // Persistent storage permissions have been granted 84 | $('.persist-granted').on('click touch', function(evt) { 85 | navigator.storage.persist().then(granted => { 86 | console.info('Persistent storage permissisons granted.'); 87 | }); 88 | }); 89 | } 90 | 91 | // Add to home screen button for PWA 92 | window.addEventListener('beforeinstallprompt', event => { 93 | event.preventDefault(); 94 | 95 | $('.pwa').removeClass('disabled'); 96 | 97 | $('.pwa').on('click touch', clickevent => { 98 | event.prompt(); 99 | event.userChoice.then(function(choiceResult) { 100 | if (choiceResult.outcome === 'accepted') { 101 | console.info('Added application to homescreen.'); 102 | } else { 103 | console.log('Homescreen permission denied.'); 104 | } 105 | 106 | $('.pwa').addClass('disabled'); 107 | }); 108 | }); 109 | }); 110 | }); 111 | 112 | function populateSidebar(mode) { 113 | // The emoji in the sidebar will initially be hidden from view for mobile users, so we'll start loading those on the first scroll for them. 114 | // For desktop clients we load only the first few rows of the 'faces' grid, since that one will be shown by default. Other tabs are loaded 115 | // in lazily in showGrid(). 116 | getSVGFilesInDirectory(mode) 117 | .then(files => { 118 | svg_files = files; 119 | addTabs(files.tabs); 120 | addGrids(files.grids); 121 | }) 122 | .then(() => { 123 | showGrid('SmileysPeople'); 124 | 125 | // Remove the hint from the drawboard after 15 seconds 126 | setTimeout(function() { 127 | $('.hinting').removeClass('hinting'); 128 | }, 15 * 1000); 129 | }); 130 | } 131 | 132 | function selectEmojiType() { 133 | if (modeCookie.exists()) { 134 | populateSidebar(MODES[modeCookie.get()]); 135 | } else { 136 | showModal('type-modal', 0); 137 | $('.select-detailed').on('click touch', function(evt) { 138 | populateSidebar(MODES.DETAILED); 139 | modeCookie.set(MODES.DETAILED); 140 | mode = MODES.DETAILED; 141 | }); 142 | 143 | $('.select-latest').on('click touch', function(evt) { 144 | populateSidebar(MODES.LATEST); 145 | modeCookie.set(MODES.LATEST); 146 | mode = MODES.LATEST; 147 | }); 148 | } 149 | } 150 | 151 | // Enable functionality on menubar and other controls 152 | function ControlsAndMenu() { 153 | // Buttons inside modals 154 | $('.apply-scale').on('click touch', function(evt) { 155 | applyTransform($('.selected'), TRANSFORMS.SCALE, $('#scale-input').val()); 156 | }); 157 | 158 | // Menu structure 159 | // File 160 | // New file 161 | $('.clear').on('click touch', function(evt) { 162 | $('#drawboard').empty(); 163 | }); 164 | 165 | $('.open').on('click touch', function(evt) { 166 | LoadSVG(); 167 | }); 168 | 169 | $('.saveas').on('click touch', function(evt) { 170 | showModal('save-modal', 0); 171 | }); 172 | 173 | $('.reselect-type').on('click touch', function(evt) { 174 | modeCookie.unset(); 175 | $('.emojigrid').empty(); 176 | $('.tab:not(.tabheader)').remove(); 177 | selectEmojiType(); 178 | }); 179 | 180 | // Add 181 | // Add emoji 182 | $('.add-emoji').on('click touch', function(e) { 183 | emojiToBuilder($('#add-emoji-input').val()); 184 | }); 185 | 186 | // Edit 187 | // Delete selected path 188 | $('.delete').on('click touch', function(e) { 189 | $('.selected').remove(); 190 | }); 191 | 192 | // Bring forwards 193 | $('.forward').on('click touch', function(e) { 194 | $('.selected') 195 | .parent() 196 | .insertAfter( 197 | $('.selected') 198 | .parent() 199 | .next() 200 | ); 201 | }); 202 | 203 | // Push backwards 204 | $('.backward').on('click touch', function(e) { 205 | $('.selected') 206 | .parent() 207 | .insertBefore( 208 | $('.selected') 209 | .parent() 210 | .prev() 211 | ); 212 | }); 213 | 214 | // Transform 215 | // Flip horizontal 216 | $('.fliphorizontal').on('click touch', function(e) { 217 | applyTransform($('.selected'), TRANSFORMS.FLIP, FLIPS.HORIZONTAL); 218 | }); 219 | 220 | // Flip vertical 221 | $('.flipvertical').on('click touch', function(e) { 222 | applyTransform($('.selected'), TRANSFORMS.FLIP, FLIPS.VERTICAL); 223 | }); 224 | 225 | // Rotate 90 clockwise 226 | $('.rotate90cw').on('click touch', function(e) { 227 | applyTransform($('.selected'), TRANSFORMS.ROTATE, 90); 228 | }); 229 | 230 | // Rotate 90 counter-clockwise 231 | $('.rotate90ccw').on('click touch', function(e) { 232 | applyTransform($('.selected'), TRANSFORMS.ROTATE, -90); 233 | }); 234 | 235 | // Rotate 236 | $('.rotate').on('click touch', function(e) {}); 237 | 238 | // Scale 239 | $('.scale').on('click touch', function(e) { 240 | showModal('scale-modal', 0); 241 | }); 242 | // About 243 | // Help 244 | $('.help').on('click touch', function(evt) { 245 | showModal('info-modal', 0); 246 | }); 247 | 248 | // Render the canvas and save as png when the "Save as PNG" button is clicked 249 | $('.download-png').on('click touch', function(evt) { 250 | saveAsPNG(); 251 | }); 252 | 253 | // Same for SVG 254 | $('.download-svg').on('click touch', function(evt) { 255 | saveAsSVG(); 256 | }); 257 | } 258 | 259 | // allowDrop is used on the drawboard to allow emoji from the sidebar to be dropped on there. 260 | // Allow dropping other elements on this element 261 | function allowDrop(evt) { 262 | evt.preventDefault(); 263 | } 264 | 265 | // appendEmoji is used when an element is dropped onto the drawboard. 266 | // Translate dropped imgs to function call on addSVG() 267 | function appendEmoji(evt) { 268 | addSVGtoDrawboard(document.getElementById(evt.dataTransfer.getData('text/html')).attributes['data-src'].value); 269 | } 270 | 271 | // Pass the source element when dragging images so appendEmoji() can parse them onto the drawboard 272 | function appendSource(evt) { 273 | evt.dataTransfer.setData('text/html', evt.target.id); 274 | } 275 | 276 | // Show the emojigrid for this tab (passed as category) in the sidebar 277 | // If the grid hasn't been shown previously we will also load the images here. 278 | function showGrid(cat) { 279 | if (!$('.grid_' + cat).hasClass('loaded')) { 280 | const files = svg_files.grids[cat]; 281 | if (!files) { 282 | console.warn('Error pending, dumping svg_files:'); 283 | console.warn(svg_files.grids); 284 | throw new Error( 285 | 'showGrid received a category that does not exist in svg_files!' 286 | ); 287 | } 288 | addFilesToGrid(files); 289 | $('.grid_' + cat).addClass('loaded'); 290 | } 291 | 292 | // Simple fadeout of the currently active grid and callback to show the desired grid 293 | $('.grid').fadeOut(333, function() { 294 | $('.grid_' + cat).show(); 295 | $('.tab').removeClass('tab_active'); 296 | $('.tab_' + cat).addClass('tab_active'); 297 | }); 298 | } 299 | 300 | // Enable dragging on this element 301 | function Draggable(elem) { 302 | // Rewritten from https://stackoverflow.com/questions/41514967/ 303 | const target = elem; 304 | 305 | // Create SVG points for capturing... 306 | // clickpoint: ... where the cursor is relative to the rest of the path 307 | // lastMove: ... the last transformation applied to this element 308 | // currentMove .. the current transformation to apply 309 | const lastMove = target.ownerSVGElement.createSVGPoint(); 310 | let clickPoint = target.ownerSVGElement.createSVGPoint(); 311 | const currentMove = target.ownerSVGElement.createSVGPoint(); 312 | 313 | $(target).on('pointerdown', function(evt) { 314 | evt.preventDefault(); 315 | clickPoint = globalToLocalCoords(evt.clientX, evt.clientY); 316 | $(target).addClass('dragged'); 317 | $(target.ownerSVGElement).on('pointermove', target, function(evt) { 318 | const p = globalToLocalCoords(evt.clientX, evt.clientY); 319 | currentMove.x = lastMove.x + (p.x - clickPoint.x); 320 | currentMove.y = lastMove.y + (p.y - clickPoint.y); 321 | applyTransform( 322 | target, 323 | 'translate', 324 | currentMove.x + ',' + currentMove.y 325 | ); 326 | }); 327 | 328 | $(target.ownerSVGElement).on('pointerup', target, function(evt) { 329 | lastMove.x = currentMove.x; 330 | lastMove.y = currentMove.y; 331 | $(target).removeClass('dragged'); 332 | $(target.ownerSVGElement).off('pointermove'); 333 | $(target.ownerSVGElement).off('pointerup'); 334 | }); 335 | }); 336 | 337 | // Convert DOM coordinates to SVG coordinates so we can apply a translation to this path accordingly 338 | function globalToLocalCoords(x, y) { 339 | const p = target.ownerSVGElement.createSVGPoint(); 340 | const m = target.parentNode.getScreenCTM(); 341 | p.x = x; 342 | p.y = y; 343 | return p.matrixTransform(m.inverse()); 344 | } 345 | } 346 | 347 | // Retrieve all SVG files from the SVG directory. 348 | // Note that RELATIVE_PATH_TO_SVG_DIR is only used to form the paths for the file src's. 349 | // The actual location of all the SVG's is stored in /svgs_MODE.json, which is generated by /fetcher/svg.php. 350 | async function getSVGFilesInDirectory(mode) { 351 | let directory, json; 352 | 353 | switch (mode) { 354 | case MODES.DETAILED: 355 | directory = URLS.SVG_DIR_PATH_DETAILED; 356 | json = URLS.JSON_PATH_DETAILED; 357 | break; 358 | case MODES.LATEST: 359 | directory = URLS.SVG_DIR_PATH_LATEST; 360 | json = URLS.JSON_PATH_LATEST; 361 | break; 362 | default: 363 | directory = URLS.SVG_DIR_PATH_DETAILED; 364 | json = URLS.JSON_PATH_DETAILED; 365 | break; 366 | } 367 | 368 | return new Promise((resolve, reject) => { 369 | $.ajax({ 370 | url: json, 371 | }).done(function(data) { 372 | const result = { 373 | tabs: [], 374 | grids: {}, 375 | }; 376 | 377 | // Iterate over directories inside the SVG folder. These are the categories. 378 | for (let i = 0; i < data.length; i++) { 379 | // Two versions of the gridname: one for scripts and one for displaying in the UI 380 | const gridname = data[i].name.replace(/\W/g, ''); 381 | const humanname = data[i].name; 382 | // Append current category (gridname) to the list emojigrids and tabmenus 383 | result.grids[gridname] = { 384 | html: '
', 385 | files: [], 386 | }; 387 | 388 | result.tabs.push( 389 | '
' + 394 | humanname + 395 | '
' 396 | ); 397 | 398 | // Iterate over files in directory d[i]. These are the emoji themselves. 399 | for (let j = 0; j < data[i].dir.length; j++) { 400 | // Root = "svg/" 401 | // d[1].name = The category. I.e. faces, objects, food, etc. 402 | // d[i].dir[i].file = The filename of the emoji. E.g. 1f47d.svg 403 | 404 | const htmlstring = 405 | ''; 413 | const targetgrid = '.grid_' + gridname; 414 | result.grids[gridname].files.push({ 415 | grid: targetgrid, 416 | html: htmlstring, 417 | }); 418 | } 419 | } 420 | resolve(result); 421 | }); 422 | }); 423 | } 424 | 425 | // Add tabs (i.e. categories) to the sidebar 426 | async function addTabs(tabs) { 427 | return new Promise((resolve, reject) => { 428 | // Asynchronously add every category to the tab menu 429 | tabs.forEach(async tab => { 430 | return new Promise((resolve, reject) => { 431 | $('.tabs').append(tab); 432 | resolve(); 433 | }); 434 | }); 435 | 436 | // Bind showGrid() to each tab to show the emojigrid for the corresponding category 437 | $('.tabs > div').click(function(e) { 438 | showGrid($(this).data('cat')); 439 | }); 440 | 441 | resolve(); 442 | }); 443 | } 444 | 445 | // Add the grids to the sidebar 446 | // Grids will contain the individual emoji, every category has its own grid 447 | async function addGrids(grids) { 448 | return new Promise((resolve, reject) => { 449 | // Asynchronously add every category to the emojigrid 450 | // We will later append the emoji themselves to these grids 451 | Object.entries(grids).forEach(async grid => { 452 | return new Promise((resolve, reject) => { 453 | $('.emojigrid').append(grid[1].html); 454 | resolve(); 455 | }); 456 | }); 457 | 458 | resolve(); 459 | }); 460 | } 461 | 462 | // Append all emoji to the given grid. 463 | // Expects an array with the following signature 464 | // [ 465 | // { 466 | // grid: ".grid_faces", 467 | // html: "" 468 | // }, 469 | // { 470 | // grid: ".grid_faces", 471 | // html: "" 472 | // } 473 | // ] 474 | async function addFilesToGrid(grid) { 475 | return new Promise((resolve, reject) => { 476 | // Asynchronously add every category to the emojigrid 477 | // We will later append the emoji themselves to these grids 478 | grid.files.forEach(async emoji => { 479 | return new Promise((resolve, reject) => { 480 | $(emoji.grid).append($.parseHTML(emoji.html)); 481 | resolve(); 482 | }); 483 | }); 484 | 485 | // Bind showGrid() to each tab to show the emojigrid for the corresponding category 486 | // Bind addSVG to each img to allow click-to-add to the drawboard 487 | $('.svg-icon').click(function(e) { 488 | addSVGtoDrawboard(this.attributes['data-src'].value); 489 | }); 490 | 491 | // Once again we need to attach the drag-and-drop event handler here to prevent CSP violations 492 | // jQuery's bind doesn't properly pass event.dataTransfer, so we opt to use vanilla JS here 493 | const svgicons = document.getElementsByClassName('svg-icon'); 494 | Array.from(svgicons).forEach(function(element) { 495 | element.addEventListener('dragstart', function(event) { 496 | appendSource(event); 497 | }); 498 | }); 499 | 500 | resolve(); 501 | }); 502 | } 503 | 504 | // Add this SVG element to the drawboard 505 | function addSVGtoDrawboard(src) { 506 | // Append staging area to DOM to load SVG in. $.load is destructive so we need a proxy element to prevent clearing the drawboard 507 | const stager = ''; 508 | $('.wrapper').append($.parseHTML(stager)); 509 | 510 | // Clear the hinter - the user figured out how to add emoji to the drawboard at this point 511 | $('.hinter').removeClass('hinter'); 512 | 513 | // Append the SVG file to the staging area and subsequently move to the drawboard 514 | $('.stagingarea').load(encodeURI(src), function() { 515 | // Aaaaand move it to the drawboard 516 | $('#drawboard').append($('.stagingarea').html()); 517 | 518 | // Remove all clipping paths (i.e. masks) that prevent SVG movement outside of the bounding box. 519 | // All metadata tags are also stripped because there's really no good reason to have it in here for our purposes. 520 | $('defs').remove(); 521 | $('metadata').remove(); 522 | 523 | // Destroy the staging area 524 | $('.stagingarea').remove(); 525 | 526 | // Done, let's make it draggable 527 | makePathsDraggable(); 528 | }); 529 | } 530 | 531 | function addSVGstring(svgstring) { 532 | // Same story as addSVG, but we load from a string instead of a file 533 | // DRY VIOLATIONS REEEEEEEEEEEEEEEEEEEE 534 | const stager = ''; 535 | $('.wrapper').append($.parseHTML(stager)); 536 | 537 | $('.hinter').remove(); 538 | 539 | // Append the SVG string to the staging area and subsequently move to the drawboard 540 | $('.stagingarea').html(svgstring); 541 | $('#drawboard').append($('.stagingarea').html()); 542 | $('defs').remove(); 543 | $('metadata').remove(); 544 | $('.stagingarea').remove(); 545 | 546 | makePathsDraggable(); 547 | } 548 | 549 | function saveAsPNG() { 550 | // Show loading overlay 551 | UIkit.modal(document.getElementById('loading-modal')).show(); 552 | 553 | // Make a temporary canvas to dump all the SVG to and append it to the DOM 554 | const renderbox = ''; 555 | $('.wrapper').append($.parseHTML(renderbox)); 556 | 557 | // Set the appropriate dimensions for the renderbox and SVG elements so canvg doesn't get confused from the 100%/100vh we have on the SVGs 558 | $('#renderbox, #drawboard > svg').width($('#drawboard').outerWidth()); 559 | $('#renderbox, #drawboard > svg').height($('#drawboard').outerHeight()); 560 | 561 | // Get all the SVG elements on the drawboard and save it as a string canvg will use later on 562 | let drawboardContent = ''; 563 | 564 | // If we have just one emoji, we only need the base HTML 565 | if ($('#drawboard > svg').length === 1) { 566 | // Remove all comments and strip whitespace from the single SVG element 567 | drawboardContent = $.trim( 568 | $('#drawboard') 569 | .html() 570 | .replace(//gi, '') 571 | ); 572 | } else { 573 | // If we have more than one emoji we'll need to merge them to one grand SVG, for this we need a new element to do some DOM manipulation 574 | const mergehelper = ''; 575 | $('.wrapper').append($.parseHTML(mergehelper)); 576 | $('.mergehelper').html($('#drawboard').html()); 577 | 578 | // Remove all XML comments to prevent fuckery later on 579 | $('.mergehelper').html( 580 | $('.mergehelper') 581 | .html() 582 | .replace(//gi, '') 583 | ); 584 | 585 | const SVGinMergeHelper = $('.mergehelper > svg'); 586 | 587 | // Append all subsequent SVG elements to the first 588 | for (let i = 1; i < SVGinMergeHelper.length; i++) { 589 | const t = $(SVGinMergeHelper[i]).html(); 590 | $('.mergehelper > svg') 591 | .eq(0) 592 | .append(t); 593 | $(SVGinMergeHelper[i]).remove(); 594 | } 595 | 596 | drawboardContent = $.trim($('.mergehelper').html()); 597 | } 598 | 599 | // Reset the dimensions on the SVGs in the drawboard 600 | $('svg') 601 | .css('width', 'auto') 602 | .css('height', 'auto'); 603 | 604 | // Convert the SVG in the renderbox to PNG 605 | canvg('renderbox', drawboardContent, { 606 | renderCallback: function() { 607 | // Wait 333ms for each SVG to make sure canvg is done rendering 608 | setTimeout(function() { 609 | const EmojiAsCanvas = document.getElementById('renderbox'); 610 | const base64blob = EmojiAsCanvas.toDataURL('image/png'); 611 | const DownloadHelper = document.createElement('a'); 612 | document.body.appendChild(DownloadHelper); 613 | DownloadHelper.href = base64blob; 614 | DownloadHelper.download = 'emoji.png'; 615 | DownloadHelper.click(); 616 | 617 | // Remove all temporary elements from DOM 618 | $(DownloadHelper).remove(); 619 | UIkit.modal(document.getElementById('loading-modal')).hide(); 620 | $('#renderbox, .mergehelper').remove(); 621 | }, $('#drawboard > svg').length * 333); 622 | }, 623 | }); 624 | } 625 | 626 | // Save the drawboard to an SVG file the user can come back to edit later on 627 | function saveAsSVG() { 628 | // This is a lot easier than PNG since we can just dump the entire contents of the drawboard to a file. 629 | // Note that this will only produce a valid SVG file if the user has added just one emoji to the drawboard. 630 | // Our custom loader will work just fine with more than one emoji, however. 631 | const url = 632 | 'data:image/svg+xml;charset=utf-8,' + 633 | encodeURIComponent($('#drawboard').html()); 634 | const DownloadHelper = document.createElement('a'); 635 | DownloadHelper.href = url; 636 | DownloadHelper.download = 'emoji.svg'; 637 | DownloadHelper.click(); 638 | $(DownloadHelper).remove(); 639 | } 640 | 641 | // Load an SVG file and display it to the drawboard 642 | function LoadSVG() { 643 | const input = $(document.createElement('input')); 644 | input.attr('type', 'file'); 645 | input.on('change', function(evt) { 646 | const file = this.files[0]; 647 | const reader = new FileReader(); 648 | 649 | reader.onload = (function(resultfile) { 650 | return function(e) { 651 | // Append the contents of the SVG file to the drawboard 652 | addSVGstring(e.target.result); 653 | }; 654 | })(file); 655 | 656 | // Read in the image file as a data URL. 657 | reader.readAsText(file); 658 | }); 659 | input.click(); 660 | return false; 661 | } 662 | 663 | // Show a modal for a specified period of time. Defaults to displaying the modal for 10 seconds. 664 | function showModal(modalname, delay = 10) { 665 | if (delay > 0) { 666 | UIkit.modal(document.getElementById(modalname)).show(); 667 | setTimeout(function() { 668 | UIkit.modal(document.getElementById(modalname)).hide(); 669 | }, delay * 1000); 670 | } else { 671 | UIkit.modal(document.getElementById(modalname)).show(); 672 | } 673 | } 674 | 675 | function makePathsDraggable() { 676 | const selector = mode == MODES.LATEST ? 'svg > *' : 'path'; 677 | $(selector).each(function() { 678 | // Instantiate Draggable on this element 679 | new Draggable(this); 680 | 681 | // Make each path selectable by click 682 | $(this).on('click touch', function(evt) { 683 | $('.selected').removeClass('selected'); 684 | $(evt.target).addClass('selected'); 685 | }); 686 | }); 687 | } 688 | 689 | // Apply a transformation to an SVG path without destroying/unsetting the current transformations 690 | // Calling signature examples: 691 | // ApplyTransform($('.selected'), TRANSFORMS.ROTATE, 90); 692 | // ApplyTransform($('.selected'), TRANSFORMS.FLIP, FLIPS.HORIZONTAL); 693 | function applyTransform(path, name, value) { 694 | // All parameters are required 695 | if (!path || !name || !value) { 696 | throw new Error( 697 | `Attempted to apply transformation to path with missing arguments:${ 698 | path ? '' : ' path' 699 | }${name ? '' : ' name'} ${value ? '' : ' value'}` 700 | ); 701 | } 702 | 703 | let flip = false; 704 | 705 | // There is no official flip transform so we use scale instead. 706 | if (name === TRANSFORMS.FLIP) { 707 | flip = true; 708 | name = TRANSFORMS.SCALE; 709 | } 710 | 711 | let transforms = $(path).attr('transform'); 712 | // If no transformation is applied to this element we will continue with an empty array. The new transformation will be pushed to this array later on. 713 | // We cant just split on " " since scale contains a space, so we split on a space followed by a letter and filter out elements that are just a space. 714 | transforms = transforms 715 | ? transforms 716 | .split(/( )(?=[a-z])/gi) 717 | .filter((transform) => transform !== ' ') 718 | : []; 719 | 720 | // Transforms all have the signature 'name(value)', so we can retrieve the name by getting every char ahead of the first parenthesis 721 | const targettransformindex = transforms.findIndex((transform) => transform.split('(')[0] === name); 722 | 723 | // Make sure both x and y are populated if only x is passed for scale transforms. 724 | if (name === TRANSFORMS.SCALE && value.split(' ').length !== 2 && !flip) { 725 | value = value + ' ' + value; 726 | } 727 | 728 | // Flips (both horizontal and vertical) are applied using a negative value on the scale transform. We maintains those negatives here. 729 | // This statement is also used to generate 'value' for new flips 730 | if ((name === TRANSFORMS.SCALE && targettransformindex >= 0) || flip) { 731 | // Match the two parentheses that will contain the value and strip them, leaving us with a space-sepparated value for x and y. 732 | let currentvalue; 733 | try { 734 | currentvalue = transforms[targettransformindex] 735 | .match(/\((.+?)\)/g)[0] 736 | .replace(/\(|\)/g, ''); 737 | } catch (e) { 738 | currentvalue = '1 1'; 739 | } 740 | let currentx = currentvalue.split(' ')[0], 741 | currenty = currentvalue.split(' ')[1]; 742 | let newx, newy; 743 | 744 | if (flip) { 745 | currentx = currentx; 746 | currenty = currenty; 747 | newx = currentx; 748 | newy = currenty; 749 | // Scale has previously been applied to this element and we need to apply a new flip 750 | // i.e. inverse one of the scale parameters. 751 | if (value === FLIPS.HORIZONTAL) { 752 | // Apply horizontal flip (x axis) 753 | newx *= -1; 754 | } else if (value === FLIPS.VERTICAL) { 755 | // Apply vertical flip (y axis) 756 | newy *= -1; 757 | } else { 758 | // Value must either be horizontal or vertical 759 | throw new Error( 760 | `Attempted to apply flip with invalid value '${value}'` 761 | ); 762 | } 763 | } else { 764 | newx = value.split(' ')[0]; 765 | newy = value.split(' ')[1]; 766 | // We need to apply a scale, but not a flip. Since flips are applied using negative or positive values we have to maintain the negative or positive value when applying a scale 767 | newx = currentx < 0 ? newx * -1 : newx; 768 | newy = currenty < 0 ? newy * -1 : newy; 769 | } 770 | 771 | value = newx + ' ' + newy; 772 | } 773 | 774 | // If targettransformindex is greater than or equal to 0, the target path already has a value for the desired transformation. We'll mutate that value right here. 775 | if (targettransformindex >= 0) { 776 | // The regex finds the old value, which will be between parentheses, and replaces it with our own value. 777 | transforms[targettransformindex] = transforms[ 778 | targettransformindex 779 | ].replace(/\((.+?)\)/g, `(${value})`); 780 | } else { 781 | // If targettransformindex is -1, we need to create the transformation ourselves and append it to the attribute. 782 | transforms.push(`${name}(${value})`); 783 | } 784 | 785 | // Sort transforms reversed-alphabetically so 'translate' comes before 'rotate'. If we didn't do this the element would translate from it's rotated origin, which is very counter-intuitive. 786 | // See https://drafts.csswg.org/css-transforms-1/#transform-rendering at point 3 787 | transforms.sort().reverse(); 788 | 789 | $(path).attr('transform', transforms.join(' ')); 790 | 791 | return transforms.join(' '); 792 | } 793 | 794 | // Spawn a builder emoji from a string emoji 795 | function emojiToBuilder(emoji) { 796 | const codepoint = emoji.codePointAt(0); 797 | const hex = codepoint.toString(16).toLowerCase(); 798 | const src = findSrc(hex); 799 | if (!src) { 800 | $('#add-emoji-input').val('Not found :('); 801 | return; 802 | } 803 | 804 | addSVGtoDrawboard(src); 805 | } 806 | 807 | function findSrc(hex) { 808 | let src; 809 | for (const gridkey in svg_files.grids) { 810 | svg_files.grids[gridkey].files.forEach(file => { 811 | if ($(file.html)[0].id == hex) { 812 | src = $(file.html)[0].attributes['data-src'].nodeValue; 813 | } 814 | }); 815 | } 816 | 817 | return src || false; 818 | } 819 | 820 | const modeCookie = { 821 | set: (mode) => { 822 | const d = new Date(); 823 | d.setTime(d.getTime() + 12 * 30 * 24 * 60 * 60 * 1000); 824 | document.cookie = `preferredMode=${mode};expires=${d.toUTCString()};path=/`; 825 | }, 826 | unset: () => { 827 | document.cookie = `preferredMode=; Max-Age=-99999999;`; 828 | }, 829 | get: () => { 830 | const name = 'preferredMode'; 831 | const decodedCookie = decodeURIComponent(document.cookie); 832 | const ca = decodedCookie.split(';'); 833 | for (let i = 0; i < ca.length; i++) { 834 | let c = ca[i]; 835 | while (c.charAt(0) == ' ') { 836 | c = c.substring(1); 837 | } 838 | if (c.indexOf(name) == 0) { 839 | return c.substring(name.length, c.length); 840 | } 841 | } 842 | 843 | return false; 844 | }, 845 | exists: () => { 846 | return !!modeCookie.get(); 847 | }, 848 | }; 849 | 850 | // Allow access to ApplyTransform from anywhere for debug purposes 851 | window.applyTransform = applyTransform; 852 | 853 | // Listen for delete keypress and delete the currently selected path 854 | $('html').keyup(function(evt) { 855 | switch (evt.keyCode) { 856 | case 46: 857 | $('.selected').remove(); 858 | break; 859 | case 68: 860 | $('.selected').removeClass('selected'); 861 | break; 862 | default: 863 | break; 864 | } 865 | }); 866 | })(); 867 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Emojibuilder - Construct your own emoji/abominations", 3 | "short_name": "Emojibuilder", 4 | "icons": [ 5 | { 6 | "src": "favicon/android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "favicon/android-chrome-512x512.png", 12 | "sizes": "512x512", 13 | "type": "image/png" 14 | } 15 | ], 16 | "theme_color": "#2d2d2d", 17 | "background_color": "#2d2d2d", 18 | "start_url": "index.html", 19 | "display": "standalone" 20 | } -------------------------------------------------------------------------------- /svgs_detailed.json: -------------------------------------------------------------------------------- 1 | [{"dir":[{"file":"1f004.svg"},{"file":"1f0cf.svg"},{"file":"1f380.svg"},{"file":"1f381.svg"},{"file":"1f383.svg"},{"file":"1f384.svg"},{"file":"1f386.svg"},{"file":"1f387.svg"},{"file":"1f388.svg"},{"file":"1f389.svg"},{"file":"1f38a.svg"},{"file":"1f38b.svg"},{"file":"1f38d.svg"},{"file":"1f38e.svg"},{"file":"1f38f.svg"},{"file":"1f390.svg"},{"file":"1f391.svg"},{"file":"1f396.svg"},{"file":"1f397.svg"},{"file":"1f39f.svg"},{"file":"1f3a3.svg"},{"file":"1f3a8.svg"},{"file":"1f3ab.svg"},{"file":"1f3ad.svg"},{"file":"1f3ae.svg"},{"file":"1f3af.svg"},{"file":"1f3b0.svg"},{"file":"1f3b1.svg"},{"file":"1f3b2.svg"},{"file":"1f3b3.svg"},{"file":"1f3b4.svg"},{"file":"1f3bd.svg"},{"file":"1f3be.svg"},{"file":"1f3bf.svg"},{"file":"1f3c0.svg"},{"file":"1f3c5.svg"},{"file":"1f3c6.svg"},{"file":"1f3c8.svg"},{"file":"1f3c9.svg"},{"file":"1f3cf.svg"},{"file":"1f3d0.svg"},{"file":"1f3d1.svg"},{"file":"1f3d2.svg"},{"file":"1f3d3.svg"},{"file":"1f3f8.svg"},{"file":"1f52e.svg"},{"file":"1f579.svg"},{"file":"1f5bc.svg"},{"file":"1f6f7.svg"},{"file":"1f945.svg"},{"file":"1f947.svg"},{"file":"1f948.svg"},{"file":"1f949.svg"},{"file":"1f94a.svg"},{"file":"1f94b.svg"},{"file":"1f94c.svg"},{"file":"2660.svg"},{"file":"2663.svg"},{"file":"2665.svg"},{"file":"2666.svg"},{"file":"26bd.svg"},{"file":"26be.svg"},{"file":"26f3.svg"},{"file":"26f8.svg"},{"file":"2728.svg"}],"name":"Activities"},{"dir":[{"file":"1f331.svg"},{"file":"1f332.svg"},{"file":"1f333.svg"},{"file":"1f334.svg"},{"file":"1f335.svg"},{"file":"1f337.svg"},{"file":"1f338.svg"},{"file":"1f339.svg"},{"file":"1f33a.svg"},{"file":"1f33b.svg"},{"file":"1f33c.svg"},{"file":"1f33e.svg"},{"file":"1f33f.svg"},{"file":"1f340.svg"},{"file":"1f341.svg"},{"file":"1f342.svg"},{"file":"1f343.svg"},{"file":"1f3f5.svg"},{"file":"1f400.svg"},{"file":"1f401.svg"},{"file":"1f402.svg"},{"file":"1f403.svg"},{"file":"1f404.svg"},{"file":"1f405.svg"},{"file":"1f406.svg"},{"file":"1f407.svg"},{"file":"1f408.svg"},{"file":"1f409.svg"},{"file":"1f40a.svg"},{"file":"1f40b.svg"},{"file":"1f40c.svg"},{"file":"1f40d.svg"},{"file":"1f40e.svg"},{"file":"1f40f.svg"},{"file":"1f410.svg"},{"file":"1f411.svg"},{"file":"1f412.svg"},{"file":"1f413.svg"},{"file":"1f414.svg"},{"file":"1f415.svg"},{"file":"1f416.svg"},{"file":"1f417.svg"},{"file":"1f418.svg"},{"file":"1f419.svg"},{"file":"1f41a.svg"},{"file":"1f41b.svg"},{"file":"1f41c.svg"},{"file":"1f41d.svg"},{"file":"1f41e.svg"},{"file":"1f41f.svg"},{"file":"1f420.svg"},{"file":"1f421.svg"},{"file":"1f422.svg"},{"file":"1f423.svg"},{"file":"1f424.svg"},{"file":"1f425.svg"},{"file":"1f426.svg"},{"file":"1f427.svg"},{"file":"1f428.svg"},{"file":"1f429.svg"},{"file":"1f42a.svg"},{"file":"1f42b.svg"},{"file":"1f42c.svg"},{"file":"1f42d.svg"},{"file":"1f42e.svg"},{"file":"1f42f.svg"},{"file":"1f430.svg"},{"file":"1f431.svg"},{"file":"1f432.svg"},{"file":"1f433.svg"},{"file":"1f434.svg"},{"file":"1f435.svg"},{"file":"1f436.svg"},{"file":"1f437.svg"},{"file":"1f438.svg"},{"file":"1f439.svg"},{"file":"1f43a.svg"},{"file":"1f43b.svg"},{"file":"1f43c.svg"},{"file":"1f43d.svg"},{"file":"1f43e.svg"},{"file":"1f43f.svg"},{"file":"1f490.svg"},{"file":"1f4ae.svg"},{"file":"1f54a.svg"},{"file":"1f577.svg"},{"file":"1f578.svg"},{"file":"1f940.svg"},{"file":"1f980.svg"},{"file":"1f981.svg"},{"file":"1f982.svg"},{"file":"1f983.svg"},{"file":"1f984.svg"},{"file":"1f985.svg"},{"file":"1f986.svg"},{"file":"1f987.svg"},{"file":"1f988.svg"},{"file":"1f989.svg"},{"file":"1f98a.svg"},{"file":"1f98b.svg"},{"file":"1f98c.svg"},{"file":"1f98d.svg"},{"file":"1f98e.svg"},{"file":"1f98f.svg"},{"file":"1f990.svg"},{"file":"1f991.svg"},{"file":"1f992.svg"},{"file":"1f993.svg"},{"file":"1f994.svg"},{"file":"1f995.svg"},{"file":"1f996.svg"},{"file":"1f997.svg"},{"file":"2618.svg"}],"name":"Animals & Nature"},{"dir":[{"file":"1f1e6-1f1e8.svg"},{"file":"1f1e6-1f1e9.svg"},{"file":"1f1e6-1f1ea.svg"},{"file":"1f1e6-1f1eb.svg"},{"file":"1f1e6-1f1ec.svg"},{"file":"1f1e6-1f1ee.svg"},{"file":"1f1e6-1f1f1.svg"},{"file":"1f1e6-1f1f2.svg"},{"file":"1f1e6-1f1f4.svg"},{"file":"1f1e6-1f1f6.svg"},{"file":"1f1e6-1f1f7.svg"},{"file":"1f1e6-1f1f8.svg"},{"file":"1f1e6-1f1f9.svg"},{"file":"1f1e6-1f1fa.svg"},{"file":"1f1e6-1f1fc.svg"},{"file":"1f1e6-1f1fd.svg"},{"file":"1f1e6-1f1ff.svg"},{"file":"1f1e7-1f1e6.svg"},{"file":"1f1e7-1f1e7.svg"},{"file":"1f1e7-1f1e9.svg"},{"file":"1f1e7-1f1ea.svg"},{"file":"1f1e7-1f1eb.svg"},{"file":"1f1e7-1f1ec.svg"},{"file":"1f1e7-1f1ed.svg"},{"file":"1f1e7-1f1ee.svg"},{"file":"1f1e7-1f1ef.svg"},{"file":"1f1e7-1f1f1.svg"},{"file":"1f1e7-1f1f2.svg"},{"file":"1f1e7-1f1f3.svg"},{"file":"1f1e7-1f1f4.svg"},{"file":"1f1e7-1f1f6.svg"},{"file":"1f1e7-1f1f7.svg"},{"file":"1f1e7-1f1f8.svg"},{"file":"1f1e7-1f1f9.svg"},{"file":"1f1e7-1f1fb.svg"},{"file":"1f1e7-1f1fc.svg"},{"file":"1f1e7-1f1fe.svg"},{"file":"1f1e7-1f1ff.svg"},{"file":"1f1e8-1f1e6.svg"},{"file":"1f1e8-1f1e8.svg"},{"file":"1f1e8-1f1e9.svg"},{"file":"1f1e8-1f1eb.svg"},{"file":"1f1e8-1f1ec.svg"},{"file":"1f1e8-1f1ed.svg"},{"file":"1f1e8-1f1ee.svg"},{"file":"1f1e8-1f1f0.svg"},{"file":"1f1e8-1f1f1.svg"},{"file":"1f1e8-1f1f2.svg"},{"file":"1f1e8-1f1f3.svg"},{"file":"1f1e8-1f1f4.svg"},{"file":"1f1e8-1f1f5.svg"},{"file":"1f1e8-1f1f7.svg"},{"file":"1f1e8-1f1fa.svg"},{"file":"1f1e8-1f1fb.svg"},{"file":"1f1e8-1f1fc.svg"},{"file":"1f1e8-1f1fd.svg"},{"file":"1f1e8-1f1fe.svg"},{"file":"1f1e8-1f1ff.svg"},{"file":"1f1e9-1f1ea.svg"},{"file":"1f1e9-1f1ec.svg"},{"file":"1f1e9-1f1ef.svg"},{"file":"1f1e9-1f1f0.svg"},{"file":"1f1e9-1f1f2.svg"},{"file":"1f1e9-1f1f4.svg"},{"file":"1f1e9-1f1ff.svg"},{"file":"1f1ea-1f1e6.svg"},{"file":"1f1ea-1f1e8.svg"},{"file":"1f1ea-1f1ea.svg"},{"file":"1f1ea-1f1ec.svg"},{"file":"1f1ea-1f1ed.svg"},{"file":"1f1ea-1f1f7.svg"},{"file":"1f1ea-1f1f8.svg"},{"file":"1f1ea-1f1f9.svg"},{"file":"1f1ea-1f1fa.svg"},{"file":"1f1eb-1f1ee.svg"},{"file":"1f1eb-1f1ef.svg"},{"file":"1f1eb-1f1f0.svg"},{"file":"1f1eb-1f1f2.svg"},{"file":"1f1eb-1f1f4.svg"},{"file":"1f1eb-1f1f7.svg"},{"file":"1f1ec-1f1e6.svg"},{"file":"1f1ec-1f1e7.svg"},{"file":"1f1ec-1f1e9.svg"},{"file":"1f1ec-1f1ea.svg"},{"file":"1f1ec-1f1eb.svg"},{"file":"1f1ec-1f1ec.svg"},{"file":"1f1ec-1f1ed.svg"},{"file":"1f1ec-1f1ee.svg"},{"file":"1f1ec-1f1f1.svg"},{"file":"1f1ec-1f1f2.svg"},{"file":"1f1ec-1f1f3.svg"},{"file":"1f1ec-1f1f5.svg"},{"file":"1f1ec-1f1f6.svg"},{"file":"1f1ec-1f1f7.svg"},{"file":"1f1ec-1f1f8.svg"},{"file":"1f1ec-1f1f9.svg"},{"file":"1f1ec-1f1fa.svg"},{"file":"1f1ec-1f1fc.svg"},{"file":"1f1ec-1f1fe.svg"},{"file":"1f1ed-1f1f0.svg"},{"file":"1f1ed-1f1f2.svg"},{"file":"1f1ed-1f1f3.svg"},{"file":"1f1ed-1f1f7.svg"},{"file":"1f1ed-1f1f9.svg"},{"file":"1f1ed-1f1fa.svg"},{"file":"1f1ee-1f1e8.svg"},{"file":"1f1ee-1f1e9.svg"},{"file":"1f1ee-1f1ea.svg"},{"file":"1f1ee-1f1f1.svg"},{"file":"1f1ee-1f1f2.svg"},{"file":"1f1ee-1f1f3.svg"},{"file":"1f1ee-1f1f4.svg"},{"file":"1f1ee-1f1f6.svg"},{"file":"1f1ee-1f1f7.svg"},{"file":"1f1ee-1f1f8.svg"},{"file":"1f1ee-1f1f9.svg"},{"file":"1f1ef-1f1ea.svg"},{"file":"1f1ef-1f1f2.svg"},{"file":"1f1ef-1f1f4.svg"},{"file":"1f1ef-1f1f5.svg"},{"file":"1f1f0-1f1ea.svg"},{"file":"1f1f0-1f1ec.svg"},{"file":"1f1f0-1f1ed.svg"},{"file":"1f1f0-1f1ee.svg"},{"file":"1f1f0-1f1f2.svg"},{"file":"1f1f0-1f1f3.svg"},{"file":"1f1f0-1f1f5.svg"},{"file":"1f1f0-1f1f7.svg"},{"file":"1f1f0-1f1fc.svg"},{"file":"1f1f0-1f1fe.svg"},{"file":"1f1f0-1f1ff.svg"},{"file":"1f1f1-1f1e6.svg"},{"file":"1f1f1-1f1e7.svg"},{"file":"1f1f1-1f1e8.svg"},{"file":"1f1f1-1f1ee.svg"},{"file":"1f1f1-1f1f0.svg"},{"file":"1f1f1-1f1f7.svg"},{"file":"1f1f1-1f1f8.svg"},{"file":"1f1f1-1f1f9.svg"},{"file":"1f1f1-1f1fa.svg"},{"file":"1f1f1-1f1fb.svg"},{"file":"1f1f1-1f1fe.svg"},{"file":"1f1f2-1f1e6.svg"},{"file":"1f1f2-1f1e8.svg"},{"file":"1f1f2-1f1e9.svg"},{"file":"1f1f2-1f1ea.svg"},{"file":"1f1f2-1f1eb.svg"},{"file":"1f1f2-1f1ec.svg"},{"file":"1f1f2-1f1ed.svg"},{"file":"1f1f2-1f1f0.svg"},{"file":"1f1f2-1f1f1.svg"},{"file":"1f1f2-1f1f2.svg"},{"file":"1f1f2-1f1f3.svg"},{"file":"1f1f2-1f1f4.svg"},{"file":"1f1f2-1f1f5.svg"},{"file":"1f1f2-1f1f6.svg"},{"file":"1f1f2-1f1f7.svg"},{"file":"1f1f2-1f1f8.svg"},{"file":"1f1f2-1f1f9.svg"},{"file":"1f1f2-1f1fa.svg"},{"file":"1f1f2-1f1fb.svg"},{"file":"1f1f2-1f1fc.svg"},{"file":"1f1f2-1f1fd.svg"},{"file":"1f1f2-1f1fe.svg"},{"file":"1f1f2-1f1ff.svg"},{"file":"1f1f3-1f1e6.svg"},{"file":"1f1f3-1f1e8.svg"},{"file":"1f1f3-1f1ea.svg"},{"file":"1f1f3-1f1eb.svg"},{"file":"1f1f3-1f1ec.svg"},{"file":"1f1f3-1f1ee.svg"},{"file":"1f1f3-1f1f1.svg"},{"file":"1f1f3-1f1f4.svg"},{"file":"1f1f3-1f1f5.svg"},{"file":"1f1f3-1f1f7.svg"},{"file":"1f1f3-1f1fa.svg"},{"file":"1f1f3-1f1ff.svg"},{"file":"1f1f4-1f1f2.svg"},{"file":"1f1f5-1f1e6.svg"},{"file":"1f1f5-1f1ea.svg"},{"file":"1f1f5-1f1eb.svg"},{"file":"1f1f5-1f1ec.svg"},{"file":"1f1f5-1f1ed.svg"},{"file":"1f1f5-1f1f0.svg"},{"file":"1f1f5-1f1f1.svg"},{"file":"1f1f5-1f1f2.svg"},{"file":"1f1f5-1f1f3.svg"},{"file":"1f1f5-1f1f7.svg"},{"file":"1f1f5-1f1f8.svg"},{"file":"1f1f5-1f1f9.svg"},{"file":"1f1f5-1f1fc.svg"},{"file":"1f1f5-1f1fe.svg"},{"file":"1f1f6-1f1e6.svg"},{"file":"1f1f7-1f1ea.svg"},{"file":"1f1f7-1f1f4.svg"},{"file":"1f1f7-1f1f8.svg"},{"file":"1f1f7-1f1fa.svg"},{"file":"1f1f7-1f1fc.svg"},{"file":"1f1f8-1f1e6.svg"},{"file":"1f1f8-1f1e7.svg"},{"file":"1f1f8-1f1e8.svg"},{"file":"1f1f8-1f1e9.svg"},{"file":"1f1f8-1f1ea.svg"},{"file":"1f1f8-1f1ec.svg"},{"file":"1f1f8-1f1ed.svg"},{"file":"1f1f8-1f1ee.svg"},{"file":"1f1f8-1f1ef.svg"},{"file":"1f1f8-1f1f0.svg"},{"file":"1f1f8-1f1f1.svg"},{"file":"1f1f8-1f1f2.svg"},{"file":"1f1f8-1f1f3.svg"},{"file":"1f1f8-1f1f4.svg"},{"file":"1f1f8-1f1f7.svg"},{"file":"1f1f8-1f1f8.svg"},{"file":"1f1f8-1f1f9.svg"},{"file":"1f1f8-1f1fb.svg"},{"file":"1f1f8-1f1fd.svg"},{"file":"1f1f8-1f1fe.svg"},{"file":"1f1f8-1f1ff.svg"},{"file":"1f1f9-1f1e6.svg"},{"file":"1f1f9-1f1e8.svg"},{"file":"1f1f9-1f1e9.svg"},{"file":"1f1f9-1f1eb.svg"},{"file":"1f1f9-1f1ec.svg"},{"file":"1f1f9-1f1ed.svg"},{"file":"1f1f9-1f1ef.svg"},{"file":"1f1f9-1f1f0.svg"},{"file":"1f1f9-1f1f1.svg"},{"file":"1f1f9-1f1f2.svg"},{"file":"1f1f9-1f1f3.svg"},{"file":"1f1f9-1f1f4.svg"},{"file":"1f1f9-1f1f7.svg"},{"file":"1f1f9-1f1f9.svg"},{"file":"1f1f9-1f1fb.svg"},{"file":"1f1f9-1f1fc.svg"},{"file":"1f1f9-1f1ff.svg"},{"file":"1f1fa-1f1e6.svg"},{"file":"1f1fa-1f1ec.svg"},{"file":"1f1fa-1f1f2.svg"},{"file":"1f1fa-1f1f3.svg"},{"file":"1f1fa-1f1f8.svg"},{"file":"1f1fa-1f1fe.svg"},{"file":"1f1fa-1f1ff.svg"},{"file":"1f1fb-1f1e6.svg"},{"file":"1f1fb-1f1e8.svg"},{"file":"1f1fb-1f1ea.svg"},{"file":"1f1fb-1f1ec.svg"},{"file":"1f1fb-1f1ee.svg"},{"file":"1f1fb-1f1f3.svg"},{"file":"1f1fb-1f1fa.svg"},{"file":"1f1fc-1f1eb.svg"},{"file":"1f1fc-1f1f8.svg"},{"file":"1f1fd-1f1f0.svg"},{"file":"1f1fe-1f1ea.svg"},{"file":"1f1fe-1f1f9.svg"},{"file":"1f1ff-1f1e6.svg"},{"file":"1f1ff-1f1f2.svg"},{"file":"1f1ff-1f1fc.svg"},{"file":"1f38c.svg"},{"file":"1f3c1.svg"},{"file":"1f3f3-fe0f-200d-1f308.svg"},{"file":"1f3f3.svg"},{"file":"1f3f4-200d-2620-fe0f.svg"},{"file":"1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.svg"},{"file":"1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.svg"},{"file":"1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.svg"},{"file":"1f3f4.svg"},{"file":"1f6a9.svg"}],"name":"Flags"},{"dir":[{"file":"1f32d.svg"},{"file":"1f32e.svg"},{"file":"1f32f.svg"},{"file":"1f330.svg"},{"file":"1f336.svg"},{"file":"1f33d.svg"},{"file":"1f344.svg"},{"file":"1f345.svg"},{"file":"1f346.svg"},{"file":"1f347.svg"},{"file":"1f348.svg"},{"file":"1f349.svg"},{"file":"1f34a.svg"},{"file":"1f34b.svg"},{"file":"1f34c.svg"},{"file":"1f34d.svg"},{"file":"1f34e.svg"},{"file":"1f34f.svg"},{"file":"1f350.svg"},{"file":"1f351.svg"},{"file":"1f352.svg"},{"file":"1f353.svg"},{"file":"1f354.svg"},{"file":"1f355.svg"},{"file":"1f356.svg"},{"file":"1f357.svg"},{"file":"1f358.svg"},{"file":"1f359.svg"},{"file":"1f35a.svg"},{"file":"1f35b.svg"},{"file":"1f35c.svg"},{"file":"1f35d.svg"},{"file":"1f35e.svg"},{"file":"1f35f.svg"},{"file":"1f360.svg"},{"file":"1f361.svg"},{"file":"1f362.svg"},{"file":"1f363.svg"},{"file":"1f364.svg"},{"file":"1f365.svg"},{"file":"1f366.svg"},{"file":"1f367.svg"},{"file":"1f368.svg"},{"file":"1f369.svg"},{"file":"1f36a.svg"},{"file":"1f36b.svg"},{"file":"1f36c.svg"},{"file":"1f36d.svg"},{"file":"1f36e.svg"},{"file":"1f36f.svg"},{"file":"1f370.svg"},{"file":"1f371.svg"},{"file":"1f372.svg"},{"file":"1f373.svg"},{"file":"1f374.svg"},{"file":"1f375.svg"},{"file":"1f376.svg"},{"file":"1f377.svg"},{"file":"1f378.svg"},{"file":"1f379.svg"},{"file":"1f37a.svg"},{"file":"1f37b.svg"},{"file":"1f37c.svg"},{"file":"1f37d.svg"},{"file":"1f37e.svg"},{"file":"1f37f.svg"},{"file":"1f382.svg"},{"file":"1f3fa.svg"},{"file":"1f52a.svg"},{"file":"1f942.svg"},{"file":"1f943.svg"},{"file":"1f944.svg"},{"file":"1f950.svg"},{"file":"1f951.svg"},{"file":"1f952.svg"},{"file":"1f953.svg"},{"file":"1f954.svg"},{"file":"1f955.svg"},{"file":"1f956.svg"},{"file":"1f957.svg"},{"file":"1f958.svg"},{"file":"1f959.svg"},{"file":"1f95a.svg"},{"file":"1f95b.svg"},{"file":"1f95c.svg"},{"file":"1f95d.svg"},{"file":"1f95e.svg"},{"file":"1f95f.svg"},{"file":"1f960.svg"},{"file":"1f961.svg"},{"file":"1f962.svg"},{"file":"1f963.svg"},{"file":"1f964.svg"},{"file":"1f965.svg"},{"file":"1f966.svg"},{"file":"1f967.svg"},{"file":"1f968.svg"},{"file":"1f969.svg"},{"file":"1f96a.svg"},{"file":"1f96b.svg"},{"file":"1f9c0.svg"},{"file":"2615.svg"}],"name":"Food & Drink"},{"dir":[{"file":"1f399.svg"},{"file":"1f39a.svg"},{"file":"1f39b.svg"},{"file":"1f39e.svg"},{"file":"1f3a4.svg"},{"file":"1f3a5.svg"},{"file":"1f3a7.svg"},{"file":"1f3ac.svg"},{"file":"1f3b5.svg"},{"file":"1f3b6.svg"},{"file":"1f3b7.svg"},{"file":"1f3b8.svg"},{"file":"1f3b9.svg"},{"file":"1f3ba.svg"},{"file":"1f3bb.svg"},{"file":"1f3bc.svg"},{"file":"1f3ee.svg"},{"file":"1f3f7.svg"},{"file":"1f3f9.svg"},{"file":"1f489.svg"},{"file":"1f48a.svg"},{"file":"1f4a1.svg"},{"file":"1f4b0.svg"},{"file":"1f4b1.svg"},{"file":"1f4b2.svg"},{"file":"1f4b3.svg"},{"file":"1f4b4.svg"},{"file":"1f4b5.svg"},{"file":"1f4b6.svg"},{"file":"1f4b7.svg"},{"file":"1f4b8.svg"},{"file":"1f4b9.svg"},{"file":"1f4bb.svg"},{"file":"1f4bc.svg"},{"file":"1f4bd.svg"},{"file":"1f4be.svg"},{"file":"1f4bf.svg"},{"file":"1f4c0.svg"},{"file":"1f4c1.svg"},{"file":"1f4c2.svg"},{"file":"1f4c3.svg"},{"file":"1f4c4.svg"},{"file":"1f4c5.svg"},{"file":"1f4c6.svg"},{"file":"1f4c7.svg"},{"file":"1f4c8.svg"},{"file":"1f4c9.svg"},{"file":"1f4ca.svg"},{"file":"1f4cb.svg"},{"file":"1f4cc.svg"},{"file":"1f4cd.svg"},{"file":"1f4ce.svg"},{"file":"1f4cf.svg"},{"file":"1f4d0.svg"},{"file":"1f4d1.svg"},{"file":"1f4d2.svg"},{"file":"1f4d3.svg"},{"file":"1f4d4.svg"},{"file":"1f4d5.svg"},{"file":"1f4d6.svg"},{"file":"1f4d7.svg"},{"file":"1f4d8.svg"},{"file":"1f4d9.svg"},{"file":"1f4da.svg"},{"file":"1f4dc.svg"},{"file":"1f4dd.svg"},{"file":"1f4de.svg"},{"file":"1f4df.svg"},{"file":"1f4e0.svg"},{"file":"1f4e1.svg"},{"file":"1f4e2.svg"},{"file":"1f4e3.svg"},{"file":"1f4e4.svg"},{"file":"1f4e5.svg"},{"file":"1f4e6.svg"},{"file":"1f4e7.svg"},{"file":"1f4e8.svg"},{"file":"1f4e9.svg"},{"file":"1f4ea.svg"},{"file":"1f4eb.svg"},{"file":"1f4ec.svg"},{"file":"1f4ed.svg"},{"file":"1f4ee.svg"},{"file":"1f4ef.svg"},{"file":"1f4f0.svg"},{"file":"1f4f1.svg"},{"file":"1f4f2.svg"},{"file":"1f4f7.svg"},{"file":"1f4f8.svg"},{"file":"1f4f9.svg"},{"file":"1f4fa.svg"},{"file":"1f4fb.svg"},{"file":"1f4fc.svg"},{"file":"1f4fd.svg"},{"file":"1f507.svg"},{"file":"1f508.svg"},{"file":"1f509.svg"},{"file":"1f50a.svg"},{"file":"1f50b.svg"},{"file":"1f50c.svg"},{"file":"1f50d.svg"},{"file":"1f50e.svg"},{"file":"1f50f.svg"},{"file":"1f510.svg"},{"file":"1f511.svg"},{"file":"1f512.svg"},{"file":"1f513.svg"},{"file":"1f514.svg"},{"file":"1f515.svg"},{"file":"1f516.svg"},{"file":"1f517.svg"},{"file":"1f526.svg"},{"file":"1f527.svg"},{"file":"1f528.svg"},{"file":"1f529.svg"},{"file":"1f52b.svg"},{"file":"1f52c.svg"},{"file":"1f52d.svg"},{"file":"1f56f.svg"},{"file":"1f587.svg"},{"file":"1f58a.svg"},{"file":"1f58b.svg"},{"file":"1f58c.svg"},{"file":"1f58d.svg"},{"file":"1f5a5.svg"},{"file":"1f5a8.svg"},{"file":"1f5b1.svg"},{"file":"1f5b2.svg"},{"file":"1f5c2.svg"},{"file":"1f5c3.svg"},{"file":"1f5c4.svg"},{"file":"1f5d1.svg"},{"file":"1f5d2.svg"},{"file":"1f5d3.svg"},{"file":"1f5dc.svg"},{"file":"1f5dd.svg"},{"file":"1f5de.svg"},{"file":"1f5e1.svg"},{"file":"1f5f3.svg"},{"file":"1f5ff.svg"},{"file":"1f6aa.svg"},{"file":"1f6ac.svg"},{"file":"1f6bd.svg"},{"file":"1f6bf.svg"},{"file":"1f6c1.svg"},{"file":"1f6cb.svg"},{"file":"1f6cf.svg"},{"file":"1f6d2.svg"},{"file":"1f6e0.svg"},{"file":"1f6e1.svg"},{"file":"1f941.svg"},{"file":"2328.svg"},{"file":"260e.svg"},{"file":"2692.svg"},{"file":"2694.svg"},{"file":"2696.svg"},{"file":"2697.svg"},{"file":"2699.svg"},{"file":"26b0.svg"},{"file":"26b1.svg"},{"file":"26cf.svg"},{"file":"26d3.svg"},{"file":"2702.svg"},{"file":"2709.svg"},{"file":"270f.svg"},{"file":"2712.svg"}],"name":"Objects"},{"dir":[{"file":"1f385-1f3fb.svg"},{"file":"1f385-1f3fc.svg"},{"file":"1f385-1f3fd.svg"},{"file":"1f385-1f3fe.svg"},{"file":"1f385-1f3ff.svg"},{"file":"1f385.svg"},{"file":"1f392.svg"},{"file":"1f393.svg"},{"file":"1f3a9.svg"},{"file":"1f3c2-1f3fb.svg"},{"file":"1f3c2-1f3fc.svg"},{"file":"1f3c2-1f3fd.svg"},{"file":"1f3c2-1f3fe.svg"},{"file":"1f3c2-1f3ff.svg"},{"file":"1f3c2.svg"},{"file":"1f3c3-1f3fb-200d-2640-fe0f.svg"},{"file":"1f3c3-1f3fb-200d-2642-fe0f.svg"},{"file":"1f3c3-1f3fb.svg"},{"file":"1f3c3-1f3fc-200d-2640-fe0f.svg"},{"file":"1f3c3-1f3fc-200d-2642-fe0f.svg"},{"file":"1f3c3-1f3fc.svg"},{"file":"1f3c3-1f3fd-200d-2640-fe0f.svg"},{"file":"1f3c3-1f3fd-200d-2642-fe0f.svg"},{"file":"1f3c3-1f3fd.svg"},{"file":"1f3c3-1f3fe-200d-2640-fe0f.svg"},{"file":"1f3c3-1f3fe-200d-2642-fe0f.svg"},{"file":"1f3c3-1f3fe.svg"},{"file":"1f3c3-1f3ff-200d-2640-fe0f.svg"},{"file":"1f3c3-1f3ff-200d-2642-fe0f.svg"},{"file":"1f3c3-1f3ff.svg"},{"file":"1f3c3-200d-2640-fe0f.svg"},{"file":"1f3c3-200d-2642-fe0f.svg"},{"file":"1f3c3.svg"},{"file":"1f3c4-1f3fb-200d-2640-fe0f.svg"},{"file":"1f3c4-1f3fb-200d-2642-fe0f.svg"},{"file":"1f3c4-1f3fb.svg"},{"file":"1f3c4-1f3fc-200d-2640-fe0f.svg"},{"file":"1f3c4-1f3fc-200d-2642-fe0f.svg"},{"file":"1f3c4-1f3fc.svg"},{"file":"1f3c4-1f3fd-200d-2640-fe0f.svg"},{"file":"1f3c4-1f3fd-200d-2642-fe0f.svg"},{"file":"1f3c4-1f3fd.svg"},{"file":"1f3c4-1f3fe-200d-2640-fe0f.svg"},{"file":"1f3c4-1f3fe-200d-2642-fe0f.svg"},{"file":"1f3c4-1f3fe.svg"},{"file":"1f3c4-1f3ff-200d-2640-fe0f.svg"},{"file":"1f3c4-1f3ff-200d-2642-fe0f.svg"},{"file":"1f3c4-1f3ff.svg"},{"file":"1f3c4-200d-2640-fe0f.svg"},{"file":"1f3c4-200d-2642-fe0f.svg"},{"file":"1f3c4.svg"},{"file":"1f3c7-1f3fb.svg"},{"file":"1f3c7-1f3fc.svg"},{"file":"1f3c7-1f3fd.svg"},{"file":"1f3c7-1f3fe.svg"},{"file":"1f3c7-1f3ff.svg"},{"file":"1f3c7.svg"},{"file":"1f3ca-1f3fb-200d-2640-fe0f.svg"},{"file":"1f3ca-1f3fb-200d-2642-fe0f.svg"},{"file":"1f3ca-1f3fb.svg"},{"file":"1f3ca-1f3fc-200d-2640-fe0f.svg"},{"file":"1f3ca-1f3fc-200d-2642-fe0f.svg"},{"file":"1f3ca-1f3fc.svg"},{"file":"1f3ca-1f3fd-200d-2640-fe0f.svg"},{"file":"1f3ca-1f3fd-200d-2642-fe0f.svg"},{"file":"1f3ca-1f3fd.svg"},{"file":"1f3ca-1f3fe-200d-2640-fe0f.svg"},{"file":"1f3ca-1f3fe-200d-2642-fe0f.svg"},{"file":"1f3ca-1f3fe.svg"},{"file":"1f3ca-1f3ff-200d-2640-fe0f.svg"},{"file":"1f3ca-1f3ff-200d-2642-fe0f.svg"},{"file":"1f3ca-1f3ff.svg"},{"file":"1f3ca-200d-2640-fe0f.svg"},{"file":"1f3ca-200d-2642-fe0f.svg"},{"file":"1f3ca.svg"},{"file":"1f3cb-1f3fb-200d-2640-fe0f.svg"},{"file":"1f3cb-1f3fb-200d-2642-fe0f.svg"},{"file":"1f3cb-1f3fb.svg"},{"file":"1f3cb-1f3fc-200d-2640-fe0f.svg"},{"file":"1f3cb-1f3fc-200d-2642-fe0f.svg"},{"file":"1f3cb-1f3fc.svg"},{"file":"1f3cb-1f3fd-200d-2640-fe0f.svg"},{"file":"1f3cb-1f3fd-200d-2642-fe0f.svg"},{"file":"1f3cb-1f3fd.svg"},{"file":"1f3cb-1f3fe-200d-2640-fe0f.svg"},{"file":"1f3cb-1f3fe-200d-2642-fe0f.svg"},{"file":"1f3cb-1f3fe.svg"},{"file":"1f3cb-1f3ff-200d-2640-fe0f.svg"},{"file":"1f3cb-1f3ff-200d-2642-fe0f.svg"},{"file":"1f3cb-1f3ff.svg"},{"file":"1f3cb-fe0f-200d-2640-fe0f.svg"},{"file":"1f3cb-fe0f-200d-2642-fe0f.svg"},{"file":"1f3cb.svg"},{"file":"1f3cc-1f3fb-200d-2640-fe0f.svg"},{"file":"1f3cc-1f3fb-200d-2642-fe0f.svg"},{"file":"1f3cc-1f3fb.svg"},{"file":"1f3cc-1f3fc-200d-2640-fe0f.svg"},{"file":"1f3cc-1f3fc-200d-2642-fe0f.svg"},{"file":"1f3cc-1f3fc.svg"},{"file":"1f3cc-1f3fd-200d-2640-fe0f.svg"},{"file":"1f3cc-1f3fd-200d-2642-fe0f.svg"},{"file":"1f3cc-1f3fd.svg"},{"file":"1f3cc-1f3fe-200d-2640-fe0f.svg"},{"file":"1f3cc-1f3fe-200d-2642-fe0f.svg"},{"file":"1f3cc-1f3fe.svg"},{"file":"1f3cc-1f3ff-200d-2640-fe0f.svg"},{"file":"1f3cc-1f3ff-200d-2642-fe0f.svg"},{"file":"1f3cc-1f3ff.svg"},{"file":"1f3cc-fe0f-200d-2640-fe0f.svg"},{"file":"1f3cc-fe0f-200d-2642-fe0f.svg"},{"file":"1f3cc.svg"},{"file":"1f3cd.svg"},{"file":"1f3ce.svg"},{"file":"1f3fb.svg"},{"file":"1f3fc.svg"},{"file":"1f3fd.svg"},{"file":"1f3fe.svg"},{"file":"1f3ff.svg"},{"file":"1f440.svg"},{"file":"1f441-200d-1f5e8.svg"},{"file":"1f441.svg"},{"file":"1f442-1f3fb.svg"},{"file":"1f442-1f3fc.svg"},{"file":"1f442-1f3fd.svg"},{"file":"1f442-1f3fe.svg"},{"file":"1f442-1f3ff.svg"},{"file":"1f442.svg"},{"file":"1f443-1f3fb.svg"},{"file":"1f443-1f3fc.svg"},{"file":"1f443-1f3fd.svg"},{"file":"1f443-1f3fe.svg"},{"file":"1f443-1f3ff.svg"},{"file":"1f443.svg"},{"file":"1f444.svg"},{"file":"1f445.svg"},{"file":"1f446-1f3fb.svg"},{"file":"1f446-1f3fc.svg"},{"file":"1f446-1f3fd.svg"},{"file":"1f446-1f3fe.svg"},{"file":"1f446-1f3ff.svg"},{"file":"1f446.svg"},{"file":"1f447-1f3fb.svg"},{"file":"1f447-1f3fc.svg"},{"file":"1f447-1f3fd.svg"},{"file":"1f447-1f3fe.svg"},{"file":"1f447-1f3ff.svg"},{"file":"1f447.svg"},{"file":"1f448-1f3fb.svg"},{"file":"1f448-1f3fc.svg"},{"file":"1f448-1f3fd.svg"},{"file":"1f448-1f3fe.svg"},{"file":"1f448-1f3ff.svg"},{"file":"1f448.svg"},{"file":"1f449-1f3fb.svg"},{"file":"1f449-1f3fc.svg"},{"file":"1f449-1f3fd.svg"},{"file":"1f449-1f3fe.svg"},{"file":"1f449-1f3ff.svg"},{"file":"1f449.svg"},{"file":"1f44a-1f3fb.svg"},{"file":"1f44a-1f3fc.svg"},{"file":"1f44a-1f3fd.svg"},{"file":"1f44a-1f3fe.svg"},{"file":"1f44a-1f3ff.svg"},{"file":"1f44a.svg"},{"file":"1f44b-1f3fb.svg"},{"file":"1f44b-1f3fc.svg"},{"file":"1f44b-1f3fd.svg"},{"file":"1f44b-1f3fe.svg"},{"file":"1f44b-1f3ff.svg"},{"file":"1f44b.svg"},{"file":"1f44c-1f3fb.svg"},{"file":"1f44c-1f3fc.svg"},{"file":"1f44c-1f3fd.svg"},{"file":"1f44c-1f3fe.svg"},{"file":"1f44c-1f3ff.svg"},{"file":"1f44c.svg"},{"file":"1f44d-1f3fb.svg"},{"file":"1f44d-1f3fc.svg"},{"file":"1f44d-1f3fd.svg"},{"file":"1f44d-1f3fe.svg"},{"file":"1f44d-1f3ff.svg"},{"file":"1f44d.svg"},{"file":"1f44e-1f3fb.svg"},{"file":"1f44e-1f3fc.svg"},{"file":"1f44e-1f3fd.svg"},{"file":"1f44e-1f3fe.svg"},{"file":"1f44e-1f3ff.svg"},{"file":"1f44e.svg"},{"file":"1f44f-1f3fb.svg"},{"file":"1f44f-1f3fc.svg"},{"file":"1f44f-1f3fd.svg"},{"file":"1f44f-1f3fe.svg"},{"file":"1f44f-1f3ff.svg"},{"file":"1f44f.svg"},{"file":"1f450-1f3fb.svg"},{"file":"1f450-1f3fc.svg"},{"file":"1f450-1f3fd.svg"},{"file":"1f450-1f3fe.svg"},{"file":"1f450-1f3ff.svg"},{"file":"1f450.svg"},{"file":"1f451.svg"},{"file":"1f452.svg"},{"file":"1f453.svg"},{"file":"1f454.svg"},{"file":"1f455.svg"},{"file":"1f456.svg"},{"file":"1f457.svg"},{"file":"1f458.svg"},{"file":"1f459.svg"},{"file":"1f45a.svg"},{"file":"1f45b.svg"},{"file":"1f45c.svg"},{"file":"1f45d.svg"},{"file":"1f45e.svg"},{"file":"1f45f.svg"},{"file":"1f460.svg"},{"file":"1f461.svg"},{"file":"1f462.svg"},{"file":"1f463.svg"},{"file":"1f464.svg"},{"file":"1f465.svg"},{"file":"1f466-1f3fb.svg"},{"file":"1f466-1f3fc.svg"},{"file":"1f466-1f3fd.svg"},{"file":"1f466-1f3fe.svg"},{"file":"1f466-1f3ff.svg"},{"file":"1f466.svg"},{"file":"1f467-1f3fb.svg"},{"file":"1f467-1f3fc.svg"},{"file":"1f467-1f3fd.svg"},{"file":"1f467-1f3fe.svg"},{"file":"1f467-1f3ff.svg"},{"file":"1f467.svg"},{"file":"1f468-1f3fb-200d-1f33e.svg"},{"file":"1f468-1f3fb-200d-1f373.svg"},{"file":"1f468-1f3fb-200d-1f393.svg"},{"file":"1f468-1f3fb-200d-1f3a4.svg"},{"file":"1f468-1f3fb-200d-1f3a8.svg"},{"file":"1f468-1f3fb-200d-1f3eb.svg"},{"file":"1f468-1f3fb-200d-1f3ed.svg"},{"file":"1f468-1f3fb-200d-1f4bb.svg"},{"file":"1f468-1f3fb-200d-1f4bc.svg"},{"file":"1f468-1f3fb-200d-1f527.svg"},{"file":"1f468-1f3fb-200d-1f52c.svg"},{"file":"1f468-1f3fb-200d-1f680.svg"},{"file":"1f468-1f3fb-200d-1f692.svg"},{"file":"1f468-1f3fb-200d-2695-fe0f.svg"},{"file":"1f468-1f3fb-200d-2696-fe0f.svg"},{"file":"1f468-1f3fb-200d-2708-fe0f.svg"},{"file":"1f468-1f3fb.svg"},{"file":"1f468-1f3fc-200d-1f33e.svg"},{"file":"1f468-1f3fc-200d-1f373.svg"},{"file":"1f468-1f3fc-200d-1f393.svg"},{"file":"1f468-1f3fc-200d-1f3a4.svg"},{"file":"1f468-1f3fc-200d-1f3a8.svg"},{"file":"1f468-1f3fc-200d-1f3eb.svg"},{"file":"1f468-1f3fc-200d-1f3ed.svg"},{"file":"1f468-1f3fc-200d-1f4bb.svg"},{"file":"1f468-1f3fc-200d-1f4bc.svg"},{"file":"1f468-1f3fc-200d-1f527.svg"},{"file":"1f468-1f3fc-200d-1f52c.svg"},{"file":"1f468-1f3fc-200d-1f680.svg"},{"file":"1f468-1f3fc-200d-1f692.svg"},{"file":"1f468-1f3fc-200d-2695-fe0f.svg"},{"file":"1f468-1f3fc-200d-2696-fe0f.svg"},{"file":"1f468-1f3fc-200d-2708-fe0f.svg"},{"file":"1f468-1f3fc.svg"},{"file":"1f468-1f3fd-200d-1f33e.svg"},{"file":"1f468-1f3fd-200d-1f373.svg"},{"file":"1f468-1f3fd-200d-1f393.svg"},{"file":"1f468-1f3fd-200d-1f3a4.svg"},{"file":"1f468-1f3fd-200d-1f3a8.svg"},{"file":"1f468-1f3fd-200d-1f3eb.svg"},{"file":"1f468-1f3fd-200d-1f3ed.svg"},{"file":"1f468-1f3fd-200d-1f4bb.svg"},{"file":"1f468-1f3fd-200d-1f4bc.svg"},{"file":"1f468-1f3fd-200d-1f527.svg"},{"file":"1f468-1f3fd-200d-1f52c.svg"},{"file":"1f468-1f3fd-200d-1f680.svg"},{"file":"1f468-1f3fd-200d-1f692.svg"},{"file":"1f468-1f3fd-200d-2695-fe0f.svg"},{"file":"1f468-1f3fd-200d-2696-fe0f.svg"},{"file":"1f468-1f3fd-200d-2708-fe0f.svg"},{"file":"1f468-1f3fd.svg"},{"file":"1f468-1f3fe-200d-1f33e.svg"},{"file":"1f468-1f3fe-200d-1f373.svg"},{"file":"1f468-1f3fe-200d-1f393.svg"},{"file":"1f468-1f3fe-200d-1f3a4.svg"},{"file":"1f468-1f3fe-200d-1f3a8.svg"},{"file":"1f468-1f3fe-200d-1f3eb.svg"},{"file":"1f468-1f3fe-200d-1f3ed.svg"},{"file":"1f468-1f3fe-200d-1f4bb.svg"},{"file":"1f468-1f3fe-200d-1f4bc.svg"},{"file":"1f468-1f3fe-200d-1f527.svg"},{"file":"1f468-1f3fe-200d-1f52c.svg"},{"file":"1f468-1f3fe-200d-1f680.svg"},{"file":"1f468-1f3fe-200d-1f692.svg"},{"file":"1f468-1f3fe-200d-2695-fe0f.svg"},{"file":"1f468-1f3fe-200d-2696-fe0f.svg"},{"file":"1f468-1f3fe-200d-2708-fe0f.svg"},{"file":"1f468-1f3fe.svg"},{"file":"1f468-1f3ff-200d-1f33e.svg"},{"file":"1f468-1f3ff-200d-1f373.svg"},{"file":"1f468-1f3ff-200d-1f393.svg"},{"file":"1f468-1f3ff-200d-1f3a4.svg"},{"file":"1f468-1f3ff-200d-1f3a8.svg"},{"file":"1f468-1f3ff-200d-1f3eb.svg"},{"file":"1f468-1f3ff-200d-1f3ed.svg"},{"file":"1f468-1f3ff-200d-1f4bb.svg"},{"file":"1f468-1f3ff-200d-1f4bc.svg"},{"file":"1f468-1f3ff-200d-1f527.svg"},{"file":"1f468-1f3ff-200d-1f52c.svg"},{"file":"1f468-1f3ff-200d-1f680.svg"},{"file":"1f468-1f3ff-200d-1f692.svg"},{"file":"1f468-1f3ff-200d-2695-fe0f.svg"},{"file":"1f468-1f3ff-200d-2696-fe0f.svg"},{"file":"1f468-1f3ff-200d-2708-fe0f.svg"},{"file":"1f468-1f3ff.svg"},{"file":"1f468-200d-1f33e.svg"},{"file":"1f468-200d-1f373.svg"},{"file":"1f468-200d-1f393.svg"},{"file":"1f468-200d-1f3a4.svg"},{"file":"1f468-200d-1f3a8.svg"},{"file":"1f468-200d-1f3eb.svg"},{"file":"1f468-200d-1f3ed.svg"},{"file":"1f468-200d-1f466-200d-1f466.svg"},{"file":"1f468-200d-1f466.svg"},{"file":"1f468-200d-1f467-200d-1f466.svg"},{"file":"1f468-200d-1f467-200d-1f467.svg"},{"file":"1f468-200d-1f467.svg"},{"file":"1f468-200d-1f468-200d-1f466-200d-1f466.svg"},{"file":"1f468-200d-1f468-200d-1f466.svg"},{"file":"1f468-200d-1f468-200d-1f467-200d-1f466.svg"},{"file":"1f468-200d-1f468-200d-1f467-200d-1f467.svg"},{"file":"1f468-200d-1f468-200d-1f467.svg"},{"file":"1f468-200d-1f469-200d-1f466-200d-1f466.svg"},{"file":"1f468-200d-1f469-200d-1f466.svg"},{"file":"1f468-200d-1f469-200d-1f467-200d-1f466.svg"},{"file":"1f468-200d-1f469-200d-1f467-200d-1f467.svg"},{"file":"1f468-200d-1f469-200d-1f467.svg"},{"file":"1f468-200d-1f4bb.svg"},{"file":"1f468-200d-1f4bc.svg"},{"file":"1f468-200d-1f527.svg"},{"file":"1f468-200d-1f52c.svg"},{"file":"1f468-200d-1f680.svg"},{"file":"1f468-200d-1f692.svg"},{"file":"1f468-200d-2695-fe0f.svg"},{"file":"1f468-200d-2696-fe0f.svg"},{"file":"1f468-200d-2708-fe0f.svg"},{"file":"1f468-200d-2764-fe0f-200d-1f468.svg"},{"file":"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg"},{"file":"1f468.svg"},{"file":"1f469-1f3fb-200d-1f33e.svg"},{"file":"1f469-1f3fb-200d-1f373.svg"},{"file":"1f469-1f3fb-200d-1f393.svg"},{"file":"1f469-1f3fb-200d-1f3a4.svg"},{"file":"1f469-1f3fb-200d-1f3a8.svg"},{"file":"1f469-1f3fb-200d-1f3eb.svg"},{"file":"1f469-1f3fb-200d-1f3ed.svg"},{"file":"1f469-1f3fb-200d-1f4bb.svg"},{"file":"1f469-1f3fb-200d-1f4bc.svg"},{"file":"1f469-1f3fb-200d-1f527.svg"},{"file":"1f469-1f3fb-200d-1f52c.svg"},{"file":"1f469-1f3fb-200d-1f680.svg"},{"file":"1f469-1f3fb-200d-1f692.svg"},{"file":"1f469-1f3fb-200d-2695-fe0f.svg"},{"file":"1f469-1f3fb-200d-2696-fe0f.svg"},{"file":"1f469-1f3fb-200d-2708-fe0f.svg"},{"file":"1f469-1f3fb.svg"},{"file":"1f469-1f3fc-200d-1f33e.svg"},{"file":"1f469-1f3fc-200d-1f373.svg"},{"file":"1f469-1f3fc-200d-1f393.svg"},{"file":"1f469-1f3fc-200d-1f3a4.svg"},{"file":"1f469-1f3fc-200d-1f3a8.svg"},{"file":"1f469-1f3fc-200d-1f3eb.svg"},{"file":"1f469-1f3fc-200d-1f3ed.svg"},{"file":"1f469-1f3fc-200d-1f4bb.svg"},{"file":"1f469-1f3fc-200d-1f4bc.svg"},{"file":"1f469-1f3fc-200d-1f527.svg"},{"file":"1f469-1f3fc-200d-1f52c.svg"},{"file":"1f469-1f3fc-200d-1f680.svg"},{"file":"1f469-1f3fc-200d-1f692.svg"},{"file":"1f469-1f3fc-200d-2695-fe0f.svg"},{"file":"1f469-1f3fc-200d-2696-fe0f.svg"},{"file":"1f469-1f3fc-200d-2708-fe0f.svg"},{"file":"1f469-1f3fc.svg"},{"file":"1f469-1f3fd-200d-1f33e.svg"},{"file":"1f469-1f3fd-200d-1f373.svg"},{"file":"1f469-1f3fd-200d-1f393.svg"},{"file":"1f469-1f3fd-200d-1f3a4.svg"},{"file":"1f469-1f3fd-200d-1f3a8.svg"},{"file":"1f469-1f3fd-200d-1f3eb.svg"},{"file":"1f469-1f3fd-200d-1f3ed.svg"},{"file":"1f469-1f3fd-200d-1f4bb.svg"},{"file":"1f469-1f3fd-200d-1f4bc.svg"},{"file":"1f469-1f3fd-200d-1f527.svg"},{"file":"1f469-1f3fd-200d-1f52c.svg"},{"file":"1f469-1f3fd-200d-1f680.svg"},{"file":"1f469-1f3fd-200d-1f692.svg"},{"file":"1f469-1f3fd-200d-2695-fe0f.svg"},{"file":"1f469-1f3fd-200d-2696-fe0f.svg"},{"file":"1f469-1f3fd-200d-2708-fe0f.svg"},{"file":"1f469-1f3fd.svg"},{"file":"1f469-1f3fe-200d-1f33e.svg"},{"file":"1f469-1f3fe-200d-1f373.svg"},{"file":"1f469-1f3fe-200d-1f393.svg"},{"file":"1f469-1f3fe-200d-1f3a4.svg"},{"file":"1f469-1f3fe-200d-1f3a8.svg"},{"file":"1f469-1f3fe-200d-1f3eb.svg"},{"file":"1f469-1f3fe-200d-1f3ed.svg"},{"file":"1f469-1f3fe-200d-1f4bb.svg"},{"file":"1f469-1f3fe-200d-1f4bc.svg"},{"file":"1f469-1f3fe-200d-1f527.svg"},{"file":"1f469-1f3fe-200d-1f52c.svg"},{"file":"1f469-1f3fe-200d-1f680.svg"},{"file":"1f469-1f3fe-200d-1f692.svg"},{"file":"1f469-1f3fe-200d-2695-fe0f.svg"},{"file":"1f469-1f3fe-200d-2696-fe0f.svg"},{"file":"1f469-1f3fe-200d-2708-fe0f.svg"},{"file":"1f469-1f3fe.svg"},{"file":"1f469-1f3ff-200d-1f33e.svg"},{"file":"1f469-1f3ff-200d-1f373.svg"},{"file":"1f469-1f3ff-200d-1f393.svg"},{"file":"1f469-1f3ff-200d-1f3a4.svg"},{"file":"1f469-1f3ff-200d-1f3a8.svg"},{"file":"1f469-1f3ff-200d-1f3eb.svg"},{"file":"1f469-1f3ff-200d-1f3ed.svg"},{"file":"1f469-1f3ff-200d-1f4bb.svg"},{"file":"1f469-1f3ff-200d-1f4bc.svg"},{"file":"1f469-1f3ff-200d-1f527.svg"},{"file":"1f469-1f3ff-200d-1f52c.svg"},{"file":"1f469-1f3ff-200d-1f680.svg"},{"file":"1f469-1f3ff-200d-1f692.svg"},{"file":"1f469-1f3ff-200d-2695-fe0f.svg"},{"file":"1f469-1f3ff-200d-2696-fe0f.svg"},{"file":"1f469-1f3ff-200d-2708-fe0f.svg"},{"file":"1f469-1f3ff.svg"},{"file":"1f469-200d-1f33e.svg"},{"file":"1f469-200d-1f373.svg"},{"file":"1f469-200d-1f393.svg"},{"file":"1f469-200d-1f3a4.svg"},{"file":"1f469-200d-1f3a8.svg"},{"file":"1f469-200d-1f3eb.svg"},{"file":"1f469-200d-1f3ed.svg"},{"file":"1f469-200d-1f466-200d-1f466.svg"},{"file":"1f469-200d-1f466.svg"},{"file":"1f469-200d-1f467-200d-1f466.svg"},{"file":"1f469-200d-1f467-200d-1f467.svg"},{"file":"1f469-200d-1f467.svg"},{"file":"1f469-200d-1f469-200d-1f466-200d-1f466.svg"},{"file":"1f469-200d-1f469-200d-1f466.svg"},{"file":"1f469-200d-1f469-200d-1f467-200d-1f466.svg"},{"file":"1f469-200d-1f469-200d-1f467-200d-1f467.svg"},{"file":"1f469-200d-1f469-200d-1f467.svg"},{"file":"1f469-200d-1f4bb.svg"},{"file":"1f469-200d-1f4bc.svg"},{"file":"1f469-200d-1f527.svg"},{"file":"1f469-200d-1f52c.svg"},{"file":"1f469-200d-1f680.svg"},{"file":"1f469-200d-1f692.svg"},{"file":"1f469-200d-2695-fe0f.svg"},{"file":"1f469-200d-2696-fe0f.svg"},{"file":"1f469-200d-2708-fe0f.svg"},{"file":"1f469-200d-2764-fe0f-200d-1f468.svg"},{"file":"1f469-200d-2764-fe0f-200d-1f469.svg"},{"file":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg"},{"file":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg"},{"file":"1f469.svg"},{"file":"1f46a.svg"},{"file":"1f46b.svg"},{"file":"1f46c.svg"},{"file":"1f46d.svg"},{"file":"1f46e-1f3fb-200d-2640-fe0f.svg"},{"file":"1f46e-1f3fb-200d-2642-fe0f.svg"},{"file":"1f46e-1f3fb.svg"},{"file":"1f46e-1f3fc-200d-2640-fe0f.svg"},{"file":"1f46e-1f3fc-200d-2642-fe0f.svg"},{"file":"1f46e-1f3fc.svg"},{"file":"1f46e-1f3fd-200d-2640-fe0f.svg"},{"file":"1f46e-1f3fd-200d-2642-fe0f.svg"},{"file":"1f46e-1f3fd.svg"},{"file":"1f46e-1f3fe-200d-2640-fe0f.svg"},{"file":"1f46e-1f3fe-200d-2642-fe0f.svg"},{"file":"1f46e-1f3fe.svg"},{"file":"1f46e-1f3ff-200d-2640-fe0f.svg"},{"file":"1f46e-1f3ff-200d-2642-fe0f.svg"},{"file":"1f46e-1f3ff.svg"},{"file":"1f46e-200d-2640-fe0f.svg"},{"file":"1f46e-200d-2642-fe0f.svg"},{"file":"1f46e.svg"},{"file":"1f46f-200d-2640-fe0f.svg"},{"file":"1f46f-200d-2642-fe0f.svg"},{"file":"1f46f.svg"},{"file":"1f470-1f3fb.svg"},{"file":"1f470-1f3fc.svg"},{"file":"1f470-1f3fd.svg"},{"file":"1f470-1f3fe.svg"},{"file":"1f470-1f3ff.svg"},{"file":"1f470.svg"},{"file":"1f471-1f3fb-200d-2640-fe0f.svg"},{"file":"1f471-1f3fb-200d-2642-fe0f.svg"},{"file":"1f471-1f3fb.svg"},{"file":"1f471-1f3fc-200d-2640-fe0f.svg"},{"file":"1f471-1f3fc-200d-2642-fe0f.svg"},{"file":"1f471-1f3fc.svg"},{"file":"1f471-1f3fd-200d-2640-fe0f.svg"},{"file":"1f471-1f3fd-200d-2642-fe0f.svg"},{"file":"1f471-1f3fd.svg"},{"file":"1f471-1f3fe-200d-2640-fe0f.svg"},{"file":"1f471-1f3fe-200d-2642-fe0f.svg"},{"file":"1f471-1f3fe.svg"},{"file":"1f471-1f3ff-200d-2640-fe0f.svg"},{"file":"1f471-1f3ff-200d-2642-fe0f.svg"},{"file":"1f471-1f3ff.svg"},{"file":"1f471-200d-2640-fe0f.svg"},{"file":"1f471-200d-2642-fe0f.svg"},{"file":"1f471.svg"},{"file":"1f472-1f3fb.svg"},{"file":"1f472-1f3fc.svg"},{"file":"1f472-1f3fd.svg"},{"file":"1f472-1f3fe.svg"},{"file":"1f472-1f3ff.svg"},{"file":"1f472.svg"},{"file":"1f473-1f3fb-200d-2640-fe0f.svg"},{"file":"1f473-1f3fb-200d-2642-fe0f.svg"},{"file":"1f473-1f3fb.svg"},{"file":"1f473-1f3fc-200d-2640-fe0f.svg"},{"file":"1f473-1f3fc-200d-2642-fe0f.svg"},{"file":"1f473-1f3fc.svg"},{"file":"1f473-1f3fd-200d-2640-fe0f.svg"},{"file":"1f473-1f3fd-200d-2642-fe0f.svg"},{"file":"1f473-1f3fd.svg"},{"file":"1f473-1f3fe-200d-2640-fe0f.svg"},{"file":"1f473-1f3fe-200d-2642-fe0f.svg"},{"file":"1f473-1f3fe.svg"},{"file":"1f473-1f3ff-200d-2640-fe0f.svg"},{"file":"1f473-1f3ff-200d-2642-fe0f.svg"},{"file":"1f473-1f3ff.svg"},{"file":"1f473-200d-2640-fe0f.svg"},{"file":"1f473-200d-2642-fe0f.svg"},{"file":"1f473.svg"},{"file":"1f474-1f3fb.svg"},{"file":"1f474-1f3fc.svg"},{"file":"1f474-1f3fd.svg"},{"file":"1f474-1f3fe.svg"},{"file":"1f474-1f3ff.svg"},{"file":"1f474.svg"},{"file":"1f475-1f3fb.svg"},{"file":"1f475-1f3fc.svg"},{"file":"1f475-1f3fd.svg"},{"file":"1f475-1f3fe.svg"},{"file":"1f475-1f3ff.svg"},{"file":"1f475.svg"},{"file":"1f476-1f3fb.svg"},{"file":"1f476-1f3fc.svg"},{"file":"1f476-1f3fd.svg"},{"file":"1f476-1f3fe.svg"},{"file":"1f476-1f3ff.svg"},{"file":"1f476.svg"},{"file":"1f477-1f3fb-200d-2640-fe0f.svg"},{"file":"1f477-1f3fb-200d-2642-fe0f.svg"},{"file":"1f477-1f3fb.svg"},{"file":"1f477-1f3fc-200d-2640-fe0f.svg"},{"file":"1f477-1f3fc-200d-2642-fe0f.svg"},{"file":"1f477-1f3fc.svg"},{"file":"1f477-1f3fd-200d-2640-fe0f.svg"},{"file":"1f477-1f3fd-200d-2642-fe0f.svg"},{"file":"1f477-1f3fd.svg"},{"file":"1f477-1f3fe-200d-2640-fe0f.svg"},{"file":"1f477-1f3fe-200d-2642-fe0f.svg"},{"file":"1f477-1f3fe.svg"},{"file":"1f477-1f3ff-200d-2640-fe0f.svg"},{"file":"1f477-1f3ff-200d-2642-fe0f.svg"},{"file":"1f477-1f3ff.svg"},{"file":"1f477-200d-2640-fe0f.svg"},{"file":"1f477-200d-2642-fe0f.svg"},{"file":"1f477.svg"},{"file":"1f478-1f3fb.svg"},{"file":"1f478-1f3fc.svg"},{"file":"1f478-1f3fd.svg"},{"file":"1f478-1f3fe.svg"},{"file":"1f478-1f3ff.svg"},{"file":"1f478.svg"},{"file":"1f479.svg"},{"file":"1f47a.svg"},{"file":"1f47b.svg"},{"file":"1f47c-1f3fb.svg"},{"file":"1f47c-1f3fc.svg"},{"file":"1f47c-1f3fd.svg"},{"file":"1f47c-1f3fe.svg"},{"file":"1f47c-1f3ff.svg"},{"file":"1f47c.svg"},{"file":"1f47d.svg"},{"file":"1f47e.svg"},{"file":"1f47f.svg"},{"file":"1f480.svg"},{"file":"1f481-1f3fb-200d-2640-fe0f.svg"},{"file":"1f481-1f3fb-200d-2642-fe0f.svg"},{"file":"1f481-1f3fb.svg"},{"file":"1f481-1f3fc-200d-2640-fe0f.svg"},{"file":"1f481-1f3fc-200d-2642-fe0f.svg"},{"file":"1f481-1f3fc.svg"},{"file":"1f481-1f3fd-200d-2640-fe0f.svg"},{"file":"1f481-1f3fd-200d-2642-fe0f.svg"},{"file":"1f481-1f3fd.svg"},{"file":"1f481-1f3fe-200d-2640-fe0f.svg"},{"file":"1f481-1f3fe-200d-2642-fe0f.svg"},{"file":"1f481-1f3fe.svg"},{"file":"1f481-1f3ff-200d-2640-fe0f.svg"},{"file":"1f481-1f3ff-200d-2642-fe0f.svg"},{"file":"1f481-1f3ff.svg"},{"file":"1f481-200d-2640-fe0f.svg"},{"file":"1f481-200d-2642-fe0f.svg"},{"file":"1f481.svg"},{"file":"1f482-1f3fb-200d-2640-fe0f.svg"},{"file":"1f482-1f3fb-200d-2642-fe0f.svg"},{"file":"1f482-1f3fb.svg"},{"file":"1f482-1f3fc-200d-2640-fe0f.svg"},{"file":"1f482-1f3fc-200d-2642-fe0f.svg"},{"file":"1f482-1f3fc.svg"},{"file":"1f482-1f3fd-200d-2640-fe0f.svg"},{"file":"1f482-1f3fd-200d-2642-fe0f.svg"},{"file":"1f482-1f3fd.svg"},{"file":"1f482-1f3fe-200d-2640-fe0f.svg"},{"file":"1f482-1f3fe-200d-2642-fe0f.svg"},{"file":"1f482-1f3fe.svg"},{"file":"1f482-1f3ff-200d-2640-fe0f.svg"},{"file":"1f482-1f3ff-200d-2642-fe0f.svg"},{"file":"1f482-1f3ff.svg"},{"file":"1f482-200d-2640-fe0f.svg"},{"file":"1f482-200d-2642-fe0f.svg"},{"file":"1f482.svg"},{"file":"1f483-1f3fb.svg"},{"file":"1f483-1f3fc.svg"},{"file":"1f483-1f3fd.svg"},{"file":"1f483-1f3fe.svg"},{"file":"1f483-1f3ff.svg"},{"file":"1f483.svg"},{"file":"1f484.svg"},{"file":"1f485-1f3fb.svg"},{"file":"1f485-1f3fc.svg"},{"file":"1f485-1f3fd.svg"},{"file":"1f485-1f3fe.svg"},{"file":"1f485-1f3ff.svg"},{"file":"1f485.svg"},{"file":"1f486-1f3fb-200d-2640-fe0f.svg"},{"file":"1f486-1f3fb-200d-2642-fe0f.svg"},{"file":"1f486-1f3fb.svg"},{"file":"1f486-1f3fc-200d-2640-fe0f.svg"},{"file":"1f486-1f3fc-200d-2642-fe0f.svg"},{"file":"1f486-1f3fc.svg"},{"file":"1f486-1f3fd-200d-2640-fe0f.svg"},{"file":"1f486-1f3fd-200d-2642-fe0f.svg"},{"file":"1f486-1f3fd.svg"},{"file":"1f486-1f3fe-200d-2640-fe0f.svg"},{"file":"1f486-1f3fe-200d-2642-fe0f.svg"},{"file":"1f486-1f3fe.svg"},{"file":"1f486-1f3ff-200d-2640-fe0f.svg"},{"file":"1f486-1f3ff-200d-2642-fe0f.svg"},{"file":"1f486-1f3ff.svg"},{"file":"1f486-200d-2640-fe0f.svg"},{"file":"1f486-200d-2642-fe0f.svg"},{"file":"1f486.svg"},{"file":"1f487-1f3fb-200d-2640-fe0f.svg"},{"file":"1f487-1f3fb-200d-2642-fe0f.svg"},{"file":"1f487-1f3fb.svg"},{"file":"1f487-1f3fc-200d-2640-fe0f.svg"},{"file":"1f487-1f3fc-200d-2642-fe0f.svg"},{"file":"1f487-1f3fc.svg"},{"file":"1f487-1f3fd-200d-2640-fe0f.svg"},{"file":"1f487-1f3fd-200d-2642-fe0f.svg"},{"file":"1f487-1f3fd.svg"},{"file":"1f487-1f3fe-200d-2640-fe0f.svg"},{"file":"1f487-1f3fe-200d-2642-fe0f.svg"},{"file":"1f487-1f3fe.svg"},{"file":"1f487-1f3ff-200d-2640-fe0f.svg"},{"file":"1f487-1f3ff-200d-2642-fe0f.svg"},{"file":"1f487-1f3ff.svg"},{"file":"1f487-200d-2640-fe0f.svg"},{"file":"1f487-200d-2642-fe0f.svg"},{"file":"1f487.svg"},{"file":"1f48b.svg"},{"file":"1f48c.svg"},{"file":"1f48d.svg"},{"file":"1f48e.svg"},{"file":"1f48f.svg"},{"file":"1f491.svg"},{"file":"1f493.svg"},{"file":"1f494.svg"},{"file":"1f495.svg"},{"file":"1f496.svg"},{"file":"1f497.svg"},{"file":"1f498.svg"},{"file":"1f499.svg"},{"file":"1f49a.svg"},{"file":"1f49b.svg"},{"file":"1f49c.svg"},{"file":"1f49d.svg"},{"file":"1f49e.svg"},{"file":"1f49f.svg"},{"file":"1f4a2.svg"},{"file":"1f4a3.svg"},{"file":"1f4a4.svg"},{"file":"1f4a5.svg"},{"file":"1f4a6.svg"},{"file":"1f4a8.svg"},{"file":"1f4a9.svg"},{"file":"1f4aa-1f3fb.svg"},{"file":"1f4aa-1f3fc.svg"},{"file":"1f4aa-1f3fd.svg"},{"file":"1f4aa-1f3fe.svg"},{"file":"1f4aa-1f3ff.svg"},{"file":"1f4aa.svg"},{"file":"1f4ab.svg"},{"file":"1f4ac.svg"},{"file":"1f4ad.svg"},{"file":"1f4ff.svg"},{"file":"1f573.svg"},{"file":"1f574-1f3fb.svg"},{"file":"1f574-1f3fc.svg"},{"file":"1f574-1f3fd.svg"},{"file":"1f574-1f3fe.svg"},{"file":"1f574-1f3ff.svg"},{"file":"1f574.svg"},{"file":"1f575-1f3fb-200d-2640-fe0f.svg"},{"file":"1f575-1f3fb-200d-2642-fe0f.svg"},{"file":"1f575-1f3fb.svg"},{"file":"1f575-1f3fc-200d-2640-fe0f.svg"},{"file":"1f575-1f3fc-200d-2642-fe0f.svg"},{"file":"1f575-1f3fc.svg"},{"file":"1f575-1f3fd-200d-2640-fe0f.svg"},{"file":"1f575-1f3fd-200d-2642-fe0f.svg"},{"file":"1f575-1f3fd.svg"},{"file":"1f575-1f3fe-200d-2640-fe0f.svg"},{"file":"1f575-1f3fe-200d-2642-fe0f.svg"},{"file":"1f575-1f3fe.svg"},{"file":"1f575-1f3ff-200d-2640-fe0f.svg"},{"file":"1f575-1f3ff-200d-2642-fe0f.svg"},{"file":"1f575-1f3ff.svg"},{"file":"1f575-fe0f-200d-2640-fe0f.svg"},{"file":"1f575-fe0f-200d-2642-fe0f.svg"},{"file":"1f575.svg"},{"file":"1f576.svg"},{"file":"1f57a-1f3fb.svg"},{"file":"1f57a-1f3fc.svg"},{"file":"1f57a-1f3fd.svg"},{"file":"1f57a-1f3fe.svg"},{"file":"1f57a-1f3ff.svg"},{"file":"1f57a.svg"},{"file":"1f590-1f3fb.svg"},{"file":"1f590-1f3fc.svg"},{"file":"1f590-1f3fd.svg"},{"file":"1f590-1f3fe.svg"},{"file":"1f590-1f3ff.svg"},{"file":"1f590.svg"},{"file":"1f595-1f3fb.svg"},{"file":"1f595-1f3fc.svg"},{"file":"1f595-1f3fd.svg"},{"file":"1f595-1f3fe.svg"},{"file":"1f595-1f3ff.svg"},{"file":"1f595.svg"},{"file":"1f596-1f3fb.svg"},{"file":"1f596-1f3fc.svg"},{"file":"1f596-1f3fd.svg"},{"file":"1f596-1f3fe.svg"},{"file":"1f596-1f3ff.svg"},{"file":"1f596.svg"},{"file":"1f5a4.svg"},{"file":"1f5e3.svg"},{"file":"1f5e8.svg"},{"file":"1f5ef.svg"},{"file":"1f600.svg"},{"file":"1f601.svg"},{"file":"1f602.svg"},{"file":"1f603.svg"},{"file":"1f604.svg"},{"file":"1f605.svg"},{"file":"1f606.svg"},{"file":"1f607.svg"},{"file":"1f608.svg"},{"file":"1f609.svg"},{"file":"1f60a.svg"},{"file":"1f60b.svg"},{"file":"1f60c.svg"},{"file":"1f60d.svg"},{"file":"1f60e.svg"},{"file":"1f60f.svg"},{"file":"1f610.svg"},{"file":"1f611.svg"},{"file":"1f612.svg"},{"file":"1f613.svg"},{"file":"1f614.svg"},{"file":"1f615.svg"},{"file":"1f616.svg"},{"file":"1f617.svg"},{"file":"1f618.svg"},{"file":"1f619.svg"},{"file":"1f61a.svg"},{"file":"1f61b.svg"},{"file":"1f61c.svg"},{"file":"1f61d.svg"},{"file":"1f61e.svg"},{"file":"1f61f.svg"},{"file":"1f620.svg"},{"file":"1f621.svg"},{"file":"1f622.svg"},{"file":"1f623.svg"},{"file":"1f624.svg"},{"file":"1f625.svg"},{"file":"1f626.svg"},{"file":"1f627.svg"},{"file":"1f628.svg"},{"file":"1f629.svg"},{"file":"1f62a.svg"},{"file":"1f62b.svg"},{"file":"1f62c.svg"},{"file":"1f62d.svg"},{"file":"1f62e.svg"},{"file":"1f62f.svg"},{"file":"1f630.svg"},{"file":"1f631.svg"},{"file":"1f632.svg"},{"file":"1f633.svg"},{"file":"1f634.svg"},{"file":"1f635.svg"},{"file":"1f636.svg"},{"file":"1f637.svg"},{"file":"1f638.svg"},{"file":"1f639.svg"},{"file":"1f63a.svg"},{"file":"1f63b.svg"},{"file":"1f63c.svg"},{"file":"1f63d.svg"},{"file":"1f63e.svg"},{"file":"1f63f.svg"},{"file":"1f640.svg"},{"file":"1f641.svg"},{"file":"1f642.svg"},{"file":"1f643.svg"},{"file":"1f644.svg"},{"file":"1f645-1f3fb-200d-2640-fe0f.svg"},{"file":"1f645-1f3fb-200d-2642-fe0f.svg"},{"file":"1f645-1f3fb.svg"},{"file":"1f645-1f3fc-200d-2640-fe0f.svg"},{"file":"1f645-1f3fc-200d-2642-fe0f.svg"},{"file":"1f645-1f3fc.svg"},{"file":"1f645-1f3fd-200d-2640-fe0f.svg"},{"file":"1f645-1f3fd-200d-2642-fe0f.svg"},{"file":"1f645-1f3fd.svg"},{"file":"1f645-1f3fe-200d-2640-fe0f.svg"},{"file":"1f645-1f3fe-200d-2642-fe0f.svg"},{"file":"1f645-1f3fe.svg"},{"file":"1f645-1f3ff-200d-2640-fe0f.svg"},{"file":"1f645-1f3ff-200d-2642-fe0f.svg"},{"file":"1f645-1f3ff.svg"},{"file":"1f645-200d-2640-fe0f.svg"},{"file":"1f645-200d-2642-fe0f.svg"},{"file":"1f645.svg"},{"file":"1f646-1f3fb-200d-2640-fe0f.svg"},{"file":"1f646-1f3fb-200d-2642-fe0f.svg"},{"file":"1f646-1f3fb.svg"},{"file":"1f646-1f3fc-200d-2640-fe0f.svg"},{"file":"1f646-1f3fc-200d-2642-fe0f.svg"},{"file":"1f646-1f3fc.svg"},{"file":"1f646-1f3fd-200d-2640-fe0f.svg"},{"file":"1f646-1f3fd-200d-2642-fe0f.svg"},{"file":"1f646-1f3fd.svg"},{"file":"1f646-1f3fe-200d-2640-fe0f.svg"},{"file":"1f646-1f3fe-200d-2642-fe0f.svg"},{"file":"1f646-1f3fe.svg"},{"file":"1f646-1f3ff-200d-2640-fe0f.svg"},{"file":"1f646-1f3ff-200d-2642-fe0f.svg"},{"file":"1f646-1f3ff.svg"},{"file":"1f646-200d-2640-fe0f.svg"},{"file":"1f646-200d-2642-fe0f.svg"},{"file":"1f646.svg"},{"file":"1f647-1f3fb-200d-2640-fe0f.svg"},{"file":"1f647-1f3fb-200d-2642-fe0f.svg"},{"file":"1f647-1f3fb.svg"},{"file":"1f647-1f3fc-200d-2640-fe0f.svg"},{"file":"1f647-1f3fc-200d-2642-fe0f.svg"},{"file":"1f647-1f3fc.svg"},{"file":"1f647-1f3fd-200d-2640-fe0f.svg"},{"file":"1f647-1f3fd-200d-2642-fe0f.svg"},{"file":"1f647-1f3fd.svg"},{"file":"1f647-1f3fe-200d-2640-fe0f.svg"},{"file":"1f647-1f3fe-200d-2642-fe0f.svg"},{"file":"1f647-1f3fe.svg"},{"file":"1f647-1f3ff-200d-2640-fe0f.svg"},{"file":"1f647-1f3ff-200d-2642-fe0f.svg"},{"file":"1f647-1f3ff.svg"},{"file":"1f647-200d-2640-fe0f.svg"},{"file":"1f647-200d-2642-fe0f.svg"},{"file":"1f647.svg"},{"file":"1f648.svg"},{"file":"1f649.svg"},{"file":"1f64a.svg"},{"file":"1f64b-1f3fb-200d-2640-fe0f.svg"},{"file":"1f64b-1f3fb-200d-2642-fe0f.svg"},{"file":"1f64b-1f3fb.svg"},{"file":"1f64b-1f3fc-200d-2640-fe0f.svg"},{"file":"1f64b-1f3fc-200d-2642-fe0f.svg"},{"file":"1f64b-1f3fc.svg"},{"file":"1f64b-1f3fd-200d-2640-fe0f.svg"},{"file":"1f64b-1f3fd-200d-2642-fe0f.svg"},{"file":"1f64b-1f3fd.svg"},{"file":"1f64b-1f3fe-200d-2640-fe0f.svg"},{"file":"1f64b-1f3fe-200d-2642-fe0f.svg"},{"file":"1f64b-1f3fe.svg"},{"file":"1f64b-1f3ff-200d-2640-fe0f.svg"},{"file":"1f64b-1f3ff-200d-2642-fe0f.svg"},{"file":"1f64b-1f3ff.svg"},{"file":"1f64b-200d-2640-fe0f.svg"},{"file":"1f64b-200d-2642-fe0f.svg"},{"file":"1f64b.svg"},{"file":"1f64c-1f3fb.svg"},{"file":"1f64c-1f3fc.svg"},{"file":"1f64c-1f3fd.svg"},{"file":"1f64c-1f3fe.svg"},{"file":"1f64c-1f3ff.svg"},{"file":"1f64c.svg"},{"file":"1f64d-1f3fb-200d-2640-fe0f.svg"},{"file":"1f64d-1f3fb-200d-2642-fe0f.svg"},{"file":"1f64d-1f3fb.svg"},{"file":"1f64d-1f3fc-200d-2640-fe0f.svg"},{"file":"1f64d-1f3fc-200d-2642-fe0f.svg"},{"file":"1f64d-1f3fc.svg"},{"file":"1f64d-1f3fd-200d-2640-fe0f.svg"},{"file":"1f64d-1f3fd-200d-2642-fe0f.svg"},{"file":"1f64d-1f3fd.svg"},{"file":"1f64d-1f3fe-200d-2640-fe0f.svg"},{"file":"1f64d-1f3fe-200d-2642-fe0f.svg"},{"file":"1f64d-1f3fe.svg"},{"file":"1f64d-1f3ff-200d-2640-fe0f.svg"},{"file":"1f64d-1f3ff-200d-2642-fe0f.svg"},{"file":"1f64d-1f3ff.svg"},{"file":"1f64d-200d-2640-fe0f.svg"},{"file":"1f64d-200d-2642-fe0f.svg"},{"file":"1f64d.svg"},{"file":"1f64e-1f3fb-200d-2640-fe0f.svg"},{"file":"1f64e-1f3fb-200d-2642-fe0f.svg"},{"file":"1f64e-1f3fb.svg"},{"file":"1f64e-1f3fc-200d-2640-fe0f.svg"},{"file":"1f64e-1f3fc-200d-2642-fe0f.svg"},{"file":"1f64e-1f3fc.svg"},{"file":"1f64e-1f3fd-200d-2640-fe0f.svg"},{"file":"1f64e-1f3fd-200d-2642-fe0f.svg"},{"file":"1f64e-1f3fd.svg"},{"file":"1f64e-1f3fe-200d-2640-fe0f.svg"},{"file":"1f64e-1f3fe-200d-2642-fe0f.svg"},{"file":"1f64e-1f3fe.svg"},{"file":"1f64e-1f3ff-200d-2640-fe0f.svg"},{"file":"1f64e-1f3ff-200d-2642-fe0f.svg"},{"file":"1f64e-1f3ff.svg"},{"file":"1f64e-200d-2640-fe0f.svg"},{"file":"1f64e-200d-2642-fe0f.svg"},{"file":"1f64e.svg"},{"file":"1f64f-1f3fb.svg"},{"file":"1f64f-1f3fc.svg"},{"file":"1f64f-1f3fd.svg"},{"file":"1f64f-1f3fe.svg"},{"file":"1f64f-1f3ff.svg"},{"file":"1f64f.svg"},{"file":"1f6a3-1f3fb-200d-2640-fe0f.svg"},{"file":"1f6a3-1f3fb-200d-2642-fe0f.svg"},{"file":"1f6a3-1f3fb.svg"},{"file":"1f6a3-1f3fc-200d-2640-fe0f.svg"},{"file":"1f6a3-1f3fc-200d-2642-fe0f.svg"},{"file":"1f6a3-1f3fc.svg"},{"file":"1f6a3-1f3fd-200d-2640-fe0f.svg"},{"file":"1f6a3-1f3fd-200d-2642-fe0f.svg"},{"file":"1f6a3-1f3fd.svg"},{"file":"1f6a3-1f3fe-200d-2640-fe0f.svg"},{"file":"1f6a3-1f3fe-200d-2642-fe0f.svg"},{"file":"1f6a3-1f3fe.svg"},{"file":"1f6a3-1f3ff-200d-2640-fe0f.svg"},{"file":"1f6a3-1f3ff-200d-2642-fe0f.svg"},{"file":"1f6a3-1f3ff.svg"},{"file":"1f6a3-200d-2640-fe0f.svg"},{"file":"1f6a3-200d-2642-fe0f.svg"},{"file":"1f6a3.svg"},{"file":"1f6b4-1f3fb-200d-2640-fe0f.svg"},{"file":"1f6b4-1f3fb-200d-2642-fe0f.svg"},{"file":"1f6b4-1f3fb.svg"},{"file":"1f6b4-1f3fc-200d-2640-fe0f.svg"},{"file":"1f6b4-1f3fc-200d-2642-fe0f.svg"},{"file":"1f6b4-1f3fc.svg"},{"file":"1f6b4-1f3fd-200d-2640-fe0f.svg"},{"file":"1f6b4-1f3fd-200d-2642-fe0f.svg"},{"file":"1f6b4-1f3fd.svg"},{"file":"1f6b4-1f3fe-200d-2640-fe0f.svg"},{"file":"1f6b4-1f3fe-200d-2642-fe0f.svg"},{"file":"1f6b4-1f3fe.svg"},{"file":"1f6b4-1f3ff-200d-2640-fe0f.svg"},{"file":"1f6b4-1f3ff-200d-2642-fe0f.svg"},{"file":"1f6b4-1f3ff.svg"},{"file":"1f6b4-200d-2640-fe0f.svg"},{"file":"1f6b4-200d-2642-fe0f.svg"},{"file":"1f6b4.svg"},{"file":"1f6b5-1f3fb-200d-2640-fe0f.svg"},{"file":"1f6b5-1f3fb-200d-2642-fe0f.svg"},{"file":"1f6b5-1f3fb.svg"},{"file":"1f6b5-1f3fc-200d-2640-fe0f.svg"},{"file":"1f6b5-1f3fc-200d-2642-fe0f.svg"},{"file":"1f6b5-1f3fc.svg"},{"file":"1f6b5-1f3fd-200d-2640-fe0f.svg"},{"file":"1f6b5-1f3fd-200d-2642-fe0f.svg"},{"file":"1f6b5-1f3fd.svg"},{"file":"1f6b5-1f3fe-200d-2640-fe0f.svg"},{"file":"1f6b5-1f3fe-200d-2642-fe0f.svg"},{"file":"1f6b5-1f3fe.svg"},{"file":"1f6b5-1f3ff-200d-2640-fe0f.svg"},{"file":"1f6b5-1f3ff-200d-2642-fe0f.svg"},{"file":"1f6b5-1f3ff.svg"},{"file":"1f6b5-200d-2640-fe0f.svg"},{"file":"1f6b5-200d-2642-fe0f.svg"},{"file":"1f6b5.svg"},{"file":"1f6b6-1f3fb-200d-2640-fe0f.svg"},{"file":"1f6b6-1f3fb-200d-2642-fe0f.svg"},{"file":"1f6b6-1f3fb.svg"},{"file":"1f6b6-1f3fc-200d-2640-fe0f.svg"},{"file":"1f6b6-1f3fc-200d-2642-fe0f.svg"},{"file":"1f6b6-1f3fc.svg"},{"file":"1f6b6-1f3fd-200d-2640-fe0f.svg"},{"file":"1f6b6-1f3fd-200d-2642-fe0f.svg"},{"file":"1f6b6-1f3fd.svg"},{"file":"1f6b6-1f3fe-200d-2640-fe0f.svg"},{"file":"1f6b6-1f3fe-200d-2642-fe0f.svg"},{"file":"1f6b6-1f3fe.svg"},{"file":"1f6b6-1f3ff-200d-2640-fe0f.svg"},{"file":"1f6b6-1f3ff-200d-2642-fe0f.svg"},{"file":"1f6b6-1f3ff.svg"},{"file":"1f6b6-200d-2640-fe0f.svg"},{"file":"1f6b6-200d-2642-fe0f.svg"},{"file":"1f6b6.svg"},{"file":"1f6c0-1f3fb.svg"},{"file":"1f6c0-1f3fc.svg"},{"file":"1f6c0-1f3fd.svg"},{"file":"1f6c0-1f3fe.svg"},{"file":"1f6c0-1f3ff.svg"},{"file":"1f6c0.svg"},{"file":"1f6cc-1f3fb.svg"},{"file":"1f6cc-1f3fc.svg"},{"file":"1f6cc-1f3fd.svg"},{"file":"1f6cc-1f3fe.svg"},{"file":"1f6cc-1f3ff.svg"},{"file":"1f6cc.svg"},{"file":"1f6cd.svg"},{"file":"1f910.svg"},{"file":"1f911.svg"},{"file":"1f912.svg"},{"file":"1f913.svg"},{"file":"1f914.svg"},{"file":"1f915.svg"},{"file":"1f916.svg"},{"file":"1f917.svg"},{"file":"1f918-1f3fb.svg"},{"file":"1f918-1f3fc.svg"},{"file":"1f918-1f3fd.svg"},{"file":"1f918-1f3fe.svg"},{"file":"1f918-1f3ff.svg"},{"file":"1f918.svg"},{"file":"1f919-1f3fb.svg"},{"file":"1f919-1f3fc.svg"},{"file":"1f919-1f3fd.svg"},{"file":"1f919-1f3fe.svg"},{"file":"1f919-1f3ff.svg"},{"file":"1f919.svg"},{"file":"1f91a-1f3fb.svg"},{"file":"1f91a-1f3fc.svg"},{"file":"1f91a-1f3fd.svg"},{"file":"1f91a-1f3fe.svg"},{"file":"1f91a-1f3ff.svg"},{"file":"1f91a.svg"},{"file":"1f91b-1f3fb.svg"},{"file":"1f91b-1f3fc.svg"},{"file":"1f91b-1f3fd.svg"},{"file":"1f91b-1f3fe.svg"},{"file":"1f91b-1f3ff.svg"},{"file":"1f91b.svg"},{"file":"1f91c-1f3fb.svg"},{"file":"1f91c-1f3fc.svg"},{"file":"1f91c-1f3fd.svg"},{"file":"1f91c-1f3fe.svg"},{"file":"1f91c-1f3ff.svg"},{"file":"1f91c.svg"},{"file":"1f91d.svg"},{"file":"1f91e-1f3fb.svg"},{"file":"1f91e-1f3fc.svg"},{"file":"1f91e-1f3fd.svg"},{"file":"1f91e-1f3fe.svg"},{"file":"1f91e-1f3ff.svg"},{"file":"1f91e.svg"},{"file":"1f91f-1f3fb.svg"},{"file":"1f91f-1f3fc.svg"},{"file":"1f91f-1f3fd.svg"},{"file":"1f91f-1f3fe.svg"},{"file":"1f91f-1f3ff.svg"},{"file":"1f91f.svg"},{"file":"1f920.svg"},{"file":"1f921.svg"},{"file":"1f922.svg"},{"file":"1f923.svg"},{"file":"1f924.svg"},{"file":"1f925.svg"},{"file":"1f926-1f3fb-200d-2640-fe0f.svg"},{"file":"1f926-1f3fb-200d-2642-fe0f.svg"},{"file":"1f926-1f3fb.svg"},{"file":"1f926-1f3fc-200d-2640-fe0f.svg"},{"file":"1f926-1f3fc-200d-2642-fe0f.svg"},{"file":"1f926-1f3fc.svg"},{"file":"1f926-1f3fd-200d-2640-fe0f.svg"},{"file":"1f926-1f3fd-200d-2642-fe0f.svg"},{"file":"1f926-1f3fd.svg"},{"file":"1f926-1f3fe-200d-2640-fe0f.svg"},{"file":"1f926-1f3fe-200d-2642-fe0f.svg"},{"file":"1f926-1f3fe.svg"},{"file":"1f926-1f3ff-200d-2640-fe0f.svg"},{"file":"1f926-1f3ff-200d-2642-fe0f.svg"},{"file":"1f926-1f3ff.svg"},{"file":"1f926-200d-2640-fe0f.svg"},{"file":"1f926-200d-2642-fe0f.svg"},{"file":"1f926.svg"},{"file":"1f927.svg"},{"file":"1f928.svg"},{"file":"1f929.svg"},{"file":"1f92a.svg"},{"file":"1f92b.svg"},{"file":"1f92c.svg"},{"file":"1f92d.svg"},{"file":"1f92e.svg"},{"file":"1f92f.svg"},{"file":"1f930-1f3fb.svg"},{"file":"1f930-1f3fc.svg"},{"file":"1f930-1f3fd.svg"},{"file":"1f930-1f3fe.svg"},{"file":"1f930-1f3ff.svg"},{"file":"1f930.svg"},{"file":"1f931-1f3fb.svg"},{"file":"1f931-1f3fc.svg"},{"file":"1f931-1f3fd.svg"},{"file":"1f931-1f3fe.svg"},{"file":"1f931-1f3ff.svg"},{"file":"1f931.svg"},{"file":"1f932-1f3fb.svg"},{"file":"1f932-1f3fc.svg"},{"file":"1f932-1f3fd.svg"},{"file":"1f932-1f3fe.svg"},{"file":"1f932-1f3ff.svg"},{"file":"1f932.svg"},{"file":"1f933-1f3fb.svg"},{"file":"1f933-1f3fc.svg"},{"file":"1f933-1f3fd.svg"},{"file":"1f933-1f3fe.svg"},{"file":"1f933-1f3ff.svg"},{"file":"1f933.svg"},{"file":"1f934-1f3fb.svg"},{"file":"1f934-1f3fc.svg"},{"file":"1f934-1f3fd.svg"},{"file":"1f934-1f3fe.svg"},{"file":"1f934-1f3ff.svg"},{"file":"1f934.svg"},{"file":"1f935-1f3fb.svg"},{"file":"1f935-1f3fc.svg"},{"file":"1f935-1f3fd.svg"},{"file":"1f935-1f3fe.svg"},{"file":"1f935-1f3ff.svg"},{"file":"1f935.svg"},{"file":"1f936-1f3fb.svg"},{"file":"1f936-1f3fc.svg"},{"file":"1f936-1f3fd.svg"},{"file":"1f936-1f3fe.svg"},{"file":"1f936-1f3ff.svg"},{"file":"1f936.svg"},{"file":"1f937-1f3fb-200d-2640-fe0f.svg"},{"file":"1f937-1f3fb-200d-2642-fe0f.svg"},{"file":"1f937-1f3fb.svg"},{"file":"1f937-1f3fc-200d-2640-fe0f.svg"},{"file":"1f937-1f3fc-200d-2642-fe0f.svg"},{"file":"1f937-1f3fc.svg"},{"file":"1f937-1f3fd-200d-2640-fe0f.svg"},{"file":"1f937-1f3fd-200d-2642-fe0f.svg"},{"file":"1f937-1f3fd.svg"},{"file":"1f937-1f3fe-200d-2640-fe0f.svg"},{"file":"1f937-1f3fe-200d-2642-fe0f.svg"},{"file":"1f937-1f3fe.svg"},{"file":"1f937-1f3ff-200d-2640-fe0f.svg"},{"file":"1f937-1f3ff-200d-2642-fe0f.svg"},{"file":"1f937-1f3ff.svg"},{"file":"1f937-200d-2640-fe0f.svg"},{"file":"1f937-200d-2642-fe0f.svg"},{"file":"1f937.svg"},{"file":"1f938-1f3fb-200d-2640-fe0f.svg"},{"file":"1f938-1f3fb-200d-2642-fe0f.svg"},{"file":"1f938-1f3fb.svg"},{"file":"1f938-1f3fc-200d-2640-fe0f.svg"},{"file":"1f938-1f3fc-200d-2642-fe0f.svg"},{"file":"1f938-1f3fc.svg"},{"file":"1f938-1f3fd-200d-2640-fe0f.svg"},{"file":"1f938-1f3fd-200d-2642-fe0f.svg"},{"file":"1f938-1f3fd.svg"},{"file":"1f938-1f3fe-200d-2640-fe0f.svg"},{"file":"1f938-1f3fe-200d-2642-fe0f.svg"},{"file":"1f938-1f3fe.svg"},{"file":"1f938-1f3ff-200d-2640-fe0f.svg"},{"file":"1f938-1f3ff-200d-2642-fe0f.svg"},{"file":"1f938-1f3ff.svg"},{"file":"1f938-200d-2640-fe0f.svg"},{"file":"1f938-200d-2642-fe0f.svg"},{"file":"1f938.svg"},{"file":"1f939-1f3fb-200d-2640-fe0f.svg"},{"file":"1f939-1f3fb-200d-2642-fe0f.svg"},{"file":"1f939-1f3fb.svg"},{"file":"1f939-1f3fc-200d-2640-fe0f.svg"},{"file":"1f939-1f3fc-200d-2642-fe0f.svg"},{"file":"1f939-1f3fc.svg"},{"file":"1f939-1f3fd-200d-2640-fe0f.svg"},{"file":"1f939-1f3fd-200d-2642-fe0f.svg"},{"file":"1f939-1f3fd.svg"},{"file":"1f939-1f3fe-200d-2640-fe0f.svg"},{"file":"1f939-1f3fe-200d-2642-fe0f.svg"},{"file":"1f939-1f3fe.svg"},{"file":"1f939-1f3ff-200d-2640-fe0f.svg"},{"file":"1f939-1f3ff-200d-2642-fe0f.svg"},{"file":"1f939-1f3ff.svg"},{"file":"1f939-200d-2640-fe0f.svg"},{"file":"1f939-200d-2642-fe0f.svg"},{"file":"1f939.svg"},{"file":"1f93a.svg"},{"file":"1f93c-200d-2640-fe0f.svg"},{"file":"1f93c-200d-2642-fe0f.svg"},{"file":"1f93c.svg"},{"file":"1f93d-1f3fb-200d-2640-fe0f.svg"},{"file":"1f93d-1f3fb-200d-2642-fe0f.svg"},{"file":"1f93d-1f3fb.svg"},{"file":"1f93d-1f3fc-200d-2640-fe0f.svg"},{"file":"1f93d-1f3fc-200d-2642-fe0f.svg"},{"file":"1f93d-1f3fc.svg"},{"file":"1f93d-1f3fd-200d-2640-fe0f.svg"},{"file":"1f93d-1f3fd-200d-2642-fe0f.svg"},{"file":"1f93d-1f3fd.svg"},{"file":"1f93d-1f3fe-200d-2640-fe0f.svg"},{"file":"1f93d-1f3fe-200d-2642-fe0f.svg"},{"file":"1f93d-1f3fe.svg"},{"file":"1f93d-1f3ff-200d-2640-fe0f.svg"},{"file":"1f93d-1f3ff-200d-2642-fe0f.svg"},{"file":"1f93d-1f3ff.svg"},{"file":"1f93d-200d-2640-fe0f.svg"},{"file":"1f93d-200d-2642-fe0f.svg"},{"file":"1f93d.svg"},{"file":"1f93e-1f3fb-200d-2640-fe0f.svg"},{"file":"1f93e-1f3fb-200d-2642-fe0f.svg"},{"file":"1f93e-1f3fb.svg"},{"file":"1f93e-1f3fc-200d-2640-fe0f.svg"},{"file":"1f93e-1f3fc-200d-2642-fe0f.svg"},{"file":"1f93e-1f3fc.svg"},{"file":"1f93e-1f3fd-200d-2640-fe0f.svg"},{"file":"1f93e-1f3fd-200d-2642-fe0f.svg"},{"file":"1f93e-1f3fd.svg"},{"file":"1f93e-1f3fe-200d-2640-fe0f.svg"},{"file":"1f93e-1f3fe-200d-2642-fe0f.svg"},{"file":"1f93e-1f3fe.svg"},{"file":"1f93e-1f3ff-200d-2640-fe0f.svg"},{"file":"1f93e-1f3ff-200d-2642-fe0f.svg"},{"file":"1f93e-1f3ff.svg"},{"file":"1f93e-200d-2640-fe0f.svg"},{"file":"1f93e-200d-2642-fe0f.svg"},{"file":"1f93e.svg"},{"file":"1f9d0.svg"},{"file":"1f9d1-1f3fb.svg"},{"file":"1f9d1-1f3fc.svg"},{"file":"1f9d1-1f3fd.svg"},{"file":"1f9d1-1f3fe.svg"},{"file":"1f9d1-1f3ff.svg"},{"file":"1f9d1.svg"},{"file":"1f9d2-1f3fb.svg"},{"file":"1f9d2-1f3fc.svg"},{"file":"1f9d2-1f3fd.svg"},{"file":"1f9d2-1f3fe.svg"},{"file":"1f9d2-1f3ff.svg"},{"file":"1f9d2.svg"},{"file":"1f9d3-1f3fb.svg"},{"file":"1f9d3-1f3fc.svg"},{"file":"1f9d3-1f3fd.svg"},{"file":"1f9d3-1f3fe.svg"},{"file":"1f9d3-1f3ff.svg"},{"file":"1f9d3.svg"},{"file":"1f9d4-1f3fb.svg"},{"file":"1f9d4-1f3fc.svg"},{"file":"1f9d4-1f3fd.svg"},{"file":"1f9d4-1f3fe.svg"},{"file":"1f9d4-1f3ff.svg"},{"file":"1f9d4.svg"},{"file":"1f9d5-1f3fb.svg"},{"file":"1f9d5-1f3fc.svg"},{"file":"1f9d5-1f3fd.svg"},{"file":"1f9d5-1f3fe.svg"},{"file":"1f9d5-1f3ff.svg"},{"file":"1f9d5.svg"},{"file":"1f9d6-1f3fb-200d-2640-fe0f.svg"},{"file":"1f9d6-1f3fb-200d-2642-fe0f.svg"},{"file":"1f9d6-1f3fb.svg"},{"file":"1f9d6-1f3fc-200d-2640-fe0f.svg"},{"file":"1f9d6-1f3fc-200d-2642-fe0f.svg"},{"file":"1f9d6-1f3fc.svg"},{"file":"1f9d6-1f3fd-200d-2640-fe0f.svg"},{"file":"1f9d6-1f3fd-200d-2642-fe0f.svg"},{"file":"1f9d6-1f3fd.svg"},{"file":"1f9d6-1f3fe-200d-2640-fe0f.svg"},{"file":"1f9d6-1f3fe-200d-2642-fe0f.svg"},{"file":"1f9d6-1f3fe.svg"},{"file":"1f9d6-1f3ff-200d-2640-fe0f.svg"},{"file":"1f9d6-1f3ff-200d-2642-fe0f.svg"},{"file":"1f9d6-1f3ff.svg"},{"file":"1f9d6-200d-2640-fe0f.svg"},{"file":"1f9d6-200d-2642-fe0f.svg"},{"file":"1f9d6.svg"},{"file":"1f9d7-1f3fb-200d-2640-fe0f.svg"},{"file":"1f9d7-1f3fb-200d-2642-fe0f.svg"},{"file":"1f9d7-1f3fb.svg"},{"file":"1f9d7-1f3fc-200d-2640-fe0f.svg"},{"file":"1f9d7-1f3fc-200d-2642-fe0f.svg"},{"file":"1f9d7-1f3fc.svg"},{"file":"1f9d7-1f3fd-200d-2640-fe0f.svg"},{"file":"1f9d7-1f3fd-200d-2642-fe0f.svg"},{"file":"1f9d7-1f3fd.svg"},{"file":"1f9d7-1f3fe-200d-2640-fe0f.svg"},{"file":"1f9d7-1f3fe-200d-2642-fe0f.svg"},{"file":"1f9d7-1f3fe.svg"},{"file":"1f9d7-1f3ff-200d-2640-fe0f.svg"},{"file":"1f9d7-1f3ff-200d-2642-fe0f.svg"},{"file":"1f9d7-1f3ff.svg"},{"file":"1f9d7-200d-2640-fe0f.svg"},{"file":"1f9d7-200d-2642-fe0f.svg"},{"file":"1f9d7.svg"},{"file":"1f9d8-1f3fb-200d-2640-fe0f.svg"},{"file":"1f9d8-1f3fb-200d-2642-fe0f.svg"},{"file":"1f9d8-1f3fb.svg"},{"file":"1f9d8-1f3fc-200d-2640-fe0f.svg"},{"file":"1f9d8-1f3fc-200d-2642-fe0f.svg"},{"file":"1f9d8-1f3fc.svg"},{"file":"1f9d8-1f3fd-200d-2640-fe0f.svg"},{"file":"1f9d8-1f3fd-200d-2642-fe0f.svg"},{"file":"1f9d8-1f3fd.svg"},{"file":"1f9d8-1f3fe-200d-2640-fe0f.svg"},{"file":"1f9d8-1f3fe-200d-2642-fe0f.svg"},{"file":"1f9d8-1f3fe.svg"},{"file":"1f9d8-1f3ff-200d-2640-fe0f.svg"},{"file":"1f9d8-1f3ff-200d-2642-fe0f.svg"},{"file":"1f9d8-1f3ff.svg"},{"file":"1f9d8-200d-2640-fe0f.svg"},{"file":"1f9d8-200d-2642-fe0f.svg"},{"file":"1f9d8.svg"},{"file":"1f9d9-1f3fb-200d-2640-fe0f.svg"},{"file":"1f9d9-1f3fb-200d-2642-fe0f.svg"},{"file":"1f9d9-1f3fb.svg"},{"file":"1f9d9-1f3fc-200d-2640-fe0f.svg"},{"file":"1f9d9-1f3fc-200d-2642-fe0f.svg"},{"file":"1f9d9-1f3fc.svg"},{"file":"1f9d9-1f3fd-200d-2640-fe0f.svg"},{"file":"1f9d9-1f3fd-200d-2642-fe0f.svg"},{"file":"1f9d9-1f3fd.svg"},{"file":"1f9d9-1f3fe-200d-2640-fe0f.svg"},{"file":"1f9d9-1f3fe-200d-2642-fe0f.svg"},{"file":"1f9d9-1f3fe.svg"},{"file":"1f9d9-1f3ff-200d-2640-fe0f.svg"},{"file":"1f9d9-1f3ff-200d-2642-fe0f.svg"},{"file":"1f9d9-1f3ff.svg"},{"file":"1f9d9-200d-2640-fe0f.svg"},{"file":"1f9d9-200d-2642-fe0f.svg"},{"file":"1f9d9.svg"},{"file":"1f9da-1f3fb-200d-2640-fe0f.svg"},{"file":"1f9da-1f3fb-200d-2642-fe0f.svg"},{"file":"1f9da-1f3fb.svg"},{"file":"1f9da-1f3fc-200d-2640-fe0f.svg"},{"file":"1f9da-1f3fc-200d-2642-fe0f.svg"},{"file":"1f9da-1f3fc.svg"},{"file":"1f9da-1f3fd-200d-2640-fe0f.svg"},{"file":"1f9da-1f3fd-200d-2642-fe0f.svg"},{"file":"1f9da-1f3fd.svg"},{"file":"1f9da-1f3fe-200d-2640-fe0f.svg"},{"file":"1f9da-1f3fe-200d-2642-fe0f.svg"},{"file":"1f9da-1f3fe.svg"},{"file":"1f9da-1f3ff-200d-2640-fe0f.svg"},{"file":"1f9da-1f3ff-200d-2642-fe0f.svg"},{"file":"1f9da-1f3ff.svg"},{"file":"1f9da-200d-2640-fe0f.svg"},{"file":"1f9da-200d-2642-fe0f.svg"},{"file":"1f9da.svg"},{"file":"1f9db-1f3fb-200d-2640-fe0f.svg"},{"file":"1f9db-1f3fb-200d-2642-fe0f.svg"},{"file":"1f9db-1f3fb.svg"},{"file":"1f9db-1f3fc-200d-2640-fe0f.svg"},{"file":"1f9db-1f3fc-200d-2642-fe0f.svg"},{"file":"1f9db-1f3fc.svg"},{"file":"1f9db-1f3fd-200d-2640-fe0f.svg"},{"file":"1f9db-1f3fd-200d-2642-fe0f.svg"},{"file":"1f9db-1f3fd.svg"},{"file":"1f9db-1f3fe-200d-2640-fe0f.svg"},{"file":"1f9db-1f3fe-200d-2642-fe0f.svg"},{"file":"1f9db-1f3fe.svg"},{"file":"1f9db-1f3ff-200d-2640-fe0f.svg"},{"file":"1f9db-1f3ff-200d-2642-fe0f.svg"},{"file":"1f9db-1f3ff.svg"},{"file":"1f9db-200d-2640-fe0f.svg"},{"file":"1f9db-200d-2642-fe0f.svg"},{"file":"1f9db.svg"},{"file":"1f9dc-1f3fb-200d-2640-fe0f.svg"},{"file":"1f9dc-1f3fb-200d-2642-fe0f.svg"},{"file":"1f9dc-1f3fb.svg"},{"file":"1f9dc-1f3fc-200d-2640-fe0f.svg"},{"file":"1f9dc-1f3fc-200d-2642-fe0f.svg"},{"file":"1f9dc-1f3fc.svg"},{"file":"1f9dc-1f3fd-200d-2640-fe0f.svg"},{"file":"1f9dc-1f3fd-200d-2642-fe0f.svg"},{"file":"1f9dc-1f3fd.svg"},{"file":"1f9dc-1f3fe-200d-2640-fe0f.svg"},{"file":"1f9dc-1f3fe-200d-2642-fe0f.svg"},{"file":"1f9dc-1f3fe.svg"},{"file":"1f9dc-1f3ff-200d-2640-fe0f.svg"},{"file":"1f9dc-1f3ff-200d-2642-fe0f.svg"},{"file":"1f9dc-1f3ff.svg"},{"file":"1f9dc-200d-2640-fe0f.svg"},{"file":"1f9dc-200d-2642-fe0f.svg"},{"file":"1f9dc.svg"},{"file":"1f9dd-1f3fb-200d-2640-fe0f.svg"},{"file":"1f9dd-1f3fb-200d-2642-fe0f.svg"},{"file":"1f9dd-1f3fb.svg"},{"file":"1f9dd-1f3fc-200d-2640-fe0f.svg"},{"file":"1f9dd-1f3fc-200d-2642-fe0f.svg"},{"file":"1f9dd-1f3fc.svg"},{"file":"1f9dd-1f3fd-200d-2640-fe0f.svg"},{"file":"1f9dd-1f3fd-200d-2642-fe0f.svg"},{"file":"1f9dd-1f3fd.svg"},{"file":"1f9dd-1f3fe-200d-2640-fe0f.svg"},{"file":"1f9dd-1f3fe-200d-2642-fe0f.svg"},{"file":"1f9dd-1f3fe.svg"},{"file":"1f9dd-1f3ff-200d-2640-fe0f.svg"},{"file":"1f9dd-1f3ff-200d-2642-fe0f.svg"},{"file":"1f9dd-1f3ff.svg"},{"file":"1f9dd-200d-2640-fe0f.svg"},{"file":"1f9dd-200d-2642-fe0f.svg"},{"file":"1f9dd.svg"},{"file":"1f9de-200d-2640-fe0f.svg"},{"file":"1f9de-200d-2642-fe0f.svg"},{"file":"1f9de.svg"},{"file":"1f9df-200d-2640-fe0f.svg"},{"file":"1f9df-200d-2642-fe0f.svg"},{"file":"1f9df.svg"},{"file":"1f9e0.svg"},{"file":"1f9e1.svg"},{"file":"1f9e2.svg"},{"file":"1f9e3.svg"},{"file":"1f9e4.svg"},{"file":"1f9e5.svg"},{"file":"1f9e6.svg"},{"file":"261d-1f3fb.svg"},{"file":"261d-1f3fc.svg"},{"file":"261d-1f3fd.svg"},{"file":"261d-1f3fe.svg"},{"file":"261d-1f3ff.svg"},{"file":"261d.svg"},{"file":"2620.svg"},{"file":"2639.svg"},{"file":"263a.svg"},{"file":"26d1.svg"},{"file":"26f7.svg"},{"file":"26f9-1f3fb-200d-2640-fe0f.svg"},{"file":"26f9-1f3fb-200d-2642-fe0f.svg"},{"file":"26f9-1f3fb.svg"},{"file":"26f9-1f3fc-200d-2640-fe0f.svg"},{"file":"26f9-1f3fc-200d-2642-fe0f.svg"},{"file":"26f9-1f3fc.svg"},{"file":"26f9-1f3fd-200d-2640-fe0f.svg"},{"file":"26f9-1f3fd-200d-2642-fe0f.svg"},{"file":"26f9-1f3fd.svg"},{"file":"26f9-1f3fe-200d-2640-fe0f.svg"},{"file":"26f9-1f3fe-200d-2642-fe0f.svg"},{"file":"26f9-1f3fe.svg"},{"file":"26f9-1f3ff-200d-2640-fe0f.svg"},{"file":"26f9-1f3ff-200d-2642-fe0f.svg"},{"file":"26f9-1f3ff.svg"},{"file":"26f9-fe0f-200d-2640-fe0f.svg"},{"file":"26f9-fe0f-200d-2642-fe0f.svg"},{"file":"26f9.svg"},{"file":"270a-1f3fb.svg"},{"file":"270a-1f3fc.svg"},{"file":"270a-1f3fd.svg"},{"file":"270a-1f3fe.svg"},{"file":"270a-1f3ff.svg"},{"file":"270a.svg"},{"file":"270b-1f3fb.svg"},{"file":"270b-1f3fc.svg"},{"file":"270b-1f3fd.svg"},{"file":"270b-1f3fe.svg"},{"file":"270b-1f3ff.svg"},{"file":"270b.svg"},{"file":"270c-1f3fb.svg"},{"file":"270c-1f3fc.svg"},{"file":"270c-1f3fd.svg"},{"file":"270c-1f3fe.svg"},{"file":"270c-1f3ff.svg"},{"file":"270c.svg"},{"file":"270d-1f3fb.svg"},{"file":"270d-1f3fc.svg"},{"file":"270d-1f3fd.svg"},{"file":"270d-1f3fe.svg"},{"file":"270d-1f3ff.svg"},{"file":"270d.svg"},{"file":"2763.svg"},{"file":"2764.svg"}],"name":"Smileys & People"},{"dir":[{"file":"1f170.svg"},{"file":"1f171.svg"},{"file":"1f17e.svg"},{"file":"1f17f.svg"},{"file":"1f18e.svg"},{"file":"1f191.svg"},{"file":"1f192.svg"},{"file":"1f193.svg"},{"file":"1f194.svg"},{"file":"1f195.svg"},{"file":"1f196.svg"},{"file":"1f197.svg"},{"file":"1f198.svg"},{"file":"1f199.svg"},{"file":"1f19a.svg"},{"file":"1f201.svg"},{"file":"1f202.svg"},{"file":"1f21a.svg"},{"file":"1f22f.svg"},{"file":"1f232.svg"},{"file":"1f233.svg"},{"file":"1f234.svg"},{"file":"1f235.svg"},{"file":"1f236.svg"},{"file":"1f237.svg"},{"file":"1f238.svg"},{"file":"1f239.svg"},{"file":"1f23a.svg"},{"file":"1f250.svg"},{"file":"1f251.svg"},{"file":"1f3a6.svg"},{"file":"1f3e7.svg"},{"file":"1f4a0.svg"},{"file":"1f4af.svg"},{"file":"1f4db.svg"},{"file":"1f4f3.svg"},{"file":"1f4f4.svg"},{"file":"1f4f5.svg"},{"file":"1f4f6.svg"},{"file":"1f500.svg"},{"file":"1f501.svg"},{"file":"1f502.svg"},{"file":"1f503.svg"},{"file":"1f504.svg"},{"file":"1f505.svg"},{"file":"1f506.svg"},{"file":"1f518.svg"},{"file":"1f519.svg"},{"file":"1f51a.svg"},{"file":"1f51b.svg"},{"file":"1f51c.svg"},{"file":"1f51d.svg"},{"file":"1f51e.svg"},{"file":"1f51f.svg"},{"file":"1f520.svg"},{"file":"1f521.svg"},{"file":"1f522.svg"},{"file":"1f523.svg"},{"file":"1f524.svg"},{"file":"1f52f.svg"},{"file":"1f530.svg"},{"file":"1f531.svg"},{"file":"1f532.svg"},{"file":"1f533.svg"},{"file":"1f534.svg"},{"file":"1f535.svg"},{"file":"1f536.svg"},{"file":"1f537.svg"},{"file":"1f538.svg"},{"file":"1f539.svg"},{"file":"1f53a.svg"},{"file":"1f53b.svg"},{"file":"1f53c.svg"},{"file":"1f53d.svg"},{"file":"1f549.svg"},{"file":"1f54e.svg"},{"file":"1f6ab.svg"},{"file":"1f6ad.svg"},{"file":"1f6ae.svg"},{"file":"1f6af.svg"},{"file":"1f6b0.svg"},{"file":"1f6b1.svg"},{"file":"1f6b3.svg"},{"file":"1f6b7.svg"},{"file":"1f6b8.svg"},{"file":"1f6b9.svg"},{"file":"1f6ba.svg"},{"file":"1f6bb.svg"},{"file":"1f6bc.svg"},{"file":"1f6be.svg"},{"file":"1f6c2.svg"},{"file":"1f6c3.svg"},{"file":"1f6c4.svg"},{"file":"1f6c5.svg"},{"file":"1f6d0.svg"},{"file":"203c.svg"},{"file":"2049.svg"},{"file":"2122.svg"},{"file":"2139.svg"},{"file":"2194.svg"},{"file":"2195.svg"},{"file":"2196.svg"},{"file":"2197.svg"},{"file":"2198.svg"},{"file":"2199.svg"},{"file":"21a9.svg"},{"file":"21aa.svg"},{"file":"23cf.svg"},{"file":"23e9.svg"},{"file":"23ea.svg"},{"file":"23eb.svg"},{"file":"23ec.svg"},{"file":"23ed.svg"},{"file":"23ee.svg"},{"file":"23ef.svg"},{"file":"23f8.svg"},{"file":"23f9.svg"},{"file":"23fa.svg"},{"file":"24c2.svg"},{"file":"25aa.svg"},{"file":"25ab.svg"},{"file":"25b6.svg"},{"file":"25c0.svg"},{"file":"25fb.svg"},{"file":"25fc.svg"},{"file":"25fd.svg"},{"file":"25fe.svg"},{"file":"2611.svg"},{"file":"2622.svg"},{"file":"2623.svg"},{"file":"2626.svg"},{"file":"262a.svg"},{"file":"262e.svg"},{"file":"262f.svg"},{"file":"2638.svg"},{"file":"2640.svg"},{"file":"2642.svg"},{"file":"2648.svg"},{"file":"2649.svg"},{"file":"264a.svg"},{"file":"264b.svg"},{"file":"264c.svg"},{"file":"264d.svg"},{"file":"264e.svg"},{"file":"264f.svg"},{"file":"2650.svg"},{"file":"2651.svg"},{"file":"2652.svg"},{"file":"2653.svg"},{"file":"267b.svg"},{"file":"267f.svg"},{"file":"2695.svg"},{"file":"269b.svg"},{"file":"269c.svg"},{"file":"26a0.svg"},{"file":"26aa.svg"},{"file":"26ab.svg"},{"file":"26ce.svg"},{"file":"26d4.svg"},{"file":"2705.svg"},{"file":"2714.svg"},{"file":"2716.svg"},{"file":"271d.svg"},{"file":"2721.svg"},{"file":"2733.svg"},{"file":"2734.svg"},{"file":"2747.svg"},{"file":"274c.svg"},{"file":"274e.svg"},{"file":"2753.svg"},{"file":"2754.svg"},{"file":"2755.svg"},{"file":"2757.svg"},{"file":"2795.svg"},{"file":"2796.svg"},{"file":"2797.svg"},{"file":"27a1.svg"},{"file":"27b0.svg"},{"file":"27bf.svg"},{"file":"2934.svg"},{"file":"2935.svg"},{"file":"2b05.svg"},{"file":"2b06.svg"},{"file":"2b07.svg"},{"file":"2b1b.svg"},{"file":"2b1c.svg"},{"file":"2b55.svg"},{"file":"3030.svg"},{"file":"303d.svg"},{"file":"3297.svg"},{"file":"3299.svg"}],"name":"Symbols"},{"dir":[{"file":"1f300.svg"},{"file":"1f301.svg"},{"file":"1f302.svg"},{"file":"1f303.svg"},{"file":"1f304.svg"},{"file":"1f305.svg"},{"file":"1f306.svg"},{"file":"1f307.svg"},{"file":"1f308.svg"},{"file":"1f309.svg"},{"file":"1f30a.svg"},{"file":"1f30b.svg"},{"file":"1f30c.svg"},{"file":"1f30d.svg"},{"file":"1f30e.svg"},{"file":"1f30f.svg"},{"file":"1f310.svg"},{"file":"1f311.svg"},{"file":"1f312.svg"},{"file":"1f313.svg"},{"file":"1f314.svg"},{"file":"1f315.svg"},{"file":"1f316.svg"},{"file":"1f317.svg"},{"file":"1f318.svg"},{"file":"1f319.svg"},{"file":"1f31a.svg"},{"file":"1f31b.svg"},{"file":"1f31c.svg"},{"file":"1f31d.svg"},{"file":"1f31e.svg"},{"file":"1f31f.svg"},{"file":"1f320.svg"},{"file":"1f321.svg"},{"file":"1f324.svg"},{"file":"1f325.svg"},{"file":"1f326.svg"},{"file":"1f327.svg"},{"file":"1f328.svg"},{"file":"1f329.svg"},{"file":"1f32a.svg"},{"file":"1f32b.svg"},{"file":"1f32c.svg"},{"file":"1f3a0.svg"},{"file":"1f3a1.svg"},{"file":"1f3a2.svg"},{"file":"1f3aa.svg"},{"file":"1f3d4.svg"},{"file":"1f3d5.svg"},{"file":"1f3d6.svg"},{"file":"1f3d7.svg"},{"file":"1f3d8.svg"},{"file":"1f3d9.svg"},{"file":"1f3da.svg"},{"file":"1f3db.svg"},{"file":"1f3dc.svg"},{"file":"1f3dd.svg"},{"file":"1f3de.svg"},{"file":"1f3df.svg"},{"file":"1f3e0.svg"},{"file":"1f3e1.svg"},{"file":"1f3e2.svg"},{"file":"1f3e3.svg"},{"file":"1f3e4.svg"},{"file":"1f3e5.svg"},{"file":"1f3e6.svg"},{"file":"1f3e8.svg"},{"file":"1f3e9.svg"},{"file":"1f3ea.svg"},{"file":"1f3eb.svg"},{"file":"1f3ec.svg"},{"file":"1f3ed.svg"},{"file":"1f3ef.svg"},{"file":"1f3f0.svg"},{"file":"1f488.svg"},{"file":"1f492.svg"},{"file":"1f4a7.svg"},{"file":"1f4ba.svg"},{"file":"1f525.svg"},{"file":"1f54b.svg"},{"file":"1f54c.svg"},{"file":"1f54d.svg"},{"file":"1f550.svg"},{"file":"1f551.svg"},{"file":"1f552.svg"},{"file":"1f553.svg"},{"file":"1f554.svg"},{"file":"1f555.svg"},{"file":"1f556.svg"},{"file":"1f557.svg"},{"file":"1f558.svg"},{"file":"1f559.svg"},{"file":"1f55a.svg"},{"file":"1f55b.svg"},{"file":"1f55c.svg"},{"file":"1f55d.svg"},{"file":"1f55e.svg"},{"file":"1f55f.svg"},{"file":"1f560.svg"},{"file":"1f561.svg"},{"file":"1f562.svg"},{"file":"1f563.svg"},{"file":"1f564.svg"},{"file":"1f565.svg"},{"file":"1f566.svg"},{"file":"1f567.svg"},{"file":"1f570.svg"},{"file":"1f5fa.svg"},{"file":"1f5fb.svg"},{"file":"1f5fc.svg"},{"file":"1f5fd.svg"},{"file":"1f5fe.svg"},{"file":"1f680.svg"},{"file":"1f681.svg"},{"file":"1f682.svg"},{"file":"1f683.svg"},{"file":"1f684.svg"},{"file":"1f685.svg"},{"file":"1f686.svg"},{"file":"1f687.svg"},{"file":"1f688.svg"},{"file":"1f689.svg"},{"file":"1f68a.svg"},{"file":"1f68b.svg"},{"file":"1f68c.svg"},{"file":"1f68d.svg"},{"file":"1f68e.svg"},{"file":"1f68f.svg"},{"file":"1f690.svg"},{"file":"1f691.svg"},{"file":"1f692.svg"},{"file":"1f693.svg"},{"file":"1f694.svg"},{"file":"1f695.svg"},{"file":"1f696.svg"},{"file":"1f697.svg"},{"file":"1f698.svg"},{"file":"1f699.svg"},{"file":"1f69a.svg"},{"file":"1f69b.svg"},{"file":"1f69c.svg"},{"file":"1f69d.svg"},{"file":"1f69e.svg"},{"file":"1f69f.svg"},{"file":"1f6a0.svg"},{"file":"1f6a1.svg"},{"file":"1f6a2.svg"},{"file":"1f6a4.svg"},{"file":"1f6a5.svg"},{"file":"1f6a6.svg"},{"file":"1f6a7.svg"},{"file":"1f6a8.svg"},{"file":"1f6b2.svg"},{"file":"1f6ce.svg"},{"file":"1f6d1.svg"},{"file":"1f6e2.svg"},{"file":"1f6e3.svg"},{"file":"1f6e4.svg"},{"file":"1f6e5.svg"},{"file":"1f6e9.svg"},{"file":"1f6eb.svg"},{"file":"1f6ec.svg"},{"file":"1f6f0.svg"},{"file":"1f6f3.svg"},{"file":"1f6f4.svg"},{"file":"1f6f5.svg"},{"file":"1f6f6.svg"},{"file":"1f6f8.svg"},{"file":"231a.svg"},{"file":"231b.svg"},{"file":"23f0.svg"},{"file":"23f1.svg"},{"file":"23f2.svg"},{"file":"23f3.svg"},{"file":"2600.svg"},{"file":"2601.svg"},{"file":"2602.svg"},{"file":"2603.svg"},{"file":"2604.svg"},{"file":"2614.svg"},{"file":"2668.svg"},{"file":"2693.svg"},{"file":"26a1.svg"},{"file":"26c4.svg"},{"file":"26c5.svg"},{"file":"26c8.svg"},{"file":"26e9.svg"},{"file":"26ea.svg"},{"file":"26f0.svg"},{"file":"26f1.svg"},{"file":"26f2.svg"},{"file":"26f4.svg"},{"file":"26f5.svg"},{"file":"26fa.svg"},{"file":"26fd.svg"},{"file":"2708.svg"},{"file":"2744.svg"},{"file":"2b50.svg"}],"name":"Travel & Places"}] --------------------------------------------------------------------------------