diff --git a/cmd/faucet/README.md b/cmd/faucet/README.md index 364689a78277..c29d097ea933 100644 --- a/cmd/faucet/README.md +++ b/cmd/faucet/README.md @@ -1,31 +1,27 @@ # Faucet -The `faucet` is a simplistic web application with the goal of distributing small amounts of Ether in private and test networks. +The `faucet` is a simplistic web application with the goal of distributing small amounts of W3Q in private and test networks. -Users need to post their Ethereum addresses to fund in a Twitter status update or public Facebook post and share the link to the faucet. The faucet will in turn deduplicate user requests and send the Ether. After a funding round, the faucet prevents the same user requesting again for a pre-configured amount of time, proportional to the amount of Ether requested. +Users need to post their Web3Q addresses to fund in a Twitter status update or public Facebook post and share the link to the faucet. The faucet will in turn deduplicate user requests and send the W3Q. After a funding round, the faucet prevents the same user requesting again for a pre-configured amount of time, proportional to the amount of W3Q requested. ## Operation The `faucet` is a single binary app (everything included) with all configurations set via command line flags and a few files. -First thing's first, the `faucet` needs to connect to an Ethereum network, for which it needs the necessary genesis and network infos. Each of the following flags must be set: +First thing's first, the `faucet` needs to connect to an Web3Q network, for which it needs the wsrpc to connect network. Each of the following flags must be set: -- `--genesis` is a path to a file containin the network `genesis.json` -- `--network` is the devp2p network id used during connection -- `--bootnodes` is a list of `enode://` ids to join the network through - -The `faucet` will use the `les` protocol to join the configured Ethereum network and will store its data in `$HOME/.faucet` (currently not configurable). +- `--wsrpc` is a websocket rpc URL for ethclient to get data and submit tx from network ## Funding -To be able to distribute funds, the `faucet` needs access to an already funded Ethereum account. This can be configured via: +To be able to distribute funds, the `faucet` needs access to an already funded Web3Q account. This can be configured via: -- `--account.json` is a path to the Ethereum account's JSON key file +- `--account.json` is a path to the Web3Q account's JSON key file - `--account.pass` is a path to a text file with the decryption passphrase -The faucet is able to distribute various amounts of Ether in exchange for various timeouts. These can be configured via: +The faucet is able to distribute various amounts of W3Q in exchange for various timeouts. These can be configured via: -- `--faucet.amount` is the number of Ethers to send by default +- `--faucet.amount` is the number of W3Qs to send by default - `--faucet.minutes` is the time to wait before allowing a rerequest - `--faucet.tiers` is the funding tiers to support (x3 time, x2.5 funds) diff --git a/cmd/faucet/faucet.go b/cmd/faucet/faucet.go index 2d9d7a1e99f2..db410a92105c 100644 --- a/cmd/faucet/faucet.go +++ b/cmd/faucet/faucet.go @@ -43,31 +43,16 @@ import ( "github.com/ethereum/go-ethereum/accounts" "github.com/ethereum/go-ethereum/accounts/keystore" - "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/common" - "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/core/types" - "github.com/ethereum/go-ethereum/eth/downloader" - "github.com/ethereum/go-ethereum/eth/ethconfig" "github.com/ethereum/go-ethereum/ethclient" - "github.com/ethereum/go-ethereum/ethstats" - "github.com/ethereum/go-ethereum/les" "github.com/ethereum/go-ethereum/log" - "github.com/ethereum/go-ethereum/node" - "github.com/ethereum/go-ethereum/p2p" - "github.com/ethereum/go-ethereum/p2p/enode" - "github.com/ethereum/go-ethereum/p2p/nat" - "github.com/ethereum/go-ethereum/params" "github.com/gorilla/websocket" ) var ( - genesisFlag = flag.String("genesis", "", "Genesis json file to seed the chain with") - apiPortFlag = flag.Int("apiport", 8080, "Listener port for the HTTP API connection") - ethPortFlag = flag.Int("ethport", 30303, "Listener port for the devp2p connection") - bootFlag = flag.String("bootnodes", "", "Comma separated bootnode enode URLs to seed with") - netFlag = flag.Uint64("network", 0, "Network ID to use for the Ethereum protocol") - statsFlag = flag.String("ethstats", "", "Ethstats network monitoring auth string") + wsRpcFlag = flag.String("wsrpc", "", "websocket rpc URL for ethclient to get data and submit tx") + apiPortFlag = flag.Int("apiport", 81, "Listener port for the HTTP API connection") netnameFlag = flag.String("faucet.name", "", "Network name to assign to the faucet") payoutFlag = flag.Int("faucet.amount", 1, "Number of Ethers to pay out per user request") @@ -85,20 +70,12 @@ var ( twitterTokenFlag = flag.String("twitter.token", "", "Bearer token to authenticate with the v2 Twitter API") twitterTokenV1Flag = flag.String("twitter.token.v1", "", "Bearer token to authenticate with the v1.1 Twitter API") - - goerliFlag = flag.Bool("goerli", false, "Initializes the faucet with Görli network config") - rinkebyFlag = flag.Bool("rinkeby", false, "Initializes the faucet with Rinkeby network config") ) var ( ether = new(big.Int).Exp(big.NewInt(10), big.NewInt(18), nil) ) -var ( - gitCommit = "" // Git SHA1 commit hash of the release (set via linker flags) - gitDate = "" // Git commit date YYYYMMDD of the release (set via linker flags) -) - func main() { // Parse the flags and set up the logger to print everything requested flag.Parse() @@ -110,7 +87,7 @@ func main() { for i := 0; i < *tiersFlag; i++ { // Calculate the amount for the next tier and format it amount := float64(*payoutFlag) * math.Pow(2.5, float64(i)) - amounts[i] = fmt.Sprintf("%s Ethers", strconv.FormatFloat(amount, 'f', -1, 64)) + amounts[i] = fmt.Sprintf("%s W3Qs", strconv.FormatFloat(amount, 'f', -1, 64)) if amount == 1 { amounts[i] = strings.TrimSuffix(amounts[i], "s") } @@ -146,20 +123,7 @@ func main() { if err != nil { log.Crit("Failed to render the faucet template", "err", err) } - // Load and parse the genesis block requested by the user - genesis, err := getGenesis(genesisFlag, *goerliFlag, *rinkebyFlag) - if err != nil { - log.Crit("Failed to parse genesis config", "err", err) - } - // Convert the bootnodes to internal enode representations - var enodes []*enode.Node - for _, boot := range strings.Split(*bootFlag, ",") { - if url, err := enode.Parse(enode.ValidSchemes, boot); err == nil { - enodes = append(enodes, url) - } else { - log.Error("Failed to parse bootnode URL", "url", boot, "err", err) - } - } + // Load up the account key and decrypt its password blob, err := ioutil.ReadFile(*accPassFlag) if err != nil { @@ -179,11 +143,10 @@ func main() { log.Crit("Failed to unlock faucet signer account", "err", err) } // Assemble and start the faucet light service - faucet, err := newFaucet(genesis, *ethPortFlag, enodes, *netFlag, *statsFlag, ks, website.Bytes()) + faucet, err := newFaucet(*wsRpcFlag, ks, website.Bytes()) if err != nil { log.Crit("Failed to start faucet", "err", err) } - defer faucet.close() if err := faucet.listenAndServe(*apiPortFlag); err != nil { log.Crit("Failed to launch faucet API", "err", err) @@ -200,16 +163,15 @@ type request struct { // faucet represents a crypto faucet backed by an Ethereum light client. type faucet struct { - config *params.ChainConfig // Chain configurations for signing - stack *node.Node // Ethereum protocol stack - client *ethclient.Client // Client connection to the Ethereum chain - index []byte // Index page to serve up on the web + client *ethclient.Client // Client connection to the Ethereum chain + index []byte // Index page to serve up on the web keystore *keystore.KeyStore // Keystore containing the single signer account accounts.Account // Account funding user faucet requests head *types.Header // Current head header of the faucet balance *big.Int // Current balance of the faucet nonce uint64 // Current pending nonce of the faucet + chainId *big.Int // Current chainId use to generate faucet tx price *big.Int // Current gas price to issue funds with conns []*wsConn // Currently live websocket connections @@ -227,78 +189,27 @@ type wsConn struct { wlock sync.Mutex } -func newFaucet(genesis *core.Genesis, port int, enodes []*enode.Node, network uint64, stats string, ks *keystore.KeyStore, index []byte) (*faucet, error) { - // Assemble the raw devp2p protocol stack - stack, err := node.New(&node.Config{ - Name: "geth", - Version: params.VersionWithCommit(gitCommit, gitDate), - DataDir: filepath.Join(os.Getenv("HOME"), ".faucet"), - P2P: p2p.Config{ - NAT: nat.Any(), - NoDiscovery: true, - DiscoveryV5: true, - ListenAddr: fmt.Sprintf(":%d", port), - MaxPeers: 25, - BootstrapNodesV5: enodes, - }, - }) - if err != nil { - return nil, err - } - - // Assemble the Ethereum light client protocol - cfg := ethconfig.Defaults - cfg.SyncMode = downloader.LightSync - cfg.NetworkId = network - cfg.Genesis = genesis - utils.SetDNSDiscoveryDefaults(&cfg, genesis.ToBlock(nil).Hash()) - - lesBackend, err := les.New(stack, &cfg) +func newFaucet(rpcFlag string, ks *keystore.KeyStore, index []byte) (*faucet, error) { + client, err := ethclient.Dial(rpcFlag) if err != nil { - return nil, fmt.Errorf("Failed to register the Ethereum service: %w", err) - } - - // Assemble the ethstats monitoring and reporting service' - if stats != "" { - if err := ethstats.New(stack, lesBackend.ApiBackend, lesBackend.Engine(), stats); err != nil { - return nil, err - } - } - // Boot up the client and ensure it connects to bootnodes - if err := stack.Start(); err != nil { return nil, err } - for _, boot := range enodes { - old, err := enode.Parse(enode.ValidSchemes, boot.String()) - if err == nil { - stack.Server().AddPeer(old) - } - } - // Attach to the client and retrieve and interesting metadatas - api, err := stack.Attach() + chainId, err := client.ChainID(context.Background()) if err != nil { - stack.Close() return nil, err } - client := ethclient.NewClient(api) return &faucet{ - config: genesis.Config, - stack: stack, client: client, index: index, keystore: ks, + chainId: chainId, account: ks.Accounts()[0], timeouts: make(map[string]time.Time), update: make(chan struct{}, 1), }, nil } -// close terminates the Ethereum connection and tears down the faucet. -func (f *faucet) close() error { - return f.stack.Close() -} - // listenAndServe registers the HTTP handlers for the faucet and boots it up // for service user funding requests. func (f *faucet) listenAndServe(port int) error { @@ -317,7 +228,11 @@ func (f *faucet) webHandler(w http.ResponseWriter, r *http.Request) { // apiHandler handles requests for Ether grants and transaction statuses. func (f *faucet) apiHandler(w http.ResponseWriter, r *http.Request) { - upgrader := websocket.Upgrader{} + upgrader := websocket.Upgrader{ + CheckOrigin: func(r *http.Request) bool { + return true + }, + } conn, err := upgrader.Upgrade(w, r, nil) if err != nil { return @@ -376,7 +291,6 @@ func (f *faucet) apiHandler(w http.ResponseWriter, r *http.Request) { if err = send(wsconn, map[string]interface{}{ "funds": new(big.Int).Div(balance, ether), "funded": nonce, - "peers": f.stack.Server().PeerCount(), "requests": reqs, }, 3*time.Second); err != nil { log.Warn("Failed to send initial stats to client", "err", err) @@ -493,7 +407,7 @@ func (f *faucet) apiHandler(w http.ResponseWriter, r *http.Request) { amount = new(big.Int).Div(amount, new(big.Int).Exp(big.NewInt(2), big.NewInt(int64(msg.Tier)), nil)) tx := types.NewTransaction(f.nonce+uint64(len(f.reqs)), address, amount, 21000, f.price, nil) - signed, err := f.keystore.SignTx(f.account, tx, f.config.ChainID) + signed, err := f.keystore.SignTx(f.account, tx, f.chainId) if err != nil { f.lock.Unlock() if err = sendError(wsconn, err); err != nil { @@ -616,13 +530,11 @@ func (f *faucet) loop() { log.Info("Updated faucet state", "number", head.Number, "hash", head.Hash(), "age", common.PrettyAge(timestamp), "balance", f.balance, "nonce", f.nonce, "price", f.price) balance := new(big.Int).Div(f.balance, ether) - peers := f.stack.Server().PeerCount() for _, conn := range f.conns { if err := send(conn, map[string]interface{}{ "funds": balance, "funded": f.nonce, - "peers": peers, "requests": f.reqs, }, time.Second); err != nil { log.Warn("Failed to send stats to client", "err", err) @@ -738,10 +650,10 @@ func authTwitter(url string, tokenV1, tokenV2 string) (string, string, string, c address := common.HexToAddress(string(regexp.MustCompile("0x[0-9a-fA-F]{40}").Find(body))) if address == (common.Address{}) { //lint:ignore ST1005 This error is to be displayed in the browser - return "", "", "", common.Address{}, errors.New("No Ethereum address found to fund") + return "", "", "", common.Address{}, errors.New("No Web3Q Chain address found to fund") } var avatar string - if parts = regexp.MustCompile(`src="([^"]+twimg\.com/profile_images[^"]+)"`).FindStringSubmatch(string(body)); len(parts) == 2 { + if parts = regexp.MustCompile("src=\"([^\"]+twimg.com/profile_images[^\"]+)\"").FindStringSubmatch(string(body)); len(parts) == 2 { avatar = parts[1] } return username + "@twitter", username, avatar, address, nil @@ -864,10 +776,10 @@ func authFacebook(url string) (string, string, common.Address, error) { address := common.HexToAddress(string(regexp.MustCompile("0x[0-9a-fA-F]{40}").Find(body))) if address == (common.Address{}) { //lint:ignore ST1005 This error is to be displayed in the browser - return "", "", common.Address{}, errors.New("No Ethereum address found to fund") + return "", "", common.Address{}, errors.New("No Web3Q Chain address found to fund") } var avatar string - if parts = regexp.MustCompile(`src="([^"]+fbcdn\.net[^"]+)"`).FindStringSubmatch(string(body)); len(parts) == 2 { + if parts = regexp.MustCompile("src=\"([^\"]+fbcdn.net[^\"]+)\"").FindStringSubmatch(string(body)); len(parts) == 2 { avatar = parts[1] } return username + "@facebook", avatar, address, nil @@ -880,23 +792,7 @@ func authNoAuth(url string) (string, string, common.Address, error) { address := common.HexToAddress(regexp.MustCompile("0x[0-9a-fA-F]{40}").FindString(url)) if address == (common.Address{}) { //lint:ignore ST1005 This error is to be displayed in the browser - return "", "", common.Address{}, errors.New("No Ethereum address found to fund") + return "", "", common.Address{}, errors.New("No Web3Q Chain address found to fund") } return address.Hex() + "@noauth", "", address, nil } - -// getGenesis returns a genesis based on input args -func getGenesis(genesisFlag *string, goerliFlag bool, rinkebyFlag bool) (*core.Genesis, error) { - switch { - case genesisFlag != nil: - var genesis core.Genesis - err := common.LoadJSON(*genesisFlag, &genesis) - return &genesis, err - case goerliFlag: - return core.DefaultGoerliGenesisBlock(), nil - case rinkebyFlag: - return core.DefaultRinkebyGenesisBlock(), nil - default: - return nil, fmt.Errorf("no genesis flag provided") - } -} diff --git a/cmd/faucet/faucet.html b/cmd/faucet/faucet.html index dad5ad84f210..20eeecd98fa1 100644 --- a/cmd/faucet/faucet.html +++ b/cmd/faucet/faucet.html @@ -5,7 +5,7 @@ - {{.Network}}: Authenticated Faucet + {{.Network}}: Faucet @@ -43,15 +43,15 @@
-

