ETH Price: $2,075.19 (-1.84%)

Token

Exa Protocol (XAP)
 

Overview

Max Total Supply

1,000,000,000 XAP

Holders

15,266 (0.00%)

Transfers

-
4

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Exa Protocol is a decentralized file system (DFS) that allows users to store their data on a network built using mobile devices. Exa Protocol uses XAP Token to compensate nodes in the network for providing storage or transferring data.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ExaProtocol

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-04-06
*/

/*


███████╗██╗  ██╗ █████╗         ██████╗ ██████╗  ██████╗ ████████╗ ██████╗  ██████╗ ██████╗ ██╗     
██╔════╝╚██╗██╔╝██╔══██╗        ██╔══██╗██╔══██╗██╔═══██╗╚══██╔══╝██╔═══██╗██╔════╝██╔═══██╗██║     
█████╗   ╚███╔╝ ███████║        ██████╔╝██████╔╝██║   ██║   ██║   ██║   ██║██║     ██║   ██║██║     
██╔══╝   ██╔██╗ ██╔══██║        ██╔═══╝ ██╔══██╗██║   ██║   ██║   ██║   ██║██║     ██║   ██║██║     
███████╗██╔╝ ██╗██║  ██║        ██║     ██║  ██║╚██████╔╝   ██║   ╚██████╔╝╚██████╗╚██████╔╝███████╗
╚══════╝╚═╝  ╚═╝╚═╝  ╚═╝        ╚═╝     ╚═╝  ╚═╝ ╚═════╝    ╚═╝    ╚═════╝  ╚═════╝ ╚═════╝ ╚══════╝
                                                                                                    
                                                                                                    
*/
// Project website: https://www.exaprotocol.com
// SPDX-License-Identifier: MIT
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity 0.8.25;

/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol


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


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol


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


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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: contracts/1_Storage.sol



contract ExaProtocol is ERC20 {

    /**
    * @dev Constructor function.
    * Initializes the ERC20 token with the specified name and symbol.
    * 
    * @notice The constructor sets the initial supply of the token to 1,000,000,000 and mints all of them to the contract deployer.
    * 
    * @dev Total supply of the token is set to 1,000,000,000.
    * Minting tokens and assigning them to the contract deployer (msg.sender).
    */
    constructor() ERC20("Exa Protocol", "XAP"){
        
        uint256 totalSupply = 1000000000;
        
        _mint(msg.sender, totalSupply * (10**decimals()));

    }

    /**
    * @dev Function to return the number of decimals.
    * 
    * @notice This function returns the number of decimal places used to display token amounts, which is 8 in this case.
    * 
    * @return uint8 The number of decimals (always returns 8).
    */
    function decimals() public pure override returns (uint8) {
        return 8;
    }

    /**
    * @dev Function to burn a specific amount of tokens.
    * 
    * @notice This function allows the caller to burn a specific amount of tokens from their balance.
    * 
    * @param amount The amount of tokens to be burned.
    */
    function burn(uint256 amount) external {
        _burn( msg.sender,  amount);
    }

}

Contract Security Audit

Contract ABI

