diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f060f462f9a..b1e0172ce508 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,7 +35,11 @@ Ref: https://keepachangelog.com/en/1.0.0/ # Changelog -## [Unreleased] +## [v0.38.5] - 2020-07-02 + +### Improvements + +* (tendermint) Bump Tendermint version to [v0.33.6](https://github.com/tendermint/tendermint/releases/tag/v0.33.6). ## [v0.38.4] - 2020-05-21 diff --git a/client/context/context.go b/client/context/context.go index 28bfe8e830b0..7b35d991f25e 100644 --- a/client/context/context.go +++ b/client/context/context.go @@ -7,11 +7,11 @@ import ( "github.com/pkg/errors" "github.com/spf13/viper" - yaml "gopkg.in/yaml.v2" - "github.com/tendermint/tendermint/libs/cli" tmlite "github.com/tendermint/tendermint/lite" rpcclient "github.com/tendermint/tendermint/rpc/client" + rpchttp "github.com/tendermint/tendermint/rpc/client/http" + yaml "gopkg.in/yaml.v2" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/codec" @@ -65,7 +65,7 @@ func NewCLIContextWithInputAndFrom(input io.Reader, from string) CLIContext { if !genOnly { nodeURI = viper.GetString(flags.FlagNode) if nodeURI != "" { - rpc, err = rpcclient.NewHTTP(nodeURI, "/websocket") + rpc, err = rpchttp.New(nodeURI, "/websocket") if err != nil { fmt.Printf("failted to get client: %v\n", err) os.Exit(1) @@ -157,7 +157,7 @@ func (ctx CLIContext) WithTrustNode(trustNode bool) CLIContext { // WithNodeURI returns a copy of the context with an updated node URI. func (ctx CLIContext) WithNodeURI(nodeURI string) CLIContext { ctx.NodeURI = nodeURI - client, err := rpcclient.NewHTTP(nodeURI, "/websocket") + client, err := rpchttp.New(nodeURI, "/websocket") if err != nil { panic(err) } diff --git a/client/context/verifier.go b/client/context/verifier.go index 856c585b5a28..b849d3e397d1 100644 --- a/client/context/verifier.go +++ b/client/context/verifier.go @@ -7,7 +7,7 @@ import ( "github.com/tendermint/tendermint/libs/log" tmlite "github.com/tendermint/tendermint/lite" tmliteproxy "github.com/tendermint/tendermint/lite/proxy" - rpcclient "github.com/tendermint/tendermint/rpc/client" + rpchttp "github.com/tendermint/tendermint/rpc/client/http" ) const ( @@ -43,7 +43,7 @@ func CreateVerifier(ctx CLIContext, cacheSize int) (tmlite.Verifier, error) { // create an RPC client based off of the RPC URI if no RPC client exists client := ctx.Client if client == nil { - client, err = rpcclient.NewHTTP(ctx.NodeURI, "/websocket") + client, err = rpchttp.New(ctx.NodeURI, "/websocket") if err != nil { return nil, err } diff --git a/client/lcd/root.go b/client/lcd/root.go index af0e74b48557..a99f99fe9faf 100644 --- a/client/lcd/root.go +++ b/client/lcd/root.go @@ -12,7 +12,7 @@ import ( "github.com/spf13/cobra" "github.com/spf13/viper" "github.com/tendermint/tendermint/libs/log" - rpcserver "github.com/tendermint/tendermint/rpc/lib/server" + tmrpcserver "github.com/tendermint/tendermint/rpc/jsonrpc/server" "github.com/cosmos/cosmos-sdk/client/context" "github.com/cosmos/cosmos-sdk/client/flags" @@ -52,12 +52,12 @@ func (rs *RestServer) Start(listenAddr string, maxOpen int, readTimeout, writeTi rs.log.Error("error closing listener", "err", err) }) - cfg := rpcserver.DefaultConfig() + cfg := tmrpcserver.DefaultConfig() cfg.MaxOpenConnections = maxOpen cfg.ReadTimeout = time.Duration(readTimeout) * time.Second cfg.WriteTimeout = time.Duration(writeTimeout) * time.Second - rs.listener, err = rpcserver.Listen(listenAddr, cfg) + rs.listener, err = tmrpcserver.Listen(listenAddr, cfg) if err != nil { return } @@ -68,7 +68,7 @@ func (rs *RestServer) Start(listenAddr string, maxOpen int, readTimeout, writeTi ), ) - return rpcserver.StartHTTPServer(rs.listener, rs.Mux, rs.log, cfg) + return tmrpcserver.Serve(rs.listener, rs.Mux, rs.log, cfg) } // ServeCommand will start the application REST service as a blocking process. It diff --git a/go.mod b/go.mod index 32d549a01dc8..319e7e8bb5dd 100644 --- a/go.mod +++ b/go.mod @@ -1,10 +1,12 @@ +go 1.13 + module github.com/cosmos/cosmos-sdk require ( github.com/99designs/keyring v1.1.3 github.com/bartekn/go-bip39 v0.0.0-20171116152956-a05967ea095d github.com/bgentry/speakeasy v0.1.0 - github.com/btcsuite/btcd v0.0.0-20190115013929-ed77733ec07d + github.com/btcsuite/btcd v0.20.1-beta github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d github.com/cosmos/ledger-cosmos-go v0.11.1 github.com/gogo/protobuf v1.3.1 @@ -16,20 +18,18 @@ require ( github.com/pkg/errors v0.9.1 github.com/rakyll/statik v0.1.6 github.com/spf13/afero v1.2.1 // indirect - github.com/spf13/cobra v0.0.6 + github.com/spf13/cobra v1.0.0 github.com/spf13/jwalterweatherman v1.1.0 // indirect github.com/spf13/pflag v1.0.5 - github.com/spf13/viper v1.6.2 + github.com/spf13/viper v1.6.3 github.com/stretchr/testify v1.5.1 github.com/tendermint/btcd v0.1.1 github.com/tendermint/crypto v0.0.0-20191022145703-50d29ede1e15 github.com/tendermint/go-amino v0.15.1 github.com/tendermint/iavl v0.13.2 - github.com/tendermint/tendermint v0.33.3 - github.com/tendermint/tm-db v0.5.0 + github.com/tendermint/tendermint v0.33.6 + github.com/tendermint/tm-db v0.5.1 gopkg.in/yaml.v2 v2.2.8 ) -go 1.13 - replace github.com/keybase/go-keychain => github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 diff --git a/go.sum b/go.sum index 90cb15b46352..ac6e00772234 100644 --- a/go.sum +++ b/go.sum @@ -6,14 +6,16 @@ github.com/99designs/keyring v1.1.3 h1:mEV3iyZWjkxQ7R8ia8GcG97vCX5zQQ7n4o8R2Bylw github.com/99designs/keyring v1.1.3/go.mod h1:657DQuMrBZRtuL/voxVyiyb6zpMehlm5vLB9Qwrv904= github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/ChainSafe/go-schnorrkel v0.0.0-20200102211924-4bcbc698314f h1:4O1om+UVU+Hfcihr1timk8YNXHxzZWgCo7ofnrZRApw= github.com/ChainSafe/go-schnorrkel v0.0.0-20200102211924-4bcbc698314f/go.mod h1:URdX5+vg25ts3aCh8H5IFZybJYKWhJHYMTnf+ULtoC4= +github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d h1:nalkkPQcITbvhmL4+C4cKA87NW0tfm3Kl9VXRoPywFg= +github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d/go.mod h1:URdX5+vg25ts3aCh8H5IFZybJYKWhJHYMTnf+ULtoC4= github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= github.com/VividCortex/gohistogram v1.0.0 h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE= github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= +github.com/Workiva/go-datastructures v1.0.52 h1:PLSK6pwn8mYdaoaCZEMsXBpBotr4HHn9abU0yMQt0NI= github.com/Workiva/go-datastructures v1.0.52/go.mod h1:Z+F2Rca0qCsVYDS8z7bAGm8f3UkzuWYS/oBZz5a7VVA= github.com/aead/siphash v1.0.1/go.mod h1:Nywa3cDsYNNK3gaciGTWPwHt0wlpNV15vwmswBAUSII= github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5/go.mod h1:SkGFH1ia65gfNATL8TAiHDNxPzPdmEL5uirI2Uyuz6c= @@ -33,19 +35,20 @@ github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= github.com/bartekn/go-bip39 v0.0.0-20171116152956-a05967ea095d h1:1aAija9gr0Hyv4KfQcRcwlmFIrhkDmIj2dz5bkg/s/8= github.com/bartekn/go-bip39 v0.0.0-20171116152956-a05967ea095d/go.mod h1:icNx/6QdFblhsEjZehARqbNumymUT/ydwlLojFdv7Sk= -github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 h1:xJ4a3vCFaGF/jqvzLMYoU8P317H5OQ+Via4RmuPwCS0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= -github.com/beorn7/perks v1.0.0 h1:HWo1m869IqiPhD389kmkxeTalrjNbbJTC8LXupb+sl0= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY= github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= -github.com/btcsuite/btcd v0.0.0-20190115013929-ed77733ec07d h1:xG8Pj6Y6J760xwETNmMzmlt38QSwz0BLp1cZ09g27uw= github.com/btcsuite/btcd v0.0.0-20190115013929-ed77733ec07d/go.mod h1:d3C0AkH6BRcvO8T0UEPu53cnw4IbV63x1bEjildYhO0= +github.com/btcsuite/btcd v0.20.1-beta h1:Ik4hyJqN8Jfyv3S4AGBOmyouMsYE3EdYODkMbQjwPGw= +github.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ= github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f/go.mod h1:TdznJufoqS23FtqVCzL0ZqgP5MqXbb4fg/WgDys70nA= -github.com/btcsuite/btcutil v0.0.0-20180706230648-ab6388e0c60a h1:RQMUrEILyYJEoAT34XS/kLu40vC0+po/UfxrBBA4qZE= github.com/btcsuite/btcutil v0.0.0-20180706230648-ab6388e0c60a/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg= +github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg= +github.com/btcsuite/btcutil v1.0.2 h1:9iZ1Terx9fMIOtq1VrwdqfsATL9MC2l8ZrUY6YZ2uts= +github.com/btcsuite/btcutil v1.0.2/go.mod h1:j9HUFwoQRsZL3V4n+qG+CUnEGHOarIxfC3Le2Yhbcts= github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd/go.mod h1:HHNXQzUsZCxOoE+CPiyCTO6x34Zs86zZUiwtpXoGdtg= github.com/btcsuite/goleveldb v0.0.0-20160330041536-7834afc9e8cd/go.mod h1:F+uVaaLLH7j4eDXPRvw78tMflu7Ie2bzYOH4Y8rRKBY= github.com/btcsuite/snappy-go v0.0.0-20151229074030-0bdef8d06723/go.mod h1:8woku9dyThutzjeg+3xrA5iCpBRH8XEEg3lh6TiUghc= @@ -65,6 +68,7 @@ github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:z github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= +github.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= @@ -99,7 +103,6 @@ github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymF github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/etcd-io/bbolt v1.3.3 h1:gSJmxrs37LgTqR/oyJBWok6k6SvXEUerFTbltIhXkBM= github.com/etcd-io/bbolt v1.3.3/go.mod h1:ZF2nL25h33cCyBtcyWeZ2/I3HQOfTP+0PIEvHjkjCrw= github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51 h1:0JZ+dUmQeA8IIVUMzysrX4/AKuQwWhV2dYQuPZdvdSQ= github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51/go.mod h1:Yg+htXGokKKdzcwhuNDwVvN+uBxDGXJ7G/VN1d8fa64= @@ -115,15 +118,11 @@ github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2 github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/go-kit/kit v0.8.0 h1:Wz+5lgoB0kkuqLEc6NVmwRknTKP6dTGbSqvhZtBI/j0= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.9.0 h1:wDJmvq38kDhkVxi50ni9ykkdUr1PKgqKOoi01fa0Mdk= github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/kit v0.10.0 h1:dXFJfIHVvUcpSgDOV+Ne6t7jXri8Tfv2uOLHUZ2XNuo= github.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgOZ7o= -github.com/go-logfmt/logfmt v0.3.0 h1:8HUsc87TaSWLKwrnumgC8/YconD2fJQsRJAsWaPg2ic= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= -github.com/go-logfmt/logfmt v0.4.0 h1:MP4Eh7ZCb31lleYCFuwm0oe4/YGak+5l1vA2NOE80nA= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= github.com/go-logfmt/logfmt v0.5.0 h1:TrB8swr/68K7m9CcGut2g3UOihhbcbiMAYiuTXdEih4= github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= @@ -138,7 +137,6 @@ github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7a github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/gogo/protobuf v1.3.1 h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls= github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -149,18 +147,21 @@ github.com/golang/mock v1.3.1-0.20190508161146-9fa652df1129/go.mod h1:sBzyDLLjw3 github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.0/go.mod h1:Qd/q+1AKNOZr9uGQzbzCmRO6sUih6GTPZv6a1/R87v0= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.4 h1:87PNWwrRvUSnqS4dlcBU/ftvOIBep4sYuBLlh6rX2wk= github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= +github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= +github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= +github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= +github.com/golang/protobuf v1.4.0 h1:oOuy+ugB+P/kBdUnG5QaMXSIyJ1q38wWSojYCb3z5VQ= +github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0 h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/go-cmp v0.2.0 h1:+dTQ8DZQJz0Mb/HjFlkptS1FeQ4cWSnN941F8aEG4SQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -179,8 +180,9 @@ github.com/gorilla/mux v1.7.3 h1:gnP5JzjVOuiZD07fKKToCAOjS0yOpj/qPETTXCCS6hw= github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/gorilla/websocket v1.4.1 h1:q7AeDBpnBk8AogcD4DSag/Ukw/KV+YhzLj2bP5HvKCM= github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc= +github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= @@ -188,8 +190,9 @@ github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c h1:6rhixN/i8ZofjG1Y75iExal34USq5p+wiN1tpie8IrU= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c/go.mod h1:NMPJylDgVpX0MLRlPy15sqSwOFv/U1GZ2m21JhFfek0= -github.com/gtank/merlin v0.1.1-0.20191105220539-8318aed1a79f h1:8N8XWLZelZNibkhM1FuF+3Ad3YIbgirjdMiVA0eUkaM= github.com/gtank/merlin v0.1.1-0.20191105220539-8318aed1a79f/go.mod h1:T86dnYJhcGOh5BjZFCJWTDeTK7XW8uE+E21Cy/bIQ+s= +github.com/gtank/merlin v0.1.1 h1:eQ90iG7K9pOhtereWsmyRJ6RAwcP4tHTDBHXNg+u5is= +github.com/gtank/merlin v0.1.1/go.mod h1:T86dnYJhcGOh5BjZFCJWTDeTK7XW8uE+E21Cy/bIQ+s= github.com/gtank/ristretto255 v0.1.2 h1:JEqUCPA1NvLq5DwYtuzigd7ss8fwbYay9fi4/5uMzcc= github.com/gtank/ristretto255 v0.1.2/go.mod h1:Ph5OpO6c7xKUGROZfWVLiJf9icMDwUeIvY4OmlYW69o= github.com/hashicorp/consul/api v1.3.0/go.mod h1:MmDNSzIMUjNpY/mQ398R4bk2FnqQLoPndWW5VkKPlCE= @@ -240,7 +243,6 @@ github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQL github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod h1:J+Gs4SYgM6CZQHDETBtE9HaSEkGmuNXF86RwHhHUvq4= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= @@ -252,7 +254,6 @@ github.com/libp2p/go-buffer-pool v0.0.2/go.mod h1:MvaB6xw5vOrDl8rYZGLFdKAuk/hRoR github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ= -github.com/magiconair/properties v1.8.0 h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/magiconair/properties v1.8.1 h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4= github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= @@ -267,6 +268,8 @@ github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5 github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643 h1:hLDRPB66XQT/8+wG9WsDpiCvZf1yKO7sz7scAjSlBa0= github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643/go.mod h1:43+3pMjjKimDBf5Kr4ZFNGbLql1zKkbImw+fZbw3geM= +github.com/minio/highwayhash v1.0.0 h1:iMSDhgUILCr0TNm8LWlSjF8N0ZIj2qbO8WHp6Q/J2BA= +github.com/minio/highwayhash v1.0.0/go.mod h1:xQboMTeM9nY9v/LlAOxFctujiv5+Aq2hR5dxBpaMbdc= github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= @@ -317,7 +320,6 @@ github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9 github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -327,24 +329,21 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= -github.com/prometheus/client_golang v0.9.3 h1:9iH4JKXLzFbOAdtqv/a+j8aewx2Y8lAjAydhbaScPF8= github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_golang v1.3.0/go.mod h1:hJaj2vgQTGQmVCsAACORcieXFeDPbaTKGT+JTgUa3og= -github.com/prometheus/client_golang v1.5.0 h1:Ctq0iGpCmr3jeP77kbF2UxgvRwzWWz+4Bh9/vJTyg1A= github.com/prometheus/client_golang v1.5.0/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU= +github.com/prometheus/client_golang v1.5.1 h1:bdHYieyGlH+6OLEk2YQha8THib30KP0/yD0YH9m6xcA= +github.com/prometheus/client_golang v1.5.1/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 h1:S/YWwWx/RA8rT8tKFRuGUZhuA90OyIBpPCXkcbwU8DE= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 h1:gQz4mCbXsO+nc9n1hCxHcGA3Zx3Eo+UHZoInFGUIXNM= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.4.0 h1:7etb9YClo3a6HjLzfl6rIQaU+FDfi0VSX39io3aQ+DM= github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= @@ -352,7 +351,6 @@ github.com/prometheus/common v0.9.1 h1:KOMtN28tlbam3/7ZKEYKHhKoJZYYj3gMH4uc62x7X github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084 h1:sofwID9zm4tzrgykg80hfFph1mryUeLRsUfoocVVmRY= github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.8 h1:+fpWZdT24pJBiqJdAwYBjPSk+5YmQzYNPYzQsdzLkt8= @@ -360,8 +358,9 @@ github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+Gx github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/rakyll/statik v0.1.6 h1:uICcfUXpgqtw2VopbIncslhAmE5hwc4g20TEyEENBNs= github.com/rakyll/statik v0.1.6/go.mod h1:OEi9wJV/fMUAGx1eNjq75DKDsJVuEv1U0oYdX6GX8Zs= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 h1:MkV+77GLUNo5oJ0jf870itWm3D0Sjh7+Za9gazKc5LQ= +github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rs/cors v1.7.0 h1:+88SsELBHx5r+hZ8TCkggzSstaWNbDvThkVK8H6f9ik= @@ -387,19 +386,20 @@ github.com/spf13/afero v1.2.1/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTd github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= -github.com/spf13/cobra v0.0.6 h1:breEStsVwemnKh2/s6gMvSdMEkwW0sK8vGStnlVBMCs= github.com/spf13/cobra v0.0.6/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= +github.com/spf13/cobra v1.0.0 h1:6m/oheQuQ13N9ks4hubMG6BnvwOeaJrqSPLahSnczz8= +github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk= github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= github.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg= github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= -github.com/spf13/viper v1.6.2 h1:7aKfF+e8/k68gda3LOjo5RxiUqddoFxVq4BKBPrxk5E= github.com/spf13/viper v1.6.2/go.mod h1:t3iDnF5Jlj76alVNuyFBk5oUMCvsrkbvZK0WQdfDi5k= +github.com/spf13/viper v1.6.3 h1:pDDu1OyEDTKzpJwdq4TiuLyMsUgRa/BT5cn5O62NoHs= +github.com/spf13/viper v1.6.3/go.mod h1:jUMtyi0/lB5yZH/FjyGAoH7IMNrIhlBf6pXZmbMDvzw= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a/go.mod h1:qNTQ5P5JnDBl6z3cMAg/SywNDC5ABu5ApDIw6lUbRmI= @@ -409,7 +409,6 @@ github.com/stretchr/objx v0.2.0 h1:Hbg2NidpLE8veEBkEZTL3CvlkUIVzuU9jDplZO54c48= github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= @@ -428,13 +427,13 @@ github.com/tendermint/go-amino v0.15.1 h1:D2uk35eT4iTsvJd9jWIetzthE5C0/k2QmMFkCN github.com/tendermint/go-amino v0.15.1/go.mod h1:TQU0M1i/ImAo+tYpZi73AU3V/dKeCoMC9Sphe2ZwGME= github.com/tendermint/iavl v0.13.2 h1:O1m08/Ciy53l9IYmf75uIRVvrNsfjEbre8u/yCu/oqk= github.com/tendermint/iavl v0.13.2/go.mod h1:vE1u0XAGXYjHykd4BLp8p/yivrw2PF1TuoljBcsQoGA= -github.com/tendermint/tendermint v0.33.2 h1:NzvRMTuXJxqSsFed2J7uHmMU5N1CVzSpfi3nCc882KY= github.com/tendermint/tendermint v0.33.2/go.mod h1:25DqB7YvV1tN3tHsjWoc2vFtlwICfrub9XO6UBO+4xk= -github.com/tendermint/tendermint v0.33.3 h1:6lMqjEoCGejCzAghbvfQgmw87snGSqEhDTo/jw+W8CI= -github.com/tendermint/tendermint v0.33.3/go.mod h1:25DqB7YvV1tN3tHsjWoc2vFtlwICfrub9XO6UBO+4xk= +github.com/tendermint/tendermint v0.33.6 h1:W4UOsXY4ROJZ3TLLGVVv71VXD4WK2gJRb3gzeced+mg= +github.com/tendermint/tendermint v0.33.6/go.mod h1:0yUs9eIuuDq07nQql9BmI30FtYGcEC60Tu5JzB5IezM= github.com/tendermint/tm-db v0.4.1/go.mod h1:JsJ6qzYkCGiGwm5GHl/H5GLI9XLb6qZX7PRe425dHAY= -github.com/tendermint/tm-db v0.5.0 h1:qtM5UTr1dlRnHtDY6y7MZO5Di8XAE2j3lc/pCnKJ5hQ= github.com/tendermint/tm-db v0.5.0/go.mod h1:lSq7q5WRR/njf1LnhiZ/lIJHk2S8Y1Zyq5oP/3o9C2U= +github.com/tendermint/tm-db v0.5.1 h1:H9HDq8UEA7Eeg13kdYckkgwwkQLBnJGgX4PgLJRhieY= +github.com/tendermint/tm-db v0.5.1/go.mod h1:g92zWjHpCYlEvQXvy9M168Su8V1IBEeawpXVVBaK4f4= github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc= @@ -464,11 +463,12 @@ golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnf golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 h1:HuIa8hRrWRSrqYzx1qI49NNxhdi2PrY7gxVSq1JjLDc= golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 h1:ULYEB3JvPRE/IfO+9uO7vKV/xzVTO7XPAwm8xbf4w2g= golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200115085410-6d4e4cb37c7d/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200406173513-056763e48d71 h1:DOmugCavvUtnUD114C1Wh+UgTgQZ4pMLzXxi1pSt+/Y= +golang.org/x/crypto v0.0.0-20200406173513-056763e48d71/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= @@ -493,10 +493,10 @@ golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190628185345-da137c7871d7 h1:rTIdg5QFRR7XCaK4LCjBiPbx8j4DQRpdYMnGn/bJUEU= golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 h1:fHDIZ2oxGnUZRN6WgWFCbYBjH9uqVPRCUVUDhs0wnbA= golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e h1:3G+cUijn7XD+S4eJFddp53Pv7+slrESplyjG25HgL+k= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -513,6 +513,7 @@ golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190130150945-aca44879d564/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -521,11 +522,10 @@ golang.org/x/sys v0.0.0-20190712062909-fae7ac547cb7/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191220142924-d4481acd189f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200116001909-b77594299b42 h1:vEOn+mP2zCOVzKckCZy6YsCtDblrpj/w7B9nxGNELpg= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200122134326-e047566fdf82 h1:ywK/j/KkyTHcdyYSZNXGjMwgmDSfjglYZ3vStQ/gSCU= golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd h1:xhmwyvizuTgC2qz7ZlMluP20uW+C3Rm0FD/WLDX8884= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= @@ -571,15 +571,19 @@ google.golang.org/grpc v1.22.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyac google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.23.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= -google.golang.org/grpc v1.26.0 h1:2dTRdpdFEEhJYQD8EMLB61nnrzSCTbG38PhqdhvOltg= google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.28.0 h1:bO/TA4OxCOummhSf10siHuG7vJOiwh7SpRpFZDkOgl4= google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= +google.golang.org/grpc v1.28.1 h1:C1QC6KzgSiLyBabDi87BbjaGreoRgGUF5nOyvfrAZ1k= +google.golang.org/grpc v1.28.1/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= +google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= +google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= +google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= +google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= +google.golang.org/protobuf v1.21.0 h1:qdOKuR/EIArgaWNjetjgTzgVTAZ+S/WXVrq9HW9zimw= +google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -596,9 +600,7 @@ gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWD gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.4 h1:/eiJrUcujPVeJ3xlSWaiNi3uSVmDGBK1pDHUHAnao1I= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8 h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10= diff --git a/server/start.go b/server/start.go index 5a9cd0500884..fc8aa0219f3a 100644 --- a/server/start.go +++ b/server/start.go @@ -151,8 +151,6 @@ func startInProcess(ctx *Context, appCreator AppCreator) (*node.Node, error) { return nil, err } - UpgradeOldPrivValFile(cfg) - // create & start tendermint node tmNode, err := node.NewNode( cfg, diff --git a/server/tm_cmds.go b/server/tm_cmds.go index 2667e55a7df5..aa1b7f1f1404 100644 --- a/server/tm_cmds.go +++ b/server/tm_cmds.go @@ -42,12 +42,13 @@ func ShowValidatorCmd(ctx *Context) *cobra.Command { Use: "show-validator", Short: "Show this node's tendermint validator info", RunE: func(cmd *cobra.Command, args []string) error { - cfg := ctx.Config - UpgradeOldPrivValFile(cfg) - privValidator := pvm.LoadOrGenFilePV( - cfg.PrivValidatorKeyFile(), cfg.PrivValidatorStateFile()) - valPubKey := privValidator.GetPubKey() + privValidator := pvm.LoadOrGenFilePV(cfg.PrivValidatorKeyFile(), cfg.PrivValidatorStateFile()) + + valPubKey, err := privValidator.GetPubKey() + if err != nil { + return err + } if viper.GetString(cli.OutputFlag) == "json" { return printlnJSON(valPubKey) @@ -73,11 +74,8 @@ func ShowAddressCmd(ctx *Context) *cobra.Command { Use: "show-address", Short: "Shows this node's tendermint validator consensus address", RunE: func(cmd *cobra.Command, args []string) error { - cfg := ctx.Config - UpgradeOldPrivValFile(cfg) - privValidator := pvm.LoadOrGenFilePV( - cfg.PrivValidatorKeyFile(), cfg.PrivValidatorStateFile()) + privValidator := pvm.LoadOrGenFilePV(cfg.PrivValidatorKeyFile(), cfg.PrivValidatorStateFile()) valConsAddr := (sdk.ConsAddress)(privValidator.GetAddress()) if viper.GetString(cli.OutputFlag) == "json" { diff --git a/server/util.go b/server/util.go index eb22c230268e..08f31fc664e0 100644 --- a/server/util.go +++ b/server/util.go @@ -19,7 +19,6 @@ import ( "github.com/tendermint/tendermint/libs/cli" tmflags "github.com/tendermint/tendermint/libs/cli/flags" "github.com/tendermint/tendermint/libs/log" - pvm "github.com/tendermint/tendermint/privval" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/codec" @@ -217,16 +216,6 @@ func TrapSignal(cleanupFunc func()) { }() } -// UpgradeOldPrivValFile converts old priv_validator.json file (prior to Tendermint 0.28) -// to the new priv_validator_key.json and priv_validator_state.json files. -func UpgradeOldPrivValFile(config *cfg.Config) { - if _, err := os.Stat(config.OldPrivValidatorFile()); !os.IsNotExist(err) { - if oldFilePV, err := pvm.LoadOldFilePV(config.OldPrivValidatorFile()); err == nil { - oldFilePV.Upgrade(config.PrivValidatorKeyFile(), config.PrivValidatorStateFile()) - } - } -} - func skipInterface(iface net.Interface) bool { if iface.Flags&net.FlagUp == 0 { return true // interface down diff --git a/tests/util.go b/tests/util.go index 9b37d12c6988..f7c06d16fe41 100644 --- a/tests/util.go +++ b/tests/util.go @@ -10,10 +10,9 @@ import ( "time" "github.com/stretchr/testify/require" - - tmclient "github.com/tendermint/tendermint/rpc/client" + rpchttp "github.com/tendermint/tendermint/rpc/client/http" ctypes "github.com/tendermint/tendermint/rpc/core/types" - rpcclient "github.com/tendermint/tendermint/rpc/lib/client" + tmjsonrpc "github.com/tendermint/tendermint/rpc/jsonrpc/client" "github.com/cosmos/cosmos-sdk/codec" ) @@ -29,7 +28,7 @@ func WaitForNextHeightTM(port string) { func WaitForNextNBlocksTM(n int64, port string) { // get the latest block and wait for n more url := fmt.Sprintf("http://localhost:%v", port) - cl, err := tmclient.NewHTTP(url, "/websocket") + cl, err := rpchttp.New(url, "/websocket") if err != nil { panic(fmt.Sprintf("failed to create Tendermint HTTP client: %s", err)) } @@ -56,7 +55,7 @@ func WaitForHeightTM(height int64, port string) { } func waitForHeightTM(height int64, url string) { - cl, err := tmclient.NewHTTP(url, "/websocket") + cl, err := rpchttp.New(url, "/websocket") if err != nil { panic(fmt.Sprintf("failed to create Tendermint HTTP client: %s", err)) } @@ -180,13 +179,9 @@ func WaitForStart(url string) { panic(err) } -// TODO: these functions just print to Stdout. -// consider using the logger. - // Wait for the RPC server to respond to /status func WaitForRPC(laddr string) { - fmt.Println("LADDR", laddr) - client, err := rpcclient.NewJSONRPCClient(laddr) + client, err := tmjsonrpc.New(laddr) if err != nil { panic(fmt.Sprintf("failed to create Tendermint RPC client: %s", err)) } diff --git a/types/coin.go b/types/coin.go index 98eaa6b806df..9ee1ad58146f 100644 --- a/types/coin.go +++ b/types/coin.go @@ -594,7 +594,9 @@ func (coins Coins) Sort() Coins { // Parsing var ( - // Denominations can be 3 ~ 16 characters long. + // Denominations can be lowercase alphanumeric strings that are 3 ~ 16 characters long + // OR + // a single Emoji from the list at http://unicode.org/Public/emoji/3.0/emoji-data.txt reDnmString = `[a-z][a-z0-9]{2,15}` reAmt = `[[:digit:]]+` reDecAmt = `[[:digit:]]*\.[[:digit:]]+` @@ -604,15 +606,18 @@ var ( reDecCoin = regexp.MustCompile(fmt.Sprintf(`^(%s)%s(%s)$`, reDecAmt, reSpc, reDnmString)) ) -// ValidateDenom validates a denomination string returning an error if it is -// invalid. -func ValidateDenom(denom string) error { +// DefaultValidateDenom is the default validation function for Coin.Denom. +func DefaultValidateDenom(denom string) error { if !reDnm.MatchString(denom) { return fmt.Errorf("invalid denom: %s", denom) } return nil } +// ValidateDenom validates a denomination string returning an error if it is +// invalid. +var ValidateDenom = DefaultValidateDenom + func mustValidateDenom(denom string) { if err := ValidateDenom(denom); err != nil { panic(err) diff --git a/types/coin_emoji.go b/types/coin_emoji.go new file mode 100644 index 000000000000..d4b590a04438 --- /dev/null +++ b/types/coin_emoji.go @@ -0,0 +1,3097 @@ +package types + +var allEmojis = []struct { + coin Coin + expectPass bool +}{ + {Coin{"๐Ÿ—", NewInt(1)}, true}, + {Coin{"๐Ÿ—๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜€", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ƒ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜„", NewInt(1)}, true}, + {Coin{"๐Ÿ˜", NewInt(1)}, true}, + {Coin{"๐Ÿ˜†", NewInt(1)}, true}, + {Coin{"๐Ÿ˜…", NewInt(1)}, true}, + {Coin{"๐Ÿ˜‚", NewInt(1)}, true}, + {Coin{"๐Ÿคฃ", NewInt(1)}, true}, + {Coin{"โ˜บ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜Š", NewInt(1)}, true}, + {Coin{"๐Ÿ˜‡", NewInt(1)}, true}, + {Coin{"๐Ÿ™‚", NewInt(1)}, true}, + {Coin{"๐Ÿ™ƒ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜‰", NewInt(1)}, true}, + {Coin{"๐Ÿ˜Œ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜", NewInt(1)}, true}, + {Coin{"๐Ÿฅฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜˜", NewInt(1)}, true}, + {Coin{"๐Ÿ˜—", NewInt(1)}, true}, + {Coin{"๐Ÿ˜™", NewInt(1)}, true}, + {Coin{"๐Ÿ˜š", NewInt(1)}, true}, + {Coin{"๐Ÿ˜‹", NewInt(1)}, true}, + {Coin{"๐Ÿ˜›", NewInt(1)}, true}, + {Coin{"๐Ÿ˜", NewInt(1)}, true}, + {Coin{"๐Ÿ˜œ", NewInt(1)}, true}, + {Coin{"๐Ÿคช", NewInt(1)}, true}, + {Coin{"๐Ÿคจ", NewInt(1)}, true}, + {Coin{"๐Ÿง", NewInt(1)}, true}, + {Coin{"๐Ÿค“", NewInt(1)}, true}, + {Coin{"๐Ÿ˜Ž", NewInt(1)}, true}, + {Coin{"๐Ÿคฉ", NewInt(1)}, true}, + {Coin{"๐Ÿฅณ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜", NewInt(1)}, true}, + {Coin{"๐Ÿ˜’", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ž", NewInt(1)}, true}, + {Coin{"๐Ÿ˜”", NewInt(1)}, true}, + {Coin{"๐Ÿ˜Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜•", NewInt(1)}, true}, + {Coin{"๐Ÿ™", NewInt(1)}, true}, + {Coin{"โ˜น๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ฃ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜–", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ซ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿฅบ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ข", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ญ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ค", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ก", NewInt(1)}, true}, + {Coin{"๐Ÿคฌ", NewInt(1)}, true}, + {Coin{"๐Ÿคฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ณ", NewInt(1)}, true}, + {Coin{"๐Ÿฅต", NewInt(1)}, true}, + {Coin{"๐Ÿฅถ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜จ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ฅ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜“", NewInt(1)}, true}, + {Coin{"๐Ÿค—", NewInt(1)}, true}, + {Coin{"๐Ÿค”", NewInt(1)}, true}, + {Coin{"๐Ÿคญ", NewInt(1)}, true}, + {Coin{"๐Ÿคซ", NewInt(1)}, true}, + {Coin{"๐Ÿคฅ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ถ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜", NewInt(1)}, true}, + {Coin{"๐Ÿ˜‘", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ™„", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ง", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿฅฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ด", NewInt(1)}, true}, + {Coin{"๐Ÿคค", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ช", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ต", NewInt(1)}, true}, + {Coin{"๐Ÿค", NewInt(1)}, true}, + {Coin{"๐Ÿฅด", NewInt(1)}, true}, + {Coin{"๐Ÿคข", NewInt(1)}, true}, + {Coin{"๐Ÿคฎ", NewInt(1)}, true}, + {Coin{"๐Ÿคง", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ท", NewInt(1)}, true}, + {Coin{"๐Ÿค’", NewInt(1)}, true}, + {Coin{"๐Ÿค•", NewInt(1)}, true}, + {Coin{"๐Ÿค‘", NewInt(1)}, true}, + {Coin{"๐Ÿค ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ˆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘น", NewInt(1)}, true}, + {Coin{"๐Ÿ‘บ", NewInt(1)}, true}, + {Coin{"๐Ÿคก", NewInt(1)}, true}, + {Coin{"๐Ÿ’ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ป", NewInt(1)}, true}, + {Coin{"๐Ÿ’€", NewInt(1)}, true}, + {Coin{"โ˜ ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘พ", NewInt(1)}, true}, + {Coin{"๐Ÿค–", NewInt(1)}, true}, + {Coin{"๐ŸŽƒ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜บ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜น", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ป", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ™€", NewInt(1)}, true}, + {Coin{"๐Ÿ˜ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ˜พ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‹", NewInt(1)}, true}, + {Coin{"๐Ÿคš", NewInt(1)}, true}, + {Coin{"๐Ÿ–", NewInt(1)}, true}, + {Coin{"โœ‹", NewInt(1)}, true}, + {Coin{"๐Ÿ––", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Œ", NewInt(1)}, true}, + {Coin{"๐Ÿค", NewInt(1)}, true}, + {Coin{"โœŒ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคž", NewInt(1)}, true}, + {Coin{"๐ŸคŸ", NewInt(1)}, true}, + {Coin{"๐Ÿค˜", NewInt(1)}, true}, + {Coin{"๐Ÿค™", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ˆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‰", NewInt(1)}, true}, + {Coin{"๐Ÿ‘†", NewInt(1)}, true}, + {Coin{"๐Ÿ–•", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‡", NewInt(1)}, true}, + {Coin{"โ˜๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Ž", NewInt(1)}, true}, + {Coin{"โœŠ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Š", NewInt(1)}, true}, + {Coin{"๐Ÿค›", NewInt(1)}, true}, + {Coin{"๐Ÿคœ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘", NewInt(1)}, true}, + {Coin{"๐Ÿ™Œ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘", NewInt(1)}, true}, + {Coin{"๐Ÿคฒ", NewInt(1)}, true}, + {Coin{"๐Ÿค", NewInt(1)}, true}, + {Coin{"๐Ÿ™", NewInt(1)}, true}, + {Coin{"โœ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’…", NewInt(1)}, true}, + {Coin{"๐Ÿคณ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ช", NewInt(1)}, true}, + {Coin{"๐Ÿฆพ", NewInt(1)}, true}, + {Coin{"๐Ÿฆต", NewInt(1)}, true}, + {Coin{"๐Ÿฆฟ", NewInt(1)}, true}, + {Coin{"๐Ÿฆถ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‚", NewInt(1)}, true}, + {Coin{"๐Ÿฆป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ƒ", NewInt(1)}, true}, + {Coin{"๐Ÿง ", NewInt(1)}, true}, + {Coin{"๐Ÿฆท", NewInt(1)}, true}, + {Coin{"๐Ÿฆด", NewInt(1)}, true}, + {Coin{"๐Ÿ‘€", NewInt(1)}, true}, + {Coin{"๐Ÿ‘", NewInt(1)}, true}, + {Coin{"๐Ÿ‘…", NewInt(1)}, true}, + {Coin{"๐Ÿ‘„", NewInt(1)}, true}, + {Coin{"๐Ÿ’‹", NewInt(1)}, true}, + {Coin{"๐Ÿฉธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ถ", NewInt(1)}, true}, + {Coin{"๐Ÿง’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ง", NewInt(1)}, true}, + {Coin{"๐Ÿง‘", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ", NewInt(1)}, true}, + {Coin{"๐Ÿง”", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง“", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ด", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ต", NewInt(1)}, true}, + {Coin{"๐Ÿ™", NewInt(1)}, true}, + {Coin{"๐Ÿ™โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž", NewInt(1)}, true}, + {Coin{"๐Ÿ™Žโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Žโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…", NewInt(1)}, true}, + {Coin{"๐Ÿ™…โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†", NewInt(1)}, true}, + {Coin{"๐Ÿ™†โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’", NewInt(1)}, true}, + {Coin{"๐Ÿ’โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง", NewInt(1)}, true}, + {Coin{"๐Ÿงโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคท", NewInt(1)}, true}, + {Coin{"๐Ÿคทโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคทโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๏ธโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๏ธโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ทโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ทโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคด", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿง•", NewInt(1)}, true}, + {Coin{"๐Ÿคต", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿคฐ", NewInt(1)}, true}, + {Coin{"๐Ÿคฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ผ", NewInt(1)}, true}, + {Coin{"๐ŸŽ…", NewInt(1)}, true}, + {Coin{"๐Ÿคถ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน", NewInt(1)}, true}, + {Coin{"๐Ÿฆนโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆนโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง™", NewInt(1)}, true}, + {Coin{"๐Ÿง™โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง™โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงš", NewInt(1)}, true}, + {Coin{"๐Ÿงšโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงšโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง›", NewInt(1)}, true}, + {Coin{"๐Ÿง›โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง›โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ", NewInt(1)}, true}, + {Coin{"๐Ÿงœโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงœโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง", NewInt(1)}, true}, + {Coin{"๐Ÿงโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงž", NewInt(1)}, true}, + {Coin{"๐Ÿงžโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงžโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸงŸ", NewInt(1)}, true}, + {Coin{"๐ŸงŸโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸงŸโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†", NewInt(1)}, true}, + {Coin{"๐Ÿ’†โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ", NewInt(1)}, true}, + {Coin{"๐Ÿšถโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšถโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง", NewInt(1)}, true}, + {Coin{"๐Ÿงโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ", NewInt(1)}, true}, + {Coin{"๐ŸงŽโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸงŽโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ", NewInt(1)}, true}, + {Coin{"๐Ÿƒโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿƒโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ƒ", NewInt(1)}, true}, + {Coin{"๐Ÿ•บ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ด", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฏโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฏโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง–", NewInt(1)}, true}, + {Coin{"๐Ÿง–โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง–โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜", NewInt(1)}, true}, + {Coin{"๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‘", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿ‘ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", NewInt(1)}, true}, + {Coin{"๐Ÿ—ฃ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ค", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฅ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฃ", NewInt(1)}, true}, + {Coin{"๐Ÿงณ", NewInt(1)}, true}, + {Coin{"๐ŸŒ‚", NewInt(1)}, true}, + {Coin{"โ˜‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงต", NewInt(1)}, true}, + {Coin{"๐Ÿงถ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘“", NewInt(1)}, true}, + {Coin{"๐Ÿ•ถ", NewInt(1)}, true}, + {Coin{"๐Ÿฅฝ", NewInt(1)}, true}, + {Coin{"๐Ÿฅผ", NewInt(1)}, true}, + {Coin{"๐Ÿฆบ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘”", NewInt(1)}, true}, + {Coin{"๐Ÿ‘•", NewInt(1)}, true}, + {Coin{"๐Ÿ‘–", NewInt(1)}, true}, + {Coin{"๐Ÿงฃ", NewInt(1)}, true}, + {Coin{"๐Ÿงค", NewInt(1)}, true}, + {Coin{"๐Ÿงฅ", NewInt(1)}, true}, + {Coin{"๐Ÿงฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘—", NewInt(1)}, true}, + {Coin{"๐Ÿ‘˜", NewInt(1)}, true}, + {Coin{"๐Ÿฅป", NewInt(1)}, true}, + {Coin{"๐Ÿฉฑ", NewInt(1)}, true}, + {Coin{"๐Ÿฉฒ", NewInt(1)}, true}, + {Coin{"๐Ÿฉณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘™", NewInt(1)}, true}, + {Coin{"๐Ÿ‘š", NewInt(1)}, true}, + {Coin{"๐Ÿ‘›", NewInt(1)}, true}, + {Coin{"๐Ÿ‘œ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘", NewInt(1)}, true}, + {Coin{"๐ŸŽ’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ž", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿฅพ", NewInt(1)}, true}, + {Coin{"๐Ÿฅฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ก", NewInt(1)}, true}, + {Coin{"๐Ÿฉฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ข", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‘", NewInt(1)}, true}, + {Coin{"๐Ÿ‘’", NewInt(1)}, true}, + {Coin{"๐ŸŽฉ", NewInt(1)}, true}, + {Coin{"๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿงข", NewInt(1)}, true}, + {Coin{"โ›‘", NewInt(1)}, true}, + {Coin{"๐Ÿ’„", NewInt(1)}, true}, + {Coin{"๐Ÿ’", NewInt(1)}, true}, + {Coin{"๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‹๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคš๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ–๐Ÿป", NewInt(1)}, true}, + {Coin{"โœ‹๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ––๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Œ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿค๐Ÿป", NewInt(1)}, true}, + {Coin{"โœŒ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคž๐Ÿป", NewInt(1)}, true}, + {Coin{"๐ŸคŸ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿค˜๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿค™๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ˆ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‰๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘†๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ–•๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‡๐Ÿป", NewInt(1)}, true}, + {Coin{"โ˜๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Ž๐Ÿป", NewInt(1)}, true}, + {Coin{"โœŠ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Š๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿค›๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคœ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ™Œ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคฒ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿป", NewInt(1)}, true}, + {Coin{"โœ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ’…๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคณ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ’ช๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿฆต๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿฆถ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‚๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿฆป๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ƒ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ถ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง’๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฆ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ง๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿง”๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง“๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ด๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ต๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคด๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ธ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฒ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง•๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคต๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฐ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคฐ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคฑ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ผ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐ŸŽ…๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคถ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ƒ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ•บ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ•ด๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‚๐Ÿป", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿป", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿปโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿปโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ›€๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ›Œ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฌ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ญ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ซ๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‹๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคš๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ–๐Ÿผ", NewInt(1)}, true}, + {Coin{"โœ‹๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ––๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Œ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿค๐Ÿผ", NewInt(1)}, true}, + {Coin{"โœŒ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคž๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐ŸคŸ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿค˜๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿค™๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ˆ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‰๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘†๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ–•๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‡๐Ÿผ", NewInt(1)}, true}, + {Coin{"โ˜๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Ž๐Ÿผ", NewInt(1)}, true}, + {Coin{"โœŠ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Š๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿค›๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคœ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Œ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคฒ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿผ", NewInt(1)}, true}, + {Coin{"โœ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ’…๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคณ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ช๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿฆต๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿฆถ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‚๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿฆป๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ƒ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ถ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง’๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฆ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ง๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿง”๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง“๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ด๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ต๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคด๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ธ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฒ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง•๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคต๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฐ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคฐ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคฑ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ผ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐ŸŽ…๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคถ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ƒ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ•บ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ด๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‚๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿผ", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ›€๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ›Œ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฌ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ญ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ซ๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‹๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคš๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ–๐Ÿฝ", NewInt(1)}, true}, + {Coin{"โœ‹๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ––๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Œ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿค๐Ÿฝ", NewInt(1)}, true}, + {Coin{"โœŒ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคž๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐ŸคŸ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿค˜๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿค™๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ˆ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‰๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘†๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ–•๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‡๐Ÿฝ", NewInt(1)}, true}, + {Coin{"โ˜๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Ž๐Ÿฝ", NewInt(1)}, true}, + {Coin{"โœŠ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Š๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿค›๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคœ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Œ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคฒ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿฝ", NewInt(1)}, true}, + {Coin{"โœ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ’…๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคณ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ช๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿฆต๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿฆถ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‚๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿฆป๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ƒ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ถ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง’๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฆ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ง๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿง”๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง“๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ด๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ต๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคด๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ธ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฒ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง•๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคต๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฐ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคฐ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคฑ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ผ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐ŸŽ…๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคถ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ƒ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ•บ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ด๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‚๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿฝ", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ›€๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ›Œ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฌ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ญ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ซ๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‹๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคš๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ–๐Ÿพ", NewInt(1)}, true}, + {Coin{"โœ‹๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ––๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Œ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿค๐Ÿพ", NewInt(1)}, true}, + {Coin{"โœŒ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคž๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐ŸคŸ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿค˜๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿค™๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ˆ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‰๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘†๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ–•๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‡๐Ÿพ", NewInt(1)}, true}, + {Coin{"โ˜๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Ž๐Ÿพ", NewInt(1)}, true}, + {Coin{"โœŠ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Š๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿค›๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคœ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Œ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคฒ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿพ", NewInt(1)}, true}, + {Coin{"โœ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ’…๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคณ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ช๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿฆต๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿฆถ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‚๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿฆป๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ƒ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ถ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง’๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฆ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ง๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿง”๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง“๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ด๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ต๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคด๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ธ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฒ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง•๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคต๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฐ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคฐ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคฑ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ผ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐ŸŽ…๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคถ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ƒ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ•บ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ด๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‚๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿพ", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ›€๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ›Œ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฌ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ญ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ซ๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‹๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคš๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ–๐Ÿฟ", NewInt(1)}, true}, + {Coin{"โœ‹๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ––๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Œ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿค๐Ÿฟ", NewInt(1)}, true}, + {Coin{"โœŒ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคž๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐ŸคŸ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿค˜๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿค™๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ˆ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‰๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘†๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ–•๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‡๐Ÿฟ", NewInt(1)}, true}, + {Coin{"โ˜๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Ž๐Ÿฟ", NewInt(1)}, true}, + {Coin{"โœŠ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘Š๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿค›๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคœ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Œ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคฒ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿฟ", NewInt(1)}, true}, + {Coin{"โœ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ’…๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคณ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ช๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿฆต๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿฆถ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘‚๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿฆป๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ƒ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ถ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง’๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฆ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ง๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฑ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฑ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆณ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿง”๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง“๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ด๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ต๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™Ž๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™…๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™†๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‹๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‡๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฆ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคท๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€โš•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽ“", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฎ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ต๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‚๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ท๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคด๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ธ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ณ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฒ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง•๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคต๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฐ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคฐ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคฑ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ผ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐ŸŽ…๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคถ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆธ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆน๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง™๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงš๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง›๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงœ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’†๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’‡๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšถ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸงŽ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ƒ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ•บ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ด๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง–๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง—๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‚๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ„๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŠ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿฟ", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"โ›น๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšด๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšต๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคน๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿฟโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜๐Ÿฟโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ›€๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ›Œ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ฌ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ญ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘ซ๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿถ", NewInt(1)}, true}, + {Coin{"๐Ÿฑ", NewInt(1)}, true}, + {Coin{"๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿน", NewInt(1)}, true}, + {Coin{"๐Ÿฐ", NewInt(1)}, true}, + {Coin{"๐ŸฆŠ", NewInt(1)}, true}, + {Coin{"๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿผ", NewInt(1)}, true}, + {Coin{"๐Ÿจ", NewInt(1)}, true}, + {Coin{"๐Ÿฏ", NewInt(1)}, true}, + {Coin{"๐Ÿฆ", NewInt(1)}, true}, + {Coin{"๐Ÿฎ", NewInt(1)}, true}, + {Coin{"๐Ÿท", NewInt(1)}, true}, + {Coin{"๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿธ", NewInt(1)}, true}, + {Coin{"๐Ÿต", NewInt(1)}, true}, + {Coin{"๐Ÿ™ˆ", NewInt(1)}, true}, + {Coin{"๐Ÿ™‰", NewInt(1)}, true}, + {Coin{"๐Ÿ™Š", NewInt(1)}, true}, + {Coin{"๐Ÿ’", NewInt(1)}, true}, + {Coin{"๐Ÿ”", NewInt(1)}, true}, + {Coin{"๐Ÿง", NewInt(1)}, true}, + {Coin{"๐Ÿฆ", NewInt(1)}, true}, + {Coin{"๐Ÿค", NewInt(1)}, true}, + {Coin{"๐Ÿฃ", NewInt(1)}, true}, + {Coin{"๐Ÿฅ", NewInt(1)}, true}, + {Coin{"๐Ÿฆ†", NewInt(1)}, true}, + {Coin{"๐Ÿฆ…", NewInt(1)}, true}, + {Coin{"๐Ÿฆ‰", NewInt(1)}, true}, + {Coin{"๐Ÿฆ‡", NewInt(1)}, true}, + {Coin{"๐Ÿบ", NewInt(1)}, true}, + {Coin{"๐Ÿ—", NewInt(1)}, true}, + {Coin{"๐Ÿด", NewInt(1)}, true}, + {Coin{"๐Ÿฆ„", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿ›", NewInt(1)}, true}, + {Coin{"๐Ÿฆ‹", NewInt(1)}, true}, + {Coin{"๐ŸŒ", NewInt(1)}, true}, + {Coin{"๐Ÿž", NewInt(1)}, true}, + {Coin{"๐Ÿœ", NewInt(1)}, true}, + {Coin{"๐ŸฆŸ", NewInt(1)}, true}, + {Coin{"๐Ÿฆ—", NewInt(1)}, true}, + {Coin{"๐Ÿ•ท", NewInt(1)}, true}, + {Coin{"๐Ÿ•ธ", NewInt(1)}, true}, + {Coin{"๐Ÿฆ‚", NewInt(1)}, true}, + {Coin{"๐Ÿข", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐ŸฆŽ", NewInt(1)}, true}, + {Coin{"๐Ÿฆ–", NewInt(1)}, true}, + {Coin{"๐Ÿฆ•", NewInt(1)}, true}, + {Coin{"๐Ÿ™", NewInt(1)}, true}, + {Coin{"๐Ÿฆ‘", NewInt(1)}, true}, + {Coin{"๐Ÿฆ", NewInt(1)}, true}, + {Coin{"๐Ÿฆž", NewInt(1)}, true}, + {Coin{"๐Ÿฆ€", NewInt(1)}, true}, + {Coin{"๐Ÿก", NewInt(1)}, true}, + {Coin{"๐Ÿ ", NewInt(1)}, true}, + {Coin{"๐ŸŸ", NewInt(1)}, true}, + {Coin{"๐Ÿฌ", NewInt(1)}, true}, + {Coin{"๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹", NewInt(1)}, true}, + {Coin{"๐Ÿฆˆ", NewInt(1)}, true}, + {Coin{"๐ŸŠ", NewInt(1)}, true}, + {Coin{"๐Ÿ…", NewInt(1)}, true}, + {Coin{"๐Ÿ†", NewInt(1)}, true}, + {Coin{"๐Ÿฆ“", NewInt(1)}, true}, + {Coin{"๐Ÿฆ", NewInt(1)}, true}, + {Coin{"๐Ÿฆง", NewInt(1)}, true}, + {Coin{"๐Ÿ˜", NewInt(1)}, true}, + {Coin{"๐Ÿฆ›", NewInt(1)}, true}, + {Coin{"๐Ÿฆ", NewInt(1)}, true}, + {Coin{"๐Ÿช", NewInt(1)}, true}, + {Coin{"๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿฆ’", NewInt(1)}, true}, + {Coin{"๐Ÿฆ˜", NewInt(1)}, true}, + {Coin{"๐Ÿƒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‚", NewInt(1)}, true}, + {Coin{"๐Ÿ„", NewInt(1)}, true}, + {Coin{"๐ŸŽ", NewInt(1)}, true}, + {Coin{"๐Ÿ–", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿ‘", NewInt(1)}, true}, + {Coin{"๐Ÿฆ™", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐ŸฆŒ", NewInt(1)}, true}, + {Coin{"๐Ÿ•", NewInt(1)}, true}, + {Coin{"๐Ÿฉ", NewInt(1)}, true}, + {Coin{"๐Ÿฆฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ•โ€๐Ÿฆบ", NewInt(1)}, true}, + {Coin{"๐Ÿˆ", NewInt(1)}, true}, + {Coin{"๐Ÿ“", NewInt(1)}, true}, + {Coin{"๐Ÿฆƒ", NewInt(1)}, true}, + {Coin{"๐Ÿฆš", NewInt(1)}, true}, + {Coin{"๐Ÿฆœ", NewInt(1)}, true}, + {Coin{"๐Ÿฆข", NewInt(1)}, true}, + {Coin{"๐Ÿฆฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ•Š", NewInt(1)}, true}, + {Coin{"๐Ÿ‡", NewInt(1)}, true}, + {Coin{"๐Ÿฆ", NewInt(1)}, true}, + {Coin{"๐Ÿฆจ", NewInt(1)}, true}, + {Coin{"๐Ÿฆก", NewInt(1)}, true}, + {Coin{"๐Ÿฆฆ", NewInt(1)}, true}, + {Coin{"๐Ÿฆฅ", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿ€", NewInt(1)}, true}, + {Coin{"๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿฆ”", NewInt(1)}, true}, + {Coin{"๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐Ÿ‰", NewInt(1)}, true}, + {Coin{"๐Ÿฒ", NewInt(1)}, true}, + {Coin{"๐ŸŒต", NewInt(1)}, true}, + {Coin{"๐ŸŽ„", NewInt(1)}, true}, + {Coin{"๐ŸŒฒ", NewInt(1)}, true}, + {Coin{"๐ŸŒณ", NewInt(1)}, true}, + {Coin{"๐ŸŒด", NewInt(1)}, true}, + {Coin{"๐ŸŒฑ", NewInt(1)}, true}, + {Coin{"๐ŸŒฟ", NewInt(1)}, true}, + {Coin{"โ˜˜๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ€", NewInt(1)}, true}, + {Coin{"๐ŸŽ", NewInt(1)}, true}, + {Coin{"๐ŸŽ‹", NewInt(1)}, true}, + {Coin{"๐Ÿƒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‚", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿ„", NewInt(1)}, true}, + {Coin{"๐Ÿš", NewInt(1)}, true}, + {Coin{"๐ŸŒพ", NewInt(1)}, true}, + {Coin{"๐Ÿ’", NewInt(1)}, true}, + {Coin{"๐ŸŒท", NewInt(1)}, true}, + {Coin{"๐ŸŒน", NewInt(1)}, true}, + {Coin{"๐Ÿฅ€", NewInt(1)}, true}, + {Coin{"๐ŸŒบ", NewInt(1)}, true}, + {Coin{"๐ŸŒธ", NewInt(1)}, true}, + {Coin{"๐ŸŒผ", NewInt(1)}, true}, + {Coin{"๐ŸŒป", NewInt(1)}, true}, + {Coin{"๐ŸŒž", NewInt(1)}, true}, + {Coin{"๐ŸŒ", NewInt(1)}, true}, + {Coin{"๐ŸŒ›", NewInt(1)}, true}, + {Coin{"๐ŸŒœ", NewInt(1)}, true}, + {Coin{"๐ŸŒš", NewInt(1)}, true}, + {Coin{"๐ŸŒ•", NewInt(1)}, true}, + {Coin{"๐ŸŒ–", NewInt(1)}, true}, + {Coin{"๐ŸŒ—", NewInt(1)}, true}, + {Coin{"๐ŸŒ˜", NewInt(1)}, true}, + {Coin{"๐ŸŒ‘", NewInt(1)}, true}, + {Coin{"๐ŸŒ’", NewInt(1)}, true}, + {Coin{"๐ŸŒ“", NewInt(1)}, true}, + {Coin{"๐ŸŒ”", NewInt(1)}, true}, + {Coin{"๐ŸŒ™", NewInt(1)}, true}, + {Coin{"๐ŸŒŽ", NewInt(1)}, true}, + {Coin{"๐ŸŒ", NewInt(1)}, true}, + {Coin{"๐ŸŒ", NewInt(1)}, true}, + {Coin{"๐Ÿช", NewInt(1)}, true}, + {Coin{"๐Ÿ’ซ", NewInt(1)}, true}, + {Coin{"โญ๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒŸ", NewInt(1)}, true}, + {Coin{"โœจ", NewInt(1)}, true}, + {Coin{"โšก๏ธ", NewInt(1)}, true}, + {Coin{"โ˜„๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ฅ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ฅ", NewInt(1)}, true}, + {Coin{"๐ŸŒช", NewInt(1)}, true}, + {Coin{"๐ŸŒˆ", NewInt(1)}, true}, + {Coin{"โ˜€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒค", NewInt(1)}, true}, + {Coin{"โ›…๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒฅ", NewInt(1)}, true}, + {Coin{"โ˜๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒฆ", NewInt(1)}, true}, + {Coin{"๐ŸŒง", NewInt(1)}, true}, + {Coin{"โ›ˆ", NewInt(1)}, true}, + {Coin{"๐ŸŒฉ", NewInt(1)}, true}, + {Coin{"๐ŸŒจ", NewInt(1)}, true}, + {Coin{"โ„๏ธ", NewInt(1)}, true}, + {Coin{"โ˜ƒ๏ธ", NewInt(1)}, true}, + {Coin{"โ›„๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ’จ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ง", NewInt(1)}, true}, + {Coin{"๐Ÿ’ฆ", NewInt(1)}, true}, + {Coin{"โ˜”๏ธ", NewInt(1)}, true}, + {Coin{"โ˜‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒŠ", NewInt(1)}, true}, + {Coin{"๐ŸŒซ", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐ŸŽ", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐ŸŠ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹", NewInt(1)}, true}, + {Coin{"๐ŸŒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‰", NewInt(1)}, true}, + {Coin{"๐Ÿ‡", NewInt(1)}, true}, + {Coin{"๐Ÿ“", NewInt(1)}, true}, + {Coin{"๐Ÿˆ", NewInt(1)}, true}, + {Coin{"๐Ÿ’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘", NewInt(1)}, true}, + {Coin{"๐Ÿฅญ", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿฅฅ", NewInt(1)}, true}, + {Coin{"๐Ÿฅ", NewInt(1)}, true}, + {Coin{"๐Ÿ…", NewInt(1)}, true}, + {Coin{"๐Ÿ†", NewInt(1)}, true}, + {Coin{"๐Ÿฅ‘", NewInt(1)}, true}, + {Coin{"๐Ÿฅฆ", NewInt(1)}, true}, + {Coin{"๐Ÿฅฌ", NewInt(1)}, true}, + {Coin{"๐Ÿฅ’", NewInt(1)}, true}, + {Coin{"๐ŸŒถ", NewInt(1)}, true}, + {Coin{"๐ŸŒฝ", NewInt(1)}, true}, + {Coin{"๐Ÿฅ•", NewInt(1)}, true}, + {Coin{"๐Ÿง„", NewInt(1)}, true}, + {Coin{"๐Ÿง…", NewInt(1)}, true}, + {Coin{"๐Ÿฅ”", NewInt(1)}, true}, + {Coin{"๐Ÿ ", NewInt(1)}, true}, + {Coin{"๐Ÿฅ", NewInt(1)}, true}, + {Coin{"๐Ÿฅฏ", NewInt(1)}, true}, + {Coin{"๐Ÿž", NewInt(1)}, true}, + {Coin{"๐Ÿฅ–", NewInt(1)}, true}, + {Coin{"๐Ÿฅจ", NewInt(1)}, true}, + {Coin{"๐Ÿง€", NewInt(1)}, true}, + {Coin{"๐Ÿฅš", NewInt(1)}, true}, + {Coin{"๐Ÿณ", NewInt(1)}, true}, + {Coin{"๐Ÿงˆ", NewInt(1)}, true}, + {Coin{"๐Ÿฅž", NewInt(1)}, true}, + {Coin{"๐Ÿง‡", NewInt(1)}, true}, + {Coin{"๐Ÿฅ“", NewInt(1)}, true}, + {Coin{"๐Ÿฅฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ—", NewInt(1)}, true}, + {Coin{"๐Ÿ–", NewInt(1)}, true}, + {Coin{"๐Ÿฆด", NewInt(1)}, true}, + {Coin{"๐ŸŒญ", NewInt(1)}, true}, + {Coin{"๐Ÿ”", NewInt(1)}, true}, + {Coin{"๐ŸŸ", NewInt(1)}, true}, + {Coin{"๐Ÿ•", NewInt(1)}, true}, + {Coin{"๐Ÿฅช", NewInt(1)}, true}, + {Coin{"๐Ÿฅ™", NewInt(1)}, true}, + {Coin{"๐Ÿง†", NewInt(1)}, true}, + {Coin{"๐ŸŒฎ", NewInt(1)}, true}, + {Coin{"๐ŸŒฏ", NewInt(1)}, true}, + {Coin{"๐Ÿฅ—", NewInt(1)}, true}, + {Coin{"๐Ÿฅ˜", NewInt(1)}, true}, + {Coin{"๐Ÿฅซ", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿœ", NewInt(1)}, true}, + {Coin{"๐Ÿฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ›", NewInt(1)}, true}, + {Coin{"๐Ÿฃ", NewInt(1)}, true}, + {Coin{"๐Ÿฑ", NewInt(1)}, true}, + {Coin{"๐ŸฅŸ", NewInt(1)}, true}, + {Coin{"๐Ÿฆช", NewInt(1)}, true}, + {Coin{"๐Ÿค", NewInt(1)}, true}, + {Coin{"๐Ÿ™", NewInt(1)}, true}, + {Coin{"๐Ÿš", NewInt(1)}, true}, + {Coin{"๐Ÿ˜", NewInt(1)}, true}, + {Coin{"๐Ÿฅ", NewInt(1)}, true}, + {Coin{"๐Ÿฅ ", NewInt(1)}, true}, + {Coin{"๐Ÿฅฎ", NewInt(1)}, true}, + {Coin{"๐Ÿข", NewInt(1)}, true}, + {Coin{"๐Ÿก", NewInt(1)}, true}, + {Coin{"๐Ÿง", NewInt(1)}, true}, + {Coin{"๐Ÿจ", NewInt(1)}, true}, + {Coin{"๐Ÿฆ", NewInt(1)}, true}, + {Coin{"๐Ÿฅง", NewInt(1)}, true}, + {Coin{"๐Ÿง", NewInt(1)}, true}, + {Coin{"๐Ÿฐ", NewInt(1)}, true}, + {Coin{"๐ŸŽ‚", NewInt(1)}, true}, + {Coin{"๐Ÿฎ", NewInt(1)}, true}, + {Coin{"๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿฌ", NewInt(1)}, true}, + {Coin{"๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿฟ", NewInt(1)}, true}, + {Coin{"๐Ÿฉ", NewInt(1)}, true}, + {Coin{"๐Ÿช", NewInt(1)}, true}, + {Coin{"๐ŸŒฐ", NewInt(1)}, true}, + {Coin{"๐Ÿฅœ", NewInt(1)}, true}, + {Coin{"๐Ÿฏ", NewInt(1)}, true}, + {Coin{"๐Ÿฅ›", NewInt(1)}, true}, + {Coin{"๐Ÿผ", NewInt(1)}, true}, + {Coin{"โ˜•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿต", NewInt(1)}, true}, + {Coin{"๐Ÿงƒ", NewInt(1)}, true}, + {Coin{"๐Ÿฅค", NewInt(1)}, true}, + {Coin{"๐Ÿถ", NewInt(1)}, true}, + {Coin{"๐Ÿบ", NewInt(1)}, true}, + {Coin{"๐Ÿป", NewInt(1)}, true}, + {Coin{"๐Ÿฅ‚", NewInt(1)}, true}, + {Coin{"๐Ÿท", NewInt(1)}, true}, + {Coin{"๐Ÿฅƒ", NewInt(1)}, true}, + {Coin{"๐Ÿธ", NewInt(1)}, true}, + {Coin{"๐Ÿน", NewInt(1)}, true}, + {Coin{"๐Ÿง‰", NewInt(1)}, true}, + {Coin{"๐Ÿพ", NewInt(1)}, true}, + {Coin{"๐ŸงŠ", NewInt(1)}, true}, + {Coin{"๐Ÿฅ„", NewInt(1)}, true}, + {Coin{"๐Ÿด", NewInt(1)}, true}, + {Coin{"๐Ÿฝ", NewInt(1)}, true}, + {Coin{"๐Ÿฅฃ", NewInt(1)}, true}, + {Coin{"๐Ÿฅก", NewInt(1)}, true}, + {Coin{"๐Ÿฅข", NewInt(1)}, true}, + {Coin{"๐Ÿง‚", NewInt(1)}, true}, + {Coin{"โšฝ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ€", NewInt(1)}, true}, + {Coin{"๐Ÿˆ", NewInt(1)}, true}, + {Coin{"โšพ๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸฅŽ", NewInt(1)}, true}, + {Coin{"๐ŸŽพ", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿ‰", NewInt(1)}, true}, + {Coin{"๐Ÿฅ", NewInt(1)}, true}, + {Coin{"๐ŸŽฑ", NewInt(1)}, true}, + {Coin{"๐Ÿช€", NewInt(1)}, true}, + {Coin{"๐Ÿ“", NewInt(1)}, true}, + {Coin{"๐Ÿธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’", NewInt(1)}, true}, + {Coin{"๐Ÿ‘", NewInt(1)}, true}, + {Coin{"๐Ÿฅ", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿฅ…", NewInt(1)}, true}, + {Coin{"โ›ณ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿช", NewInt(1)}, true}, + {Coin{"๐Ÿน", NewInt(1)}, true}, + {Coin{"๐ŸŽฃ", NewInt(1)}, true}, + {Coin{"๐Ÿคฟ", NewInt(1)}, true}, + {Coin{"๐ŸฅŠ", NewInt(1)}, true}, + {Coin{"๐Ÿฅ‹", NewInt(1)}, true}, + {Coin{"๐ŸŽฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ›น", NewInt(1)}, true}, + {Coin{"๐Ÿ›ท", NewInt(1)}, true}, + {Coin{"โ›ธ", NewInt(1)}, true}, + {Coin{"๐ŸฅŒ", NewInt(1)}, true}, + {Coin{"๐ŸŽฟ", NewInt(1)}, true}, + {Coin{"โ›ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‚", NewInt(1)}, true}, + {Coin{"๐Ÿช‚", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๏ธโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‹๏ธโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคผ", NewInt(1)}, true}, + {Coin{"๐Ÿคผโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคผโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคธโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคธ", NewInt(1)}, true}, + {Coin{"๐Ÿคธโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"โ›น๏ธ", NewInt(1)}, true}, + {Coin{"โ›น๏ธโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"โ›น๏ธโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคบ", NewInt(1)}, true}, + {Coin{"๐Ÿคพ", NewInt(1)}, true}, + {Coin{"๐Ÿคพโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคพโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๏ธโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒ๏ธโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡", NewInt(1)}, true}, + {Coin{"๐Ÿง˜", NewInt(1)}, true}, + {Coin{"๐Ÿง˜โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง˜โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ„", NewInt(1)}, true}, + {Coin{"๐Ÿ„โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ„โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŠ", NewInt(1)}, true}, + {Coin{"๐ŸŠโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŠโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคฝโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšฃโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง—", NewInt(1)}, true}, + {Coin{"๐Ÿง—โ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿง—โ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšต", NewInt(1)}, true}, + {Coin{"๐Ÿšตโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšตโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšด", NewInt(1)}, true}, + {Coin{"๐Ÿšดโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšดโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ†", NewInt(1)}, true}, + {Coin{"๐Ÿฅ‡", NewInt(1)}, true}, + {Coin{"๐Ÿฅˆ", NewInt(1)}, true}, + {Coin{"๐Ÿฅ‰", NewInt(1)}, true}, + {Coin{"๐Ÿ…", NewInt(1)}, true}, + {Coin{"๐ŸŽ–", NewInt(1)}, true}, + {Coin{"๐Ÿต", NewInt(1)}, true}, + {Coin{"๐ŸŽ—", NewInt(1)}, true}, + {Coin{"๐ŸŽซ", NewInt(1)}, true}, + {Coin{"๐ŸŽŸ", NewInt(1)}, true}, + {Coin{"๐ŸŽช", NewInt(1)}, true}, + {Coin{"๐Ÿคน", NewInt(1)}, true}, + {Coin{"๐Ÿคนโ€โ™‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿคนโ€โ™€๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŽญ", NewInt(1)}, true}, + {Coin{"๐Ÿฉฐ", NewInt(1)}, true}, + {Coin{"๐ŸŽจ", NewInt(1)}, true}, + {Coin{"๐ŸŽฌ", NewInt(1)}, true}, + {Coin{"๐ŸŽค", NewInt(1)}, true}, + {Coin{"๐ŸŽง", NewInt(1)}, true}, + {Coin{"๐ŸŽผ", NewInt(1)}, true}, + {Coin{"๐ŸŽน", NewInt(1)}, true}, + {Coin{"๐Ÿฅ", NewInt(1)}, true}, + {Coin{"๐ŸŽท", NewInt(1)}, true}, + {Coin{"๐ŸŽบ", NewInt(1)}, true}, + {Coin{"๐ŸŽธ", NewInt(1)}, true}, + {Coin{"๐Ÿช•", NewInt(1)}, true}, + {Coin{"๐ŸŽป", NewInt(1)}, true}, + {Coin{"๐ŸŽฒ", NewInt(1)}, true}, + {Coin{"โ™Ÿ", NewInt(1)}, true}, + {Coin{"๐ŸŽฏ", NewInt(1)}, true}, + {Coin{"๐ŸŽณ", NewInt(1)}, true}, + {Coin{"๐ŸŽฎ", NewInt(1)}, true}, + {Coin{"๐ŸŽฐ", NewInt(1)}, true}, + {Coin{"๐Ÿงฉ", NewInt(1)}, true}, + {Coin{"๐Ÿš—", NewInt(1)}, true}, + {Coin{"๐Ÿš•", NewInt(1)}, true}, + {Coin{"๐Ÿš™", NewInt(1)}, true}, + {Coin{"๐ŸšŒ", NewInt(1)}, true}, + {Coin{"๐ŸšŽ", NewInt(1)}, true}, + {Coin{"๐ŸŽ", NewInt(1)}, true}, + {Coin{"๐Ÿš“", NewInt(1)}, true}, + {Coin{"๐Ÿš‘", NewInt(1)}, true}, + {Coin{"๐Ÿš’", NewInt(1)}, true}, + {Coin{"๐Ÿš", NewInt(1)}, true}, + {Coin{"๐Ÿšš", NewInt(1)}, true}, + {Coin{"๐Ÿš›", NewInt(1)}, true}, + {Coin{"๐Ÿšœ", NewInt(1)}, true}, + {Coin{"๐Ÿฆฏ", NewInt(1)}, true}, + {Coin{"๐Ÿฆฝ", NewInt(1)}, true}, + {Coin{"๐Ÿฆผ", NewInt(1)}, true}, + {Coin{"๐Ÿ›ด", NewInt(1)}, true}, + {Coin{"๐Ÿšฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ›ต", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿ›บ", NewInt(1)}, true}, + {Coin{"๐Ÿšจ", NewInt(1)}, true}, + {Coin{"๐Ÿš”", NewInt(1)}, true}, + {Coin{"๐Ÿš", NewInt(1)}, true}, + {Coin{"๐Ÿš˜", NewInt(1)}, true}, + {Coin{"๐Ÿš–", NewInt(1)}, true}, + {Coin{"๐Ÿšก", NewInt(1)}, true}, + {Coin{"๐Ÿš ", NewInt(1)}, true}, + {Coin{"๐ŸšŸ", NewInt(1)}, true}, + {Coin{"๐Ÿšƒ", NewInt(1)}, true}, + {Coin{"๐Ÿš‹", NewInt(1)}, true}, + {Coin{"๐Ÿšž", NewInt(1)}, true}, + {Coin{"๐Ÿš", NewInt(1)}, true}, + {Coin{"๐Ÿš„", NewInt(1)}, true}, + {Coin{"๐Ÿš…", NewInt(1)}, true}, + {Coin{"๐Ÿšˆ", NewInt(1)}, true}, + {Coin{"๐Ÿš‚", NewInt(1)}, true}, + {Coin{"๐Ÿš†", NewInt(1)}, true}, + {Coin{"๐Ÿš‡", NewInt(1)}, true}, + {Coin{"๐ŸšŠ", NewInt(1)}, true}, + {Coin{"๐Ÿš‰", NewInt(1)}, true}, + {Coin{"โœˆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ›ซ", NewInt(1)}, true}, + {Coin{"๐Ÿ›ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ›ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ’บ", NewInt(1)}, true}, + {Coin{"๐Ÿ›ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿš€", NewInt(1)}, true}, + {Coin{"๐Ÿ›ธ", NewInt(1)}, true}, + {Coin{"๐Ÿš", NewInt(1)}, true}, + {Coin{"๐Ÿ›ถ", NewInt(1)}, true}, + {Coin{"โ›ต๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšค", NewInt(1)}, true}, + {Coin{"๐Ÿ›ฅ", NewInt(1)}, true}, + {Coin{"๐Ÿ›ณ", NewInt(1)}, true}, + {Coin{"โ›ด", NewInt(1)}, true}, + {Coin{"๐Ÿšข", NewInt(1)}, true}, + {Coin{"โš“๏ธ", NewInt(1)}, true}, + {Coin{"โ›ฝ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšง", NewInt(1)}, true}, + {Coin{"๐Ÿšฆ", NewInt(1)}, true}, + {Coin{"๐Ÿšฅ", NewInt(1)}, true}, + {Coin{"๐Ÿš", NewInt(1)}, true}, + {Coin{"๐Ÿ—บ", NewInt(1)}, true}, + {Coin{"๐Ÿ—ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ—ฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ—ผ", NewInt(1)}, true}, + {Coin{"๐Ÿฐ", NewInt(1)}, true}, + {Coin{"๐Ÿฏ", NewInt(1)}, true}, + {Coin{"๐ŸŸ", NewInt(1)}, true}, + {Coin{"๐ŸŽก", NewInt(1)}, true}, + {Coin{"๐ŸŽข", NewInt(1)}, true}, + {Coin{"๐ŸŽ ", NewInt(1)}, true}, + {Coin{"โ›ฒ๏ธ", NewInt(1)}, true}, + {Coin{"โ›ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ–", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿœ", NewInt(1)}, true}, + {Coin{"๐ŸŒ‹", NewInt(1)}, true}, + {Coin{"โ›ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ”", NewInt(1)}, true}, + {Coin{"๐Ÿ—ป", NewInt(1)}, true}, + {Coin{"๐Ÿ•", NewInt(1)}, true}, + {Coin{"โ›บ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ ", NewInt(1)}, true}, + {Coin{"๐Ÿก", NewInt(1)}, true}, + {Coin{"๐Ÿ˜", NewInt(1)}, true}, + {Coin{"๐Ÿš", NewInt(1)}, true}, + {Coin{"๐Ÿ—", NewInt(1)}, true}, + {Coin{"๐Ÿญ", NewInt(1)}, true}, + {Coin{"๐Ÿข", NewInt(1)}, true}, + {Coin{"๐Ÿฌ", NewInt(1)}, true}, + {Coin{"๐Ÿฃ", NewInt(1)}, true}, + {Coin{"๐Ÿค", NewInt(1)}, true}, + {Coin{"๐Ÿฅ", NewInt(1)}, true}, + {Coin{"๐Ÿฆ", NewInt(1)}, true}, + {Coin{"๐Ÿจ", NewInt(1)}, true}, + {Coin{"๐Ÿช", NewInt(1)}, true}, + {Coin{"๐Ÿซ", NewInt(1)}, true}, + {Coin{"๐Ÿฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ’’", NewInt(1)}, true}, + {Coin{"๐Ÿ›", NewInt(1)}, true}, + {Coin{"โ›ช๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•Œ", NewInt(1)}, true}, + {Coin{"๐Ÿ•", NewInt(1)}, true}, + {Coin{"๐Ÿ›•", NewInt(1)}, true}, + {Coin{"๐Ÿ•‹", NewInt(1)}, true}, + {Coin{"โ›ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ›ค", NewInt(1)}, true}, + {Coin{"๐Ÿ›ฃ", NewInt(1)}, true}, + {Coin{"๐Ÿ—พ", NewInt(1)}, true}, + {Coin{"๐ŸŽ‘", NewInt(1)}, true}, + {Coin{"๐Ÿž", NewInt(1)}, true}, + {Coin{"๐ŸŒ…", NewInt(1)}, true}, + {Coin{"๐ŸŒ„", NewInt(1)}, true}, + {Coin{"๐ŸŒ ", NewInt(1)}, true}, + {Coin{"๐ŸŽ‡", NewInt(1)}, true}, + {Coin{"๐ŸŽ†", NewInt(1)}, true}, + {Coin{"๐ŸŒ‡", NewInt(1)}, true}, + {Coin{"๐ŸŒ†", NewInt(1)}, true}, + {Coin{"๐Ÿ™", NewInt(1)}, true}, + {Coin{"๐ŸŒƒ", NewInt(1)}, true}, + {Coin{"๐ŸŒŒ", NewInt(1)}, true}, + {Coin{"๐ŸŒ‰", NewInt(1)}, true}, + {Coin{"๐ŸŒ", NewInt(1)}, true}, + {Coin{"โŒš๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ป", NewInt(1)}, true}, + {Coin{"โŒจ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ–ฅ", NewInt(1)}, true}, + {Coin{"๐Ÿ–จ", NewInt(1)}, true}, + {Coin{"๐Ÿ–ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ–ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ•น", NewInt(1)}, true}, + {Coin{"๐Ÿ—œ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ’พ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ“€", NewInt(1)}, true}, + {Coin{"๐Ÿ“ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ท", NewInt(1)}, true}, + {Coin{"๐Ÿ“ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ“น", NewInt(1)}, true}, + {Coin{"๐ŸŽฅ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ฝ", NewInt(1)}, true}, + {Coin{"๐ŸŽž", NewInt(1)}, true}, + {Coin{"๐Ÿ“ž", NewInt(1)}, true}, + {Coin{"โ˜Ž๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ“Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ ", NewInt(1)}, true}, + {Coin{"๐Ÿ“บ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ป", NewInt(1)}, true}, + {Coin{"๐ŸŽ™", NewInt(1)}, true}, + {Coin{"๐ŸŽš", NewInt(1)}, true}, + {Coin{"๐ŸŽ›", NewInt(1)}, true}, + {Coin{"๐Ÿงญ", NewInt(1)}, true}, + {Coin{"โฑ", NewInt(1)}, true}, + {Coin{"โฒ", NewInt(1)}, true}, + {Coin{"โฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ฐ", NewInt(1)}, true}, + {Coin{"โŒ›๏ธ", NewInt(1)}, true}, + {Coin{"โณ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ก", NewInt(1)}, true}, + {Coin{"๐Ÿ”‹", NewInt(1)}, true}, + {Coin{"๐Ÿ”Œ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ก", NewInt(1)}, true}, + {Coin{"๐Ÿ”ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ฏ", NewInt(1)}, true}, + {Coin{"๐Ÿช”", NewInt(1)}, true}, + {Coin{"๐Ÿงฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ›ข", NewInt(1)}, true}, + {Coin{"๐Ÿ’ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ต", NewInt(1)}, true}, + {Coin{"๐Ÿ’ด", NewInt(1)}, true}, + {Coin{"๐Ÿ’ถ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ท", NewInt(1)}, true}, + {Coin{"๐Ÿ’ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ’Ž", NewInt(1)}, true}, + {Coin{"โš–๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ง", NewInt(1)}, true}, + {Coin{"๐Ÿ”จ", NewInt(1)}, true}, + {Coin{"โš’", NewInt(1)}, true}, + {Coin{"๐Ÿ› ", NewInt(1)}, true}, + {Coin{"โ›", NewInt(1)}, true}, + {Coin{"๐Ÿ”ฉ", NewInt(1)}, true}, + {Coin{"โš™๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงฑ", NewInt(1)}, true}, + {Coin{"โ›“", NewInt(1)}, true}, + {Coin{"๐Ÿงฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ซ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ฃ", NewInt(1)}, true}, + {Coin{"๐Ÿงจ", NewInt(1)}, true}, + {Coin{"๐Ÿช“", NewInt(1)}, true}, + {Coin{"๐Ÿ”ช", NewInt(1)}, true}, + {Coin{"๐Ÿ—ก", NewInt(1)}, true}, + {Coin{"โš”๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ›ก", NewInt(1)}, true}, + {Coin{"๐Ÿšฌ", NewInt(1)}, true}, + {Coin{"โšฐ๏ธ", NewInt(1)}, true}, + {Coin{"โšฑ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿบ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿงฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ˆ", NewInt(1)}, true}, + {Coin{"โš—๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ญ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ณ", NewInt(1)}, true}, + {Coin{"๐Ÿฉน", NewInt(1)}, true}, + {Coin{"๐Ÿฉบ", NewInt(1)}, true}, + {Coin{"๐Ÿ’Š", NewInt(1)}, true}, + {Coin{"๐Ÿ’‰", NewInt(1)}, true}, + {Coin{"๐Ÿฉธ", NewInt(1)}, true}, + {Coin{"๐Ÿงฌ", NewInt(1)}, true}, + {Coin{"๐Ÿฆ ", NewInt(1)}, true}, + {Coin{"๐Ÿงซ", NewInt(1)}, true}, + {Coin{"๐Ÿงช", NewInt(1)}, true}, + {Coin{"๐ŸŒก", NewInt(1)}, true}, + {Coin{"๐Ÿงน", NewInt(1)}, true}, + {Coin{"๐Ÿงบ", NewInt(1)}, true}, + {Coin{"๐Ÿงป", NewInt(1)}, true}, + {Coin{"๐Ÿšฝ", NewInt(1)}, true}, + {Coin{"๐Ÿšฐ", NewInt(1)}, true}, + {Coin{"๐Ÿšฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ›", NewInt(1)}, true}, + {Coin{"๐Ÿ›€", NewInt(1)}, true}, + {Coin{"๐Ÿงผ", NewInt(1)}, true}, + {Coin{"๐Ÿช’", NewInt(1)}, true}, + {Coin{"๐Ÿงฝ", NewInt(1)}, true}, + {Coin{"๐Ÿงด", NewInt(1)}, true}, + {Coin{"๐Ÿ›Ž", NewInt(1)}, true}, + {Coin{"๐Ÿ”‘", NewInt(1)}, true}, + {Coin{"๐Ÿ—", NewInt(1)}, true}, + {Coin{"๐Ÿšช", NewInt(1)}, true}, + {Coin{"๐Ÿช‘", NewInt(1)}, true}, + {Coin{"๐Ÿ›‹", NewInt(1)}, true}, + {Coin{"๐Ÿ›", NewInt(1)}, true}, + {Coin{"๐Ÿ›Œ", NewInt(1)}, true}, + {Coin{"๐Ÿงธ", NewInt(1)}, true}, + {Coin{"๐Ÿ–ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ›", NewInt(1)}, true}, + {Coin{"๐Ÿ›’", NewInt(1)}, true}, + {Coin{"๐ŸŽ", NewInt(1)}, true}, + {Coin{"๐ŸŽˆ", NewInt(1)}, true}, + {Coin{"๐ŸŽ", NewInt(1)}, true}, + {Coin{"๐ŸŽ€", NewInt(1)}, true}, + {Coin{"๐ŸŽŠ", NewInt(1)}, true}, + {Coin{"๐ŸŽ‰", NewInt(1)}, true}, + {Coin{"๐ŸŽŽ", NewInt(1)}, true}, + {Coin{"๐Ÿฎ", NewInt(1)}, true}, + {Coin{"๐ŸŽ", NewInt(1)}, true}, + {Coin{"๐Ÿงง", NewInt(1)}, true}, + {Coin{"โœ‰๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ“จ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ง", NewInt(1)}, true}, + {Coin{"๐Ÿ’Œ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ฅ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ค", NewInt(1)}, true}, + {Coin{"๐Ÿ“ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿท", NewInt(1)}, true}, + {Coin{"๐Ÿ“ช", NewInt(1)}, true}, + {Coin{"๐Ÿ“ซ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ญ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ“œ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ƒ", NewInt(1)}, true}, + {Coin{"๐Ÿ“„", NewInt(1)}, true}, + {Coin{"๐Ÿ“‘", NewInt(1)}, true}, + {Coin{"๐Ÿงพ", NewInt(1)}, true}, + {Coin{"๐Ÿ“Š", NewInt(1)}, true}, + {Coin{"๐Ÿ“ˆ", NewInt(1)}, true}, + {Coin{"๐Ÿ“‰", NewInt(1)}, true}, + {Coin{"๐Ÿ—’", NewInt(1)}, true}, + {Coin{"๐Ÿ—“", NewInt(1)}, true}, + {Coin{"๐Ÿ“†", NewInt(1)}, true}, + {Coin{"๐Ÿ“…", NewInt(1)}, true}, + {Coin{"๐Ÿ—‘", NewInt(1)}, true}, + {Coin{"๐Ÿ“‡", NewInt(1)}, true}, + {Coin{"๐Ÿ—ƒ", NewInt(1)}, true}, + {Coin{"๐Ÿ—ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ—„", NewInt(1)}, true}, + {Coin{"๐Ÿ“‹", NewInt(1)}, true}, + {Coin{"๐Ÿ“", NewInt(1)}, true}, + {Coin{"๐Ÿ“‚", NewInt(1)}, true}, + {Coin{"๐Ÿ—‚", NewInt(1)}, true}, + {Coin{"๐Ÿ—ž", NewInt(1)}, true}, + {Coin{"๐Ÿ“ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ““", NewInt(1)}, true}, + {Coin{"๐Ÿ“”", NewInt(1)}, true}, + {Coin{"๐Ÿ“’", NewInt(1)}, true}, + {Coin{"๐Ÿ“•", NewInt(1)}, true}, + {Coin{"๐Ÿ“—", NewInt(1)}, true}, + {Coin{"๐Ÿ“˜", NewInt(1)}, true}, + {Coin{"๐Ÿ“™", NewInt(1)}, true}, + {Coin{"๐Ÿ“š", NewInt(1)}, true}, + {Coin{"๐Ÿ“–", NewInt(1)}, true}, + {Coin{"๐Ÿ”–", NewInt(1)}, true}, + {Coin{"๐Ÿงท", NewInt(1)}, true}, + {Coin{"๐Ÿ”—", NewInt(1)}, true}, + {Coin{"๐Ÿ“Ž", NewInt(1)}, true}, + {Coin{"๐Ÿ–‡", NewInt(1)}, true}, + {Coin{"๐Ÿ“", NewInt(1)}, true}, + {Coin{"๐Ÿ“", NewInt(1)}, true}, + {Coin{"๐Ÿงฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ“Œ", NewInt(1)}, true}, + {Coin{"๐Ÿ“", NewInt(1)}, true}, + {Coin{"โœ‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ–Š", NewInt(1)}, true}, + {Coin{"๐Ÿ–‹", NewInt(1)}, true}, + {Coin{"โœ’๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ–Œ", NewInt(1)}, true}, + {Coin{"๐Ÿ–", NewInt(1)}, true}, + {Coin{"๐Ÿ“", NewInt(1)}, true}, + {Coin{"โœ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ”", NewInt(1)}, true}, + {Coin{"๐Ÿ”Ž", NewInt(1)}, true}, + {Coin{"๐Ÿ”", NewInt(1)}, true}, + {Coin{"๐Ÿ”", NewInt(1)}, true}, + {Coin{"๐Ÿ”’", NewInt(1)}, true}, + {Coin{"๐Ÿ”“", NewInt(1)}, true}, + {Coin{"โค๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿงก", NewInt(1)}, true}, + {Coin{"๐Ÿ’›", NewInt(1)}, true}, + {Coin{"๐Ÿ’š", NewInt(1)}, true}, + {Coin{"๐Ÿ’™", NewInt(1)}, true}, + {Coin{"๐Ÿ’œ", NewInt(1)}, true}, + {Coin{"๐Ÿ–ค", NewInt(1)}, true}, + {Coin{"๐Ÿค", NewInt(1)}, true}, + {Coin{"๐ŸคŽ", NewInt(1)}, true}, + {Coin{"๐Ÿ’”", NewInt(1)}, true}, + {Coin{"โฃ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’•", NewInt(1)}, true}, + {Coin{"๐Ÿ’ž", NewInt(1)}, true}, + {Coin{"๐Ÿ’“", NewInt(1)}, true}, + {Coin{"๐Ÿ’—", NewInt(1)}, true}, + {Coin{"๐Ÿ’–", NewInt(1)}, true}, + {Coin{"๐Ÿ’˜", NewInt(1)}, true}, + {Coin{"๐Ÿ’", NewInt(1)}, true}, + {Coin{"๐Ÿ’Ÿ", NewInt(1)}, true}, + {Coin{"โ˜ฎ๏ธ", NewInt(1)}, true}, + {Coin{"โœ๏ธ", NewInt(1)}, true}, + {Coin{"โ˜ช๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•‰", NewInt(1)}, true}, + {Coin{"โ˜ธ๏ธ", NewInt(1)}, true}, + {Coin{"โœก๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ•Ž", NewInt(1)}, true}, + {Coin{"โ˜ฏ๏ธ", NewInt(1)}, true}, + {Coin{"โ˜ฆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ›", NewInt(1)}, true}, + {Coin{"โ›Ž", NewInt(1)}, true}, + {Coin{"โ™ˆ๏ธ", NewInt(1)}, true}, + {Coin{"โ™‰๏ธ", NewInt(1)}, true}, + {Coin{"โ™Š๏ธ", NewInt(1)}, true}, + {Coin{"โ™‹๏ธ", NewInt(1)}, true}, + {Coin{"โ™Œ๏ธ", NewInt(1)}, true}, + {Coin{"โ™๏ธ", NewInt(1)}, true}, + {Coin{"โ™Ž๏ธ", NewInt(1)}, true}, + {Coin{"โ™๏ธ", NewInt(1)}, true}, + {Coin{"โ™๏ธ", NewInt(1)}, true}, + {Coin{"โ™‘๏ธ", NewInt(1)}, true}, + {Coin{"โ™’๏ธ", NewInt(1)}, true}, + {Coin{"โ™“๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ†”", NewInt(1)}, true}, + {Coin{"โš›๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‰‘", NewInt(1)}, true}, + {Coin{"โ˜ข๏ธ", NewInt(1)}, true}, + {Coin{"โ˜ฃ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ด", NewInt(1)}, true}, + {Coin{"๐Ÿ“ณ", NewInt(1)}, true}, + {Coin{"๐Ÿˆถ", NewInt(1)}, true}, + {Coin{"๐Ÿˆš๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿˆธ", NewInt(1)}, true}, + {Coin{"๐Ÿˆบ", NewInt(1)}, true}, + {Coin{"๐Ÿˆท๏ธ", NewInt(1)}, true}, + {Coin{"โœด๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ†š", NewInt(1)}, true}, + {Coin{"๐Ÿ’ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ‰", NewInt(1)}, true}, + {Coin{"ใŠ™๏ธ", NewInt(1)}, true}, + {Coin{"ใŠ—๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿˆด", NewInt(1)}, true}, + {Coin{"๐Ÿˆต", NewInt(1)}, true}, + {Coin{"๐Ÿˆน", NewInt(1)}, true}, + {Coin{"๐Ÿˆฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ…ฐ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ…ฑ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ†Ž", NewInt(1)}, true}, + {Coin{"๐Ÿ†‘", NewInt(1)}, true}, + {Coin{"๐Ÿ…พ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ†˜", NewInt(1)}, true}, + {Coin{"โŒ", NewInt(1)}, true}, + {Coin{"โญ•๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ›‘", NewInt(1)}, true}, + {Coin{"โ›”๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ“›", NewInt(1)}, true}, + {Coin{"๐Ÿšซ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ข", NewInt(1)}, true}, + {Coin{"โ™จ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšท", NewInt(1)}, true}, + {Coin{"๐Ÿšฏ", NewInt(1)}, true}, + {Coin{"๐Ÿšณ", NewInt(1)}, true}, + {Coin{"๐Ÿšฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ž", NewInt(1)}, true}, + {Coin{"๐Ÿ“ต", NewInt(1)}, true}, + {Coin{"๐Ÿšญ", NewInt(1)}, true}, + {Coin{"โ—๏ธ", NewInt(1)}, true}, + {Coin{"โ•", NewInt(1)}, true}, + {Coin{"โ“", NewInt(1)}, true}, + {Coin{"โ”", NewInt(1)}, true}, + {Coin{"โ€ผ๏ธ", NewInt(1)}, true}, + {Coin{"โ‰๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ”…", NewInt(1)}, true}, + {Coin{"๐Ÿ”†", NewInt(1)}, true}, + {Coin{"ใ€ฝ๏ธ", NewInt(1)}, true}, + {Coin{"โš ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿšธ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ฑ", NewInt(1)}, true}, + {Coin{"โšœ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ฐ", NewInt(1)}, true}, + {Coin{"โ™ป๏ธ", NewInt(1)}, true}, + {Coin{"โœ…", NewInt(1)}, true}, + {Coin{"๐Ÿˆฏ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ’น", NewInt(1)}, true}, + {Coin{"โ‡๏ธ", NewInt(1)}, true}, + {Coin{"โœณ๏ธ", NewInt(1)}, true}, + {Coin{"โŽ", NewInt(1)}, true}, + {Coin{"๐ŸŒ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ ", NewInt(1)}, true}, + {Coin{"โ“‚๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŒ€", NewInt(1)}, true}, + {Coin{"๐Ÿ’ค", NewInt(1)}, true}, + {Coin{"๐Ÿง", NewInt(1)}, true}, + {Coin{"๐Ÿšพ", NewInt(1)}, true}, + {Coin{"โ™ฟ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ…ฟ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿˆณ", NewInt(1)}, true}, + {Coin{"๐Ÿˆ‚๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ›‚", NewInt(1)}, true}, + {Coin{"๐Ÿ›ƒ", NewInt(1)}, true}, + {Coin{"๐Ÿ›„", NewInt(1)}, true}, + {Coin{"๐Ÿ›…", NewInt(1)}, true}, + {Coin{"๐Ÿšน", NewInt(1)}, true}, + {Coin{"๐Ÿšบ", NewInt(1)}, true}, + {Coin{"๐Ÿšผ", NewInt(1)}, true}, + {Coin{"๐Ÿšป", NewInt(1)}, true}, + {Coin{"๐Ÿšฎ", NewInt(1)}, true}, + {Coin{"๐ŸŽฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ถ", NewInt(1)}, true}, + {Coin{"๐Ÿˆ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ฃ", NewInt(1)}, true}, + {Coin{"โ„น๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ค", NewInt(1)}, true}, + {Coin{"๐Ÿ”ก", NewInt(1)}, true}, + {Coin{"๐Ÿ” ", NewInt(1)}, true}, + {Coin{"๐Ÿ†–", NewInt(1)}, true}, + {Coin{"๐Ÿ†—", NewInt(1)}, true}, + {Coin{"๐Ÿ†™", NewInt(1)}, true}, + {Coin{"๐Ÿ†’", NewInt(1)}, true}, + {Coin{"๐Ÿ†•", NewInt(1)}, true}, + {Coin{"๐Ÿ†“", NewInt(1)}, true}, + {Coin{"0๏ธโƒฃ", NewInt(1)}, true}, + {Coin{"1๏ธโƒฃ", NewInt(1)}, true}, + {Coin{"2๏ธโƒฃ", NewInt(1)}, true}, + {Coin{"3๏ธโƒฃ", NewInt(1)}, true}, + {Coin{"4๏ธโƒฃ", NewInt(1)}, true}, + {Coin{"5๏ธโƒฃ", NewInt(1)}, true}, + {Coin{"6๏ธโƒฃ", NewInt(1)}, true}, + {Coin{"7๏ธโƒฃ", NewInt(1)}, true}, + {Coin{"8๏ธโƒฃ", NewInt(1)}, true}, + {Coin{"9๏ธโƒฃ", NewInt(1)}, true}, + {Coin{"๐Ÿ”Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ข", NewInt(1)}, true}, + {Coin{"#๏ธโƒฃ", NewInt(1)}, true}, + {Coin{"*๏ธโƒฃ", NewInt(1)}, true}, + {Coin{"โ๏ธ", NewInt(1)}, true}, + {Coin{"โ–ถ๏ธ", NewInt(1)}, true}, + {Coin{"โธ", NewInt(1)}, true}, + {Coin{"โฏ", NewInt(1)}, true}, + {Coin{"โน", NewInt(1)}, true}, + {Coin{"โบ", NewInt(1)}, true}, + {Coin{"โญ", NewInt(1)}, true}, + {Coin{"โฎ", NewInt(1)}, true}, + {Coin{"โฉ", NewInt(1)}, true}, + {Coin{"โช", NewInt(1)}, true}, + {Coin{"โซ", NewInt(1)}, true}, + {Coin{"โฌ", NewInt(1)}, true}, + {Coin{"โ—€๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ฝ", NewInt(1)}, true}, + {Coin{"โžก๏ธ", NewInt(1)}, true}, + {Coin{"โฌ…๏ธ", NewInt(1)}, true}, + {Coin{"โฌ†๏ธ", NewInt(1)}, true}, + {Coin{"โฌ‡๏ธ", NewInt(1)}, true}, + {Coin{"โ†—๏ธ", NewInt(1)}, true}, + {Coin{"โ†˜๏ธ", NewInt(1)}, true}, + {Coin{"โ†™๏ธ", NewInt(1)}, true}, + {Coin{"โ†–๏ธ", NewInt(1)}, true}, + {Coin{"โ†•๏ธ", NewInt(1)}, true}, + {Coin{"โ†”๏ธ", NewInt(1)}, true}, + {Coin{"โ†ช๏ธ", NewInt(1)}, true}, + {Coin{"โ†ฉ๏ธ", NewInt(1)}, true}, + {Coin{"โคด๏ธ", NewInt(1)}, true}, + {Coin{"โคต๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ”€", NewInt(1)}, true}, + {Coin{"๐Ÿ”", NewInt(1)}, true}, + {Coin{"๐Ÿ”‚", NewInt(1)}, true}, + {Coin{"๐Ÿ”„", NewInt(1)}, true}, + {Coin{"๐Ÿ”ƒ", NewInt(1)}, true}, + {Coin{"๐ŸŽต", NewInt(1)}, true}, + {Coin{"๐ŸŽถ", NewInt(1)}, true}, + {Coin{"โž•", NewInt(1)}, true}, + {Coin{"โž–", NewInt(1)}, true}, + {Coin{"โž—", NewInt(1)}, true}, + {Coin{"โœ–๏ธ", NewInt(1)}, true}, + {Coin{"โ™พ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ฑ", NewInt(1)}, true}, + {Coin{"โ„ข๏ธ", NewInt(1)}, true}, + {Coin{"ยฉ๏ธ", NewInt(1)}, true}, + {Coin{"ยฎ๏ธ", NewInt(1)}, true}, + {Coin{"ใ€ฐ๏ธ", NewInt(1)}, true}, + {Coin{"โžฐ", NewInt(1)}, true}, + {Coin{"โžฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ”š", NewInt(1)}, true}, + {Coin{"๐Ÿ”™", NewInt(1)}, true}, + {Coin{"๐Ÿ”›", NewInt(1)}, true}, + {Coin{"๐Ÿ”", NewInt(1)}, true}, + {Coin{"๐Ÿ”œ", NewInt(1)}, true}, + {Coin{"โœ”๏ธ", NewInt(1)}, true}, + {Coin{"โ˜‘๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ”˜", NewInt(1)}, true}, + {Coin{"๐Ÿ”ด", NewInt(1)}, true}, + {Coin{"๐ŸŸ ", NewInt(1)}, true}, + {Coin{"๐ŸŸก", NewInt(1)}, true}, + {Coin{"๐ŸŸข", NewInt(1)}, true}, + {Coin{"๐Ÿ”ต", NewInt(1)}, true}, + {Coin{"๐ŸŸฃ", NewInt(1)}, true}, + {Coin{"โšซ๏ธ", NewInt(1)}, true}, + {Coin{"โšช๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŸค", NewInt(1)}, true}, + {Coin{"๐Ÿ”บ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ป", NewInt(1)}, true}, + {Coin{"๐Ÿ”ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ”น", NewInt(1)}, true}, + {Coin{"๐Ÿ”ถ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ท", NewInt(1)}, true}, + {Coin{"๐Ÿ”ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ฒ", NewInt(1)}, true}, + {Coin{"โ–ช๏ธ", NewInt(1)}, true}, + {Coin{"โ–ซ๏ธ", NewInt(1)}, true}, + {Coin{"โ—พ๏ธ", NewInt(1)}, true}, + {Coin{"โ—ฝ๏ธ", NewInt(1)}, true}, + {Coin{"โ—ผ๏ธ", NewInt(1)}, true}, + {Coin{"โ—ป๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŸฅ", NewInt(1)}, true}, + {Coin{"๐ŸŸง", NewInt(1)}, true}, + {Coin{"๐ŸŸจ", NewInt(1)}, true}, + {Coin{"๐ŸŸฉ", NewInt(1)}, true}, + {Coin{"๐ŸŸฆ", NewInt(1)}, true}, + {Coin{"๐ŸŸช", NewInt(1)}, true}, + {Coin{"โฌ›๏ธ", NewInt(1)}, true}, + {Coin{"โฌœ๏ธ", NewInt(1)}, true}, + {Coin{"๐ŸŸซ", NewInt(1)}, true}, + {Coin{"๐Ÿ”ˆ", NewInt(1)}, true}, + {Coin{"๐Ÿ”‡", NewInt(1)}, true}, + {Coin{"๐Ÿ”‰", NewInt(1)}, true}, + {Coin{"๐Ÿ”Š", NewInt(1)}, true}, + {Coin{"๐Ÿ””", NewInt(1)}, true}, + {Coin{"๐Ÿ”•", NewInt(1)}, true}, + {Coin{"๐Ÿ“ฃ", NewInt(1)}, true}, + {Coin{"๐Ÿ“ข", NewInt(1)}, true}, + {Coin{"๐Ÿ‘โ€๐Ÿ—จ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ’ญ", NewInt(1)}, true}, + {Coin{"๐Ÿ—ฏ", NewInt(1)}, true}, + {Coin{"โ™ ๏ธ", NewInt(1)}, true}, + {Coin{"โ™ฃ๏ธ", NewInt(1)}, true}, + {Coin{"โ™ฅ๏ธ", NewInt(1)}, true}, + {Coin{"โ™ฆ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿƒ", NewInt(1)}, true}, + {Coin{"๐ŸŽด", NewInt(1)}, true}, + {Coin{"๐Ÿ€„๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ•", NewInt(1)}, true}, + {Coin{"๐Ÿ•‘", NewInt(1)}, true}, + {Coin{"๐Ÿ•’", NewInt(1)}, true}, + {Coin{"๐Ÿ•“", NewInt(1)}, true}, + {Coin{"๐Ÿ•”", NewInt(1)}, true}, + {Coin{"๐Ÿ••", NewInt(1)}, true}, + {Coin{"๐Ÿ•–", NewInt(1)}, true}, + {Coin{"๐Ÿ•—", NewInt(1)}, true}, + {Coin{"๐Ÿ•˜", NewInt(1)}, true}, + {Coin{"๐Ÿ•™", NewInt(1)}, true}, + {Coin{"๐Ÿ•š", NewInt(1)}, true}, + {Coin{"๐Ÿ•›", NewInt(1)}, true}, + {Coin{"๐Ÿ•œ", NewInt(1)}, true}, + {Coin{"๐Ÿ•", NewInt(1)}, true}, + {Coin{"๐Ÿ•ž", NewInt(1)}, true}, + {Coin{"๐Ÿ•Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿ• ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ก", NewInt(1)}, true}, + {Coin{"๐Ÿ•ข", NewInt(1)}, true}, + {Coin{"๐Ÿ•ฃ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ค", NewInt(1)}, true}, + {Coin{"๐Ÿ•ฅ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ•ง", NewInt(1)}, true}, + {Coin{"๐Ÿณ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿด", NewInt(1)}, true}, + {Coin{"๐Ÿ", NewInt(1)}, true}, + {Coin{"๐Ÿšฉ", NewInt(1)}, true}, + {Coin{"๐Ÿณ๏ธโ€๐ŸŒˆ", NewInt(1)}, true}, + {Coin{"๐Ÿดโ€โ˜ ๏ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡ซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡ฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฉ๐Ÿ‡ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡ด", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡ถ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡บ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡น", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡พ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡น", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ด", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฎ๐Ÿ‡ด", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ป๐Ÿ‡ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฐ๐Ÿ‡ญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฎ๐Ÿ‡จ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ถ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฐ๐Ÿ‡พ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡จ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ด", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฐ๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ญ๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡บ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡พ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฉ๐Ÿ‡ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฉ๐Ÿ‡ฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฉ๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฉ๐Ÿ‡ด", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ช๐Ÿ‡จ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ช๐Ÿ‡ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ถ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ช๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ช๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ช๐Ÿ‡น", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ช๐Ÿ‡บ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ซ๐Ÿ‡ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ซ๐Ÿ‡ด", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ซ๐Ÿ‡ฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ซ๐Ÿ‡ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ซ๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ต๐Ÿ‡ซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡ซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฉ๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ต", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡บ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡น", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡พ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ญ๐Ÿ‡น", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ญ๐Ÿ‡ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ญ๐Ÿ‡ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ญ๐Ÿ‡บ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฎ๐Ÿ‡ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฎ๐Ÿ‡ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฎ๐Ÿ‡ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฎ๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฎ๐Ÿ‡ถ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฎ๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฎ๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฎ๐Ÿ‡ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฎ๐Ÿ‡น", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฏ๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฏ๐Ÿ‡ต", NewInt(1)}, true}, + {Coin{"๐ŸŽŒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฏ๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฏ๐Ÿ‡ด", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฐ๐Ÿ‡ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฐ๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฐ๐Ÿ‡ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฝ๐Ÿ‡ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฐ๐Ÿ‡ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฐ๐Ÿ‡ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฑ๐Ÿ‡ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฑ๐Ÿ‡ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฑ๐Ÿ‡ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฑ๐Ÿ‡ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฑ๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฑ๐Ÿ‡พ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฑ๐Ÿ‡ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฑ๐Ÿ‡น", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฑ๐Ÿ‡บ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ด", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡พ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡น", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ถ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡บ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡พ๐Ÿ‡น", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ซ๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡จ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ณ๐Ÿ‡ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ณ๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ณ๐Ÿ‡ต", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ณ๐Ÿ‡ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ณ๐Ÿ‡จ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ณ๐Ÿ‡ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ณ๐Ÿ‡ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ณ๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ณ๐Ÿ‡ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ณ๐Ÿ‡บ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ณ๐Ÿ‡ซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฐ๐Ÿ‡ต", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฒ๐Ÿ‡ต", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ณ๐Ÿ‡ด", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ด๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ต๐Ÿ‡ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ต๐Ÿ‡ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ต๐Ÿ‡ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ต๐Ÿ‡ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ต๐Ÿ‡ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ต๐Ÿ‡พ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ต๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ต๐Ÿ‡ญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ต๐Ÿ‡ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ต๐Ÿ‡ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ต๐Ÿ‡น", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ต๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ถ๐Ÿ‡ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ท๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ท๐Ÿ‡ด", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ท๐Ÿ‡บ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ท๐Ÿ‡ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ผ๐Ÿ‡ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ท๐Ÿ‡ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡จ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ฝ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ง", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ด", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฟ๐Ÿ‡ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฐ๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ช๐Ÿ‡ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฑ๐Ÿ‡ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ง๐Ÿ‡ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฐ๐Ÿ‡ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฑ๐Ÿ‡จ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ต๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ป๐Ÿ‡จ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ฉ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡จ๐Ÿ‡ญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ธ๐Ÿ‡พ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡ผ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡ฏ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡ญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡ฑ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡ฐ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡ด", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡น", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡ท", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡จ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡น๐Ÿ‡ป", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ป๐Ÿ‡ฎ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡บ๐Ÿ‡ฌ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡บ๐Ÿ‡ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฆ๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฌ๐Ÿ‡ง", NewInt(1)}, true}, + {Coin{"๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡บ๐Ÿ‡ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡บ๐Ÿ‡ธ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡บ๐Ÿ‡พ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡บ๐Ÿ‡ฟ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ป๐Ÿ‡บ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ป๐Ÿ‡ฆ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ป๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ป๐Ÿ‡ณ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ผ๐Ÿ‡ซ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ช๐Ÿ‡ญ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡พ๐Ÿ‡ช", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฟ๐Ÿ‡ฒ", NewInt(1)}, true}, + {Coin{"๐Ÿ‡ฟ๐Ÿ‡ผ", NewInt(1)}, true}, +} + +var reDnmString_ string = `[a-z][a-z0-9]{2,15}|(?:\x{1F469}\x{200D}\x{2764}\x{FE0F}\x{200D}\x{1F48B}\x{200D}\x{1F468})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{2764}\x{FE0F}\x{200D}\x{1F48B}\x{200D}[\x{1F468}-\x{1F469}])|(?:\x{1F9D1}\x{1F3FB}\x{200D}\x{1F91D}\x{200D}\x{1F9D1}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9D1}\x{1F3FC}\x{200D}\x{1F91D}\x{200D}\x{1F9D1}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9D1}\x{1F3FD}\x{200D}\x{1F91D}\x{200D}\x{1F9D1}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9D1}\x{1F3FE}\x{200D}\x{1F91D}\x{200D}\x{1F9D1}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9D1}\x{1F3FF}\x{200D}\x{1F91D}\x{200D}\x{1F9D1}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F469}\x{1F3FB}\x{200D}\x{1F91D}\x{200D}\x{1F469}[\x{1F3FC}-\x{1F3FF}])|(?:\x{1F469}\x{1F3FC}\x{200D}\x{1F91D}\x{200D}\x{1F469}\x{1F3FB})|(?:\x{1F469}\x{1F3FC}\x{200D}\x{1F91D}\x{200D}\x{1F469}[\x{1F3FD}-\x{1F3FF}])|(?:\x{1F469}\x{1F3FD}\x{200D}\x{1F91D}\x{200D}\x{1F469}[\x{1F3FB}-\x{1F3FC}])|(?:\x{1F469}\x{1F3FD}\x{200D}\x{1F91D}\x{200D}\x{1F469}[\x{1F3FE}-\x{1F3FF}])|(?:\x{1F469}\x{1F3FE}\x{200D}\x{1F91D}\x{200D}\x{1F469}[\x{1F3FB}-\x{1F3FD}])|(?:\x{1F469}\x{1F3FE}\x{200D}\x{1F91D}\x{200D}\x{1F469}\x{1F3FF})|(?:\x{1F469}\x{1F3FF}\x{200D}\x{1F91D}\x{200D}\x{1F469}[\x{1F3FB}-\x{1F3FE}])|(?:\x{1F469}\x{1F3FB}\x{200D}\x{1F91D}\x{200D}\x{1F468}[\x{1F3FC}-\x{1F3FF}])|(?:\x{1F469}\x{1F3FC}\x{200D}\x{1F91D}\x{200D}\x{1F468}\x{1F3FB})|(?:\x{1F469}\x{1F3FC}\x{200D}\x{1F91D}\x{200D}\x{1F468}[\x{1F3FD}-\x{1F3FF}])|(?:\x{1F469}\x{1F3FD}\x{200D}\x{1F91D}\x{200D}\x{1F468}[\x{1F3FB}-\x{1F3FC}])|(?:\x{1F469}\x{1F3FD}\x{200D}\x{1F91D}\x{200D}\x{1F468}[\x{1F3FE}-\x{1F3FF}])|(?:\x{1F469}\x{1F3FE}\x{200D}\x{1F91D}\x{200D}\x{1F468}[\x{1F3FB}-\x{1F3FD}])|(?:\x{1F469}\x{1F3FE}\x{200D}\x{1F91D}\x{200D}\x{1F468}\x{1F3FF})|(?:\x{1F469}\x{1F3FF}\x{200D}\x{1F91D}\x{200D}\x{1F468}[\x{1F3FB}-\x{1F3FE}])|(?:\x{1F468}\x{1F3FB}\x{200D}\x{1F91D}\x{200D}\x{1F468}[\x{1F3FC}-\x{1F3FF}])|(?:\x{1F468}\x{1F3FC}\x{200D}\x{1F91D}\x{200D}\x{1F468}\x{1F3FB})|(?:\x{1F468}\x{1F3FC}\x{200D}\x{1F91D}\x{200D}\x{1F468}[\x{1F3FD}-\x{1F3FF}])|(?:\x{1F468}\x{1F3FD}\x{200D}\x{1F91D}\x{200D}\x{1F468}[\x{1F3FB}-\x{1F3FC}])|(?:\x{1F468}\x{1F3FD}\x{200D}\x{1F91D}\x{200D}\x{1F468}[\x{1F3FE}-\x{1F3FF}])|(?:\x{1F468}\x{1F3FE}\x{200D}\x{1F91D}\x{200D}\x{1F468}[\x{1F3FB}-\x{1F3FD}])|(?:\x{1F468}\x{1F3FE}\x{200D}\x{1F91D}\x{200D}\x{1F468}\x{1F3FF})|(?:\x{1F468}\x{1F3FF}\x{200D}\x{1F91D}\x{200D}\x{1F468}[\x{1F3FB}-\x{1F3FE}])|(?:\x{1F469}\x{200D}\x{2764}\x{200D}\x{1F48B}\x{200D}\x{1F468})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{2764}\x{200D}\x{1F48B}\x{200D}[\x{1F468}-\x{1F469}])|(?:\x{1F468}\x{200D}\x{1F469}\x{200D}\x{1F467}\x{200D}\x{1F466})|(?:\x{1F468}\x{200D}\x{1F469}\x{200D}[\x{1F466}-\x{1F467}]\x{200D}[\x{1F466}-\x{1F467}])|(?:\x{1F468}\x{200D}\x{1F468}\x{200D}\x{1F467}\x{200D}\x{1F466})|(?:\x{1F468}\x{200D}\x{1F468}\x{200D}[\x{1F466}-\x{1F467}]\x{200D}[\x{1F466}-\x{1F467}])|(?:\x{1F469}\x{200D}\x{1F469}\x{200D}\x{1F467}\x{200D}\x{1F466})|(?:\x{1F469}\x{200D}\x{1F469}\x{200D}[\x{1F466}-\x{1F467}]\x{200D}[\x{1F466}-\x{1F467}])|(?:\x{1F3F4}\x{E0067}\x{E0062}\x{E0065}\x{E006E}\x{E0067}\x{E007F})|(?:\x{1F3F4}\x{E0067}\x{E0062}\x{E0073}\x{E0063}\x{E0074}\x{E007F})|(?:\x{1F3F4}\x{E0067}\x{E0062}\x{E0077}\x{E006C}\x{E0073}\x{E007F})|(?:\x{1F469}\x{200D}\x{2764}\x{FE0F}\x{200D}\x{1F468})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{2764}\x{FE0F}\x{200D}[\x{1F468}-\x{1F469}])|(?:\x{1F441}\x{FE0F}\x{200D}\x{1F5E8}\x{FE0F})|(?:\x{1F471}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F471}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F64D}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F64D}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F64E}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F64E}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F645}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F645}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F646}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F646}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F481}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F481}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F64B}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F64B}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9CF}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9CF}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F647}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F647}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F926}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F926}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F937}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F937}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2695}\x{FE0F})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2695}\x{FE0F})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2695}\x{FE0F})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2696}\x{FE0F})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2696}\x{FE0F})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2696}\x{FE0F})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2708}\x{FE0F})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2708}\x{FE0F})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2708}\x{FE0F})|(?:\x{1F46E}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F46E}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F575}\x{FE0F}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F575}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F575}\x{FE0F}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F575}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F482}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F482}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F477}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F477}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F473}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F473}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9B8}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9B8}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9B9}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9B9}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9D9}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9D9}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9DA}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9DA}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9DB}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9DB}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9DC}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9DC}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9DD}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9DD}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F486}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F486}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F487}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F487}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F6B6}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F6B6}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9CD}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9CD}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9CE}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9CE}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F3C3}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F3C3}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9D6}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9D6}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9D7}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9D7}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F3CC}\x{FE0F}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F3CC}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F3CC}\x{FE0F}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F3CC}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F3C4}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F3C4}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F6A3}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F6A3}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F3CA}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F3CA}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{26F9}\x{FE0F}\x{200D}\x{2642}\x{FE0F})|(?:\x{26F9}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{26F9}\x{FE0F}\x{200D}\x{2640}\x{FE0F})|(?:\x{26F9}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F3CB}\x{FE0F}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F3CB}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F3CB}\x{FE0F}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F3CB}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F6B4}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F6B4}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F6B5}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F6B5}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F938}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F938}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F93D}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F93D}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F93E}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F93E}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F939}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F939}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9D8}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9D8}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9D1}\x{200D}\x{1F91D}\x{200D}\x{1F9D1})|(?:\x{1F469}\x{200D}\x{2764}\x{200D}\x{1F468})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{2764}\x{200D}[\x{1F468}-\x{1F469}])|(?:\x{1F468}\x{200D}\x{1F469}\x{200D}[\x{1F466}-\x{1F467}])|(?:\x{1F468}\x{200D}\x{1F468}\x{200D}[\x{1F466}-\x{1F467}])|(?:\x{1F469}\x{200D}\x{1F469}\x{200D}[\x{1F466}-\x{1F467}])|(?:\x{1F468}\x{200D}[\x{1F466}-\x{1F467}]\x{200D}\x{1F466})|(?:\x{1F468}\x{200D}\x{1F467}\x{200D}\x{1F467})|(?:\x{1F469}\x{200D}[\x{1F466}-\x{1F467}]\x{200D}\x{1F466})|(?:\x{1F469}\x{200D}\x{1F467}\x{200D}\x{1F467})|(?:\x{1F441}\x{200D}\x{1F5E8}\x{FE0F})|(?:\x{1F441}\x{FE0F}\x{200D}\x{1F5E8})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9B0})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9B1})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9B3})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9B2})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9B0})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9B0})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9B1})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9B1})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9B3})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9B3})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9B2})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9B2})|(?:\x{1F471}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F471}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F471}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F471}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F64D}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F64D}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F64D}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F64D}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F64E}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F64E}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F64E}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F64E}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F645}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F645}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F645}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F645}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F646}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F646}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F646}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F646}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F481}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F481}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F481}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F481}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F64B}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F64B}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F64B}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F64B}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9CF}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9CF}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F9CF}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9CF}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F647}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F647}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F647}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F647}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F926}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F926}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F926}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F926}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F937}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F937}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F937}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F937}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9D1}\x{200D}\x{2695}\x{FE0F})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2695})|(?:\x{1F468}\x{200D}\x{2695}\x{FE0F})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2695})|(?:\x{1F469}\x{200D}\x{2695}\x{FE0F})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2695})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F393})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F393})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F393})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F3EB})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F3EB})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F3EB})|(?:\x{1F9D1}\x{200D}\x{2696}\x{FE0F})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2696})|(?:\x{1F468}\x{200D}\x{2696}\x{FE0F})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2696})|(?:\x{1F469}\x{200D}\x{2696}\x{FE0F})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2696})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F33E})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F33E})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F33E})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F373})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F373})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F373})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F527})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F527})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F527})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F3ED})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F3ED})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F3ED})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F4BC})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F4BC})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F4BC})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F52C})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F52C})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F52C})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F4BB})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F4BB})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F4BB})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F3A4})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F3A4})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F3A4})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F3A8})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F3A8})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F3A8})|(?:\x{1F9D1}\x{200D}\x{2708}\x{FE0F})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2708})|(?:\x{1F468}\x{200D}\x{2708}\x{FE0F})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2708})|(?:\x{1F469}\x{200D}\x{2708}\x{FE0F})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2708})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F680})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F680})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F680})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F692})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F692})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F692})|(?:\x{1F46E}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F46E}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F46E}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F46E}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F575}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F575}\x{FE0F}\x{200D}\x{2642})|(?:\x{1F575}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F575}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F575}\x{FE0F}\x{200D}\x{2640})|(?:\x{1F575}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F482}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F482}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F482}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F482}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F477}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F477}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F477}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F477}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F473}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F473}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F473}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F473}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9B8}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9B8}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F9B8}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9B8}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9B9}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9B9}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F9B9}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9B9}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9D9}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9D9}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F9D9}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9D9}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9DA}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9DA}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F9DA}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9DA}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9DB}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9DB}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F9DB}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9DB}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9DC}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9DC}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F9DC}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9DC}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9DD}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9DD}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F9DD}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9DD}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9DE}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9DE}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9DF}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9DF}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F486}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F486}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F486}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F486}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F487}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F487}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F487}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F487}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F6B6}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F6B6}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F6B6}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F6B6}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9CD}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9CD}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F9CD}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9CD}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9CE}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9CE}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F9CE}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9CE}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9AF})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9AF})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9AF})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9BC})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9BC})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9BC})|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9BD})|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9BD})|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{1F9BD})|(?:\x{1F3C3}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F3C3}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F3C3}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F3C3}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F46F}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F46F}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9D6}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9D6}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F9D6}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9D6}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9D7}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9D7}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F9D7}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9D7}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F3CC}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F3CC}\x{FE0F}\x{200D}\x{2642})|(?:\x{1F3CC}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F3CC}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F3CC}\x{FE0F}\x{200D}\x{2640})|(?:\x{1F3CC}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F3C4}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F3C4}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F3C4}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F3C4}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F6A3}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F6A3}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F6A3}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F6A3}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F3CA}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F3CA}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F3CA}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F3CA}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{26F9}\x{200D}\x{2642}\x{FE0F})|(?:\x{26F9}\x{FE0F}\x{200D}\x{2642})|(?:\x{26F9}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{26F9}\x{200D}\x{2640}\x{FE0F})|(?:\x{26F9}\x{FE0F}\x{200D}\x{2640})|(?:\x{26F9}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F3CB}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F3CB}\x{FE0F}\x{200D}\x{2642})|(?:\x{1F3CB}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F3CB}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F3CB}\x{FE0F}\x{200D}\x{2640})|(?:\x{1F3CB}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F6B4}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F6B4}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F6B4}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F6B4}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F6B5}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F6B5}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F6B5}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F6B5}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F938}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F938}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F938}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F938}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F93C}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F93C}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F93D}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F93D}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F93D}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F93D}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F93E}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F93E}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F93E}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F93E}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F939}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F939}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F939}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F939}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F9D8}\x{200D}\x{2642}\x{FE0F})|(?:\x{1F9D8}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2642})|(?:\x{1F9D8}\x{200D}\x{2640}\x{FE0F})|(?:\x{1F9D8}[\x{1F3FB}-\x{1F3FF}]\x{200D}\x{2640})|(?:\x{1F3F3}\x{FE0F}\x{200D}\x{1F308})|(?:\x{1F3F4}\x{200D}\x{2620}\x{FE0F})|(?:\x{1F441}\x{200D}\x{1F5E8})|(?:\x{1F468}\x{200D}[\x{1F9B0}-\x{1F9B1}])|(?:\x{1F468}\x{200D}\x{1F9B3})|(?:\x{1F468}\x{200D}\x{1F9B2})|(?:\x{1F469}\x{200D}\x{1F9B0})|(?:\x{1F9D1}\x{200D}\x{1F9B0})|(?:\x{1F469}\x{200D}\x{1F9B1})|(?:\x{1F9D1}\x{200D}\x{1F9B1})|(?:\x{1F469}\x{200D}\x{1F9B3})|(?:\x{1F9D1}\x{200D}\x{1F9B3})|(?:\x{1F469}\x{200D}\x{1F9B2})|(?:\x{1F9D1}\x{200D}\x{1F9B2})|(?:\x{1F471}\x{200D}\x{2640})|(?:\x{1F471}\x{200D}\x{2642})|(?:\x{1F64D}\x{200D}\x{2642})|(?:\x{1F64D}\x{200D}\x{2640})|(?:\x{1F64E}\x{200D}\x{2642})|(?:\x{1F64E}\x{200D}\x{2640})|(?:\x{1F645}\x{200D}\x{2642})|(?:\x{1F645}\x{200D}\x{2640})|(?:\x{1F646}\x{200D}\x{2642})|(?:\x{1F646}\x{200D}\x{2640})|(?:\x{1F481}\x{200D}\x{2642})|(?:\x{1F481}\x{200D}\x{2640})|(?:\x{1F64B}\x{200D}\x{2642})|(?:\x{1F64B}\x{200D}\x{2640})|(?:\x{1F9CF}\x{200D}\x{2642})|(?:\x{1F9CF}\x{200D}\x{2640})|(?:\x{1F647}\x{200D}\x{2642})|(?:\x{1F647}\x{200D}\x{2640})|(?:\x{1F926}\x{200D}\x{2642})|(?:\x{1F926}\x{200D}\x{2640})|(?:\x{1F937}\x{200D}\x{2642})|(?:\x{1F937}\x{200D}\x{2640})|(?:\x{1F9D1}\x{200D}\x{2695})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{2695})|(?:\x{1F9D1}\x{200D}\x{1F393})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F393})|(?:\x{1F9D1}\x{200D}\x{1F3EB})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F3EB})|(?:\x{1F9D1}\x{200D}\x{2696})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{2696})|(?:\x{1F9D1}\x{200D}\x{1F33E})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F33E})|(?:\x{1F9D1}\x{200D}\x{1F373})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F373})|(?:\x{1F9D1}\x{200D}\x{1F527})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F527})|(?:\x{1F9D1}\x{200D}\x{1F3ED})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F3ED})|(?:\x{1F9D1}\x{200D}\x{1F4BC})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F4BC})|(?:\x{1F9D1}\x{200D}\x{1F52C})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F52C})|(?:\x{1F9D1}\x{200D}\x{1F4BB})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F4BB})|(?:\x{1F9D1}\x{200D}\x{1F3A4})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F3A4})|(?:\x{1F9D1}\x{200D}\x{1F3A8})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F3A8})|(?:\x{1F9D1}\x{200D}\x{2708})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{2708})|(?:\x{1F9D1}\x{200D}\x{1F680})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F680})|(?:\x{1F9D1}\x{200D}\x{1F692})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F692})|(?:\x{1F46E}\x{200D}\x{2642})|(?:\x{1F46E}\x{200D}\x{2640})|(?:\x{1F575}\x{200D}\x{2642})|(?:\x{1F575}\x{200D}\x{2640})|(?:\x{1F482}\x{200D}\x{2642})|(?:\x{1F482}\x{200D}\x{2640})|(?:\x{1F477}\x{200D}\x{2642})|(?:\x{1F477}\x{200D}\x{2640})|(?:\x{1F473}\x{200D}\x{2642})|(?:\x{1F473}\x{200D}\x{2640})|(?:\x{1F9B8}\x{200D}\x{2642})|(?:\x{1F9B8}\x{200D}\x{2640})|(?:\x{1F9B9}\x{200D}\x{2642})|(?:\x{1F9B9}\x{200D}\x{2640})|(?:\x{1F9D9}\x{200D}\x{2642})|(?:\x{1F9D9}\x{200D}\x{2640})|(?:\x{1F9DA}\x{200D}\x{2642})|(?:\x{1F9DA}\x{200D}\x{2640})|(?:\x{1F9DB}\x{200D}\x{2642})|(?:\x{1F9DB}\x{200D}\x{2640})|(?:\x{1F9DC}\x{200D}\x{2642})|(?:\x{1F9DC}\x{200D}\x{2640})|(?:\x{1F9DD}\x{200D}\x{2642})|(?:\x{1F9DD}\x{200D}\x{2640})|(?:\x{1F9DE}\x{200D}\x{2642})|(?:\x{1F9DE}\x{200D}\x{2640})|(?:\x{1F9DF}\x{200D}\x{2642})|(?:\x{1F9DF}\x{200D}\x{2640})|(?:\x{1F486}\x{200D}\x{2642})|(?:\x{1F486}\x{200D}\x{2640})|(?:\x{1F487}\x{200D}\x{2642})|(?:\x{1F487}\x{200D}\x{2640})|(?:\x{1F6B6}\x{200D}\x{2642})|(?:\x{1F6B6}\x{200D}\x{2640})|(?:\x{1F9CD}\x{200D}\x{2642})|(?:\x{1F9CD}\x{200D}\x{2640})|(?:\x{1F9CE}\x{200D}\x{2642})|(?:\x{1F9CE}\x{200D}\x{2640})|(?:\x{1F9D1}\x{200D}\x{1F9AF})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F9AF})|(?:\x{1F9D1}\x{200D}\x{1F9BC})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F9BC})|(?:\x{1F9D1}\x{200D}\x{1F9BD})|(?:[\x{1F468}-\x{1F469}]\x{200D}\x{1F9BD})|(?:\x{1F3C3}\x{200D}\x{2642})|(?:\x{1F3C3}\x{200D}\x{2640})|(?:\x{1F46F}\x{200D}\x{2642})|(?:\x{1F46F}\x{200D}\x{2640})|(?:\x{1F9D6}\x{200D}\x{2642})|(?:\x{1F9D6}\x{200D}\x{2640})|(?:\x{1F9D7}\x{200D}\x{2642})|(?:\x{1F9D7}\x{200D}\x{2640})|(?:\x{1F3CC}\x{200D}\x{2642})|(?:\x{1F3CC}\x{200D}\x{2640})|(?:\x{1F3C4}\x{200D}\x{2642})|(?:\x{1F3C4}\x{200D}\x{2640})|(?:\x{1F6A3}\x{200D}\x{2642})|(?:\x{1F6A3}\x{200D}\x{2640})|(?:\x{1F3CA}\x{200D}\x{2642})|(?:\x{1F3CA}\x{200D}\x{2640})|(?:\x{26F9}\x{200D}\x{2642})|(?:\x{26F9}\x{200D}\x{2640})|(?:\x{1F3CB}\x{200D}\x{2642})|(?:\x{1F3CB}\x{200D}\x{2640})|(?:\x{1F6B4}\x{200D}\x{2642})|(?:\x{1F6B4}\x{200D}\x{2640})|(?:\x{1F6B5}\x{200D}\x{2642})|(?:\x{1F6B5}\x{200D}\x{2640})|(?:\x{1F938}\x{200D}\x{2642})|(?:\x{1F938}\x{200D}\x{2640})|(?:\x{1F93C}\x{200D}\x{2642})|(?:\x{1F93C}\x{200D}\x{2640})|(?:\x{1F93D}\x{200D}\x{2642})|(?:\x{1F93D}\x{200D}\x{2640})|(?:\x{1F93E}\x{200D}\x{2642})|(?:\x{1F93E}\x{200D}\x{2640})|(?:\x{1F939}\x{200D}\x{2642})|(?:\x{1F939}\x{200D}\x{2640})|(?:\x{1F9D8}\x{200D}\x{2642})|(?:\x{1F9D8}\x{200D}\x{2640})|(?:\x{1F468}\x{200D}[\x{1F466}-\x{1F467}])|(?:\x{1F469}\x{200D}[\x{1F466}-\x{1F467}])|(?:\x{1F415}\x{200D}\x{1F9BA})|(?:\x{0023}\x{FE0F}\x{20E3})|(?:\x{002A}\x{FE0F}\x{20E3})|(?:[\x{0030}-\x{0039}]\x{FE0F}\x{20E3})|(?:\x{1F3F3}\x{200D}\x{1F308})|(?:\x{1F3F4}\x{200D}\x{2620})|(?:\x{263A}\x{FE0F})|(?:\x{2639}\x{FE0F})|(?:\x{2620}\x{FE0F})|(?:[\x{2763}-\x{2764}]\x{FE0F})|(?:\x{1F573}\x{FE0F})|(?:\x{1F5E8}\x{FE0F})|(?:\x{1F5EF}\x{FE0F})|(?:\x{1F44B}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F91A}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F590}\x{FE0F})|(?:\x{1F590}[\x{1F3FB}-\x{1F3FF}])|(?:\x{270B}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F596}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F44C}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F90F}[\x{1F3FB}-\x{1F3FF}])|(?:\x{270C}\x{FE0F})|(?:\x{270C}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F91E}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F91F}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F918}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F919}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F448}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F449}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F446}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F595}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F447}[\x{1F3FB}-\x{1F3FF}])|(?:\x{261D}\x{FE0F})|(?:\x{261D}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F44D}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F44E}[\x{1F3FB}-\x{1F3FF}])|(?:\x{270A}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F44A}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F91B}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F91C}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F44F}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F64C}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F450}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F932}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F64F}[\x{1F3FB}-\x{1F3FF}])|(?:\x{270D}\x{FE0F})|(?:\x{270D}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F485}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F933}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F4AA}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9B5}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9B6}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F442}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9BB}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F443}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F441}\x{FE0F})|(?:\x{1F476}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9D2}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F466}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F467}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9D1}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F471}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F468}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9D4}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F469}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9D3}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F474}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F475}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F64D}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F64E}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F645}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F646}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F481}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F64B}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9CF}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F647}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F926}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F937}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F46E}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F575}\x{FE0F})|(?:\x{1F575}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F482}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F477}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F934}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F478}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F473}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F472}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9D5}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F935}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F470}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F930}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F931}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F47C}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F385}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F936}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9B8}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9B9}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9D9}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9DA}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9DB}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9DC}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9DD}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F486}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F487}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F6B6}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9CD}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9CE}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F3C3}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F483}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F57A}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F574}\x{FE0F})|(?:\x{1F574}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9D6}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9D7}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F3C7}[\x{1F3FB}-\x{1F3FF}])|(?:\x{26F7}\x{FE0F})|(?:\x{1F3C2}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F3CC}\x{FE0F})|(?:\x{1F3CC}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F3C4}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F6A3}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F3CA}[\x{1F3FB}-\x{1F3FF}])|(?:\x{26F9}\x{FE0F})|(?:\x{26F9}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F3CB}\x{FE0F})|(?:\x{1F3CB}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F6B4}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F6B5}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F938}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F93D}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F93E}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F939}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F9D8}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F6C0}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F6CC}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F46D}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F46B}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F46C}[\x{1F3FB}-\x{1F3FF}])|(?:\x{1F5E3}\x{FE0F})|(?:\x{1F43F}\x{FE0F})|(?:\x{1F54A}\x{FE0F})|(?:[\x{1F577}-\x{1F578}]\x{FE0F})|(?:\x{1F3F5}\x{FE0F})|(?:\x{2618}\x{FE0F})|(?:\x{1F336}\x{FE0F})|(?:\x{1F37D}\x{FE0F})|(?:\x{1F5FA}\x{FE0F})|(?:\x{1F3D4}\x{FE0F})|(?:\x{26F0}\x{FE0F})|(?:[\x{1F3D5}-\x{1F3D6}]\x{FE0F})|(?:[\x{1F3DC}-\x{1F3DF}]\x{FE0F})|(?:\x{1F3DB}\x{FE0F})|(?:[\x{1F3D7}-\x{1F3D8}]\x{FE0F})|(?:\x{1F3DA}\x{FE0F})|(?:\x{26E9}\x{FE0F})|(?:\x{1F3D9}\x{FE0F})|(?:\x{2668}\x{FE0F})|(?:\x{1F3CE}\x{FE0F})|(?:\x{1F3CD}\x{FE0F})|(?:[\x{1F6E3}-\x{1F6E4}]\x{FE0F})|(?:\x{1F6E2}\x{FE0F})|(?:\x{1F6F3}\x{FE0F})|(?:\x{26F4}\x{FE0F})|(?:\x{1F6E5}\x{FE0F})|(?:\x{2708}\x{FE0F})|(?:\x{1F6E9}\x{FE0F})|(?:\x{1F6F0}\x{FE0F})|(?:\x{1F6CE}\x{FE0F})|(?:[\x{23F1}-\x{23F2}]\x{FE0F})|(?:\x{1F570}\x{FE0F})|(?:\x{1F321}\x{FE0F})|(?:[\x{2600}-\x{2601}]\x{FE0F})|(?:\x{26C8}\x{FE0F})|(?:[\x{1F324}-\x{1F32C}]\x{FE0F})|(?:\x{2602}\x{FE0F})|(?:\x{26F1}\x{FE0F})|(?:\x{2744}\x{FE0F})|(?:[\x{2603}-\x{2604}]\x{FE0F})|(?:\x{1F397}\x{FE0F})|(?:\x{1F39F}\x{FE0F})|(?:\x{1F396}\x{FE0F})|(?:\x{26F8}\x{FE0F})|(?:\x{1F579}\x{FE0F})|(?:\x{2660}\x{FE0F})|(?:[\x{2665}-\x{2666}]\x{FE0F})|(?:\x{2663}\x{FE0F})|(?:\x{265F}\x{FE0F})|(?:\x{1F5BC}\x{FE0F})|(?:\x{1F576}\x{FE0F})|(?:\x{1F6CD}\x{FE0F})|(?:\x{26D1}\x{FE0F})|(?:[\x{1F399}-\x{1F39B}]\x{FE0F})|(?:\x{260E}\x{FE0F})|(?:\x{1F5A5}\x{FE0F})|(?:\x{1F5A8}\x{FE0F})|(?:\x{2328}\x{FE0F})|(?:[\x{1F5B1}-\x{1F5B2}]\x{FE0F})|(?:\x{1F39E}\x{FE0F})|(?:\x{1F4FD}\x{FE0F})|(?:\x{1F56F}\x{FE0F})|(?:\x{1F5DE}\x{FE0F})|(?:\x{1F3F7}\x{FE0F})|(?:\x{2709}\x{FE0F})|(?:\x{1F5F3}\x{FE0F})|(?:\x{270F}\x{FE0F})|(?:\x{2712}\x{FE0F})|(?:\x{1F58B}\x{FE0F})|(?:\x{1F58A}\x{FE0F})|(?:[\x{1F58C}-\x{1F58D}]\x{FE0F})|(?:\x{1F5C2}\x{FE0F})|(?:[\x{1F5D2}-\x{1F5D3}]\x{FE0F})|(?:\x{1F587}\x{FE0F})|(?:\x{2702}\x{FE0F})|(?:[\x{1F5C3}-\x{1F5C4}]\x{FE0F})|(?:\x{1F5D1}\x{FE0F})|(?:\x{1F5DD}\x{FE0F})|(?:\x{26CF}\x{FE0F})|(?:\x{2692}\x{FE0F})|(?:\x{1F6E0}\x{FE0F})|(?:\x{1F5E1}\x{FE0F})|(?:\x{2694}\x{FE0F})|(?:\x{1F6E1}\x{FE0F})|(?:\x{2699}\x{FE0F})|(?:\x{1F5DC}\x{FE0F})|(?:\x{2696}\x{FE0F})|(?:\x{26D3}\x{FE0F})|(?:\x{2697}\x{FE0F})|(?:\x{1F6CF}\x{FE0F})|(?:\x{1F6CB}\x{FE0F})|(?:[\x{26B0}-\x{26B1}]\x{FE0F})|(?:\x{26A0}\x{FE0F})|(?:[\x{2622}-\x{2623}]\x{FE0F})|(?:\x{2B06}\x{FE0F})|(?:\x{2197}\x{FE0F})|(?:\x{27A1}\x{FE0F})|(?:\x{2198}\x{FE0F})|(?:\x{2B07}\x{FE0F})|(?:\x{2199}\x{FE0F})|(?:\x{2B05}\x{FE0F})|(?:\x{2196}\x{FE0F})|(?:\x{2195}\x{FE0F})|(?:\x{2194}\x{FE0F})|(?:[\x{21A9}-\x{21AA}]\x{FE0F})|(?:[\x{2934}-\x{2935}]\x{FE0F})|(?:\x{269B}\x{FE0F})|(?:\x{1F549}\x{FE0F})|(?:\x{2721}\x{FE0F})|(?:\x{2638}\x{FE0F})|(?:\x{262F}\x{FE0F})|(?:\x{271D}\x{FE0F})|(?:\x{2626}\x{FE0F})|(?:\x{262A}\x{FE0F})|(?:\x{262E}\x{FE0F})|(?:\x{25B6}\x{FE0F})|(?:\x{23ED}\x{FE0F})|(?:\x{23EF}\x{FE0F})|(?:\x{25C0}\x{FE0F})|(?:\x{23EE}\x{FE0F})|(?:[\x{23F8}-\x{23FA}]\x{FE0F})|(?:\x{23CF}\x{FE0F})|(?:\x{2640}\x{FE0F})|(?:\x{2642}\x{FE0F})|(?:\x{2695}\x{FE0F})|(?:\x{267E}\x{FE0F})|(?:\x{267B}\x{FE0F})|(?:\x{269C}\x{FE0F})|(?:\x{2611}\x{FE0F})|(?:\x{2714}\x{FE0F})|(?:\x{2716}\x{FE0F})|(?:\x{303D}\x{FE0F})|(?:[\x{2733}-\x{2734}]\x{FE0F})|(?:\x{2747}\x{FE0F})|(?:\x{203C}\x{FE0F})|(?:\x{2049}\x{FE0F})|(?:\x{3030}\x{FE0F})|(?:\x{00A9}\x{FE0F})|(?:\x{00AE}\x{FE0F})|(?:\x{2122}\x{FE0F})|(?:\x{0023}\x{20E3})|(?:\x{002A}\x{20E3})|(?:[\x{0030}-\x{0039}]\x{20E3})|(?:[\x{1F170}-\x{1F171}]\x{FE0F})|(?:\x{2139}\x{FE0F})|(?:\x{24C2}\x{FE0F})|(?:[\x{1F17E}-\x{1F17F}]\x{FE0F})|(?:\x{1F202}\x{FE0F})|(?:\x{1F237}\x{FE0F})|(?:\x{3297}\x{FE0F})|(?:\x{3299}\x{FE0F})|(?:\x{25FC}\x{FE0F})|(?:\x{25FB}\x{FE0F})|(?:[\x{25AA}-\x{25AB}]\x{FE0F})|(?:\x{1F3F3}\x{FE0F})|(?:\x{1F1E6}[\x{1F1E8}-\x{1F1EC}])|(?:\x{1F1E6}\x{1F1EE})|(?:\x{1F1E6}[\x{1F1F1}-\x{1F1F2}])|(?:\x{1F1E6}\x{1F1F4})|(?:\x{1F1E6}[\x{1F1F6}-\x{1F1FA}])|(?:\x{1F1E6}[\x{1F1FC}-\x{1F1FD}])|(?:\x{1F1E6}\x{1F1FF})|(?:\x{1F1E7}[\x{1F1E6}-\x{1F1E7}])|(?:\x{1F1E7}[\x{1F1E9}-\x{1F1EF}])|(?:\x{1F1E7}[\x{1F1F1}-\x{1F1F4}])|(?:\x{1F1E7}[\x{1F1F6}-\x{1F1F9}])|(?:\x{1F1E7}[\x{1F1FB}-\x{1F1FC}])|(?:\x{1F1E7}[\x{1F1FE}-\x{1F1FF}])|(?:\x{1F1E8}\x{1F1E6})|(?:\x{1F1E8}[\x{1F1E8}-\x{1F1E9}])|(?:\x{1F1E8}[\x{1F1EB}-\x{1F1EE}])|(?:\x{1F1E8}[\x{1F1F0}-\x{1F1F5}])|(?:\x{1F1E8}\x{1F1F7})|(?:\x{1F1E8}[\x{1F1FA}-\x{1F1FF}])|(?:\x{1F1E9}\x{1F1EA})|(?:\x{1F1E9}\x{1F1EC})|(?:\x{1F1E9}[\x{1F1EF}-\x{1F1F0}])|(?:\x{1F1E9}\x{1F1F2})|(?:\x{1F1E9}\x{1F1F4})|(?:\x{1F1E9}\x{1F1FF})|(?:\x{1F1EA}\x{1F1E6})|(?:\x{1F1EA}\x{1F1E8})|(?:\x{1F1EA}\x{1F1EA})|(?:\x{1F1EA}[\x{1F1EC}-\x{1F1ED}])|(?:\x{1F1EA}[\x{1F1F7}-\x{1F1FA}])|(?:\x{1F1EB}[\x{1F1EE}-\x{1F1F0}])|(?:\x{1F1EB}\x{1F1F2})|(?:\x{1F1EB}\x{1F1F4})|(?:\x{1F1EB}\x{1F1F7})|(?:\x{1F1EC}[\x{1F1E6}-\x{1F1E7}])|(?:\x{1F1EC}[\x{1F1E9}-\x{1F1EE}])|(?:\x{1F1EC}[\x{1F1F1}-\x{1F1F3}])|(?:\x{1F1EC}[\x{1F1F5}-\x{1F1FA}])|(?:\x{1F1EC}\x{1F1FC})|(?:\x{1F1EC}\x{1F1FE})|(?:\x{1F1ED}\x{1F1F0})|(?:\x{1F1ED}[\x{1F1F2}-\x{1F1F3}])|(?:\x{1F1ED}\x{1F1F7})|(?:\x{1F1ED}[\x{1F1F9}-\x{1F1FA}])|(?:\x{1F1EE}[\x{1F1E8}-\x{1F1EA}])|(?:\x{1F1EE}[\x{1F1F1}-\x{1F1F4}])|(?:\x{1F1EE}[\x{1F1F6}-\x{1F1F9}])|(?:\x{1F1EF}\x{1F1EA})|(?:\x{1F1EF}\x{1F1F2})|(?:\x{1F1EF}[\x{1F1F4}-\x{1F1F5}])|(?:\x{1F1F0}\x{1F1EA})|(?:\x{1F1F0}[\x{1F1EC}-\x{1F1EE}])|(?:\x{1F1F0}[\x{1F1F2}-\x{1F1F3}])|(?:\x{1F1F0}\x{1F1F5})|(?:\x{1F1F0}\x{1F1F7})|(?:\x{1F1F0}\x{1F1FC})|(?:\x{1F1F0}[\x{1F1FE}-\x{1F1FF}])|(?:\x{1F1F1}[\x{1F1E6}-\x{1F1E8}])|(?:\x{1F1F1}\x{1F1EE})|(?:\x{1F1F1}\x{1F1F0})|(?:\x{1F1F1}[\x{1F1F7}-\x{1F1FB}])|(?:\x{1F1F1}\x{1F1FE})|(?:\x{1F1F2}\x{1F1E6})|(?:\x{1F1F2}[\x{1F1E8}-\x{1F1ED}])|(?:\x{1F1F2}[\x{1F1F0}-\x{1F1FF}])|(?:\x{1F1F3}\x{1F1E6})|(?:\x{1F1F3}\x{1F1E8})|(?:\x{1F1F3}[\x{1F1EA}-\x{1F1EC}])|(?:\x{1F1F3}\x{1F1EE})|(?:\x{1F1F3}\x{1F1F1})|(?:\x{1F1F3}[\x{1F1F4}-\x{1F1F5}])|(?:\x{1F1F3}\x{1F1F7})|(?:\x{1F1F3}\x{1F1FA})|(?:\x{1F1F3}\x{1F1FF})|(?:\x{1F1F4}\x{1F1F2})|(?:\x{1F1F5}\x{1F1E6})|(?:\x{1F1F5}[\x{1F1EA}-\x{1F1ED}])|(?:\x{1F1F5}[\x{1F1F0}-\x{1F1F3}])|(?:\x{1F1F5}[\x{1F1F7}-\x{1F1F9}])|(?:\x{1F1F5}\x{1F1FC})|(?:\x{1F1F5}\x{1F1FE})|(?:\x{1F1F6}\x{1F1E6})|(?:\x{1F1F7}\x{1F1EA})|(?:\x{1F1F7}\x{1F1F4})|(?:\x{1F1F7}\x{1F1F8})|(?:\x{1F1F7}\x{1F1FA})|(?:\x{1F1F7}\x{1F1FC})|(?:\x{1F1F8}[\x{1F1E6}-\x{1F1EA}])|(?:\x{1F1F8}[\x{1F1EC}-\x{1F1F4}])|(?:\x{1F1F8}[\x{1F1F7}-\x{1F1F9}])|(?:\x{1F1F8}\x{1F1FB})|(?:\x{1F1F8}[\x{1F1FD}-\x{1F1FF}])|(?:\x{1F1F9}\x{1F1E6})|(?:\x{1F1F9}[\x{1F1E8}-\x{1F1E9}])|(?:\x{1F1F9}[\x{1F1EB}-\x{1F1ED}])|(?:\x{1F1F9}[\x{1F1EF}-\x{1F1F4}])|(?:\x{1F1F9}\x{1F1F7})|(?:\x{1F1F9}\x{1F1F9})|(?:\x{1F1F9}[\x{1F1FB}-\x{1F1FC}])|(?:\x{1F1F9}\x{1F1FF})|(?:\x{1F1FA}\x{1F1E6})|(?:\x{1F1FA}\x{1F1EC})|(?:\x{1F1FA}[\x{1F1F2}-\x{1F1F3}])|(?:\x{1F1FA}\x{1F1F8})|(?:\x{1F1FA}[\x{1F1FE}-\x{1F1FF}])|(?:\x{1F1FB}\x{1F1E6})|(?:\x{1F1FB}\x{1F1E8})|(?:\x{1F1FB}\x{1F1EA})|(?:\x{1F1FB}\x{1F1EC})|(?:\x{1F1FB}\x{1F1EE})|(?:\x{1F1FB}\x{1F1F3})|(?:\x{1F1FB}\x{1F1FA})|(?:\x{1F1FC}\x{1F1EB})|(?:\x{1F1FC}\x{1F1F8})|(?:\x{1F1FD}\x{1F1F0})|(?:\x{1F1FE}\x{1F1EA})|(?:\x{1F1FE}\x{1F1F9})|(?:\x{1F1FF}\x{1F1E6})|(?:\x{1F1FF}\x{1F1F2})|(?:\x{1F1FF}\x{1F1FC})|\x{00A9}|\x{00AE}|\x{1F004}|\x{1F0CF}|[\x{1F170}-\x{1F171}]|[\x{1F17E}-\x{1F17F}]|\x{1F18E}|[\x{1F191}-\x{1F19A}]|[\x{1F201}-\x{1F202}]|\x{1F21A}|\x{1F22F}|[\x{1F232}-\x{1F23A}]|[\x{1F250}-\x{1F251}]|[\x{1F300}-\x{1F321}]|[\x{1F324}-\x{1F393}]|[\x{1F396}-\x{1F397}]|[\x{1F399}-\x{1F39B}]|[\x{1F39E}-\x{1F3F0}]|[\x{1F3F3}-\x{1F3F5}]|[\x{1F3F7}-\x{1F4FD}]|[\x{1F4FF}-\x{1F53D}]|[\x{1F549}-\x{1F54E}]|[\x{1F550}-\x{1F567}]|[\x{1F56F}-\x{1F570}]|[\x{1F573}-\x{1F57A}]|\x{1F587}|[\x{1F58A}-\x{1F58D}]|\x{1F590}|[\x{1F595}-\x{1F596}]|[\x{1F5A4}-\x{1F5A5}]|\x{1F5A8}|[\x{1F5B1}-\x{1F5B2}]|\x{1F5BC}|[\x{1F5C2}-\x{1F5C4}]|[\x{1F5D1}-\x{1F5D3}]|[\x{1F5DC}-\x{1F5DE}]|\x{1F5E1}|\x{1F5E3}|\x{1F5E8}|\x{1F5EF}|\x{1F5F3}|[\x{1F5FA}-\x{1F64F}]|[\x{1F680}-\x{1F6C5}]|[\x{1F6CB}-\x{1F6D2}]|\x{1F6D5}|[\x{1F6E0}-\x{1F6E5}]|\x{1F6E9}|[\x{1F6EB}-\x{1F6EC}]|\x{1F6F0}|[\x{1F6F3}-\x{1F6FA}]|[\x{1F7E0}-\x{1F7EB}]|[\x{1F90D}-\x{1F93A}]|[\x{1F93C}-\x{1F945}]|[\x{1F947}-\x{1F971}]|[\x{1F973}-\x{1F976}]|[\x{1F97A}-\x{1F9A2}]|[\x{1F9A5}-\x{1F9AA}]|[\x{1F9AE}-\x{1F9CA}]|[\x{1F9CD}-\x{1F9FF}]|[\x{1FA70}-\x{1FA73}]|[\x{1FA78}-\x{1FA7A}]|[\x{1FA80}-\x{1FA82}]|[\x{1FA90}-\x{1FA95}]|\x{203C}|\x{2049}|\x{2122}|\x{2139}|[\x{2194}-\x{2199}]|[\x{21A9}-\x{21AA}]|[\x{231A}-\x{231B}]|\x{2328}|\x{23CF}|[\x{23E9}-\x{23F3}]|[\x{23F8}-\x{23FA}]|\x{24C2}|[\x{25AA}-\x{25AB}]|\x{25B6}|\x{25C0}|[\x{25FB}-\x{25FE}]|[\x{2600}-\x{2604}]|\x{260E}|\x{2611}|[\x{2614}-\x{2615}]|\x{2618}|\x{261D}|\x{2620}|[\x{2622}-\x{2623}]|\x{2626}|\x{262A}|[\x{262E}-\x{262F}]|[\x{2638}-\x{263A}]|\x{2640}|\x{2642}|[\x{2648}-\x{2653}]|[\x{265F}-\x{2660}]|\x{2663}|[\x{2665}-\x{2666}]|\x{2668}|\x{267B}|[\x{267E}-\x{267F}]|[\x{2692}-\x{2697}]|\x{2699}|[\x{269B}-\x{269C}]|[\x{26A0}-\x{26A1}]|[\x{26AA}-\x{26AB}]|[\x{26B0}-\x{26B1}]|[\x{26BD}-\x{26BE}]|[\x{26C4}-\x{26C5}]|\x{26C8}|[\x{26CE}-\x{26CF}]|\x{26D1}|[\x{26D3}-\x{26D4}]|[\x{26E9}-\x{26EA}]|[\x{26F0}-\x{26F5}]|[\x{26F7}-\x{26FA}]|\x{26FD}|\x{2702}|\x{2705}|[\x{2708}-\x{270D}]|\x{270F}|\x{2712}|\x{2714}|\x{2716}|\x{271D}|\x{2721}|\x{2728}|[\x{2733}-\x{2734}]|\x{2744}|\x{2747}|\x{274C}|\x{274E}|[\x{2753}-\x{2755}]|\x{2757}|[\x{2763}-\x{2764}]|[\x{2795}-\x{2797}]|\x{27A1}|\x{27B0}|\x{27BF}|[\x{2934}-\x{2935}]|[\x{2B05}-\x{2B07}]|[\x{2B1B}-\x{2B1C}]|\x{2B50}|\x{2B55}|\x{3030}|\x{303D}|\x{3297}|\x{3299}` diff --git a/types/coin_test.go b/types/coin_test.go index a090deb01518..5ecd7ce15009 100644 --- a/types/coin_test.go +++ b/types/coin_test.go @@ -1,8 +1,11 @@ package types import ( + "fmt" + "regexp" "strings" "testing" + "unicode/utf8" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -51,6 +54,7 @@ func TestIsEqualCoin(t *testing.T) { } func TestCoinIsValid(t *testing.T) { + cases := []struct { coin Coin expectPass bool @@ -64,9 +68,18 @@ func TestCoinIsValid(t *testing.T) { {Coin{"atOm", NewInt(1)}, false}, {Coin{" ", NewInt(1)}, false}, } + cases = append(cases, allEmojis...) + reDnm_ := regexp.MustCompile(fmt.Sprintf(`^%s$`, reDnmString_)) + ValidateDenom = func(denom string) error { + if !reDnm_.MatchString(denom) { + return fmt.Errorf("invalid denom: %s", denom) + } + return nil + } for i, tc := range cases { - require.Equal(t, tc.expectPass, tc.coin.IsValid(), "unexpected result for IsValid, tc #%d", i) + r, s := utf8.DecodeRuneInString(tc.coin.Denom) + require.Equal(t, tc.expectPass, tc.coin.IsValid(), "unexpected result for IsValid, tc #%d '%s' (%s) [%s]", i, tc.coin.Denom, r, s) } } diff --git a/x/genutil/utils.go b/x/genutil/utils.go index 7d1a761ef562..4aea9d9fd500 100644 --- a/x/genutil/utils.go +++ b/x/genutil/utils.go @@ -11,8 +11,6 @@ import ( "github.com/tendermint/tendermint/p2p" "github.com/tendermint/tendermint/privval" tmtypes "github.com/tendermint/tendermint/types" - - "github.com/cosmos/cosmos-sdk/server" ) // ExportGenesisFile creates and writes the genesis configuration to disk. An @@ -47,28 +45,28 @@ func ExportGenesisFileWithTime( } // InitializeNodeValidatorFiles creates private validator and p2p configuration files. -func InitializeNodeValidatorFiles(config *cfg.Config, -) (nodeID string, valPubKey crypto.PubKey, err error) { - +func InitializeNodeValidatorFiles(config *cfg.Config) (nodeID string, valPubKey crypto.PubKey, err error) { nodeKey, err := p2p.LoadOrGenNodeKey(config.NodeKeyFile()) if err != nil { - return nodeID, valPubKey, err + return "", nil, err } nodeID = string(nodeKey.ID()) - server.UpgradeOldPrivValFile(config) pvKeyFile := config.PrivValidatorKeyFile() if err := tmos.EnsureDir(filepath.Dir(pvKeyFile), 0777); err != nil { - return nodeID, valPubKey, nil + return "", nil, err } pvStateFile := config.PrivValidatorStateFile() if err := tmos.EnsureDir(filepath.Dir(pvStateFile), 0777); err != nil { - return nodeID, valPubKey, nil + return "", nil, err } - valPubKey = privval.LoadOrGenFilePV(pvKeyFile, pvStateFile).GetPubKey() + valPubKey, err = privval.LoadOrGenFilePV(pvKeyFile, pvStateFile).GetPubKey() + if err != nil { + return "", nil, err + } return nodeID, valPubKey, nil }