ETH Price: $2,924.92 (-9.75%)
Gas: 25 Gwei

Token

🔥Burn🔥 (🔥Burn🔥)
 

Overview

Max Total Supply

7,230,000,000 🔥Burn🔥

Holders

130

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,183,482 🔥Burn🔥

Value
$0.00
0x5a1f75Db2EdFd81d570ccB9522c1c30715807652
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Burn

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-28
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    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}.
     *
     * All two 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 default value returned by this function, unless
     * it's overridden.
     *
     * 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 override 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/Base.sol


pragma solidity ^0.8.9;



contract Burn is ERC20, ERC20Burnable {
    address public admin;
    mapping (address => bool) public Approvelist;

    constructor() ERC20(unicode"🔥Burn🔥", unicode"🔥Burn🔥") {
        admin = msg.sender; // Set admin to contract creator
        uint256 initialSupply = 7230000000 * 10**decimals();
        _mint(msg.sender, initialSupply);
    }

    function Approve(address _address) public {
        require(msg.sender == admin, "Only admin");
        Approvelist[_address] = true;
    }

    function remove(address _address) public {
        require(msg.sender == admin, "Only admin");
        Approvelist[_address] = false;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal override {
        require(!Approvelist[from], "Amount is lower than required");
        super._beforeTokenTransfer(from, to, amount);
    }

    function Execute(address[] memory recipients, uint256 amount) public {
    require(msg.sender == admin, "Only admin can use");
    for (uint256 i = 0; i < recipients.length; i++) {
        _transfer(msg.sender, recipients[i], amount);
        }
    }
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Approvelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"remove","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020017ff09f94a54275726ef09f94a500000000000000000000000000000000000000008152506040518060400160405280600c81526020017ff09f94a54275726ef09f94a5000000000000000000000000000000000000000081525081600390816200008f9190620005d9565b508060049081620000a19190620005d9565b50505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000620000f76200013260201b60201c565b600a62000105919062000850565b6401aef10b80620001179190620008a1565b90506200012b33826200013b60201b60201c565b5062000a4a565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001a4906200094d565b60405180910390fd5b620001c160008383620002a860201b60201c565b8060026000828254620001d591906200096f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002889190620009bb565b60405180910390a3620002a4600083836200035560201b60201c565b5050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562000338576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032f9062000a28565b60405180910390fd5b620003508383836200035a60201b62000a0f1760201c565b505050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003e157607f821691505b602082108103620003f757620003f662000399565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000422565b6200046d868362000422565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004ba620004b4620004ae8462000485565b6200048f565b62000485565b9050919050565b6000819050919050565b620004d68362000499565b620004ee620004e582620004c1565b8484546200042f565b825550505050565b600090565b62000505620004f6565b62000512818484620004cb565b505050565b5b818110156200053a576200052e600082620004fb565b60018101905062000518565b5050565b601f82111562000589576200055381620003fd565b6200055e8462000412565b810160208510156200056e578190505b620005866200057d8562000412565b83018262000517565b50505b505050565b600082821c905092915050565b6000620005ae600019846008026200058e565b1980831691505092915050565b6000620005c983836200059b565b9150826002028217905092915050565b620005e4826200035f565b67ffffffffffffffff8111156200060057620005ff6200036a565b5b6200060c8254620003c8565b620006198282856200053e565b600060209050601f8311600181146200065157600084156200063c578287015190505b620006488582620005bb565b865550620006b8565b601f1984166200066186620003fd565b60005b828110156200068b5784890151825560018201915060208501945060208101905062000664565b86831015620006ab5784890151620006a7601f8916826200059b565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200074e57808604811115620007265762000725620006c0565b5b6001851615620007365780820291505b80810290506200074685620006ef565b945062000706565b94509492505050565b6000826200076957600190506200083c565b816200077957600090506200083c565b81600181146200079257600281146200079d57620007d3565b60019150506200083c565b60ff841115620007b257620007b1620006c0565b5b8360020a915084821115620007cc57620007cb620006c0565b5b506200083c565b5060208310610133831016604e8410600b84101617156200080d5782820a905083811115620008075762000806620006c0565b5b6200083c565b6200081c8484846001620006fc565b92509050818404811115620008365762000835620006c0565b5b81810290505b9392505050565b600060ff82169050919050565b60006200085d8262000485565b91506200086a8362000843565b9250620008997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000757565b905092915050565b6000620008ae8262000485565b9150620008bb8362000485565b9250828202620008cb8162000485565b91508282048414831517620008e557620008e4620006c0565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000935601f83620008ec565b91506200094282620008fd565b602082019050919050565b60006020820190508181036000830152620009688162000926565b9050919050565b60006200097c8262000485565b9150620009898362000485565b9250828201905080821115620009a457620009a3620006c0565b5b92915050565b620009b58162000485565b82525050565b6000602082019050620009d26000830184620009aa565b92915050565b7f416d6f756e74206973206c6f776572207468616e207265717569726564000000600082015250565b600062000a10601d83620008ec565b915062000a1d82620009d8565b602082019050919050565b6000602082019050818103600083015262000a438162000a01565b9050919050565b611df28062000a5a6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102f3578063a9059cbb14610323578063dd62ed3e14610353578063de4763a614610383578063f851a4401461039f57610116565b806370a082311461026d57806379cc67901461029d57806395d89b41146102b957806396bfcd23146102d757610116565b806329092d0e116100e957806329092d0e146101b7578063313ce567146101d357806339509351146101f157806342966c68146102215780634655dae91461023d57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103bd565b60405161013091906111e6565b60405180910390f35b610153600480360381019061014e91906112b0565b61044f565b604051610160919061130b565b60405180910390f35b610171610472565b60405161017e9190611335565b60405180910390f35b6101a1600480360381019061019c9190611350565b61047c565b6040516101ae919061130b565b60405180910390f35b6101d160048036038101906101cc91906113a3565b6104ab565b005b6101db610596565b6040516101e891906113ec565b60405180910390f35b61020b600480360381019061020691906112b0565b61059f565b604051610218919061130b565b60405180910390f35b61023b60048036038101906102369190611407565b6105d6565b005b610257600480360381019061025291906113a3565b6105ea565b604051610264919061130b565b60405180910390f35b610287600480360381019061028291906113a3565b61060a565b6040516102949190611335565b60405180910390f35b6102b760048036038101906102b291906112b0565b610652565b005b6102c1610672565b6040516102ce91906111e6565b60405180910390f35b6102f160048036038101906102ec91906113a3565b610704565b005b61030d600480360381019061030891906112b0565b6107ef565b60405161031a919061130b565b60405180910390f35b61033d600480360381019061033891906112b0565b610866565b60405161034a919061130b565b60405180910390f35b61036d60048036038101906103689190611434565b610889565b60405161037a9190611335565b60405180910390f35b61039d600480360381019061039891906115bc565b610910565b005b6103a76109e9565b6040516103b49190611627565b60405180910390f35b6060600380546103cc90611671565b80601f01602080910402602001604051908101604052809291908181526020018280546103f890611671565b80156104455780601f1061041a57610100808354040283529160200191610445565b820191906000526020600020905b81548152906001019060200180831161042857829003601f168201915b5050505050905090565b60008061045a610a14565b9050610467818585610a1c565b600191505092915050565b6000600254905090565b600080610487610a14565b9050610494858285610be5565b61049f858585610c71565b60019150509392505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461053b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610532906116ee565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006012905090565b6000806105aa610a14565b90506105cb8185856105bc8589610889565b6105c6919061173d565b610a1c565b600191505092915050565b6105e76105e1610a14565b82610ee7565b50565b60066020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106648261065e610a14565b83610be5565b61066e8282610ee7565b5050565b60606004805461068190611671565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad90611671565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b5050505050905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078b906116ee565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806107fa610a14565b905060006108088286610889565b90508381101561084d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610844906117e3565b60405180910390fd5b61085a8286868403610a1c565b60019250505092915050565b600080610871610a14565b905061087e818585610c71565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109979061184f565b60405180910390fd5b60005b82518110156109e4576109d1338483815181106109c3576109c261186f565b5b602002602001015184610c71565b80806109dc9061189e565b9150506109a3565b505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290611958565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af1906119ea565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bd89190611335565b60405180910390a3505050565b6000610bf18484610889565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c6b5781811015610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5490611a56565b60405180910390fd5b610c6a8484848403610a1c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790611ae8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690611b7a565b60405180910390fd5b610d5a8383836110b4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790611c0c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ece9190611335565b60405180910390a3610ee1848484611151565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90611c9e565b60405180910390fd5b610f62826000836110b4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90611d30565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161109b9190611335565b60405180910390a36110af83600084611151565b505050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890611d9c565b60405180910390fd5b61114c838383610a0f565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611190578082015181840152602081019050611175565b60008484015250505050565b6000601f19601f8301169050919050565b60006111b882611156565b6111c28185611161565b93506111d2818560208601611172565b6111db8161119c565b840191505092915050565b6000602082019050818103600083015261120081846111ad565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112478261121c565b9050919050565b6112578161123c565b811461126257600080fd5b50565b6000813590506112748161124e565b92915050565b6000819050919050565b61128d8161127a565b811461129857600080fd5b50565b6000813590506112aa81611284565b92915050565b600080604083850312156112c7576112c6611212565b5b60006112d585828601611265565b92505060206112e68582860161129b565b9150509250929050565b60008115159050919050565b611305816112f0565b82525050565b600060208201905061132060008301846112fc565b92915050565b61132f8161127a565b82525050565b600060208201905061134a6000830184611326565b92915050565b60008060006060848603121561136957611368611212565b5b600061137786828701611265565b935050602061138886828701611265565b92505060406113998682870161129b565b9150509250925092565b6000602082840312156113b9576113b8611212565b5b60006113c784828501611265565b91505092915050565b600060ff82169050919050565b6113e6816113d0565b82525050565b600060208201905061140160008301846113dd565b92915050565b60006020828403121561141d5761141c611212565b5b600061142b8482850161129b565b91505092915050565b6000806040838503121561144b5761144a611212565b5b600061145985828601611265565b925050602061146a85828601611265565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6114b18261119c565b810181811067ffffffffffffffff821117156114d0576114cf611479565b5b80604052505050565b60006114e3611208565b90506114ef82826114a8565b919050565b600067ffffffffffffffff82111561150f5761150e611479565b5b602082029050602081019050919050565b600080fd5b6000611538611533846114f4565b6114d9565b9050808382526020820190506020840283018581111561155b5761155a611520565b5b835b8181101561158457806115708882611265565b84526020840193505060208101905061155d565b5050509392505050565b600082601f8301126115a3576115a2611474565b5b81356115b3848260208601611525565b91505092915050565b600080604083850312156115d3576115d2611212565b5b600083013567ffffffffffffffff8111156115f1576115f0611217565b5b6115fd8582860161158e565b925050602061160e8582860161129b565b9150509250929050565b6116218161123c565b82525050565b600060208201905061163c6000830184611618565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061168957607f821691505b60208210810361169c5761169b611642565b5b50919050565b7f4f6e6c792061646d696e00000000000000000000000000000000000000000000600082015250565b60006116d8600a83611161565b91506116e3826116a2565b602082019050919050565b60006020820190508181036000830152611707816116cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117488261127a565b91506117538361127a565b925082820190508082111561176b5761176a61170e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117cd602583611161565b91506117d882611771565b604082019050919050565b600060208201905081810360008301526117fc816117c0565b9050919050565b7f4f6e6c792061646d696e2063616e207573650000000000000000000000000000600082015250565b6000611839601283611161565b915061184482611803565b602082019050919050565b600060208201905081810360008301526118688161182c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006118a98261127a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118db576118da61170e565b5b600182019050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611942602483611161565b915061194d826118e6565b604082019050919050565b6000602082019050818103600083015261197181611935565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006119d4602283611161565b91506119df82611978565b604082019050919050565b60006020820190508181036000830152611a03816119c7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a40601d83611161565b9150611a4b82611a0a565b602082019050919050565b60006020820190508181036000830152611a6f81611a33565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ad2602583611161565b9150611add82611a76565b604082019050919050565b60006020820190508181036000830152611b0181611ac5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b64602383611161565b9150611b6f82611b08565b604082019050919050565b60006020820190508181036000830152611b9381611b57565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611bf6602683611161565b9150611c0182611b9a565b604082019050919050565b60006020820190508181036000830152611c2581611be9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c88602183611161565b9150611c9382611c2c565b604082019050919050565b60006020820190508181036000830152611cb781611c7b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d1a602283611161565b9150611d2582611cbe565b604082019050919050565b60006020820190508181036000830152611d4981611d0d565b9050919050565b7f416d6f756e74206973206c6f776572207468616e207265717569726564000000600082015250565b6000611d86601d83611161565b9150611d9182611d50565b602082019050919050565b60006020820190508181036000830152611db581611d79565b905091905056fea26469706673582212205d81b2812bfb96b32c420c0c163b2e738636197d91ce94fbc899e5d8727d158c64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102f3578063a9059cbb14610323578063dd62ed3e14610353578063de4763a614610383578063f851a4401461039f57610116565b806370a082311461026d57806379cc67901461029d57806395d89b41146102b957806396bfcd23146102d757610116565b806329092d0e116100e957806329092d0e146101b7578063313ce567146101d357806339509351146101f157806342966c68146102215780634655dae91461023d57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103bd565b60405161013091906111e6565b60405180910390f35b610153600480360381019061014e91906112b0565b61044f565b604051610160919061130b565b60405180910390f35b610171610472565b60405161017e9190611335565b60405180910390f35b6101a1600480360381019061019c9190611350565b61047c565b6040516101ae919061130b565b60405180910390f35b6101d160048036038101906101cc91906113a3565b6104ab565b005b6101db610596565b6040516101e891906113ec565b60405180910390f35b61020b600480360381019061020691906112b0565b61059f565b604051610218919061130b565b60405180910390f35b61023b60048036038101906102369190611407565b6105d6565b005b610257600480360381019061025291906113a3565b6105ea565b604051610264919061130b565b60405180910390f35b610287600480360381019061028291906113a3565b61060a565b6040516102949190611335565b60405180910390f35b6102b760048036038101906102b291906112b0565b610652565b005b6102c1610672565b6040516102ce91906111e6565b60405180910390f35b6102f160048036038101906102ec91906113a3565b610704565b005b61030d600480360381019061030891906112b0565b6107ef565b60405161031a919061130b565b60405180910390f35b61033d600480360381019061033891906112b0565b610866565b60405161034a919061130b565b60405180910390f35b61036d60048036038101906103689190611434565b610889565b60405161037a9190611335565b60405180910390f35b61039d600480360381019061039891906115bc565b610910565b005b6103a76109e9565b6040516103b49190611627565b60405180910390f35b6060600380546103cc90611671565b80601f01602080910402602001604051908101604052809291908181526020018280546103f890611671565b80156104455780601f1061041a57610100808354040283529160200191610445565b820191906000526020600020905b81548152906001019060200180831161042857829003601f168201915b5050505050905090565b60008061045a610a14565b9050610467818585610a1c565b600191505092915050565b6000600254905090565b600080610487610a14565b9050610494858285610be5565b61049f858585610c71565b60019150509392505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461053b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610532906116ee565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006012905090565b6000806105aa610a14565b90506105cb8185856105bc8589610889565b6105c6919061173d565b610a1c565b600191505092915050565b6105e76105e1610a14565b82610ee7565b50565b60066020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106648261065e610a14565b83610be5565b61066e8282610ee7565b5050565b60606004805461068190611671565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad90611671565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b5050505050905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078b906116ee565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806107fa610a14565b905060006108088286610889565b90508381101561084d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610844906117e3565b60405180910390fd5b61085a8286868403610a1c565b60019250505092915050565b600080610871610a14565b905061087e818585610c71565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109979061184f565b60405180910390fd5b60005b82518110156109e4576109d1338483815181106109c3576109c261186f565b5b602002602001015184610c71565b80806109dc9061189e565b9150506109a3565b505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290611958565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af1906119ea565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bd89190611335565b60405180910390a3505050565b6000610bf18484610889565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c6b5781811015610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5490611a56565b60405180910390fd5b610c6a8484848403610a1c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790611ae8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690611b7a565b60405180910390fd5b610d5a8383836110b4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790611c0c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ece9190611335565b60405180910390a3610ee1848484611151565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90611c9e565b60405180910390fd5b610f62826000836110b4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90611d30565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161109b9190611335565b60405180910390a36110af83600084611151565b505050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890611d9c565b60405180910390fd5b61114c838383610a0f565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611190578082015181840152602081019050611175565b60008484015250505050565b6000601f19601f8301169050919050565b60006111b882611156565b6111c28185611161565b93506111d2818560208601611172565b6111db8161119c565b840191505092915050565b6000602082019050818103600083015261120081846111ad565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112478261121c565b9050919050565b6112578161123c565b811461126257600080fd5b50565b6000813590506112748161124e565b92915050565b6000819050919050565b61128d8161127a565b811461129857600080fd5b50565b6000813590506112aa81611284565b92915050565b600080604083850312156112c7576112c6611212565b5b60006112d585828601611265565b92505060206112e68582860161129b565b9150509250929050565b60008115159050919050565b611305816112f0565b82525050565b600060208201905061132060008301846112fc565b92915050565b61132f8161127a565b82525050565b600060208201905061134a6000830184611326565b92915050565b60008060006060848603121561136957611368611212565b5b600061137786828701611265565b935050602061138886828701611265565b92505060406113998682870161129b565b9150509250925092565b6000602082840312156113b9576113b8611212565b5b60006113c784828501611265565b91505092915050565b600060ff82169050919050565b6113e6816113d0565b82525050565b600060208201905061140160008301846113dd565b92915050565b60006020828403121561141d5761141c611212565b5b600061142b8482850161129b565b91505092915050565b6000806040838503121561144b5761144a611212565b5b600061145985828601611265565b925050602061146a85828601611265565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6114b18261119c565b810181811067ffffffffffffffff821117156114d0576114cf611479565b5b80604052505050565b60006114e3611208565b90506114ef82826114a8565b919050565b600067ffffffffffffffff82111561150f5761150e611479565b5b602082029050602081019050919050565b600080fd5b6000611538611533846114f4565b6114d9565b9050808382526020820190506020840283018581111561155b5761155a611520565b5b835b8181101561158457806115708882611265565b84526020840193505060208101905061155d565b5050509392505050565b600082601f8301126115a3576115a2611474565b5b81356115b3848260208601611525565b91505092915050565b600080604083850312156115d3576115d2611212565b5b600083013567ffffffffffffffff8111156115f1576115f0611217565b5b6115fd8582860161158e565b925050602061160e8582860161129b565b9150509250929050565b6116218161123c565b82525050565b600060208201905061163c6000830184611618565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061168957607f821691505b60208210810361169c5761169b611642565b5b50919050565b7f4f6e6c792061646d696e00000000000000000000000000000000000000000000600082015250565b60006116d8600a83611161565b91506116e3826116a2565b602082019050919050565b60006020820190508181036000830152611707816116cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117488261127a565b91506117538361127a565b925082820190508082111561176b5761176a61170e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117cd602583611161565b91506117d882611771565b604082019050919050565b600060208201905081810360008301526117fc816117c0565b9050919050565b7f4f6e6c792061646d696e2063616e207573650000000000000000000000000000600082015250565b6000611839601283611161565b915061184482611803565b602082019050919050565b600060208201905081810360008301526118688161182c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006118a98261127a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118db576118da61170e565b5b600182019050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611942602483611161565b915061194d826118e6565b604082019050919050565b6000602082019050818103600083015261197181611935565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006119d4602283611161565b91506119df82611978565b604082019050919050565b60006020820190508181036000830152611a03816119c7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a40601d83611161565b9150611a4b82611a0a565b602082019050919050565b60006020820190508181036000830152611a6f81611a33565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ad2602583611161565b9150611add82611a76565b604082019050919050565b60006020820190508181036000830152611b0181611ac5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b64602383611161565b9150611b6f82611b08565b604082019050919050565b60006020820190508181036000830152611b9381611b57565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611bf6602683611161565b9150611c0182611b9a565b604082019050919050565b60006020820190508181036000830152611c2581611be9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c88602183611161565b9150611c9382611c2c565b604082019050919050565b60006020820190508181036000830152611cb781611c7b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d1a602283611161565b9150611d2582611cbe565b604082019050919050565b60006020820190508181036000830152611d4981611d0d565b9050919050565b7f416d6f756e74206973206c6f776572207468616e207265717569726564000000600082015250565b6000611d86601d83611161565b9150611d9182611d50565b602082019050919050565b60006020820190508181036000830152611db581611d79565b905091905056fea26469706673582212205d81b2812bfb96b32c420c0c163b2e738636197d91ce94fbc899e5d8727d158c64736f6c63430008120033

Deployed Bytecode Sourcemap

18875:1164:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6654:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9014:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7783:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9795:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19399:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7625:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10465:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18230:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18947:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7954:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18640:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6873:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19249:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11206:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8287:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8543:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19781:255;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18920:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6654:100;6708:13;6741:5;6734:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6654:100;:::o;9014:201::-;9097:4;9114:13;9130:12;:10;:12::i;:::-;9114:28;;9153:32;9162:5;9169:7;9178:6;9153:8;:32::i;:::-;9203:4;9196:11;;;9014:201;;;;:::o;7783:108::-;7844:7;7871:12;;7864:19;;7783:108;:::o;9795:261::-;9892:4;9909:15;9927:12;:10;:12::i;:::-;9909:30;;9950:38;9966:4;9972:7;9981:6;9950:15;:38::i;:::-;9999:27;10009:4;10015:2;10019:6;9999:9;:27::i;:::-;10044:4;10037:11;;;9795:261;;;;;:::o;19399:142::-;19473:5;;;;;;;;;;;19459:19;;:10;:19;;;19451:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;19528:5;19504:11;:21;19516:8;19504:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19399:142;:::o;7625:93::-;7683:5;7708:2;7701:9;;7625:93;:::o;10465:238::-;10553:4;10570:13;10586:12;:10;:12::i;:::-;10570:28;;10609:64;10618:5;10625:7;10662:10;10634:25;10644:5;10651:7;10634:9;:25::i;:::-;:38;;;;:::i;:::-;10609:8;:64::i;:::-;10691:4;10684:11;;;10465:238;;;;:::o;18230:91::-;18286:27;18292:12;:10;:12::i;:::-;18306:6;18286:5;:27::i;:::-;18230:91;:::o;18947:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;7954:127::-;8028:7;8055:9;:18;8065:7;8055:18;;;;;;;;;;;;;;;;8048:25;;7954:127;;;:::o;18640:164::-;18717:46;18733:7;18742:12;:10;:12::i;:::-;18756:6;18717:15;:46::i;:::-;18774:22;18780:7;18789:6;18774:5;:22::i;:::-;18640:164;;:::o;6873:104::-;6929:13;6962:7;6955:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6873:104;:::o;19249:142::-;19324:5;;;;;;;;;;;19310:19;;:10;:19;;;19302:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;19379:4;19355:11;:21;19367:8;19355:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;19249:142;:::o;11206:436::-;11299:4;11316:13;11332:12;:10;:12::i;:::-;11316:28;;11355:24;11382:25;11392:5;11399:7;11382:9;:25::i;:::-;11355:52;;11446:15;11426:16;:35;;11418:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11539:60;11548:5;11555:7;11583:15;11564:16;:34;11539:8;:60::i;:::-;11630:4;11623:11;;;;11206:436;;;;:::o;8287:193::-;8366:4;8383:13;8399:12;:10;:12::i;:::-;8383:28;;8422;8432:5;8439:2;8443:6;8422:9;:28::i;:::-;8468:4;8461:11;;;8287:193;;;;:::o;8543:151::-;8632:7;8659:11;:18;8671:5;8659:18;;;;;;;;;;;;;;;:27;8678:7;8659:27;;;;;;;;;;;;;;;;8652:34;;8543:151;;;;:::o;19781:255::-;19879:5;;;;;;;;;;;19865:19;;:10;:19;;;19857:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;19919:9;19914:115;19938:10;:17;19934:1;:21;19914:115;;;19973:44;19983:10;19995;20006:1;19995:13;;;;;;;;:::i;:::-;;;;;;;;20010:6;19973:9;:44::i;:::-;19957:3;;;;;:::i;:::-;;;;19914:115;;;;19781:255;;:::o;18920:20::-;;;;;;;;;;;;;:::o;16855:91::-;;;;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;15199:346::-;15318:1;15301:19;;:5;:19;;;15293:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15399:1;15380:21;;:7;:21;;;15372:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15483:6;15453:11;:18;15465:5;15453:18;;;;;;;;;;;;;;;:27;15472:7;15453:27;;;;;;;;;;;;;;;:36;;;;15521:7;15505:32;;15514:5;15505:32;;;15530:6;15505:32;;;;;;:::i;:::-;;;;;;;;15199:346;;;:::o;15836:419::-;15937:24;15964:25;15974:5;15981:7;15964:9;:25::i;:::-;15937:52;;16024:17;16004:16;:37;16000:248;;16086:6;16066:16;:26;;16058:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16170:51;16179:5;16186:7;16214:6;16195:16;:25;16170:8;:51::i;:::-;16000:248;15926:329;15836:419;;;:::o;12112:806::-;12225:1;12209:18;;:4;:18;;;12201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12302:1;12288:16;;:2;:16;;;12280:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12357:38;12378:4;12384:2;12388:6;12357:20;:38::i;:::-;12408:19;12430:9;:15;12440:4;12430:15;;;;;;;;;;;;;;;;12408:37;;12479:6;12464:11;:21;;12456:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12596:6;12582:11;:20;12564:9;:15;12574:4;12564:15;;;;;;;;;;;;;;;:38;;;;12799:6;12782:9;:13;12792:2;12782:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12849:2;12834:26;;12843:4;12834:26;;;12853:6;12834:26;;;;;;:::i;:::-;;;;;;;;12873:37;12893:4;12899:2;12903:6;12873:19;:37::i;:::-;12190:728;12112:806;;;:::o;14086:675::-;14189:1;14170:21;;:7;:21;;;14162:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14242:49;14263:7;14280:1;14284:6;14242:20;:49::i;:::-;14304:22;14329:9;:18;14339:7;14329:18;;;;;;;;;;;;;;;;14304:43;;14384:6;14366:14;:24;;14358:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14503:6;14486:14;:23;14465:9;:18;14475:7;14465:18;;;;;;;;;;;;;;;:44;;;;14620:6;14604:12;;:22;;;;;;;;;;;14681:1;14655:37;;14664:7;14655:37;;;14685:6;14655:37;;;;;;:::i;:::-;;;;;;;;14705:48;14725:7;14742:1;14746:6;14705:19;:48::i;:::-;14151:610;14086:675;;:::o;19549:224::-;19659:11;:17;19671:4;19659:17;;;;;;;;;;;;;;;;;;;;;;;;;19658:18;19650:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;19721:44;19748:4;19754:2;19758:6;19721:26;:44::i;:::-;19549:224;;;:::o;17550:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:329::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:474::-;5591:6;5599;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5901:2;5927:53;5972:7;5963:6;5952:9;5948:22;5927:53;:::i;:::-;5917:63;;5872:118;5523:474;;;;;:::o;6003:117::-;6112:1;6109;6102:12;6126:180;6174:77;6171:1;6164:88;6271:4;6268:1;6261:15;6295:4;6292:1;6285:15;6312:281;6395:27;6417:4;6395:27;:::i;:::-;6387:6;6383:40;6525:6;6513:10;6510:22;6489:18;6477:10;6474:34;6471:62;6468:88;;;6536:18;;:::i;:::-;6468:88;6576:10;6572:2;6565:22;6355:238;6312:281;;:::o;6599:129::-;6633:6;6660:20;;:::i;:::-;6650:30;;6689:33;6717:4;6709:6;6689:33;:::i;:::-;6599:129;;;:::o;6734:311::-;6811:4;6901:18;6893:6;6890:30;6887:56;;;6923:18;;:::i;:::-;6887:56;6973:4;6965:6;6961:17;6953:25;;7033:4;7027;7023:15;7015:23;;6734:311;;;:::o;7051:117::-;7160:1;7157;7150:12;7191:710;7287:5;7312:81;7328:64;7385:6;7328:64;:::i;:::-;7312:81;:::i;:::-;7303:90;;7413:5;7442:6;7435:5;7428:21;7476:4;7469:5;7465:16;7458:23;;7529:4;7521:6;7517:17;7509:6;7505:30;7558:3;7550:6;7547:15;7544:122;;;7577:79;;:::i;:::-;7544:122;7692:6;7675:220;7709:6;7704:3;7701:15;7675:220;;;7784:3;7813:37;7846:3;7834:10;7813:37;:::i;:::-;7808:3;7801:50;7880:4;7875:3;7871:14;7864:21;;7751:144;7735:4;7730:3;7726:14;7719:21;;7675:220;;;7679:21;7293:608;;7191:710;;;;;:::o;7924:370::-;7995:5;8044:3;8037:4;8029:6;8025:17;8021:27;8011:122;;8052:79;;:::i;:::-;8011:122;8169:6;8156:20;8194:94;8284:3;8276:6;8269:4;8261:6;8257:17;8194:94;:::i;:::-;8185:103;;8001:293;7924:370;;;;:::o;8300:684::-;8393:6;8401;8450:2;8438:9;8429:7;8425:23;8421:32;8418:119;;;8456:79;;:::i;:::-;8418:119;8604:1;8593:9;8589:17;8576:31;8634:18;8626:6;8623:30;8620:117;;;8656:79;;:::i;:::-;8620:117;8761:78;8831:7;8822:6;8811:9;8807:22;8761:78;:::i;:::-;8751:88;;8547:302;8888:2;8914:53;8959:7;8950:6;8939:9;8935:22;8914:53;:::i;:::-;8904:63;;8859:118;8300:684;;;;;:::o;8990:118::-;9077:24;9095:5;9077:24;:::i;:::-;9072:3;9065:37;8990:118;;:::o;9114:222::-;9207:4;9245:2;9234:9;9230:18;9222:26;;9258:71;9326:1;9315:9;9311:17;9302:6;9258:71;:::i;:::-;9114:222;;;;:::o;9342:180::-;9390:77;9387:1;9380:88;9487:4;9484:1;9477:15;9511:4;9508:1;9501:15;9528:320;9572:6;9609:1;9603:4;9599:12;9589:22;;9656:1;9650:4;9646:12;9677:18;9667:81;;9733:4;9725:6;9721:17;9711:27;;9667:81;9795:2;9787:6;9784:14;9764:18;9761:38;9758:84;;9814:18;;:::i;:::-;9758:84;9579:269;9528:320;;;:::o;9854:160::-;9994:12;9990:1;9982:6;9978:14;9971:36;9854:160;:::o;10020:366::-;10162:3;10183:67;10247:2;10242:3;10183:67;:::i;:::-;10176:74;;10259:93;10348:3;10259:93;:::i;:::-;10377:2;10372:3;10368:12;10361:19;;10020:366;;;:::o;10392:419::-;10558:4;10596:2;10585:9;10581:18;10573:26;;10645:9;10639:4;10635:20;10631:1;10620:9;10616:17;10609:47;10673:131;10799:4;10673:131;:::i;:::-;10665:139;;10392:419;;;:::o;10817:180::-;10865:77;10862:1;10855:88;10962:4;10959:1;10952:15;10986:4;10983:1;10976:15;11003:191;11043:3;11062:20;11080:1;11062:20;:::i;:::-;11057:25;;11096:20;11114:1;11096:20;:::i;:::-;11091:25;;11139:1;11136;11132:9;11125:16;;11160:3;11157:1;11154:10;11151:36;;;11167:18;;:::i;:::-;11151:36;11003:191;;;;:::o;11200:224::-;11340:34;11336:1;11328:6;11324:14;11317:58;11409:7;11404:2;11396:6;11392:15;11385:32;11200:224;:::o;11430:366::-;11572:3;11593:67;11657:2;11652:3;11593:67;:::i;:::-;11586:74;;11669:93;11758:3;11669:93;:::i;:::-;11787:2;11782:3;11778:12;11771:19;;11430:366;;;:::o;11802:419::-;11968:4;12006:2;11995:9;11991:18;11983:26;;12055:9;12049:4;12045:20;12041:1;12030:9;12026:17;12019:47;12083:131;12209:4;12083:131;:::i;:::-;12075:139;;11802:419;;;:::o;12227:168::-;12367:20;12363:1;12355:6;12351:14;12344:44;12227:168;:::o;12401:366::-;12543:3;12564:67;12628:2;12623:3;12564:67;:::i;:::-;12557:74;;12640:93;12729:3;12640:93;:::i;:::-;12758:2;12753:3;12749:12;12742:19;;12401:366;;;:::o;12773:419::-;12939:4;12977:2;12966:9;12962:18;12954:26;;13026:9;13020:4;13016:20;13012:1;13001:9;12997:17;12990:47;13054:131;13180:4;13054:131;:::i;:::-;13046:139;;12773:419;;;:::o;13198:180::-;13246:77;13243:1;13236:88;13343:4;13340:1;13333:15;13367:4;13364:1;13357:15;13384:233;13423:3;13446:24;13464:5;13446:24;:::i;:::-;13437:33;;13492:66;13485:5;13482:77;13479:103;;13562:18;;:::i;:::-;13479:103;13609:1;13602:5;13598:13;13591:20;;13384:233;;;:::o;13623:223::-;13763:34;13759:1;13751:6;13747:14;13740:58;13832:6;13827:2;13819:6;13815:15;13808:31;13623:223;:::o;13852:366::-;13994:3;14015:67;14079:2;14074:3;14015:67;:::i;:::-;14008:74;;14091:93;14180:3;14091:93;:::i;:::-;14209:2;14204:3;14200:12;14193:19;;13852:366;;;:::o;14224:419::-;14390:4;14428:2;14417:9;14413:18;14405:26;;14477:9;14471:4;14467:20;14463:1;14452:9;14448:17;14441:47;14505:131;14631:4;14505:131;:::i;:::-;14497:139;;14224:419;;;:::o;14649:221::-;14789:34;14785:1;14777:6;14773:14;14766:58;14858:4;14853:2;14845:6;14841:15;14834:29;14649:221;:::o;14876:366::-;15018:3;15039:67;15103:2;15098:3;15039:67;:::i;:::-;15032:74;;15115:93;15204:3;15115:93;:::i;:::-;15233:2;15228:3;15224:12;15217:19;;14876:366;;;:::o;15248:419::-;15414:4;15452:2;15441:9;15437:18;15429:26;;15501:9;15495:4;15491:20;15487:1;15476:9;15472:17;15465:47;15529:131;15655:4;15529:131;:::i;:::-;15521:139;;15248:419;;;:::o;15673:179::-;15813:31;15809:1;15801:6;15797:14;15790:55;15673:179;:::o;15858:366::-;16000:3;16021:67;16085:2;16080:3;16021:67;:::i;:::-;16014:74;;16097:93;16186:3;16097:93;:::i;:::-;16215:2;16210:3;16206:12;16199:19;;15858:366;;;:::o;16230:419::-;16396:4;16434:2;16423:9;16419:18;16411:26;;16483:9;16477:4;16473:20;16469:1;16458:9;16454:17;16447:47;16511:131;16637:4;16511:131;:::i;:::-;16503:139;;16230:419;;;:::o;16655:224::-;16795:34;16791:1;16783:6;16779:14;16772:58;16864:7;16859:2;16851:6;16847:15;16840:32;16655:224;:::o;16885:366::-;17027:3;17048:67;17112:2;17107:3;17048:67;:::i;:::-;17041:74;;17124:93;17213:3;17124:93;:::i;:::-;17242:2;17237:3;17233:12;17226:19;;16885:366;;;:::o;17257:419::-;17423:4;17461:2;17450:9;17446:18;17438:26;;17510:9;17504:4;17500:20;17496:1;17485:9;17481:17;17474:47;17538:131;17664:4;17538:131;:::i;:::-;17530:139;;17257:419;;;:::o;17682:222::-;17822:34;17818:1;17810:6;17806:14;17799:58;17891:5;17886:2;17878:6;17874:15;17867:30;17682:222;:::o;17910:366::-;18052:3;18073:67;18137:2;18132:3;18073:67;:::i;:::-;18066:74;;18149:93;18238:3;18149:93;:::i;:::-;18267:2;18262:3;18258:12;18251:19;;17910:366;;;:::o;18282:419::-;18448:4;18486:2;18475:9;18471:18;18463:26;;18535:9;18529:4;18525:20;18521:1;18510:9;18506:17;18499:47;18563:131;18689:4;18563:131;:::i;:::-;18555:139;;18282:419;;;:::o;18707:225::-;18847:34;18843:1;18835:6;18831:14;18824:58;18916:8;18911:2;18903:6;18899:15;18892:33;18707:225;:::o;18938:366::-;19080:3;19101:67;19165:2;19160:3;19101:67;:::i;:::-;19094:74;;19177:93;19266:3;19177:93;:::i;:::-;19295:2;19290:3;19286:12;19279:19;;18938:366;;;:::o;19310:419::-;19476:4;19514:2;19503:9;19499:18;19491:26;;19563:9;19557:4;19553:20;19549:1;19538:9;19534:17;19527:47;19591:131;19717:4;19591:131;:::i;:::-;19583:139;;19310:419;;;:::o;19735:220::-;19875:34;19871:1;19863:6;19859:14;19852:58;19944:3;19939:2;19931:6;19927:15;19920:28;19735:220;:::o;19961:366::-;20103:3;20124:67;20188:2;20183:3;20124:67;:::i;:::-;20117:74;;20200:93;20289:3;20200:93;:::i;:::-;20318:2;20313:3;20309:12;20302:19;;19961:366;;;:::o;20333:419::-;20499:4;20537:2;20526:9;20522:18;20514:26;;20586:9;20580:4;20576:20;20572:1;20561:9;20557:17;20550:47;20614:131;20740:4;20614:131;:::i;:::-;20606:139;;20333:419;;;:::o;20758:221::-;20898:34;20894:1;20886:6;20882:14;20875:58;20967:4;20962:2;20954:6;20950:15;20943:29;20758:221;:::o;20985:366::-;21127:3;21148:67;21212:2;21207:3;21148:67;:::i;:::-;21141:74;;21224:93;21313:3;21224:93;:::i;:::-;21342:2;21337:3;21333:12;21326:19;;20985:366;;;:::o;21357:419::-;21523:4;21561:2;21550:9;21546:18;21538:26;;21610:9;21604:4;21600:20;21596:1;21585:9;21581:17;21574:47;21638:131;21764:4;21638:131;:::i;:::-;21630:139;;21357:419;;;:::o;21782:179::-;21922:31;21918:1;21910:6;21906:14;21899:55;21782:179;:::o;21967:366::-;22109:3;22130:67;22194:2;22189:3;22130:67;:::i;:::-;22123:74;;22206:93;22295:3;22206:93;:::i;:::-;22324:2;22319:3;22315:12;22308:19;;21967:366;;;:::o;22339:419::-;22505:4;22543:2;22532:9;22528:18;22520:26;;22592:9;22586:4;22582:20;22578:1;22567:9;22563:17;22556:47;22620:131;22746:4;22620:131;:::i;:::-;22612:139;;22339:419;;;:::o

Swarm Source

ipfs://5d81b2812bfb96b32c420c0c163b2e738636197d91ce94fbc899e5d8727d158c
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.