{{.Network}} Authenticated Faucet

+

{{.Network}} Faucet

- + - + @@ -68,35 +68,14 @@

{{

-
-
-

How does this work?

-

This Ether faucet is running on the {{.Network}} network. To prevent malicious actors from exhausting all available funds or accumulating enough Ether to mount long running spam attacks, requests are tied to common 3rd party social network accounts. Anyone having a Twitter or Facebook account may request funds within the permitted limits.

-
-
-
To request funds via Twitter, make a tweet with your Ethereum address pasted into the contents (surrounding text doesn't matter).
Copy-paste the tweets URL into the above input box and fire away!
- -
-
To request funds via Facebook, publish a new public post with your Ethereum address embedded into the content (surrounding text doesn't matter).
Copy-paste the posts URL into the above input box and fire away!
- - {{if .NoAuth}} -
-
To request funds without authentication, simply copy-paste your Ethereum address into the above input box (surrounding text doesn't matter) and fire away.
This mode is susceptible to Byzantine attacks. Only use for debugging or private networks!
- {{end}} -
-

You can track the current pending requests below the input field to see how much you have to wait until your turn comes.

- {{if .Recaptcha}}The faucet is running invisible reCaptcha protection against bots.{{end}} -
-
@@ -139,9 +118,6 @@

How does this work?

if (msg.funded !== undefined) { $("#funded").text(msg.funded); } - if (msg.peers !== undefined) { - $("#peers").text(msg.peers); - } if (msg.number !== undefined) { $("#block").text(parseInt(msg.number, 16)); } diff --git a/cmd/faucet/website.go b/cmd/faucet/website.go index aed067893a13..445936f129b2 100644 --- a/cmd/faucet/website.go +++ b/cmd/faucet/website.go @@ -69,7 +69,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _faucetHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5a\x7b\x93\xdb\x36\x92\xff\x7b\xfc\x29\x3a\x3c\x7b\x25\x9d\x87\xa4\x66\xc6\xf6\xfa\x24\x52\x29\xaf\x37\xbb\xe7\xab\xbb\x24\x95\x38\x75\xb7\x95\x4d\x5d\x81\x64\x4b\x84\x07\x04\x18\x00\x94\x46\x99\xd2\x77\xbf\x6a\x80\xa4\xa8\xc7\x4c\xec\xb5\xaf\x6a\xfd\xc7\x98\xc4\xa3\xd1\x8f\x5f\xa3\x1f\x54\xf2\xd5\x9f\xbf\x7b\xfb\xfe\x6f\xdf\x7f\x03\xa5\xad\xc4\xe2\x49\x42\xff\x81\x60\x72\x95\x06\x28\x83\xc5\x93\x8b\xa4\x44\x56\x2c\x9e\x5c\x5c\x24\x15\x5a\x06\x79\xc9\xb4\x41\x9b\x06\x8d\x5d\x86\xaf\x83\xfd\x44\x69\x6d\x1d\xe2\xaf\x0d\x5f\xa7\xc1\xff\x84\x3f\xbd\x09\xdf\xaa\xaa\x66\x96\x67\x02\x03\xc8\x95\xb4\x28\x6d\x1a\xbc\xfb\x26\xc5\x62\x85\x83\x7d\x92\x55\x98\x06\x6b\x8e\x9b\x5a\x69\x3b\x58\xba\xe1\x85\x2d\xd3\x02\xd7\x3c\xc7\xd0\xbd\x5c\x02\x97\xdc\x72\x26\x42\x93\x33\x81\xe9\x55\xb0\x78\x42\x74\x2c\xb7\x02\x17\xf7\xf7\xd1\xb7\x68\x37\x4a\xdf\xee\x76\x33\x78\xd3\xd8\x12\xa5\xe5\x39\xb3\x58\xc0\x5f\x58\x93\xa3\x4d\x62\xbf\xd2\x6d\x12\x5c\xde\x42\xa9\x71\x99\x06\xc4\xba\x99\xc5\x71\x5e\xc8\x0f\x26\xca\x85\x6a\x8a\xa5\x60\x1a\xa3\x5c\x55\x31\xfb\xc0\xee\x62\xc1\x33\x13\xdb\x0d\xb7\x16\x75\x98\x29\x65\x8d\xd5\xac\x8e\x6f\xa2\x9b\xe8\x8f\x71\x6e\x4c\xdc\x8f\x45\x15\x97\x51\x6e\x4c\x00\x1a\x45\x1a\x18\xbb\x15\x68\x4a\x44\x1b\x40\xbc\xf8\xc7\xce\x5d\x2a\x69\x43\xb6\x41\xa3\x2a\x8c\x5f\x44\x7f\x8c\xa6\xee\xc8\xe1\xf0\xe3\xa7\xd2\xb1\x26\xd7\xbc\xb6\x60\x74\xfe\xd1\xe7\x7e\xf8\xb5\x41\xbd\x8d\x6f\xa2\xab\xe8\xaa\x7d\x71\xe7\x7c\x30\xc1\x22\x89\x3d\xc1\xc5\x67\xd1\x0e\xa5\xb2\xdb\xf8\x3a\x7a\x11\x5d\xc5\x35\xcb\x6f\xd9\x0a\x8b\xee\x24\x9a\x8a\xba\xc1\x2f\x76\xee\x43\x36\xfc\x70\x6c\xc2\x2f\x71\x58\xa5\x2a\x94\x36\xfa\x60\xe2\xeb\xe8\xea\x75\x34\xed\x06\x4e\xe9\xbb\x03\xc8\x68\x74\xd4\x45\xb4\x46\x4d\xc8\x15\x61\x8e\xd2\xa2\x86\x7b\x1a\xbd\xa8\xb8\x0c\x4b\xe4\xab\xd2\xce\xe0\x6a\x3a\x7d\x36\x3f\x37\xba\x2e\xfd\x70\xc1\x4d\x2d\xd8\x76\x06\x4b\x81\x77\x7e\x88\x09\xbe\x92\x21\xb7\x58\x99\x19\x78\xca\x6e\x62\xe7\xce\xac\xb5\x5a\x69\x34\xa6\x3d\xac\x56\x86\x5b\xae\xe4\x8c\x10\xc5\x2c\x5f\xe3\xb9\xb5\xa6\x66\xf2\x64\x03\xcb\x8c\x12\x8d\xc5\x23\x46\x32\xa1\xf2\x5b\x3f\xe6\xbc\x79\x28\x44\xae\x84\xd2\x33\xd8\x94\xbc\xdd\x06\xee\x20\xa8\x35\xb6\xe4\xa1\x66\x45\xc1\xe5\x6a\x06\xaf\xea\x56\x1e\xa8\x98\x5e\x71\x39\x83\xe9\x7e\x4b\x12\x77\x6a\x4c\x62\x7f\x71\x3d\xb9\x48\x32\x55\x6c\x9d\x0d\x0b\xbe\x86\x5c\x30\x63\xd2\xe0\x48\xc5\xee\x42\x3a\x58\x40\xf7\x10\xe3\xb2\x9b\x3a\x98\xd3\x6a\x13\x80\x3b\x28\x0d\x3c\x13\x61\xa6\xac\x55\xd5\x0c\xae\x88\xbd\x76\xcb\x11\x3d\x11\x8a\x55\x78\x75\xdd\x4d\x5e\x24\xe5\x55\x47\xc4\xe2\x9d\x0d\x9d\x7d\x7a\xcb\x04\x8b\x84\x77\x7b\x97\x0c\x96\x2c\xcc\x98\x2d\x03\x60\x9a\xb3\xb0\xe4\x45\x81\x32\x0d\xac\x6e\x90\x70\xc4\x17\x30\xbc\xfe\x1e\xb8\xfd\xca\xab\x8e\xaf\xb8\xe0\xeb\x56\xac\xc1\xe3\x91\x84\x0f\x0b\xf1\x1a\xda\x07\xb5\x5c\x1a\xb4\xe1\x40\xa6\xc1\x62\x2e\xeb\xc6\x86\x2b\xad\x9a\xba\x9f\xbf\x48\xdc\x28\xf0\x22\x0d\x1a\x2d\x82\xf6\xfa\x77\x8f\x76\x5b\xb7\xaa\x08\x7a\xc1\x95\xae\x42\xb2\x84\x56\x22\x80\x5a\xb0\x1c\x4b\x25\x0a\xd4\x69\xf0\xa3\xca\x39\x13\x20\xbd\xcc\xf0\xd3\x0f\xff\x09\xad\xc9\xb8\x5c\xc1\x56\x35\x1a\xbe\xb1\x25\x6a\x6c\x2a\x60\x45\x41\x70\x8d\xa2\x28\x88\xf7\x9c\x38\xf0\x9e\xf2\x1a\x66\x56\xee\xf9\xbd\x48\xb2\xc6\x5a\xd5\x2f\xcc\xac\x84\xcc\xca\xb0\xc0\x25\x6b\x84\x85\x42\xab\xba\x50\x1b\x19\x5a\xb5\x5a\x51\xa8\xf3\x52\xf8\x4d\x01\x14\xcc\xb2\x76\x2a\x0d\xba\xb5\x9d\x11\x99\xa9\x55\xdd\xd4\xad\x19\xfd\x20\xde\xd5\x4c\x16\x58\x90\xd1\x85\xc1\x60\xf1\x57\xbe\x46\xa8\xd0\x0b\x73\x71\x8c\x89\x9c\x69\xb4\xe1\x90\xe8\x09\x32\x92\xd8\x33\xe3\x45\x82\xf6\x5f\xd2\x88\x8e\x52\x2f\x42\x85\xb2\x81\x83\xb7\x50\xd3\xc5\x12\x2c\xee\xef\x35\x93\x2b\x84\xa7\xbc\xb8\xbb\x84\xa7\xac\x52\x8d\xb4\x30\x4b\x21\x7a\xe3\x1e\xcd\x6e\x77\x40\x1d\x20\x11\x7c\x91\xb0\xc7\xf0\x0d\x4a\xe6\x82\xe7\xb7\x69\x60\x39\xea\xf4\xfe\x9e\x88\xef\x76\x73\xb8\xbf\xe7\x4b\x78\x1a\xfd\x80\x39\xab\x6d\x5e\xb2\xdd\x6e\xa5\xbb\xe7\x08\xef\x30\x6f\x2c\x8e\x27\xf7\xf7\x28\x0c\xee\x76\xa6\xc9\x2a\x6e\xc7\xdd\x76\x1a\x97\xc5\x6e\x47\x3c\xb7\x7c\xee\x76\x10\x13\x51\x59\xe0\x1d\x3c\x8d\xbe\x47\xcd\x55\x61\xc0\xaf\x4f\x62\xb6\x48\x62\xc1\x17\xed\xbe\x43\x25\xc5\x8d\xd8\xe3\x25\x26\xc0\xf4\x40\x77\x7e\xe3\x58\x1d\x72\x7a\xc6\x0d\x56\x61\xcf\x7d\x8b\x07\xc3\x2d\xde\xe2\x36\x0d\xee\xef\x87\x7b\xdb\xd9\x9c\x09\x91\x31\xd2\x8b\x17\xad\xdf\xf4\x1b\x12\x4e\xd7\xdc\xb8\x9c\x6a\xd1\x71\xb0\x67\xfb\x23\xfd\xfa\xe8\xe6\xb2\xaa\x9e\xc1\xcd\xf5\xe0\xda\x3a\xe7\xf2\xaf\x8e\x5c\xfe\xe6\xec\xe2\x9a\x49\x14\xe0\xfe\x86\xa6\x62\xa2\x7b\x6e\xbd\x65\x70\x0d\x1c\x6f\x0a\xe9\x92\xee\x59\xeb\x2f\xfb\xe9\x1c\xd4\x1a\xf5\x52\xa8\xcd\x0c\x58\x63\xd5\x1c\x2a\x76\xd7\x07\xbc\x9b\xe9\x74\xc8\x37\xe5\x82\x2c\x13\xe8\xae\x17\x8d\xbf\x36\x68\xac\xe9\x2f\x13\x3f\xe5\xfe\xd2\x9d\x52\xa0\x34\x58\x1c\x69\x83\x4e\x24\xd5\xba\x55\x03\xd3\xf7\xca\x3c\xcb\xfb\x52\xa9\x3e\x86\x0c\xd9\x68\x49\x0f\xc2\x5d\xb0\x48\xac\xde\xaf\xbb\x48\x6c\xf1\x49\x31\x40\x53\x8e\xf7\x50\x08\xf0\x37\x1a\xc9\x5e\x23\x6a\x9f\x60\x10\x64\xc1\xbd\x26\xb1\x2d\x3e\xe3\x64\x02\x61\xc6\x0c\x7e\xcc\xf1\x2e\xd4\xef\x8f\x77\xaf\x9f\x7b\x7e\x89\x4c\xdb\x0c\x99\xfd\x18\x06\x96\x8d\x2c\x06\xf2\xbb\xbb\xf3\x73\x19\x68\x24\x5f\xa3\x36\xdc\x6e\x3f\x96\x03\x2c\xf6\x2c\xf8\xf7\x43\x16\x92\xd8\xea\xc7\xb1\x36\x7c\xf9\x42\xce\xfd\x7b\x39\xc9\xcd\xe2\xdf\xd5\x06\x0a\x85\x06\x6c\xc9\x0d\x50\x74\xfd\x3a\x89\xcb\x9b\x7e\x49\xbd\x78\x4f\x13\x4e\xa9\xb0\x74\xb9\x05\x70\x03\xba\x91\x2e\xf4\x2a\x09\xb6\xc4\xc3\x7c\xa4\x8d\xd2\x11\xbc\x57\x94\xd3\xad\x51\x5a\xa8\x98\xe0\x39\x57\x8d\x01\x96\x5b\xa5\x0d\x2c\xb5\xaa\x00\xef\x4a\xd6\x18\x4b\x84\xe8\xfa\x60\x6b\xc6\x85\xf3\x25\x67\x52\x50\x1a\x58\x9e\x37\x55\x43\x39\xa9\x5c\x01\x4a\xd5\xac\xca\x96\x17\xab\xc0\x07\x26\xa1\xe4\xaa\xe7\xc7\xd4\xac\x02\x66\x2d\xcb\x6f\xcd\x25\x74\xb7\x02\x30\x8d\x60\x39\x16\xb4\x2b\x57\x55\xa5\x24\xdc\xe8\x02\x6a\xa6\xed\x16\xcc\x61\x72\xc1\xf2\xdc\x45\xb9\x08\xde\xc8\xad\x92\x08\x25\x5b\x3b\x0e\xe1\xbd\xaf\x27\x88\xaf\xbf\xb0\x1c\x33\xa5\xfa\xd5\x50\xb1\x6d\x77\x5c\xcb\xfd\x86\xdb\x92\x7b\xf5\xd4\xa8\x2b\xda\x5a\x80\xe0\x15\xb7\x26\x4a\xe2\x7a\x7f\xa3\xee\x63\xb3\x08\x4b\xa5\xf9\x6f\x94\xd9\x88\xe1\xf5\x69\x8f\x2e\x97\xee\x6e\x74\x56\x17\xb8\xb4\x33\x78\xe1\xef\xc6\x63\x1c\xb7\x25\xd0\x39\x10\x77\x34\x5d\x69\x49\x01\x67\x06\x37\x3e\x9f\xf5\x89\x44\x61\x07\x1c\x14\x47\x50\xf3\x87\xbe\x7e\x5d\xdf\xf5\x7c\xf4\x49\xf1\xb4\x27\x42\x08\x38\x54\xca\x9a\xf7\x6a\xbc\x84\x8a\xdd\x22\x30\x48\xd8\x51\x89\xdc\x32\xed\x0a\x2c\xee\x1a\x04\xb1\xdd\x20\xda\xaf\xc9\x75\xd3\x1f\x3c\x41\x2e\x57\xcf\xae\xa7\x1e\x91\xf4\x40\xe4\x9f\x5d\x4f\xb9\xb4\xea\xd9\xf5\x74\x7a\x37\xfd\xc8\x7f\xcf\xae\xa7\x4a\x3e\xbb\x9e\xda\x12\x9f\x5d\x4f\x9f\x5d\xdf\x0c\xb1\xec\x47\xba\xd4\x92\x56\xa1\xa1\xd3\x3a\x88\x07\x60\x99\x5e\xa1\x4d\x83\xff\x65\x99\x6a\xec\x2c\x13\x4c\xde\x06\x0b\xc7\x2e\x65\x1b\x0e\x05\xe7\x13\x54\xa8\x99\x21\x48\x10\xc7\x0e\x25\x6d\x33\xc4\xc0\xd8\x34\x5a\xab\x46\x52\x54\x04\x92\xd9\x79\xa8\x1c\x11\xca\x48\x31\x93\x28\xc9\x74\xbc\x78\xab\xea\x6d\xe8\x88\xb8\xed\x27\x6a\x34\x4d\x5d\x2b\x6d\xa3\xa1\x3a\x19\x15\x42\x02\x4d\xfc\x7a\xfa\xf2\xf5\xab\x47\xd9\x37\x94\x66\x3b\x19\x7a\x0e\x59\xa6\xd6\x08\x3e\xa9\xcf\xd4\x1d\x30\x59\xc0\x92\x6b\x04\xb6\x61\xdb\xaf\x92\xb8\x70\x25\xd8\xe7\xa3\x76\xd9\x7a\xd7\x3f\x15\x6c\x3b\x97\xbf\x84\xba\xc9\x04\x37\x25\x30\x90\xb8\x81\xc4\x58\xad\xe4\x6a\xe1\x46\x73\xaa\x49\xdd\x2b\xd4\xca\xd8\xc7\xcc\x8f\x55\x86\x45\x71\x06\x00\x5f\xca\xfe\x9b\xcd\x26\xea\x34\xe9\x8c\x5f\xa2\xa8\x63\xba\xfe\x1a\xc9\xed\x36\xf6\x6e\xa4\x64\xfc\x35\x2f\xd2\xeb\xd7\xd7\xaf\x5e\x5d\xbf\xf8\xb7\xd7\x2f\x5f\x5e\xbf\x7e\xf1\xf2\x21\x64\x90\x50\x9f\x09\x0c\x9f\x46\x7f\xab\xa8\x6c\xed\x73\x68\x8f\x97\x2e\x77\xa3\x08\x5d\x50\x0d\xa2\x83\x7f\x18\x43\x8d\xa4\x44\x24\x64\xe2\x6c\x0e\xf1\x09\x28\x72\x30\x7a\x84\xb3\xcf\x84\x56\x07\x1f\x42\x8a\x6a\x2c\x49\xd8\x55\xf3\x5c\xc9\x1e\x4e\x97\x60\x78\x55\x8b\x2d\xe4\x7b\xab\x9f\xc7\xd5\x83\x46\xf9\x5d\x58\x1d\x9a\xcd\x83\xcc\x45\xff\x4a\x15\x48\x51\xdf\x34\x26\xc7\xda\xb5\x79\x29\x92\xfe\x69\xfb\x1b\x93\x96\x4b\xec\x22\x6e\x04\xdf\x49\xb1\x85\xc6\x20\x2c\x95\x86\x02\xb3\x66\xb5\x72\x69\x82\x86\x5a\xf3\x35\xb3\xd8\x85\x59\xd3\xa2\xa2\x07\xc5\xa0\xb2\xa1\x94\x47\x0c\x32\x90\xbf\xa9\x06\x72\x26\xc1\x6a\x96\xdf\x7a\x4f\x69\xb4\x26\x4f\xa9\xd1\x4b\xd3\x07\xfa\x0c\x85\xda\xb8\x25\x5e\xee\x25\x47\xe1\xa2\xbe\x41\x84\x52\x6d\xa0\x6a\x72\xe7\x90\x14\xd5\x9d\x10\x1b\xc6\x2d\x34\xd2\x72\xe1\xf5\x69\x1b\x2d\x29\x47\xc0\x83\x28\x7d\x52\xfb\x25\x58\x2d\xde\x97\x78\x26\x25\xea\xab\x36\xd0\xf8\xd6\x2f\x87\x5a\x2b\x8b\x39\x19\x14\xd8\x8a\x71\x69\xc8\x22\x2e\x0f\xc0\xea\x23\xaa\xba\xfe\xa9\x7d\xd8\xb7\x28\xdd\x74\x1c\xc3\x5f\x85\xca\x98\x80\x35\x21\x3d\x13\x94\xce\x29\x28\x15\x89\x3e\xd0\x96\xb1\xcc\x36\x06\xd4\xd2\x8d\x7a\xce\x69\xff\x9a\x69\xb2\x20\x56\xb5\x85\xb4\x6d\xb0\xd1\x98\x41\xbd\x6e\xdb\x86\xf4\x4a\x95\xfb\xc1\x7c\xaf\xf5\x14\x7e\xfe\x65\xfe\xa4\x65\xe5\xcf\xb8\x74\x90\x20\x7c\x7b\x91\x6d\xc9\x2c\xe4\x1a\x99\x45\x03\xb9\x50\xa6\xd1\x9e\xc3\x42\xab\x1a\x88\xcb\x8e\x52\x47\x99\x26\x6a\x77\x5a\x47\x64\x5c\x32\x53\x4e\xda\xfe\xa0\x46\x67\xa5\x7e\xae\x1b\xbf\x20\xd4\x8d\x89\x00\x4f\xa7\x73\xe0\x49\x47\x37\x12\x28\x57\xb6\x9c\x03\x7f\xfe\xbc\x5f\x7c\xc1\x97\x30\xee\x56\xfc\xcc\x7f\x89\xec\x5d\x44\xa7\x40\x9a\xc2\xf0\x34\x77\x60\x4b\xc7\xd4\x82\xe7\x38\xe6\x97\x70\x35\x99\x77\xb3\x99\x46\x76\xdb\xbd\xb5\x76\xf4\xff\xb9\xbf\xbb\xf9\xa1\x66\x9c\xf2\x0f\x74\xe3\x6b\x7f\x03\x0c\x56\xdc\x58\x68\xb4\x80\xd6\x87\xbd\x09\x7a\x83\xb8\x75\x43\xad\x9c\xe0\xb2\x7d\x68\x31\xd5\x89\xe0\xc9\x44\x06\x65\x31\xfe\x8f\x1f\xbf\xfb\x36\x32\x56\x73\xb9\xe2\xcb\xed\xf8\xbe\xd1\x62\x06\x4f\xc7\xc1\xbf\x34\x5a\x04\x93\x9f\xa7\xbf\x44\x6b\x26\x1a\xbc\x74\xf6\x9e\xb9\xbf\x27\xa7\x5c\x42\xfb\x38\x83\xc3\x03\x77\x93\xc9\xfc\x7c\x9f\x64\xd0\xd6\xd1\x68\xd0\x8e\x69\x61\x0f\xfc\x63\x1d\x31\xa8\xd0\x96\xca\xb9\xae\xc6\x5c\x49\x89\xb9\x85\xa6\x56\xb2\x55\x09\x08\x65\xcc\x1e\x88\xdd\x8a\xf4\x14\x14\xed\xfa\xd4\x05\xeb\xff\xc6\xec\x47\x95\xdf\xa2\x1d\x8f\xc7\x1b\x2e\x0b\xb5\x89\x84\xf2\x57\x6d\x44\x4e\xaa\x72\x25\x20\x4d\x53\x68\xa3\x68\x30\x81\xaf\x21\xd8\x18\x8a\xa7\x01\xcc\xe8\x91\x9e\x26\xf0\x1c\x8e\xb7\x97\x14\xef\x9f\x43\x10\xb3\x9a\x07\x13\xef\x0e\x9d\xe2\x95\xac\xd0\x18\xb6\xc2\x21\x83\xae\x32\xea\x41\x46\x72\x54\x66\x05\x29\x38\x03\xd5\x4c\x1b\xf4\x4b\x22\xaa\xc6\x3b\xb4\x11\x66\xdd\xb2\x34\x05\xd9\x08\xb1\x07\xa9\x77\x8a\x79\x07\xbf\x83\xe5\x91\x8f\x35\x5f\xa5\x29\x50\x69\x4a\x2a\x2e\xf6\x3b\xc9\xf8\xbe\x88\x9e\x44\x14\x17\xf6\x3b\x26\xf3\x21\x9a\x0f\xa8\x61\xf1\x7b\xe4\xb0\x38\xa6\x87\xc5\x03\x04\x5d\xcf\xe2\x31\x7a\xbe\xc7\x31\x20\xe7\x06\x1e\xa0\x26\x9b\x2a\x43\xfd\x18\x39\xdf\xb3\x68\xc9\x39\x55\xbf\x93\x76\xb0\xf7\x12\xae\x5e\x4d\x1e\xa0\x8e\x5a\xab\x07\x89\x4b\x65\xb7\xe3\x7b\xc1\xb6\x94\x33\xc1\xc8\xaa\xfa\xad\x6b\x31\x8c\x2e\x5d\xc4\x9d\x41\x4f\xe1\xd2\x35\x8f\x67\x30\x72\x6f\x34\xcf\x2b\x74\xbb\x5e\x4e\xa7\xd3\x4b\xe8\x3e\xbb\xfc\x89\x91\x13\xea\x06\x77\x0f\xf0\x63\x9a\x3c\xa7\xb8\xff\x39\x1c\xb5\x34\x7a\x9e\xda\xf7\xcf\xe0\xaa\x8f\x0d\x07\x6c\xc1\x1f\xfe\x00\x27\xb3\x87\x30\x8e\x63\xf8\x2f\x46\x65\xb8\x10\xae\x7b\xe0\x9a\x06\xfd\xfa\x8a\x1b\xe3\x8a\x71\x03\x85\x92\xd8\xee\xf9\xb4\x6b\xff\x84\xc7\x76\x19\x2c\x60\x7a\xcc\x20\x5d\x87\x83\xb0\x70\x26\x5a\x0c\xe8\x1e\x06\x82\x8b\xdd\xf0\xbc\x83\x9d\xbc\x42\xf8\x2a\x85\x20\x18\x6e\x3e\x59\x41\x0b\x7a\x62\x17\x06\xed\x7b\x6f\x8b\x71\x1b\x1d\xcf\xc5\xae\xc9\x25\xdc\x4c\xa7\xd3\xc9\x09\x13\xbb\xbd\x7a\xdf\xd4\x94\x36\x01\x93\x5b\x77\x25\xf6\xba\x75\x89\x23\xa5\x40\x74\xa5\x09\xc8\x95\x10\x3e\x67\x69\xb7\x92\x82\xdb\xe6\x49\x0a\xe1\xd5\xfc\x4c\x14\x1d\x68\x72\x20\xda\xb1\x79\xce\xe8\xfe\xd8\x44\x87\x3a\x3b\x5a\x1c\x5e\x1d\x18\xe5\xc0\x5e\xe7\x0d\x73\xd1\xf3\xcd\xf7\x1a\x3d\x32\xd7\xde\x5e\xc7\x3a\x1b\xf0\xef\xe9\x3c\xbf\xfa\x48\x31\xfa\xe9\xba\x31\xe5\xf8\x88\xd1\xc9\xfc\xd4\x36\xef\x2c\x6a\xca\x92\x15\x85\x2c\xb2\x05\x95\x02\x1a\x4f\x4c\xe2\x52\x75\x8d\xa1\x46\x59\xa0\xee\x52\x0a\x9f\xd9\x53\x02\x78\x60\x32\x5f\x55\x0e\xe1\x34\x90\xe8\x44\xb7\x73\xe0\xb0\xa0\x34\x0f\x78\x18\x0e\x64\x71\x79\x99\x92\x08\x00\x70\xe4\x09\x0e\xad\x07\x70\xa5\xc5\x28\x58\x6d\xb0\x80\x14\xfc\xa7\xf0\xf1\x24\x6a\x24\xbf\x1b\x4f\xc2\xf6\xfd\x98\x46\x37\x3f\xef\x6b\xc5\x8e\xf7\xe7\x29\x04\x89\xd5\xc0\x8b\x74\x14\xc0\xf3\x73\x7e\x48\xa1\x77\xb4\xd8\x73\x30\xdc\x0a\x90\xd8\x62\xe1\x9a\xa1\xbe\x68\xfb\x7b\x90\xb1\xfc\x76\xe5\xaa\xa1\x19\xe5\x5b\xe3\x13\xb2\x6c\xcd\x2c\xd3\x8e\xea\x64\x0e\xfb\xe5\x6d\xb5\x98\x93\x85\xe6\xe0\xcb\x52\xd7\x73\x85\xfe\x3b\x85\x7b\xcb\x94\x2e\x50\x87\x9a\x15\xbc\x31\x33\x78\x51\xdf\xcd\xff\xde\x7d\xc7\x71\x9d\xe1\x47\x59\xad\x35\x2e\x4e\x38\x6a\x5b\x8d\xcf\x21\x48\x62\x5a\xf0\x7b\x64\x7a\x61\x87\x9f\xe0\xe1\x4c\xff\x1b\xfa\x0f\xe4\xed\x78\xc5\x8b\x42\x20\x31\xbc\x27\x4f\x1e\x49\xf6\x1f\xfa\xd5\xe1\x91\xd0\x36\xbe\xf7\x7b\x76\x80\xc2\xe0\x23\x1b\xfa\x1e\xfa\x88\x00\x10\x92\xc8\xdc\xe9\xbc\xad\xb8\xdd\xb0\x1e\x39\x5d\xb4\x3f\xa8\x28\x1a\xed\x12\xae\x71\xd8\x02\xec\x12\x46\x86\x12\xc0\xc2\x8c\x26\x51\xd9\x54\x4c\xf2\xdf\x70\x4c\xc1\x69\xe2\x75\xe5\x9a\xf2\xc1\xe9\xbd\x7c\xc2\xcc\xbe\x5b\x3e\xea\x02\xdd\xa8\x55\xe2\xa8\xb3\xee\x8b\x7d\x81\x3f\x83\xe9\x7c\xf4\x89\x1a\x3a\x7f\x4a\x98\x31\x0d\xc3\x97\xb0\x8b\xc0\xa0\x15\x9d\xde\xcd\x65\x4c\x8f\x7c\x3b\xc3\x25\xe9\x52\x6d\xd2\xd1\xcd\xb4\x67\xd2\x1b\xda\xd9\x79\xd4\x62\xed\xc4\x18\xc4\x65\xe7\x9a\x0b\xb8\x99\x7e\x09\x6e\x7d\x4b\xe4\x48\x02\xab\x79\x8d\x05\xb0\xdc\xf2\x35\xfe\x3f\x08\xf2\x05\x94\xfc\xc9\x2c\x12\x0e\x3b\xe5\x39\x98\x1e\xf0\x4b\xb3\xbd\x6e\xff\x95\xfc\x0d\x62\xa7\xe1\xe7\x10\x9c\x15\xe4\x41\x24\x1e\x2d\x3c\x72\xed\x87\xfd\xde\x7d\x65\x0a\x8e\x03\x0b\xa5\xbc\xfd\x17\xd2\x49\x54\xda\x4a\x8c\x83\xc4\xba\x9f\xca\x10\xcf\x3d\x05\x47\xc0\x0f\x1f\xe6\x75\xbb\xc3\x6a\x86\x8a\x78\x3c\x2a\xb6\x60\x90\xa1\xf4\x05\x59\x97\x8e\xc0\x6e\xff\x8b\xa2\x38\x86\x1f\x2d\xd3\x16\x18\xfc\xf4\x0e\x9a\xba\x60\xd6\x7f\xcf\xa1\x20\xe9\xbf\x97\x74\x3f\x39\xca\x98\x36\xb0\x54\x7a\xc3\x74\xd1\x36\x69\x6c\x89\x5b\xf7\x3d\xa7\xcb\xff\x0c\xda\x77\x74\x8b\xad\x99\x18\x9f\x14\x7f\x4f\xc7\xa3\x68\x68\xf2\xd1\x24\x42\x96\x97\xa7\x0b\x5d\xc4\xea\xcf\x4d\xe1\x5b\x57\x07\x8c\x9f\x8e\x6d\xc9\xcd\x24\x62\xd6\xea\xf1\xe8\x00\x0c\xa3\x09\xd9\xf5\x6a\x50\x97\xf5\xdb\x93\x03\xb7\x7a\x8c\xc6\x3e\xa3\xee\xb3\x81\x6e\x79\x6e\xcc\xd8\xe3\x6a\x74\x39\xa0\x7d\x08\xab\xd1\xb3\x51\x6f\xa8\xbd\x7b\xef\xe5\x48\xcf\x72\x72\x40\x7a\x44\x5e\x36\x3a\x39\x9e\x15\xc5\x5b\xf2\x9f\x71\x70\xc6\xd3\x8f\xd1\x31\xe9\x95\xed\xef\xeb\x47\xb5\xec\x7f\x9b\xf1\x80\x8a\x79\x31\x9a\x44\xa6\xc9\x7c\x83\x62\xfc\xb2\xaf\xc2\xba\x65\x0e\xbc\xc7\xa1\xe0\x24\xa1\xa0\x23\x0e\x93\x8a\xf0\x28\x09\x79\x24\x6a\xb4\x47\x7a\xa9\x76\x97\xa4\xf0\xe9\xa4\xef\x6f\x7d\x63\x28\xc3\xf2\xfd\xff\x0d\x66\xc6\xb5\x13\xa0\xc5\xbb\x6b\xe9\xf8\xd6\xcd\x9b\xef\xdf\x0d\xda\x37\xbd\x47\x8c\x1d\xf5\xfe\xd7\x80\xe7\x9a\x25\x67\x7f\x7e\xb8\xd9\x6c\xa2\x95\x52\x2b\xe1\x7f\x78\xd8\x77\x53\x62\x56\xf3\xe8\x83\x09\x80\x99\xad\xcc\xa1\xc0\x25\xea\xc5\x80\x7c\xdb\x62\x49\x62\xff\xc3\xb8\x24\xf6\xbf\xfd\xfd\xbf\x00\x00\x00\xff\xff\xb2\x1e\x6f\x68\x0c\x2c\x00\x00") +var _faucetHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\xdb\x92\xdb\x36\xd2\xbe\x9e\x54\xe5\x1d\x3a\xfc\x9d\x88\xfa\x67\x48\x4a\x9e\x9c\x4a\x22\xb5\xe5\x75\xb2\x29\x6f\xd5\xe6\xb0\x49\x2a\xbb\x95\xe4\x02\x24\x5a\x22\x66\x40\x80\x01\x40\x69\x14\x95\xde\x7d\x0b\xe0\x41\x24\xa5\x19\xdb\x6b\xaf\x2f\x46\x24\xd0\xe8\xfe\xd0\xdd\xe8\x03\xe8\xf8\xa3\xaf\xbe\x7b\xf9\xd3\xbf\xbf\xff\x1a\x72\x53\xf0\xd5\x87\x1f\xc4\xf6\x17\x38\x11\x9b\xc4\x43\xe1\xad\x3e\xfc\xe0\x2a\xce\x91\x50\xfb\x70\x15\x17\x68\x08\x64\x39\x51\x1a\x4d\xe2\x55\x66\x1d\x7c\xe9\xf5\x66\x72\x63\xca\x00\xff\xa8\xd8\x36\xf1\xfe\x15\xfc\xfc\x22\x78\x29\x8b\x92\x18\x96\x72\xf4\x20\x93\xc2\xa0\x30\x89\xf7\xea\xeb\x04\xe9\x06\xfb\x0b\x05\x29\x30\xf1\xb6\x0c\x77\xa5\x54\xa6\x47\xbb\x63\xd4\xe4\x09\xc5\x2d\xcb\x30\x70\x2f\x37\xc0\x04\x33\x8c\xf0\x40\x67\x84\x63\x32\xb7\x7c\x1c\x27\xc3\x0c\xc7\xd5\xe1\x10\x7e\x8b\x66\x27\xd5\xfd\xf1\xb8\x80\xbf\x91\x2a\x43\x13\x47\xf5\x5c\x43\xc8\x99\xb8\x87\x5c\xe1\x3a\xf1\x2c\x62\xbd\x88\xa2\x8c\x8a\x3b\x1d\x66\x5c\x56\x74\xcd\x89\xc2\x30\x93\x45\x44\xee\xc8\x43\xc4\x59\xaa\x23\xb3\x63\xc6\xa0\x0a\x52\x29\x8d\x36\x8a\x94\xd1\x6d\x78\x1b\x7e\x11\x65\x5a\x47\xdd\x58\x58\x30\x11\x66\x5a\x7b\xa0\x90\x27\x9e\x36\x7b\x8e\x3a\x47\x34\x1e\x44\xab\xff\x52\xf0\x5a\x0a\x13\x90\x1d\x6a\x59\x60\xf4\x69\xf8\x45\x38\x73\x32\xfb\xc3\xaf\x11\xeb\x04\xeb\x4c\xb1\xd2\x80\x56\xd9\x1b\x4b\xbe\xfb\xa3\x42\xb5\x8f\x6e\xc3\x79\x38\x6f\x5e\x9c\xa4\x3b\xed\xad\xe2\xa8\x66\xb8\x7a\x37\xe6\x81\x90\x66\x1f\x3d\x0f\x3f\x0d\xe7\x51\x49\xb2\x7b\xb2\x41\xda\x8a\xb2\x53\x61\x3b\xf8\xfe\x04\x3f\x66\xc8\xbb\xb1\x1d\xdf\x8b\xb4\x42\x16\x28\x4c\x78\xa7\xa3\xe7\xe1\xfc\xcb\x70\xd6\x0e\x5c\x10\x50\x8b\xb0\xb6\x73\xd2\xae\xc2\x2d\x2a\xc3\x32\xc2\x83\x0c\x85\x41\x05\x07\x37\x7c\x55\x30\x11\xe4\xc8\x36\xb9\x59\xc0\x7c\x36\xfb\x78\x79\x71\x78\x9b\x37\xe3\x94\xe9\x92\x93\xfd\x02\xd6\x1c\x1f\x9a\x31\xc2\xd9\x46\x04\xcc\x60\xa1\x17\x50\x73\xaf\x67\x8e\xb5\xe4\x52\xc9\x8d\x42\xad\x5b\x91\xa5\xd4\xcc\x30\x29\x16\xd6\xc1\x88\x61\x5b\xbc\x4c\xae\x4b\x22\xce\xd7\x90\x54\x4b\x5e\x19\x1c\x03\x4a\xb9\xcc\xee\x9b\x41\x77\xb0\x07\xfb\xc9\x24\x97\x6a\x01\xbb\x9c\xb5\x2b\xa1\x16\x07\xa5\xc2\x56\x08\x94\x84\x52\x26\x36\x0b\xf8\xbc\x6c\x37\x07\x05\x51\x1b\x26\x16\x30\xeb\x2f\x8b\xa3\x4e\xb5\x71\xd4\x84\x33\xfb\x9c\x4a\xba\xaf\xad\x4b\xd9\x16\x32\x4e\xb4\x4e\xbc\x91\xe6\xeb\x38\x35\xa0\xb0\xe1\x89\x30\xd1\xcd\x0d\x26\x95\xdc\x79\xe0\xc4\x25\x5e\x0d\x26\x48\xa5\x31\xb2\x58\xc0\xdc\xe2\x6c\xd7\x8c\x38\xf2\x80\x6f\x82\xf9\xf3\x6e\xf6\x2a\xce\xe7\x2d\x1b\x83\x0f\x26\x70\x66\xeb\x0c\xe6\xad\x62\xd6\x2e\x5e\x13\x58\x93\x20\x25\x26\xf7\x80\x28\x46\x82\x9c\x51\x8a\x22\xf1\x8c\xaa\xd0\x7a\x19\x5b\x41\x3f\x2c\x76\x51\x31\x9f\x77\x58\x22\xca\xb6\xed\x66\xfa\xcf\xa3\x8d\x3d\x81\xfd\x4b\x68\x1e\xe4\x7a\xad\xd1\x04\xfd\xad\xf4\xa8\x99\x28\x2b\x13\x6c\x94\xac\xca\x13\xc1\x55\xec\x86\x81\xd1\xc4\xab\x14\xf7\x9a\x84\xe0\x1e\xcd\xbe\x6c\x54\xe0\x75\x1b\x96\xaa\x08\xac\x11\x94\xe4\x1e\x94\x9c\x64\x98\x4b\x4e\x51\x25\xde\x2b\xc7\x67\x2f\x2b\x05\xbf\x60\x7a\xfb\x03\xbc\xcc\x09\x13\x40\x28\xb5\x3e\x1a\x86\xa1\x17\xf5\xa4\x3a\x97\x3d\x07\x16\xa4\x46\xf4\xc0\x5d\xc5\x69\x65\x8c\xec\x28\x53\x23\x20\x35\x22\xa0\xb8\x26\x15\x37\x40\x95\x2c\xa9\xdc\x89\xc0\xc8\xcd\xc6\xa6\xba\x1a\x72\xbd\xc8\x03\x4a\x0c\x69\xa6\x12\xaf\xa5\x6d\x2d\x45\x74\x29\xcb\xaa\x6c\x6c\x55\x0f\xe2\x43\x49\x04\x45\x6a\x2d\xcb\x35\x7a\xab\x6f\xd8\x16\xa1\x40\xf8\xe5\xf6\x87\xab\xb1\xd9\x33\xa2\xd0\x04\x7d\x96\x67\xc6\x8f\xa3\x1a\x4a\xb3\x23\x68\xfe\xc5\x15\x6f\x59\x75\x3b\x28\x50\x54\x30\x78\x0b\x94\x8d\x2a\xde\xea\x70\x50\x44\x6c\x10\x9e\x31\xfa\x70\x03\xcf\x48\x21\x2b\x61\x60\x91\x40\xf8\xc2\x3d\xea\xe3\x71\xc8\x1e\x20\xe6\x6c\x15\x93\xa7\x9c\x18\xa4\xc8\x38\xcb\xee\x13\xcf\x30\x54\xc9\xe1\x60\xb9\x1f\x8f\x4b\x38\x1c\xd8\x1a\x9e\x85\xff\xc4\x8c\x94\x26\xcb\xc9\xf1\xb8\x51\xed\x73\x88\x0f\x98\x55\x06\xfd\xe9\xe1\x80\x5c\xe3\xf1\xa8\xab\xb4\x60\xc6\x6f\x97\xdb\x71\x41\x8f\x47\x0b\xba\x01\x7a\x3c\x42\x64\x99\x0a\x8a\x0f\xf0\x2c\xfc\x1e\x15\x93\x54\x43\x4d\x1f\x47\x64\x15\x47\x9c\xad\x9a\x75\x23\x35\x45\x15\xef\xb9\x4c\x64\x7d\xe6\xe4\xd9\xee\xac\x38\xb4\x7d\xb0\x97\x1c\x7f\x13\x74\x3b\x68\x7c\x42\x33\x83\xf7\xb8\x4f\xbc\xc3\xa1\xbf\xb8\x99\xcd\x08\xe7\x29\xb1\xba\xa9\xb7\xd7\x2d\xfa\x13\xad\xb3\x6e\x99\x76\x75\xd5\xaa\x85\xd0\x83\xfe\xc6\xc7\x79\x14\xa7\x8c\x2c\x17\x70\xfb\xbc\x1f\xa4\x2e\x9d\xf4\xcf\x47\x27\xfd\xf6\x32\x75\x49\x04\x72\x70\x7f\x03\x5d\x10\xde\x3e\x37\xc7\xa6\x7f\xfa\xc7\xab\x02\x1b\x98\x3b\x74\x5d\x98\x9f\x2d\x41\x6e\x51\xad\xb9\xdc\x2d\x80\x54\x46\x2e\xa1\x20\x0f\x5d\xe2\xbb\x9d\xcd\x06\xd0\x6d\x4d\x48\x52\x8e\x2e\xac\x28\xfc\xa3\x42\x6d\x74\x17\x44\xea\x29\xf7\xd7\xc6\x12\x8a\x42\x23\x1d\x69\xc4\x8a\xb4\x1a\x76\x54\x7d\x27\x38\xa9\xf4\x22\xfc\xb5\x94\xa7\xcc\xd1\x47\xd2\x70\xef\x25\x3c\x6f\x15\x1b\xd5\x23\xbc\x8a\x0d\x7d\xab\xb8\x6f\xbd\x22\x25\x1a\x1f\x8f\xfd\x75\x98\xb3\x4a\x70\x49\xd7\xd5\x1d\xd6\x89\xeb\x1c\xac\xe3\xc8\xd0\x77\x01\x90\x23\x51\x26\x45\x62\xde\x04\xc1\xba\x12\x54\x9f\x10\xfc\x72\xfb\xc3\x3b\xcb\xaf\x04\xdb\xa2\xd2\xcc\xec\xdf\x14\x00\xd2\x13\x82\xfa\x7d\x84\x21\x8e\x8c\x7a\x9d\xd9\x07\x6f\x8f\x1c\xb8\xd3\x63\xfb\xd4\x2b\x25\x6b\x92\x28\x82\x6f\xb8\x4c\x09\x87\xad\x05\x9f\x72\xd4\x60\x24\xd8\x7c\x06\x26\x47\xc8\x2a\xa5\x50\x18\xd0\x86\x98\x4a\x83\x5c\xbb\xd1\xb5\xcb\xe0\x8e\xc1\x96\x28\x20\xc6\x60\x51\x1a\x48\xda\xb2\xc7\x0e\x6a\x54\xdb\xb6\xb4\xb3\xef\x36\xc4\x0e\x29\xda\x33\x01\x09\xfc\xfa\xfb\xb2\x06\x67\x01\x7d\x85\x6b\x26\x10\x88\x55\x4e\x66\xcb\x38\x30\x39\x31\x90\x29\x24\x06\x35\x64\x5c\xea\x4a\xd5\x38\x6d\xae\x00\x8b\xb5\xe5\xd5\x31\xb7\x33\xa5\x93\xd8\x72\xf1\x73\xa2\xf3\x69\x5b\xbd\x29\x34\x95\x12\xa7\xc9\x6e\xe2\x6a\x2d\x15\xf8\x96\x05\x4b\x66\x4b\x60\x71\xcb\x3a\xe4\x28\x36\x26\x5f\x02\xbb\xbe\x3e\x51\x5f\xb1\x35\xf8\x2d\xc9\xaf\xec\xf7\xd0\x3c\x84\x56\x10\x24\x09\x0c\x04\x3a\x99\x0d\x27\x5d\x72\x96\xa1\xcf\x6e\x60\x3e\x5d\x76\xd3\xa9\x42\x72\xdf\xbd\xb6\xc1\xb4\xf9\xad\x7f\x8e\xcb\x91\x92\x9c\x35\x06\x6a\xaa\xc3\xb5\x06\x02\x1b\xa6\x0d\x54\x8a\x5b\x45\x59\xba\xda\x22\x27\x03\x39\xc2\xbe\x82\xce\x12\x49\xf3\xd0\x44\xf7\x6e\x2b\x35\xa3\x50\xa3\xa0\xfe\xdf\x7f\xfc\xee\xdb\x50\x1b\xc5\xc4\x86\xad\xf7\xfe\xa1\x52\x7c\x01\xcf\x7c\xef\xff\x6c\xf5\x34\xfd\x75\xf6\x7b\xb8\x25\xbc\xc2\x1b\x67\xff\x85\xfb\x7b\x26\xe6\x06\x9a\xc7\x05\x0c\x25\x1e\xa7\xd3\xe5\x23\xd9\xad\x97\x90\x15\x6a\x34\xbe\xa5\x3c\x25\xa1\x33\x45\x11\x28\xd0\xe4\x92\x5a\x65\x28\xcc\xa4\x10\x98\x19\xa8\x4a\x29\x1a\xbd\x00\x97\x5a\xf7\x7c\xb3\x25\x49\x2e\xf8\x48\xb3\x22\x01\x81\x3b\x5b\xe8\xfd\x28\xb3\x7b\x34\xbe\xef\xef\x98\xa0\x72\x17\x72\x99\x11\xbb\xc2\x76\x27\x46\x66\x92\x43\x92\x24\xd0\xf4\x6d\xde\x14\xfe\x02\xde\x4e\xdb\x0e\xce\x83\x85\x7d\xb4\x4f\x53\xb8\x86\xf1\xf2\x5c\x6a\x03\xd7\xe0\x45\xa4\x64\xde\xb4\x3d\x22\xad\xfe\xa5\x28\x50\x6b\xb2\xc1\x3e\x46\xdc\xa2\x30\x27\xa7\xb3\x7b\x29\xf4\x06\x12\x70\x86\x2a\x89\xd2\x58\xd3\x84\x36\x72\x77\xde\x67\xbd\xd8\xd1\x25\x09\x88\x8a\xf3\x9e\xdb\xd6\x27\x65\x79\x72\xc7\xe1\x92\xd0\xc5\x54\xf8\x28\x49\xc0\xc6\x32\xab\x6c\xda\x5b\x6d\x5d\xa1\x8e\xba\xd3\xd0\xc6\xd3\xd3\x92\xe9\x72\xe8\xe1\x03\x86\x48\x5f\xcb\x11\xe9\x98\x25\xd2\x47\x79\x8a\xaa\x48\x51\x3d\xc9\xb3\xce\x4e\x0d\x4b\xa7\xa8\x57\xc2\xf4\x16\xdf\xc0\xfc\xf3\xe9\xa3\x02\x50\x29\xf9\x38\x7f\x21\xcd\xde\x3f\x70\xb2\x97\x95\x59\xc0\xc4\xc8\xf2\xa5\xcb\x27\x93\x1b\xb0\xe2\x16\xd0\xb1\xb8\x71\xe5\xfb\x02\x26\xee\xcd\xce\xb3\x02\xdd\xaa\xcf\x66\xb3\xd9\x0d\xb4\xfd\xee\x5f\x89\x3d\x4d\xaa\xc2\xe3\xa3\x90\x74\x95\x65\xb6\x33\x7e\x27\x50\x0d\x93\x0e\x56\xf3\xfe\x4e\xc0\xba\xc0\x3f\x40\x06\x9f\x7c\x02\x67\xb3\x23\x5f\x8c\x22\xf8\x07\x51\xf7\xe0\xca\x39\x85\x5b\x26\x2b\x7d\xca\x23\x05\xd3\x9a\x89\x0d\x10\x0d\x54\x0a\x6c\x17\xbd\x65\x40\x3f\x83\xd9\xd0\xc1\x0a\x66\x63\x8c\x36\xbe\xf5\x02\xfe\x85\x3c\xd0\x67\x3c\x8a\xf0\x9d\x5e\x2e\x24\x11\x56\x20\x7c\x94\x80\xe7\x0d\xd6\x9f\x91\x58\x8a\x13\xbf\x2b\x8d\xe6\xa7\xda\x2a\x7e\x93\xff\x2e\xa5\xa6\xe9\x8d\xad\x55\x67\xd3\x0b\x40\x8e\x3d\x45\xbf\x28\x4b\x14\x14\x88\xd8\xbb\x30\xd7\x69\x99\x09\x23\xc1\x76\xb8\x36\x4c\x71\x5b\x8c\x73\x74\xb1\xa7\x5d\x6b\x55\x9d\xc9\xa2\x90\x02\x12\x08\xe6\xcb\x4b\x99\xb2\xa7\xd3\xfe\x0e\xc7\xa6\xba\x60\x86\x33\x73\x0d\x95\x37\xa2\x0e\xe6\x03\x03\x0d\x6c\xf7\x88\x91\xae\x3a\xec\xac\xa7\xda\xb1\xed\x7a\xc6\x3b\xd7\x5e\x6f\x1b\x35\xb3\xeb\xf9\x9b\xee\xa6\x9b\x2f\x2b\x9d\xfb\x23\xbc\xd3\xb3\xea\xc0\x1a\xea\x95\x41\x45\x0c\xba\xe6\xc4\x19\x06\x85\x61\x0a\xcf\xec\x03\x44\xd8\x42\x29\x50\x28\x28\xaa\xb6\x74\xb0\xbd\x4d\xdd\x87\x0c\xed\xe7\xae\xc0\x87\x0e\xd6\xdb\xd6\x99\x9a\x97\xc0\x60\x65\xcb\x3b\x60\x41\xd0\xdf\x90\x2b\xc6\xa4\x40\xdb\xcc\x8e\x4e\x88\xf3\xe0\xa1\x0b\x5b\x6a\xe4\xa4\xd4\x48\x21\x81\xfa\xc2\xd2\x9f\x86\x95\x60\x0f\xfe\x34\x68\xde\xc7\x4c\xda\xf9\x2e\x41\x3a\x23\xd6\x1b\xb8\x4e\xc0\x8b\x8d\xb2\xc5\xf7\xc4\x83\xeb\x4b\x47\xd4\x66\xd8\xc9\xaa\x07\xa2\xbf\x16\x20\x36\x74\xe5\x7a\xac\xba\x2b\xf8\xcd\xb3\x6d\xf1\x46\xc9\x4a\xd0\x85\x2d\xaf\xfc\x33\xbe\x64\x4b\x0c\x51\x8e\xed\x74\x09\x27\x72\xd7\x3d\x2f\x20\xb3\x86\x5a\x42\xdd\x85\xb9\x7e\x17\xba\x1e\xd2\xbd\xa5\x52\x51\x54\x81\x22\x94\x55\x7a\x01\x9f\x96\x0f\xcb\xdf\xda\x4e\xdb\xb5\x0a\x4f\x63\x2d\x15\xae\xce\x20\x65\x99\xbb\x31\xb9\x06\x2f\x8e\x2c\xc1\x6b\xf9\x74\xdb\xed\x5f\x8f\xc2\x85\x96\x08\xba\x1b\xcb\x66\xbc\x60\x94\x72\xb4\x90\x7b\xfc\xed\x21\xb5\x6e\x30\x38\x6a\x43\xa1\xd0\x74\x43\xbd\x55\x47\x40\xae\xf1\xa9\x25\x5d\x6b\x35\xb1\x9e\x10\xd8\x7d\x33\xa7\xf9\xa6\x4b\x73\xc3\x6a\xe2\x14\xd2\xdc\x7f\xd3\x4a\xb9\xf2\xca\x0f\x1a\x4f\xbb\x81\x89\xb6\xf5\x1e\xd5\x93\x69\x98\x57\x05\x11\xec\x4f\xf4\x6d\x0e\x9b\xd6\x0a\x73\xbd\x9a\x77\x29\x70\x9f\xc1\x39\x35\xe3\x93\x36\x23\x4e\x1a\x55\x4e\x5a\x2b\x5b\x83\xf6\x6e\x8a\x27\x6f\xad\xa7\xcb\x72\x82\x94\x28\xe8\xbf\x04\x6d\xb2\x06\x25\xad\xfc\x76\x2e\x25\x6a\x52\xf7\xaa\xae\x36\x17\x72\x97\x4c\x6e\x67\x1d\xcc\xda\xe0\xce\xde\x93\xc6\xeb\xce\x4d\x62\x71\xb6\x07\x75\x05\xb7\xb3\xf7\x82\x97\x12\xb1\xc1\xf1\x1e\x8c\x62\x25\x52\x20\x99\x61\x5b\xfc\x5f\x6c\xe5\x7d\x28\xfa\xad\x41\x5a\x7f\x6c\xf5\xe7\xdc\x75\x80\xd8\xce\x76\xea\xfd\x7f\x7b\xf6\x20\x72\x4a\xbe\x06\xef\xf2\x56\x1e\xf7\xc8\x31\xe9\xe8\xa4\x3f\x11\x07\xdc\x3d\x84\x77\x9e\x73\x6c\xb5\xdc\x5d\x68\x4d\xc3\xdc\x14\xdc\xf7\x62\xe3\x3e\x67\x58\xe4\x1d\x0f\xc7\xa2\x1e\x1e\x17\x83\xc7\x51\x2b\x63\xbb\x7a\x1c\x35\x5b\xd0\xab\x67\xba\x86\xac\x2d\x5e\xe0\xd8\xff\x0e\x14\x45\xf0\xa3\x21\xca\x00\x81\x9f\x5f\x41\x55\x52\x62\x6c\x8a\x93\x60\xd3\xa8\x4b\x75\xdd\x87\xa2\x94\x28\x0d\x6b\xa9\x76\x44\x51\xa8\x84\x61\xdc\xce\xef\x81\x28\x3c\x95\x8d\x1a\xcd\x2b\x1b\xdd\xb6\x84\xfb\xe7\xfd\xdf\x33\x7f\x12\xf6\xed\x3f\x99\x86\x48\xb2\xfc\x02\xa5\x4b\x68\x9d\xe8\x04\xbe\x75\xad\x84\xff\xcc\x37\x39\xd3\xd3\x90\x18\xa3\xfc\xc9\xc0\x35\x26\x53\x6b\xe5\x79\xbf\x31\xeb\xd6\xc7\xc3\x83\xf6\x14\x97\x53\x41\x7e\x2a\x1a\x5a\xfa\x4c\x6b\xbf\x76\xb4\xc9\x4d\x8f\xfb\xd0\xcf\x26\x1f\x4f\x4e\x36\x3b\x9d\xf9\xd3\x5e\x92\xcb\x60\x06\xcc\x27\xf6\xe8\x4d\xce\x11\x10\x4a\x5f\xda\x33\xe5\x7b\x17\xce\xff\xb9\xaf\x4c\x4f\x6a\xaf\xc3\xf9\xd3\xfa\xae\xef\xd9\x1f\x51\x36\xa3\x93\x69\xa8\xab\xb4\xbe\xb3\xf0\x3f\x3b\xb5\x74\x2d\x9d\xf3\xe7\x71\xae\x38\x2b\x3d\xac\x8c\x61\xf9\x11\x8c\xca\x95\x27\xd2\x4a\x2b\xb3\xd9\xd9\xf1\xc6\xaa\x7e\x36\xed\x5d\x82\x7d\xad\x6d\x4d\xc6\x74\x0e\x04\x76\x98\x6a\x77\xc3\x00\xcd\x19\x70\x97\x3d\xf5\xa5\xce\x8b\xef\x5f\xf5\x2f\x76\xba\x63\xe2\xd7\x22\xba\x6f\xbc\x17\xaf\x51\x2e\x7e\x55\xde\xed\x76\xe1\x46\xca\x0d\xaf\xbf\x27\x77\xf7\x2c\x11\x29\x59\x78\xa7\x3d\x20\x7a\x2f\x32\xa0\xb8\x46\xb5\xea\xf1\x6f\x2f\x5f\xe2\xa8\xf9\xae\x19\x47\xcd\xff\xea\xf8\x4f\x00\x00\x00\xff\xff\xe6\xef\x2a\x89\xe7\x21\x00\x00") func faucetHtmlBytes() ([]byte, error) { return bindataRead(