API
[{"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":"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[],"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"}]

608060405234801561000f575f80fd5b506040518060400160405280600c81526020017f4578612050726f746f636f6c00000000000000000000000000000000000000008152506040518060400160405280600381526020017f5841500000000000000000000000000000000000000000000000000000000000815250816003908161008b9190610486565b50806004908161009b9190610486565b5050505f633b9aca0090506100da336100b86100e060201b60201c565b600a6100c491906106bd565b836100cf9190610707565b6100e860201b60201c565b5061081b565b5f6008905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161014d906107a2565b60405180910390fd5b6101675f838361024260201b60201c565b8060025f82825461017891906107c0565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516102259190610802565b60405180910390a361023e5f838361024760201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806102c757607f821691505b6020821081036102da576102d9610283565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261033c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610301565b6103468683610301565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61038a6103856103808461035e565b610367565b61035e565b9050919050565b5f819050919050565b6103a383610370565b6103b76103af82610391565b84845461030d565b825550505050565b5f90565b6103cb6103bf565b6103d681848461039a565b505050565b5b818110156103f9576103ee5f826103c3565b6001810190506103dc565b5050565b601f82111561043e5761040f816102e0565b610418846102f2565b81016020851015610427578190505b61043b610433856102f2565b8301826103db565b50505b505050565b5f82821c905092915050565b5f61045e5f1984600802610443565b1980831691505092915050565b5f610476838361044f565b9150826002028217905092915050565b61048f8261024c565b67ffffffffffffffff8111156104a8576104a7610256565b5b6104b282546102b0565b6104bd8282856103fd565b5f60209050601f8311600181146104ee575f84156104dc578287015190505b6104e6858261046b565b86555061054d565b601f1984166104fc866102e0565b5f5b82811015610523578489015182556001820191506020850194506020810190506104fe565b86831015610540578489015161053c601f89168261044f565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156105d7578086048111156105b3576105b2610555565b5b60018516156105c25780820291505b80810290506105d085610582565b9450610597565b94509492505050565b5f826105ef57600190506106aa565b816105fc575f90506106aa565b8160018114610612576002811461061c5761064b565b60019150506106aa565b60ff84111561062e5761062d610555565b5b8360020a91508482111561064557610644610555565b5b506106aa565b5060208310610133831016604e8410600b84101617156106805782820a90508381111561067b5761067a610555565b5b6106aa565b61068d848484600161058e565b925090508184048111156106a4576106a3610555565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6106c78261035e565b91506106d2836106b1565b92506106ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846105e0565b905092915050565b5f6107118261035e565b915061071c8361035e565b925082820261072a8161035e565b9150828204841483151761074157610740610555565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61078c601f83610748565b915061079782610758565b602082019050919050565b5f6020820190508181035f8301526107b981610780565b9050919050565b5f6107ca8261035e565b91506107d58361035e565b92508282019050808211156107ed576107ec610555565b5b92915050565b6107fc8161035e565b82525050565b5f6020820190506108155f8301846107f3565b92915050565b6114e7806108285f395ff3fe608060405234801561000f575f80fd5b50600436106100b2575f3560e01c806342966c681161006f57806342966c68146101a057806370a08231146101bc57806395d89b41146101ec578063a457c2d71461020a578063a9059cbb1461023a578063dd62ed3e1461026a576100b2565b806306fdde03146100b6578063095ea7b3146100d457806318160ddd1461010457806323b872dd14610122578063313ce567146101525780633950935114610170575b5f80fd5b6100be61029a565b6040516100cb9190610cba565b60405180910390f35b6100ee60048036038101906100e99190610d6b565b61032a565b6040516100fb9190610dc3565b60405180910390f35b61010c61034c565b6040516101199190610deb565b60405180910390f35b61013c60048036038101906101379190610e04565b610355565b6040516101499190610dc3565b60405180910390f35b61015a610383565b6040516101679190610e6f565b60405180910390f35b61018a60048036038101906101859190610d6b565b61038b565b6040516101979190610dc3565b60405180910390f35b6101ba60048036038101906101b59190610e88565b6103c1565b005b6101d660048036038101906101d19190610eb3565b6103ce565b6040516101e39190610deb565b60405180910390f35b6101f4610413565b6040516102019190610cba565b60405180910390f35b610224600480360381019061021f9190610d6b565b6104a3565b6040516102319190610dc3565b60405180910390f35b610254600480360381019061024f9190610d6b565b610518565b6040516102619190610dc3565b60405180910390f35b610284600480360381019061027f9190610ede565b61053a565b6040516102919190610deb565b60405180910390f35b6060600380546102a990610f49565b80601f01602080910402602001604051908101604052809291908181526020018280546102d590610f49565b80156103205780601f106102f757610100808354040283529160200191610320565b820191905f5260205f20905b81548152906001019060200180831161030357829003601f168201915b5050505050905090565b5f806103346105bc565b90506103418185856105c3565b600191505092915050565b5f600254905090565b5f8061035f6105bc565b905061036c858285610786565b610377858585610811565b60019150509392505050565b5f6008905090565b5f806103956105bc565b90506103b68185856103a7858961053a565b6103b19190610fa6565b6105c3565b600191505092915050565b6103cb3382610a7d565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461042290610f49565b80601f016020809104026020016040519081016040528092919081815260200182805461044e90610f49565b80156104995780601f1061047057610100808354040283529160200191610499565b820191905f5260205f20905b81548152906001019060200180831161047c57829003601f168201915b5050505050905090565b5f806104ad6105bc565b90505f6104ba828661053a565b9050838110156104ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f690611049565b60405180910390fd5b61050c82868684036105c3565b60019250505092915050565b5f806105226105bc565b905061052f818585610811565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610628906110d7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361069f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069690611165565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107799190610deb565b60405180910390a3505050565b5f610791848461053a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461080b57818110156107fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f4906111cd565b60405180910390fd5b61080a84848484036105c3565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361087f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108769061125b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e4906112e9565b60405180910390fd5b6108f8838383610c40565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290611377565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a649190610deb565b60405180910390a3610a77848484610c45565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae290611405565b60405180910390fd5b610af6825f83610c40565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090611493565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c289190610deb565b60405180910390a3610c3b835f84610c45565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610c8c82610c4a565b610c968185610c54565b9350610ca6818560208601610c64565b610caf81610c72565b840191505092915050565b5f6020820190508181035f830152610cd28184610c82565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d0782610cde565b9050919050565b610d1781610cfd565b8114610d21575f80fd5b50565b5f81359050610d3281610d0e565b92915050565b5f819050919050565b610d4a81610d38565b8114610d54575f80fd5b50565b5f81359050610d6581610d41565b92915050565b5f8060408385031215610d8157610d80610cda565b5b5f610d8e85828601610d24565b9250506020610d9f85828601610d57565b9150509250929050565b5f8115159050919050565b610dbd81610da9565b82525050565b5f602082019050610dd65f830184610db4565b92915050565b610de581610d38565b82525050565b5f602082019050610dfe5f830184610ddc565b92915050565b5f805f60608486031215610e1b57610e1a610cda565b5b5f610e2886828701610d24565b9350506020610e3986828701610d24565b9250506040610e4a86828701610d57565b9150509250925092565b5f60ff82169050919050565b610e6981610e54565b82525050565b5f602082019050610e825f830184610e60565b92915050565b5f60208284031215610e9d57610e9c610cda565b5b5f610eaa84828501610d57565b91505092915050565b5f60208284031215610ec857610ec7610cda565b5b5f610ed584828501610d24565b91505092915050565b5f8060408385031215610ef457610ef3610cda565b5b5f610f0185828601610d24565b9250506020610f1285828601610d24565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610f6057607f821691505b602082108103610f7357610f72610f1c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610fb082610d38565b9150610fbb83610d38565b9250828201905080821115610fd357610fd2610f79565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611033602583610c54565b915061103e82610fd9565b604082019050919050565b5f6020820190508181035f83015261106081611027565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6110c1602483610c54565b91506110cc82611067565b604082019050919050565b5f6020820190508181035f8301526110ee816110b5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61114f602283610c54565b915061115a826110f5565b604082019050919050565b5f6020820190508181035f83015261117c81611143565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6111b7601d83610c54565b91506111c282611183565b602082019050919050565b5f6020820190508181035f8301526111e4816111ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611245602583610c54565b9150611250826111eb565b604082019050919050565b5f6020820190508181035f83015261127281611239565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6112d3602383610c54565b91506112de82611279565b604082019050919050565b5f6020820190508181035f830152611300816112c7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611361602683610c54565b915061136c82611307565b604082019050919050565b5f6020820190508181035f83015261138e81611355565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6113ef602183610c54565b91506113fa82611395565b604082019050919050565b5f6020820190508181035f83015261141c816113e3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61147d602283610c54565b915061148882611423565b604082019050919050565b5f6020820190508181035f8301526114aa81611471565b905091905056fea2646970667358221220de2c9bb0c2b1b3474be20b308c14cb10a8c5551514bf7511a03c5ed93198d2ac64736f6c63430008190033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100b2575f3560e01c806342966c681161006f57806342966c68146101a057806370a08231146101bc57806395d89b41146101ec578063a457c2d71461020a578063a9059cbb1461023a578063dd62ed3e1461026a576100b2565b806306fdde03146100b6578063095ea7b3146100d457806318160ddd1461010457806323b872dd14610122578063313ce567146101525780633950935114610170575b5f80fd5b6100be61029a565b6040516100cb9190610cba565b60405180910390f35b6100ee60048036038101906100e99190610d6b565b61032a565b6040516100fb9190610dc3565b60405180910390f35b61010c61034c565b6040516101199190610deb565b60405180910390f35b61013c60048036038101906101379190610e04565b610355565b6040516101499190610dc3565b60405180910390f35b61015a610383565b6040516101679190610e6f565b60405180910390f35b61018a60048036038101906101859190610d6b565b61038b565b6040516101979190610dc3565b60405180910390f35b6101ba60048036038101906101b59190610e88565b6103c1565b005b6101d660048036038101906101d19190610eb3565b6103ce565b6040516101e39190610deb565b60405180910390f35b6101f4610413565b6040516102019190610cba565b60405180910390f35b610224600480360381019061021f9190610d6b565b6104a3565b6040516102319190610dc3565b60405180910390f35b610254600480360381019061024f9190610d6b565b610518565b6040516102619190610dc3565b60405180910390f35b610284600480360381019061027f9190610ede565b61053a565b6040516102919190610deb565b60405180910390f35b6060600380546102a990610f49565b80601f01602080910402602001604051908101604052809291908181526020018280546102d590610f49565b80156103205780601f106102f757610100808354040283529160200191610320565b820191905f5260205f20905b81548152906001019060200180831161030357829003601f168201915b5050505050905090565b5f806103346105bc565b90506103418185856105c3565b600191505092915050565b5f600254905090565b5f8061035f6105bc565b905061036c858285610786565b610377858585610811565b60019150509392505050565b5f6008905090565b5f806103956105bc565b90506103b68185856103a7858961053a565b6103b19190610fa6565b6105c3565b600191505092915050565b6103cb3382610a7d565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461042290610f49565b80601f016020809104026020016040519081016040528092919081815260200182805461044e90610f49565b80156104995780601f1061047057610100808354040283529160200191610499565b820191905f5260205f20905b81548152906001019060200180831161047c57829003601f168201915b5050505050905090565b5f806104ad6105bc565b90505f6104ba828661053a565b9050838110156104ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f690611049565b60405180910390fd5b61050c82868684036105c3565b60019250505092915050565b5f806105226105bc565b905061052f818585610811565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610628906110d7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361069f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069690611165565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107799190610deb565b60405180910390a3505050565b5f610791848461053a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461080b57818110156107fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f4906111cd565b60405180910390fd5b61080a84848484036105c3565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361087f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108769061125b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e4906112e9565b60405180910390fd5b6108f8838383610c40565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290611377565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a649190610deb565b60405180910390a3610a77848484610c45565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae290611405565b60405180910390fd5b610af6825f83610c40565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090611493565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c289190610deb565b60405180910390a3610c3b835f84610c45565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610c8c82610c4a565b610c968185610c54565b9350610ca6818560208601610c64565b610caf81610c72565b840191505092915050565b5f6020820190508181035f830152610cd28184610c82565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d0782610cde565b9050919050565b610d1781610cfd565b8114610d21575f80fd5b50565b5f81359050610d3281610d0e565b92915050565b5f819050919050565b610d4a81610d38565b8114610d54575f80fd5b50565b5f81359050610d6581610d41565b92915050565b5f8060408385031215610d8157610d80610cda565b5b5f610d8e85828601610d24565b9250506020610d9f85828601610d57565b9150509250929050565b5f8115159050919050565b610dbd81610da9565b82525050565b5f602082019050610dd65f830184610db4565b92915050565b610de581610d38565b82525050565b5f602082019050610dfe5f830184610ddc565b92915050565b5f805f60608486031215610e1b57610e1a610cda565b5b5f610e2886828701610d24565b9350506020610e3986828701610d24565b9250506040610e4a86828701610d57565b9150509250925092565b5f60ff82169050919050565b610e6981610e54565b82525050565b5f602082019050610e825f830184610e60565b92915050565b5f60208284031215610e9d57610e9c610cda565b5b5f610eaa84828501610d57565b91505092915050565b5f60208284031215610ec857610ec7610cda565b5b5f610ed584828501610d24565b91505092915050565b5f8060408385031215610ef457610ef3610cda565b5b5f610f0185828601610d24565b9250506020610f1285828601610d24565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610f6057607f821691505b602082108103610f7357610f72610f1c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610fb082610d38565b9150610fbb83610d38565b9250828201905080821115610fd357610fd2610f79565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611033602583610c54565b915061103e82610fd9565b604082019050919050565b5f6020820190508181035f83015261106081611027565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6110c1602483610c54565b91506110cc82611067565b604082019050919050565b5f6020820190508181035f8301526110ee816110b5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61114f602283610c54565b915061115a826110f5565b604082019050919050565b5f6020820190508181035f83015261117c81611143565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6111b7601d83610c54565b91506111c282611183565b602082019050919050565b5f6020820190508181035f8301526111e4816111ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611245602583610c54565b9150611250826111eb565b604082019050919050565b5f6020820190508181035f83015261127281611239565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6112d3602383610c54565b91506112de82611279565b604082019050919050565b5f6020820190508181035f830152611300816112c7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611361602683610c54565b915061136c82611307565b604082019050919050565b5f6020820190508181035f83015261138e81611355565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6113ef602183610c54565b91506113fa82611395565b604082019050919050565b5f6020820190508181035f83015261141c816113e3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61147d602283610c54565b915061148882611423565b604082019050919050565b5f6020820190508181035f8301526114aa81611471565b905091905056fea2646970667358221220de2c9bb0c2b1b3474be20b308c14cb10a8c5551514bf7511a03c5ed93198d2ac64736f6c63430008190033

Deployed Bytecode Sourcemap

19776:1342:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8548:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10899:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9668:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11680:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20686:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12384:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21028:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9839:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8767:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13125:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10172:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10428:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8548:100;8602:13;8635:5;8628:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8548:100;:::o;10899:201::-;10982:4;10999:13;11015:12;:10;:12::i;:::-;10999:28;;11038:32;11047:5;11054:7;11063:6;11038:8;:32::i;:::-;11088:4;11081:11;;;10899:201;;;;:::o;9668:108::-;9729:7;9756:12;;9749:19;;9668:108;:::o;11680:295::-;11811:4;11828:15;11846:12;:10;:12::i;:::-;11828:30;;11869:38;11885:4;11891:7;11900:6;11869:15;:38::i;:::-;11918:27;11928:4;11934:2;11938:6;11918:9;:27::i;:::-;11963:4;11956:11;;;11680:295;;;;;:::o;20686:84::-;20736:5;20761:1;20754:8;;20686:84;:::o;12384:238::-;12472:4;12489:13;12505:12;:10;:12::i;:::-;12489:28;;12528:64;12537:5;12544:7;12581:10;12553:25;12563:5;12570:7;12553:9;:25::i;:::-;:38;;;;:::i;:::-;12528:8;:64::i;:::-;12610:4;12603:11;;;12384:238;;;;:::o;21028:85::-;21078:27;21085:10;21098:6;21078:5;:27::i;:::-;21028:85;:::o;9839:127::-;9913:7;9940:9;:18;9950:7;9940:18;;;;;;;;;;;;;;;;9933:25;;9839:127;;;:::o;8767:104::-;8823:13;8856:7;8849:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8767:104;:::o;13125:436::-;13218:4;13235:13;13251:12;:10;:12::i;:::-;13235:28;;13274:24;13301:25;13311:5;13318:7;13301:9;:25::i;:::-;13274:52;;13365:15;13345:16;:35;;13337:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13458:60;13467:5;13474:7;13502:15;13483:16;:34;13458:8;:60::i;:::-;13549:4;13542:11;;;;13125:436;;;;:::o;10172:193::-;10251:4;10268:13;10284:12;:10;:12::i;:::-;10268:28;;10307;10317:5;10324:2;10328:6;10307:9;:28::i;:::-;10353:4;10346:11;;;10172:193;;;;:::o;10428:151::-;10517:7;10544:11;:18;10556:5;10544:18;;;;;;;;;;;;;;;:27;10563:7;10544:27;;;;;;;;;;;;;;;;10537:34;;10428:151;;;;:::o;2498:98::-;2551:7;2578:10;2571:17;;2498:98;:::o;17152:380::-;17305:1;17288:19;;:5;:19;;;17280:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17386:1;17367:21;;:7;:21;;;17359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17470:6;17440:11;:18;17452:5;17440:18;;;;;;;;;;;;;;;:27;17459:7;17440:27;;;;;;;;;;;;;;;:36;;;;17508:7;17492:32;;17501:5;17492:32;;;17517:6;17492:32;;;;;;:::i;:::-;;;;;;;;17152:380;;;:::o;17823:453::-;17958:24;17985:25;17995:5;18002:7;17985:9;:25::i;:::-;17958:52;;18045:17;18025:16;:37;18021:248;;18107:6;18087:16;:26;;18079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18191:51;18200:5;18207:7;18235:6;18216:16;:25;18191:8;:51::i;:::-;18021:248;17947:329;17823:453;;;:::o;14031:840::-;14178:1;14162:18;;:4;:18;;;14154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14255:1;14241:16;;:2;:16;;;14233:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14310:38;14331:4;14337:2;14341:6;14310:20;:38::i;:::-;14361:19;14383:9;:15;14393:4;14383:15;;;;;;;;;;;;;;;;14361:37;;14432:6;14417:11;:21;;14409:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;14549:6;14535:11;:20;14517:9;:15;14527:4;14517:15;;;;;;;;;;;;;;;:38;;;;14752:6;14735:9;:13;14745:2;14735:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;14802:2;14787:26;;14796:4;14787:26;;;14806:6;14787:26;;;;;;:::i;:::-;;;;;;;;14826:37;14846:4;14852:2;14856:6;14826:19;:37::i;:::-;14143:728;14031:840;;;:::o;16039:675::-;16142:1;16123:21;;:7;:21;;;16115:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16195:49;16216:7;16233:1;16237:6;16195:20;:49::i;:::-;16257:22;16282:9;:18;16292:7;16282:18;;;;;;;;;;;;;;;;16257:43;;16337:6;16319:14;:24;;16311:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16456:6;16439:14;:23;16418:9;:18;16428:7;16418:18;;;;;;;;;;;;;;;:44;;;;16573:6;16557:12;;:22;;;;;;;;;;;16634:1;16608:37;;16617:7;16608:37;;;16638:6;16608:37;;;;;;:::i;:::-;;;;;;;;16658:48;16678:7;16695:1;16699:6;16658:19;:48::i;:::-;16104:610;16039:675;;:::o;18876:125::-;;;;:::o;19605:124::-;;;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:474::-;5484:6;5492;5541:2;5529:9;5520:7;5516:23;5512:32;5509:119;;;5547:79;;:::i;:::-;5509:119;5667:1;5692:53;5737:7;5728:6;5717:9;5713:22;5692:53;:::i;:::-;5682:63;;5638:117;5794:2;5820:53;5865:7;5856:6;5845:9;5841:22;5820:53;:::i;:::-;5810:63;;5765:118;5416:474;;;;;:::o;5896:180::-;5944:77;5941:1;5934:88;6041:4;6038:1;6031:15;6065:4;6062:1;6055:15;6082:320;6126:6;6163:1;6157:4;6153:12;6143:22;;6210:1;6204:4;6200:12;6231:18;6221:81;;6287:4;6279:6;6275:17;6265:27;;6221:81;6349:2;6341:6;6338:14;6318:18;6315:38;6312:84;;6368:18;;:::i;:::-;6312:84;6133:269;6082:320;;;:::o;6408:180::-;6456:77;6453:1;6446:88;6553:4;6550:1;6543:15;6577:4;6574:1;6567:15;6594:191;6634:3;6653:20;6671:1;6653:20;:::i;:::-;6648:25;;6687:20;6705:1;6687:20;:::i;:::-;6682:25;;6730:1;6727;6723:9;6716:16;;6751:3;6748:1;6745:10;6742:36;;;6758:18;;:::i;:::-;6742:36;6594:191;;;;:::o;6791:224::-;6931:34;6927:1;6919:6;6915:14;6908:58;7000:7;6995:2;6987:6;6983:15;6976:32;6791:224;:::o;7021:366::-;7163:3;7184:67;7248:2;7243:3;7184:67;:::i;:::-;7177:74;;7260:93;7349:3;7260:93;:::i;:::-;7378:2;7373:3;7369:12;7362:19;;7021:366;;;:::o;7393:419::-;7559:4;7597:2;7586:9;7582:18;7574:26;;7646:9;7640:4;7636:20;7632:1;7621:9;7617:17;7610:47;7674:131;7800:4;7674:131;:::i;:::-;7666:139;;7393:419;;;:::o;7818:223::-;7958:34;7954:1;7946:6;7942:14;7935:58;8027:6;8022:2;8014:6;8010:15;8003:31;7818:223;:::o;8047:366::-;8189:3;8210:67;8274:2;8269:3;8210:67;:::i;:::-;8203:74;;8286:93;8375:3;8286:93;:::i;:::-;8404:2;8399:3;8395:12;8388:19;;8047:366;;;:::o;8419:419::-;8585:4;8623:2;8612:9;8608:18;8600:26;;8672:9;8666:4;8662:20;8658:1;8647:9;8643:17;8636:47;8700:131;8826:4;8700:131;:::i;:::-;8692:139;;8419:419;;;:::o;8844:221::-;8984:34;8980:1;8972:6;8968:14;8961:58;9053:4;9048:2;9040:6;9036:15;9029:29;8844:221;:::o;9071:366::-;9213:3;9234:67;9298:2;9293:3;9234:67;:::i;:::-;9227:74;;9310:93;9399:3;9310:93;:::i;:::-;9428:2;9423:3;9419:12;9412:19;;9071:366;;;:::o;9443:419::-;9609:4;9647:2;9636:9;9632:18;9624:26;;9696:9;9690:4;9686:20;9682:1;9671:9;9667:17;9660:47;9724:131;9850:4;9724:131;:::i;:::-;9716:139;;9443:419;;;:::o;9868:179::-;10008:31;10004:1;9996:6;9992:14;9985:55;9868:179;:::o;10053:366::-;10195:3;10216:67;10280:2;10275:3;10216:67;:::i;:::-;10209:74;;10292:93;10381:3;10292:93;:::i;:::-;10410:2;10405:3;10401:12;10394:19;;10053:366;;;:::o;10425:419::-;10591:4;10629:2;10618:9;10614:18;10606:26;;10678:9;10672:4;10668:20;10664:1;10653:9;10649:17;10642:47;10706:131;10832:4;10706:131;:::i;:::-;10698:139;;10425:419;;;:::o;10850:224::-;10990:34;10986:1;10978:6;10974:14;10967:58;11059:7;11054:2;11046:6;11042:15;11035:32;10850:224;:::o;11080:366::-;11222:3;11243:67;11307:2;11302:3;11243:67;:::i;:::-;11236:74;;11319:93;11408:3;11319:93;:::i;:::-;11437:2;11432:3;11428:12;11421:19;;11080:366;;;:::o;11452:419::-;11618:4;11656:2;11645:9;11641:18;11633:26;;11705:9;11699:4;11695:20;11691:1;11680:9;11676:17;11669:47;11733:131;11859:4;11733:131;:::i;:::-;11725:139;;11452:419;;;:::o;11877:222::-;12017:34;12013:1;12005:6;12001:14;11994:58;12086:5;12081:2;12073:6;12069:15;12062:30;11877:222;:::o;12105:366::-;12247:3;12268:67;12332:2;12327:3;12268:67;:::i;:::-;12261:74;;12344:93;12433:3;12344:93;:::i;:::-;12462:2;12457:3;12453:12;12446:19;;12105:366;;;:::o;12477:419::-;12643:4;12681:2;12670:9;12666:18;12658:26;;12730:9;12724:4;12720:20;12716:1;12705:9;12701:17;12694:47;12758:131;12884:4;12758:131;:::i;:::-;12750:139;;12477:419;;;:::o;12902:225::-;13042:34;13038:1;13030:6;13026:14;13019:58;13111:8;13106:2;13098:6;13094:15;13087:33;12902:225;:::o;13133:366::-;13275:3;13296:67;13360:2;13355:3;13296:67;:::i;:::-;13289:74;;13372:93;13461:3;13372:93;:::i;:::-;13490:2;13485:3;13481:12;13474:19;;13133:366;;;:::o;13505:419::-;13671:4;13709:2;13698:9;13694:18;13686:26;;13758:9;13752:4;13748:20;13744:1;13733:9;13729:17;13722:47;13786:131;13912:4;13786:131;:::i;:::-;13778:139;;13505:419;;;:::o;13930:220::-;14070:34;14066:1;14058:6;14054:14;14047:58;14139:3;14134:2;14126:6;14122:15;14115:28;13930:220;:::o;14156:366::-;14298:3;14319:67;14383:2;14378:3;14319:67;:::i;:::-;14312:74;;14395:93;14484:3;14395:93;:::i;:::-;14513:2;14508:3;14504:12;14497:19;;14156:366;;;:::o;14528:419::-;14694:4;14732:2;14721:9;14717:18;14709:26;;14781:9;14775:4;14771:20;14767:1;14756:9;14752:17;14745:47;14809:131;14935:4;14809:131;:::i;:::-;14801:139;;14528:419;;;:::o;14953:221::-;15093:34;15089:1;15081:6;15077:14;15070:58;15162:4;15157:2;15149:6;15145:15;15138:29;14953:221;:::o;15180:366::-;15322:3;15343:67;15407:2;15402:3;15343:67;:::i;:::-;15336:74;;15419:93;15508:3;15419:93;:::i;:::-;15537:2;15532:3;15528:12;15521:19;;15180:366;;;:::o;15552:419::-;15718:4;15756:2;15745:9;15741:18;15733:26;;15805:9;15799:4;15795:20;15791:1;15780:9;15776:17;15769:47;15833:131;15959:4;15833:131;:::i;:::-;15825:139;;15552:419;;;:::o

Swarm Source

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