ETH Price: $3,464.12 (-1.49%)
Gas: 4 Gwei

Token

Wirex Token (WXT)
 

Overview

Max Total Supply

9,300,000,000 WXT

Holders

1,107 ( 0.090%)

Market

Price

$0.01 @ 0.000002 ETH (+5.46%)

Onchain Market Cap

$51,671,172.00

Circulating Supply Market Cap

$12,788,317.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
32,810.0056274 WXT

Value
$182.29 ( ~0.0526223037637272 Eth) [0.0004%]
0x2Eb23c26148b5B148439e52d3F37A9fFE38f2084
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Wirex is a worldwide digital payment platform and regulated institution endeavoring to make digital money accessible to everyone. XT is a utility token and used as a backbone for Wirex's reward system called X-Tras: https://wirexapp.com/x-tras.

Market

Volume (24H):$1,395,660.00
Market Capitalization:$12,788,317.00
Circulating Supply:2,300,499,975.00 WXT
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WirexToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: WirexToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "ERC20.sol";
import "ERC20Burnable.sol";
import "Pausable.sol";
import "Ownable.sol";

contract WirexToken is ERC20, ERC20Burnable, Pausable, Ownable {
    constructor() ERC20("Wirex Token", "WXT") {}

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 2 of 7: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC20.sol";
import "Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overloaded;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

File 3 of 7: ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "ERC20.sol";
import "Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}

File 4 of 7: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 5 of 7: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 6 of 7: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f576972657820546f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600381526020017f57585400000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200018c565b508060049080519060200190620000af9291906200018c565b5050506000600560006101000a81548160ff0219169083151502179055506000620000df6200018460201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002a1565b600033905090565b8280546200019a906200023c565b90600052602060002090601f016020900481019282620001be57600085556200020a565b82601f10620001d957805160ff19168380011785556200020a565b828001600101855582156200020a579182015b8281111562000209578251825591602001919060010190620001ec565b5b5090506200021991906200021d565b5090565b5b80821115620002385760008160009055506001016200021e565b5090565b600060028204905060018216806200025557607f821691505b602082108114156200026c576200026b62000272565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61238980620002b16000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f9578063a457c2d714610317578063a9059cbb14610347578063dd62ed3e14610377578063f2fde38b146103a75761012c565b806370a082311461027b578063715018a6146102ab57806379cc6790146102b55780638456cb59146102d15780638da5cb5b146102db5761012c565b806339509351116100f457806339509351146101eb5780633f4ba83a1461021b57806340c10f191461022557806342966c68146102415780635c975abb1461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103c3565b6040516101469190611b15565b60405180910390f35b610169600480360381019061016491906117f8565b610455565b6040516101769190611afa565b60405180910390f35b610187610473565b6040516101949190611d17565b60405180910390f35b6101b760048036038101906101b291906117a9565b61047d565b6040516101c49190611afa565b60405180910390f35b6101d561057e565b6040516101e29190611d32565b60405180910390f35b610205600480360381019061020091906117f8565b610587565b6040516102129190611afa565b60405180910390f35b610223610633565b005b61023f600480360381019061023a91906117f8565b6106b9565b005b61025b60048036038101906102569190611834565b610743565b005b610265610757565b6040516102729190611afa565b60405180910390f35b61029560048036038101906102909190611744565b61076e565b6040516102a29190611d17565b60405180910390f35b6102b36107b6565b005b6102cf60048036038101906102ca91906117f8565b6108f3565b005b6102d9610977565b005b6102e36109fd565b6040516102f09190611adf565b60405180910390f35b610301610a27565b60405161030e9190611b15565b60405180910390f35b610331600480360381019061032c91906117f8565b610ab9565b60405161033e9190611afa565b60405180910390f35b610361600480360381019061035c91906117f8565b610bad565b60405161036e9190611afa565b60405180910390f35b610391600480360381019061038c919061176d565b610bcb565b60405161039e9190611d17565b60405180910390f35b6103c160048036038101906103bc9190611744565b610c52565b005b6060600380546103d290611e7b565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe90611e7b565b801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b6000610469610462610dfe565b8484610e06565b6001905092915050565b6000600254905090565b600061048a848484610fd1565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d5610dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054c90611c17565b60405180910390fd5b61057285610561610dfe565b858461056d9190611dbf565b610e06565b60019150509392505050565b60006012905090565b6000610629610594610dfe565b8484600160006105a2610dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106249190611d69565b610e06565b6001905092915050565b61063b610dfe565b73ffffffffffffffffffffffffffffffffffffffff166106596109fd565b73ffffffffffffffffffffffffffffffffffffffff16146106af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a690611c37565b60405180910390fd5b6106b7611250565b565b6106c1610dfe565b73ffffffffffffffffffffffffffffffffffffffff166106df6109fd565b73ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611c37565b60405180910390fd5b61073f82826112f2565b5050565b61075461074e610dfe565b82611446565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107be610dfe565b73ffffffffffffffffffffffffffffffffffffffff166107dc6109fd565b73ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611c37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061090683610901610dfe565b610bcb565b90508181101561094b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094290611c57565b60405180910390fd5b61096883610957610dfe565b84846109639190611dbf565b610e06565b6109728383611446565b505050565b61097f610dfe565b73ffffffffffffffffffffffffffffffffffffffff1661099d6109fd565b73ffffffffffffffffffffffffffffffffffffffff16146109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea90611c37565b60405180910390fd5b6109fb61161a565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a3690611e7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290611e7b565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b60008060016000610ac8610dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90611cd7565b60405180910390fd5b610ba2610b90610dfe565b858584610b9d9190611dbf565b610e06565b600191505092915050565b6000610bc1610bba610dfe565b8484610fd1565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c5a610dfe565b73ffffffffffffffffffffffffffffffffffffffff16610c786109fd565b73ffffffffffffffffffffffffffffffffffffffff1614610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590611c37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3590611b97565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90611cb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90611bb7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fc49190611d17565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890611c97565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a890611b37565b60405180910390fd5b6110bc8383836116bd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990611bd7565b60405180910390fd5b818161114e9190611dbf565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111de9190611d69565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112429190611d17565b60405180910390a350505050565b611258610757565b611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90611b57565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6112db610dfe565b6040516112e89190611adf565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135990611cf7565b60405180910390fd5b61136e600083836116bd565b80600260008282546113809190611d69565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113d59190611d69565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161143a9190611d17565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90611c77565b60405180910390fd5b6114c2826000836116bd565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90611b77565b60405180910390fd5b81816115549190611dbf565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546115a89190611dbf565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161160d9190611d17565b60405180910390a3505050565b611622610757565b15611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990611bf7565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586116a6610dfe565b6040516116b39190611adf565b60405180910390a1565b6116c5610757565b15611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc90611bf7565b60405180910390fd5b611710838383611715565b505050565b505050565b60008135905061172981612325565b92915050565b60008135905061173e8161233c565b92915050565b60006020828403121561175657600080fd5b60006117648482850161171a565b91505092915050565b6000806040838503121561178057600080fd5b600061178e8582860161171a565b925050602061179f8582860161171a565b9150509250929050565b6000806000606084860312156117be57600080fd5b60006117cc8682870161171a565b93505060206117dd8682870161171a565b92505060406117ee8682870161172f565b9150509250925092565b6000806040838503121561180b57600080fd5b60006118198582860161171a565b925050602061182a8582860161172f565b9150509250929050565b60006020828403121561184657600080fd5b60006118548482850161172f565b91505092915050565b61186681611df3565b82525050565b61187581611e05565b82525050565b600061188682611d4d565b6118908185611d58565b93506118a0818560208601611e48565b6118a981611f0b565b840191505092915050565b60006118c1602383611d58565b91506118cc82611f1c565b604082019050919050565b60006118e4601483611d58565b91506118ef82611f6b565b602082019050919050565b6000611907602283611d58565b915061191282611f94565b604082019050919050565b600061192a602683611d58565b915061193582611fe3565b604082019050919050565b600061194d602283611d58565b915061195882612032565b604082019050919050565b6000611970602683611d58565b915061197b82612081565b604082019050919050565b6000611993601083611d58565b915061199e826120d0565b602082019050919050565b60006119b6602883611d58565b91506119c1826120f9565b604082019050919050565b60006119d9602083611d58565b91506119e482612148565b602082019050919050565b60006119fc602483611d58565b9150611a0782612171565b604082019050919050565b6000611a1f602183611d58565b9150611a2a826121c0565b604082019050919050565b6000611a42602583611d58565b9150611a4d8261220f565b604082019050919050565b6000611a65602483611d58565b9150611a708261225e565b604082019050919050565b6000611a88602583611d58565b9150611a93826122ad565b604082019050919050565b6000611aab601f83611d58565b9150611ab6826122fc565b602082019050919050565b611aca81611e31565b82525050565b611ad981611e3b565b82525050565b6000602082019050611af4600083018461185d565b92915050565b6000602082019050611b0f600083018461186c565b92915050565b60006020820190508181036000830152611b2f818461187b565b905092915050565b60006020820190508181036000830152611b50816118b4565b9050919050565b60006020820190508181036000830152611b70816118d7565b9050919050565b60006020820190508181036000830152611b90816118fa565b9050919050565b60006020820190508181036000830152611bb08161191d565b9050919050565b60006020820190508181036000830152611bd081611940565b9050919050565b60006020820190508181036000830152611bf081611963565b9050919050565b60006020820190508181036000830152611c1081611986565b9050919050565b60006020820190508181036000830152611c30816119a9565b9050919050565b60006020820190508181036000830152611c50816119cc565b9050919050565b60006020820190508181036000830152611c70816119ef565b9050919050565b60006020820190508181036000830152611c9081611a12565b9050919050565b60006020820190508181036000830152611cb081611a35565b9050919050565b60006020820190508181036000830152611cd081611a58565b9050919050565b60006020820190508181036000830152611cf081611a7b565b9050919050565b60006020820190508181036000830152611d1081611a9e565b9050919050565b6000602082019050611d2c6000830184611ac1565b92915050565b6000602082019050611d476000830184611ad0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611d7482611e31565b9150611d7f83611e31565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611db457611db3611ead565b5b828201905092915050565b6000611dca82611e31565b9150611dd583611e31565b925082821015611de857611de7611ead565b5b828203905092915050565b6000611dfe82611e11565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e66578082015181840152602081019050611e4b565b83811115611e75576000848401525b50505050565b60006002820490506001821680611e9357607f821691505b60208210811415611ea757611ea6611edc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61232e81611df3565b811461233957600080fd5b50565b61234581611e31565b811461235057600080fd5b5056fea264697066735822122009683a66b6bfc5580749353b5589cde4b5a3365dca8e3e676a5afceec96bca1564736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f9578063a457c2d714610317578063a9059cbb14610347578063dd62ed3e14610377578063f2fde38b146103a75761012c565b806370a082311461027b578063715018a6146102ab57806379cc6790146102b55780638456cb59146102d15780638da5cb5b146102db5761012c565b806339509351116100f457806339509351146101eb5780633f4ba83a1461021b57806340c10f191461022557806342966c68146102415780635c975abb1461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103c3565b6040516101469190611b15565b60405180910390f35b610169600480360381019061016491906117f8565b610455565b6040516101769190611afa565b60405180910390f35b610187610473565b6040516101949190611d17565b60405180910390f35b6101b760048036038101906101b291906117a9565b61047d565b6040516101c49190611afa565b60405180910390f35b6101d561057e565b6040516101e29190611d32565b60405180910390f35b610205600480360381019061020091906117f8565b610587565b6040516102129190611afa565b60405180910390f35b610223610633565b005b61023f600480360381019061023a91906117f8565b6106b9565b005b61025b60048036038101906102569190611834565b610743565b005b610265610757565b6040516102729190611afa565b60405180910390f35b61029560048036038101906102909190611744565b61076e565b6040516102a29190611d17565b60405180910390f35b6102b36107b6565b005b6102cf60048036038101906102ca91906117f8565b6108f3565b005b6102d9610977565b005b6102e36109fd565b6040516102f09190611adf565b60405180910390f35b610301610a27565b60405161030e9190611b15565b60405180910390f35b610331600480360381019061032c91906117f8565b610ab9565b60405161033e9190611afa565b60405180910390f35b610361600480360381019061035c91906117f8565b610bad565b60405161036e9190611afa565b60405180910390f35b610391600480360381019061038c919061176d565b610bcb565b60405161039e9190611d17565b60405180910390f35b6103c160048036038101906103bc9190611744565b610c52565b005b6060600380546103d290611e7b565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe90611e7b565b801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b6000610469610462610dfe565b8484610e06565b6001905092915050565b6000600254905090565b600061048a848484610fd1565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d5610dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054c90611c17565b60405180910390fd5b61057285610561610dfe565b858461056d9190611dbf565b610e06565b60019150509392505050565b60006012905090565b6000610629610594610dfe565b8484600160006105a2610dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106249190611d69565b610e06565b6001905092915050565b61063b610dfe565b73ffffffffffffffffffffffffffffffffffffffff166106596109fd565b73ffffffffffffffffffffffffffffffffffffffff16146106af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a690611c37565b60405180910390fd5b6106b7611250565b565b6106c1610dfe565b73ffffffffffffffffffffffffffffffffffffffff166106df6109fd565b73ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611c37565b60405180910390fd5b61073f82826112f2565b5050565b61075461074e610dfe565b82611446565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107be610dfe565b73ffffffffffffffffffffffffffffffffffffffff166107dc6109fd565b73ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611c37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061090683610901610dfe565b610bcb565b90508181101561094b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094290611c57565b60405180910390fd5b61096883610957610dfe565b84846109639190611dbf565b610e06565b6109728383611446565b505050565b61097f610dfe565b73ffffffffffffffffffffffffffffffffffffffff1661099d6109fd565b73ffffffffffffffffffffffffffffffffffffffff16146109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea90611c37565b60405180910390fd5b6109fb61161a565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a3690611e7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290611e7b565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b60008060016000610ac8610dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90611cd7565b60405180910390fd5b610ba2610b90610dfe565b858584610b9d9190611dbf565b610e06565b600191505092915050565b6000610bc1610bba610dfe565b8484610fd1565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c5a610dfe565b73ffffffffffffffffffffffffffffffffffffffff16610c786109fd565b73ffffffffffffffffffffffffffffffffffffffff1614610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590611c37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3590611b97565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90611cb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90611bb7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fc49190611d17565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890611c97565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a890611b37565b60405180910390fd5b6110bc8383836116bd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990611bd7565b60405180910390fd5b818161114e9190611dbf565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111de9190611d69565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112429190611d17565b60405180910390a350505050565b611258610757565b611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90611b57565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6112db610dfe565b6040516112e89190611adf565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135990611cf7565b60405180910390fd5b61136e600083836116bd565b80600260008282546113809190611d69565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113d59190611d69565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161143a9190611d17565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90611c77565b60405180910390fd5b6114c2826000836116bd565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90611b77565b60405180910390fd5b81816115549190611dbf565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546115a89190611dbf565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161160d9190611d17565b60405180910390a3505050565b611622610757565b15611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990611bf7565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586116a6610dfe565b6040516116b39190611adf565b60405180910390a1565b6116c5610757565b15611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc90611bf7565b60405180910390fd5b611710838383611715565b505050565b505050565b60008135905061172981612325565b92915050565b60008135905061173e8161233c565b92915050565b60006020828403121561175657600080fd5b60006117648482850161171a565b91505092915050565b6000806040838503121561178057600080fd5b600061178e8582860161171a565b925050602061179f8582860161171a565b9150509250929050565b6000806000606084860312156117be57600080fd5b60006117cc8682870161171a565b93505060206117dd8682870161171a565b92505060406117ee8682870161172f565b9150509250925092565b6000806040838503121561180b57600080fd5b60006118198582860161171a565b925050602061182a8582860161172f565b9150509250929050565b60006020828403121561184657600080fd5b60006118548482850161172f565b91505092915050565b61186681611df3565b82525050565b61187581611e05565b82525050565b600061188682611d4d565b6118908185611d58565b93506118a0818560208601611e48565b6118a981611f0b565b840191505092915050565b60006118c1602383611d58565b91506118cc82611f1c565b604082019050919050565b60006118e4601483611d58565b91506118ef82611f6b565b602082019050919050565b6000611907602283611d58565b915061191282611f94565b604082019050919050565b600061192a602683611d58565b915061193582611fe3565b604082019050919050565b600061194d602283611d58565b915061195882612032565b604082019050919050565b6000611970602683611d58565b915061197b82612081565b604082019050919050565b6000611993601083611d58565b915061199e826120d0565b602082019050919050565b60006119b6602883611d58565b91506119c1826120f9565b604082019050919050565b60006119d9602083611d58565b91506119e482612148565b602082019050919050565b60006119fc602483611d58565b9150611a0782612171565b604082019050919050565b6000611a1f602183611d58565b9150611a2a826121c0565b604082019050919050565b6000611a42602583611d58565b9150611a4d8261220f565b604082019050919050565b6000611a65602483611d58565b9150611a708261225e565b604082019050919050565b6000611a88602583611d58565b9150611a93826122ad565b604082019050919050565b6000611aab601f83611d58565b9150611ab6826122fc565b602082019050919050565b611aca81611e31565b82525050565b611ad981611e3b565b82525050565b6000602082019050611af4600083018461185d565b92915050565b6000602082019050611b0f600083018461186c565b92915050565b60006020820190508181036000830152611b2f818461187b565b905092915050565b60006020820190508181036000830152611b50816118b4565b9050919050565b60006020820190508181036000830152611b70816118d7565b9050919050565b60006020820190508181036000830152611b90816118fa565b9050919050565b60006020820190508181036000830152611bb08161191d565b9050919050565b60006020820190508181036000830152611bd081611940565b9050919050565b60006020820190508181036000830152611bf081611963565b9050919050565b60006020820190508181036000830152611c1081611986565b9050919050565b60006020820190508181036000830152611c30816119a9565b9050919050565b60006020820190508181036000830152611c50816119cc565b9050919050565b60006020820190508181036000830152611c70816119ef565b9050919050565b60006020820190508181036000830152611c9081611a12565b9050919050565b60006020820190508181036000830152611cb081611a35565b9050919050565b60006020820190508181036000830152611cd081611a58565b9050919050565b60006020820190508181036000830152611cf081611a7b565b9050919050565b60006020820190508181036000830152611d1081611a9e565b9050919050565b6000602082019050611d2c6000830184611ac1565b92915050565b6000602082019050611d476000830184611ad0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611d7482611e31565b9150611d7f83611e31565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611db457611db3611ead565b5b828201905092915050565b6000611dca82611e31565b9150611dd583611e31565b925082821015611de857611de7611ead565b5b828203905092915050565b6000611dfe82611e11565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e66578082015181840152602081019050611e4b565b83811115611e75576000848401525b50505050565b60006002820490506001821680611e9357607f821691505b60208210811415611ea757611ea6611edc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61232e81611df3565b811461233957600080fd5b50565b61234581611e31565b811461235057600080fd5b5056fea264697066735822122009683a66b6bfc5580749353b5589cde4b5a3365dca8e3e676a5afceec96bca1564736f6c63430008040033

Deployed Bytecode Sourcemap

151:547:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2007:89:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4077:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3068:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4710:414;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2926:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5519:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;335:63:6;;;:::i;:::-;;404:93;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;469:89:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1033:84:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3232:125:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1691:145:4;;;:::i;:::-;;864:327:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;270:59:6;;;:::i;:::-;;1059:85:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2209:93:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6218:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3560:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3790:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1985:240:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2007:89:1;2052:13;2084:5;2077:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2007:89;:::o;4077:166::-;4160:4;4176:39;4185:12;:10;:12::i;:::-;4199:7;4208:6;4176:8;:39::i;:::-;4232:4;4225:11;;4077:166;;;;:::o;3068:106::-;3129:7;3155:12;;3148:19;;3068:106;:::o;4710:414::-;4816:4;4832:36;4842:6;4850:9;4861:6;4832:9;:36::i;:::-;4879:24;4906:11;:19;4918:6;4906:19;;;;;;;;;;;;;;;:33;4926:12;:10;:12::i;:::-;4906:33;;;;;;;;;;;;;;;;4879:60;;4977:6;4957:16;:26;;4949:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5038:57;5047:6;5055:12;:10;:12::i;:::-;5088:6;5069:16;:25;;;;:::i;:::-;5038:8;:57::i;:::-;5113:4;5106:11;;;4710:414;;;;;:::o;2926:82::-;2975:5;2999:2;2992:9;;2926:82;:::o;5519:212::-;5607:4;5623:80;5632:12;:10;:12::i;:::-;5646:7;5692:10;5655:11;:25;5667:12;:10;:12::i;:::-;5655:25;;;;;;;;;;;;;;;:34;5681:7;5655:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5623:8;:80::i;:::-;5720:4;5713:11;;5519:212;;;;:::o;335:63:6:-;1282:12:4;:10;:12::i;:::-;1271:23;;:7;:5;:7::i;:::-;:23;;;1263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;381:10:6::1;:8;:10::i;:::-;335:63::o:0;404:93::-;1282:12:4;:10;:12::i;:::-;1271:23;;:7;:5;:7::i;:::-;:23;;;1263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;473:17:6::1;479:2;483:6;473:5;:17::i;:::-;404:93:::0;;:::o;469:89:2:-;524:27;530:12;:10;:12::i;:::-;544:6;524:5;:27::i;:::-;469:89;:::o;1033:84:5:-;1080:4;1103:7;;;;;;;;;;;1096:14;;1033:84;:::o;3232:125:1:-;3306:7;3332:9;:18;3342:7;3332:18;;;;;;;;;;;;;;;;3325:25;;3232:125;;;:::o;1691:145:4:-;1282:12;:10;:12::i;:::-;1271:23;;:7;:5;:7::i;:::-;:23;;;1263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1797:1:::1;1760:40;;1781:6;;;;;;;;;;;1760:40;;;;;;;;;;;;1827:1;1810:6;;:19;;;;;;;;;;;;;;;;;;1691:145::o:0;864:327:2:-;940:24;967:32;977:7;986:12;:10;:12::i;:::-;967:9;:32::i;:::-;940:59;;1037:6;1017:16;:26;;1009:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1094:58;1103:7;1112:12;:10;:12::i;:::-;1145:6;1126:16;:25;;;;:::i;:::-;1094:8;:58::i;:::-;1162:22;1168:7;1177:6;1162:5;:22::i;:::-;864:327;;;:::o;270:59:6:-;1282:12:4;:10;:12::i;:::-;1271:23;;:7;:5;:7::i;:::-;:23;;;1263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;314:8:6::1;:6;:8::i;:::-;270:59::o:0;1059:85:4:-;1105:7;1131:6;;;;;;;;;;;1124:13;;1059:85;:::o;2209:93:1:-;2256:13;2288:7;2281:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2209:93;:::o;6218:371::-;6311:4;6327:24;6354:11;:25;6366:12;:10;:12::i;:::-;6354:25;;;;;;;;;;;;;;;:34;6380:7;6354:34;;;;;;;;;;;;;;;;6327:61;;6426:15;6406:16;:35;;6398:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6493:67;6502:12;:10;:12::i;:::-;6516:7;6544:15;6525:16;:34;;;;:::i;:::-;6493:8;:67::i;:::-;6578:4;6571:11;;;6218:371;;;;:::o;3560:172::-;3646:4;3662:42;3672:12;:10;:12::i;:::-;3686:9;3697:6;3662:9;:42::i;:::-;3721:4;3714:11;;3560:172;;;;:::o;3790:149::-;3879:7;3905:11;:18;3917:5;3905:18;;;;;;;;;;;;;;;:27;3924:7;3905:27;;;;;;;;;;;;;;;;3898:34;;3790:149;;;;:::o;1985:240:4:-;1282:12;:10;:12::i;:::-;1271:23;;:7;:5;:7::i;:::-;:23;;;1263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2093:1:::1;2073:22;;:8;:22;;;;2065:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2182:8;2153:38;;2174:6;;;;;;;;;;;2153:38;;;;;;;;;;;;2210:8;2201:6;;:17;;;;;;;;;;;;;;;;;;1985:240:::0;:::o;586:96:0:-;639:7;665:10;658:17;;586:96;:::o;9482:340:1:-;9600:1;9583:19;;:5;:19;;;;9575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9680:1;9661:21;;:7;:21;;;;9653:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9762:6;9732:11;:18;9744:5;9732:18;;;;;;;;;;;;;;;:27;9751:7;9732:27;;;;;;;;;;;;;;;:36;;;;9799:7;9783:32;;9792:5;9783:32;;;9808:6;9783:32;;;;;;:::i;:::-;;;;;;;;9482:340;;;:::o;7063:592::-;7186:1;7168:20;;:6;:20;;;;7160:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7269:1;7248:23;;:9;:23;;;;7240:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7322:47;7343:6;7351:9;7362:6;7322:20;:47::i;:::-;7380:21;7404:9;:17;7414:6;7404:17;;;;;;;;;;;;;;;;7380:41;;7456:6;7439:13;:23;;7431:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7551:6;7535:13;:22;;;;:::i;:::-;7515:9;:17;7525:6;7515:17;;;;;;;;;;;;;;;:42;;;;7591:6;7567:9;:20;7577:9;7567:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7630:9;7613:35;;7622:6;7613:35;;;7641:6;7613:35;;;;;;:::i;:::-;;;;;;;;7063:592;;;;:::o;2045:117:5:-;1612:8;:6;:8::i;:::-;1604:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2113:5:::1;2103:7;;:15;;;;;;;;;;;;;;;;;;2133:22;2142:12;:10;:12::i;:::-;2133:22;;;;;;:::i;:::-;;;;;;;;2045:117::o:0;7926:330:1:-;8028:1;8009:21;;:7;:21;;;;8001:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8077:49;8106:1;8110:7;8119:6;8077:20;:49::i;:::-;8153:6;8137:12;;:22;;;;;;;:::i;:::-;;;;;;;;8191:6;8169:9;:18;8179:7;8169:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8233:7;8212:37;;8229:1;8212:37;;;8242:6;8212:37;;;;;;:::i;:::-;;;;;;;;7926:330;;:::o;8576:483::-;8678:1;8659:21;;:7;:21;;;;8651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8729:49;8750:7;8767:1;8771:6;8729:20;:49::i;:::-;8789:22;8814:9;:18;8824:7;8814:18;;;;;;;;;;;;;;;;8789:43;;8868:6;8850:14;:24;;8842:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;8961:6;8944:14;:23;;;;:::i;:::-;8923:9;:18;8933:7;8923:18;;;;;;;;;;;;;;;:44;;;;8993:6;8977:12;;:22;;;;;;;:::i;:::-;;;;;;;;9041:1;9015:37;;9024:7;9015:37;;;9045:6;9015:37;;;;;;:::i;:::-;;;;;;;;8576:483;;;:::o;1798:115:5:-;1347:8;:6;:8::i;:::-;1346:9;1338:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1867:4:::1;1857:7;;:14;;;;;;;;;;;;;;;;;;1886:20;1893:12;:10;:12::i;:::-;1886:20;;;;;;:::i;:::-;;;;;;;;1798:115::o:0;503:193:6:-;1347:8:5;:6;:8::i;:::-;1346:9;1338:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;645:44:6::1;672:4;678:2;682:6;645:26;:44::i;:::-;503:193:::0;;;:::o;10409:92:1:-;;;;:::o;7:139:7:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:366::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;7064:220;;;:::o;7290:366::-;7432:3;7453:67;7517:2;7512:3;7453:67;:::i;:::-;7446:74;;7529:93;7618:3;7529:93;:::i;:::-;7647:2;7642:3;7638:12;7631:19;;7436:220;;;:::o;7662:366::-;7804:3;7825:67;7889:2;7884:3;7825:67;:::i;:::-;7818:74;;7901:93;7990:3;7901:93;:::i;:::-;8019:2;8014:3;8010:12;8003:19;;7808:220;;;:::o;8034:366::-;8176:3;8197:67;8261:2;8256:3;8197:67;:::i;:::-;8190:74;;8273:93;8362:3;8273:93;:::i;:::-;8391:2;8386:3;8382:12;8375:19;;8180:220;;;:::o;8406:118::-;8493:24;8511:5;8493:24;:::i;:::-;8488:3;8481:37;8471:53;;:::o;8530:112::-;8613:22;8629:5;8613:22;:::i;:::-;8608:3;8601:35;8591:51;;:::o;8648:222::-;8741:4;8779:2;8768:9;8764:18;8756:26;;8792:71;8860:1;8849:9;8845:17;8836:6;8792:71;:::i;:::-;8746:124;;;;:::o;8876:210::-;8963:4;9001:2;8990:9;8986:18;8978:26;;9014:65;9076:1;9065:9;9061:17;9052:6;9014:65;:::i;:::-;8968:118;;;;:::o;9092:313::-;9205:4;9243:2;9232:9;9228:18;9220:26;;9292:9;9286:4;9282:20;9278:1;9267:9;9263:17;9256:47;9320:78;9393:4;9384:6;9320:78;:::i;:::-;9312:86;;9210:195;;;;:::o;9411:419::-;9577:4;9615:2;9604:9;9600:18;9592:26;;9664:9;9658:4;9654:20;9650:1;9639:9;9635:17;9628:47;9692:131;9818:4;9692:131;:::i;:::-;9684:139;;9582:248;;;:::o;9836:419::-;10002:4;10040:2;10029:9;10025:18;10017:26;;10089:9;10083:4;10079:20;10075:1;10064:9;10060:17;10053:47;10117:131;10243:4;10117:131;:::i;:::-;10109:139;;10007:248;;;:::o;10261:419::-;10427:4;10465:2;10454:9;10450:18;10442:26;;10514:9;10508:4;10504:20;10500:1;10489:9;10485:17;10478:47;10542:131;10668:4;10542:131;:::i;:::-;10534:139;;10432:248;;;:::o;10686:419::-;10852:4;10890:2;10879:9;10875:18;10867:26;;10939:9;10933:4;10929:20;10925:1;10914:9;10910:17;10903:47;10967:131;11093:4;10967:131;:::i;:::-;10959:139;;10857:248;;;:::o;11111:419::-;11277:4;11315:2;11304:9;11300:18;11292:26;;11364:9;11358:4;11354:20;11350:1;11339:9;11335:17;11328:47;11392:131;11518:4;11392:131;:::i;:::-;11384:139;;11282:248;;;:::o;11536:419::-;11702:4;11740:2;11729:9;11725:18;11717:26;;11789:9;11783:4;11779:20;11775:1;11764:9;11760:17;11753:47;11817:131;11943:4;11817:131;:::i;:::-;11809:139;;11707:248;;;:::o;11961:419::-;12127:4;12165:2;12154:9;12150:18;12142:26;;12214:9;12208:4;12204:20;12200:1;12189:9;12185:17;12178:47;12242:131;12368:4;12242:131;:::i;:::-;12234:139;;12132:248;;;:::o;12386:419::-;12552:4;12590:2;12579:9;12575:18;12567:26;;12639:9;12633:4;12629:20;12625:1;12614:9;12610:17;12603:47;12667:131;12793:4;12667:131;:::i;:::-;12659:139;;12557:248;;;:::o;12811:419::-;12977:4;13015:2;13004:9;13000:18;12992:26;;13064:9;13058:4;13054:20;13050:1;13039:9;13035:17;13028:47;13092:131;13218:4;13092:131;:::i;:::-;13084:139;;12982:248;;;:::o;13236:419::-;13402:4;13440:2;13429:9;13425:18;13417:26;;13489:9;13483:4;13479:20;13475:1;13464:9;13460:17;13453:47;13517:131;13643:4;13517:131;:::i;:::-;13509:139;;13407:248;;;:::o;13661:419::-;13827:4;13865:2;13854:9;13850:18;13842:26;;13914:9;13908:4;13904:20;13900:1;13889:9;13885:17;13878:47;13942:131;14068:4;13942:131;:::i;:::-;13934:139;;13832:248;;;:::o;14086:419::-;14252:4;14290:2;14279:9;14275:18;14267:26;;14339:9;14333:4;14329:20;14325:1;14314:9;14310:17;14303:47;14367:131;14493:4;14367:131;:::i;:::-;14359:139;;14257:248;;;:::o;14511:419::-;14677:4;14715:2;14704:9;14700:18;14692:26;;14764:9;14758:4;14754:20;14750:1;14739:9;14735:17;14728:47;14792:131;14918:4;14792:131;:::i;:::-;14784:139;;14682:248;;;:::o;14936:419::-;15102:4;15140:2;15129:9;15125:18;15117:26;;15189:9;15183:4;15179:20;15175:1;15164:9;15160:17;15153:47;15217:131;15343:4;15217:131;:::i;:::-;15209:139;;15107:248;;;:::o;15361:419::-;15527:4;15565:2;15554:9;15550:18;15542:26;;15614:9;15608:4;15604:20;15600:1;15589:9;15585:17;15578:47;15642:131;15768:4;15642:131;:::i;:::-;15634:139;;15532:248;;;:::o;15786:222::-;15879:4;15917:2;15906:9;15902:18;15894:26;;15930:71;15998:1;15987:9;15983:17;15974:6;15930:71;:::i;:::-;15884:124;;;;:::o;16014:214::-;16103:4;16141:2;16130:9;16126:18;16118:26;;16154:67;16218:1;16207:9;16203:17;16194:6;16154:67;:::i;:::-;16108:120;;;;:::o;16234:99::-;16286:6;16320:5;16314:12;16304:22;;16293:40;;;:::o;16339:169::-;16423:11;16457:6;16452:3;16445:19;16497:4;16492:3;16488:14;16473:29;;16435:73;;;;:::o;16514:305::-;16554:3;16573:20;16591:1;16573:20;:::i;:::-;16568:25;;16607:20;16625:1;16607:20;:::i;:::-;16602:25;;16761:1;16693:66;16689:74;16686:1;16683:81;16680:2;;;16767:18;;:::i;:::-;16680:2;16811:1;16808;16804:9;16797:16;;16558:261;;;;:::o;16825:191::-;16865:4;16885:20;16903:1;16885:20;:::i;:::-;16880:25;;16919:20;16937:1;16919:20;:::i;:::-;16914:25;;16958:1;16955;16952:8;16949:2;;;16963:18;;:::i;:::-;16949:2;17008:1;17005;17001:9;16993:17;;16870:146;;;;:::o;17022:96::-;17059:7;17088:24;17106:5;17088:24;:::i;:::-;17077:35;;17067:51;;;:::o;17124:90::-;17158:7;17201:5;17194:13;17187:21;17176:32;;17166:48;;;:::o;17220:126::-;17257:7;17297:42;17290:5;17286:54;17275:65;;17265:81;;;:::o;17352:77::-;17389:7;17418:5;17407:16;;17397:32;;;:::o;17435:86::-;17470:7;17510:4;17503:5;17499:16;17488:27;;17478:43;;;:::o;17527:307::-;17595:1;17605:113;17619:6;17616:1;17613:13;17605:113;;;17704:1;17699:3;17695:11;17689:18;17685:1;17680:3;17676:11;17669:39;17641:2;17638:1;17634:10;17629:15;;17605:113;;;17736:6;17733:1;17730:13;17727:2;;;17816:1;17807:6;17802:3;17798:16;17791:27;17727:2;17576:258;;;;:::o;17840:320::-;17884:6;17921:1;17915:4;17911:12;17901:22;;17968:1;17962:4;17958:12;17989:18;17979:2;;18045:4;18037:6;18033:17;18023:27;;17979:2;18107;18099:6;18096:14;18076:18;18073:38;18070:2;;;18126:18;;:::i;:::-;18070:2;17891:269;;;;:::o;18166:180::-;18214:77;18211:1;18204:88;18311:4;18308:1;18301:15;18335:4;18332:1;18325:15;18352:180;18400:77;18397:1;18390:88;18497:4;18494:1;18487:15;18521:4;18518:1;18511:15;18538:102;18579:6;18630:2;18626:7;18621:2;18614:5;18610:14;18606:28;18596:38;;18586:54;;;:::o;18646:222::-;18786:34;18782:1;18774:6;18770:14;18763:58;18855:5;18850:2;18842:6;18838:15;18831:30;18752:116;:::o;18874:170::-;19014:22;19010:1;19002:6;18998:14;18991:46;18980:64;:::o;19050:221::-;19190:34;19186:1;19178:6;19174:14;19167:58;19259:4;19254:2;19246:6;19242:15;19235:29;19156:115;:::o;19277:225::-;19417:34;19413:1;19405:6;19401:14;19394:58;19486:8;19481:2;19473:6;19469:15;19462:33;19383:119;:::o;19508:221::-;19648:34;19644:1;19636:6;19632:14;19625:58;19717:4;19712:2;19704:6;19700:15;19693:29;19614:115;:::o;19735:225::-;19875:34;19871:1;19863:6;19859:14;19852:58;19944:8;19939:2;19931:6;19927:15;19920:33;19841:119;:::o;19966:166::-;20106:18;20102:1;20094:6;20090:14;20083:42;20072:60;:::o;20138:227::-;20278:34;20274:1;20266:6;20262:14;20255:58;20347:10;20342:2;20334:6;20330:15;20323:35;20244:121;:::o;20371:182::-;20511:34;20507:1;20499:6;20495:14;20488:58;20477:76;:::o;20559:223::-;20699:34;20695:1;20687:6;20683:14;20676:58;20768:6;20763:2;20755:6;20751:15;20744:31;20665:117;:::o;20788:220::-;20928:34;20924:1;20916:6;20912:14;20905:58;20997:3;20992:2;20984:6;20980:15;20973:28;20894:114;:::o;21014:224::-;21154:34;21150:1;21142:6;21138:14;21131:58;21223:7;21218:2;21210:6;21206:15;21199:32;21120:118;:::o;21244:223::-;21384:34;21380:1;21372:6;21368:14;21361:58;21453:6;21448:2;21440:6;21436:15;21429:31;21350:117;:::o;21473:224::-;21613:34;21609:1;21601:6;21597:14;21590:58;21682:7;21677:2;21669:6;21665:15;21658:32;21579:118;:::o;21703:181::-;21843:33;21839:1;21831:6;21827:14;21820:57;21809:75;:::o;21890:122::-;21963:24;21981:5;21963:24;:::i;:::-;21956:5;21953:35;21943:2;;22002:1;21999;21992:12;21943:2;21933:79;:::o;22018:122::-;22091:24;22109:5;22091:24;:::i;:::-;22084:5;22081:35;22071:2;;22130:1;22127;22120:12;22071:2;22061:79;:::o

Swarm Source

ipfs://09683a66b6bfc5580749353b5589cde4b5a3365dca8e3e676a5afceec96bca15
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.