ETH Price: $3,421.54 (+1.18%)
Gas: 3 Gwei

Token

NoundlesRainbows (Rainbows)
 

Overview

Max Total Supply

57,840.459552872312333293 Rainbows

Holders

1,464

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
cvd.eth
Balance
90.371666666666666666 Rainbows

Value
$0.00
0xdAa7c1B5fEAca5D1bC1bea7E7C07d91d3e6dfe51
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:
Rainbows

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-18
*/

// File: @openzeppelin/contracts/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/security/Pausable.sol



pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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



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.zeppelin.solutions/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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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;
        _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;
        }
        _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 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/Rainbows.sol


pragma solidity ^0.8.0;




interface InterfaceNoundles {
    function noundleBalance(address owner) external view returns(uint256);
}

contract Rainbows is ERC20, Ownable, Pausable {

    InterfaceNoundles public Noundles;

    // The starting block.
    uint256 public startBlock;

    // The interval that the user is paid out.
    uint256 public interval = 86400;
    uint256 public rate     = 4 ether;

    address public ticketContract;

    // The rewards for the user.
    mapping(address => uint256) public rewards;

    // The last time they were paid out.
    mapping(address => uint256) public lastUpdate;

    // Only allow the contract to interact with it.
    modifier onlyFromNoundles() {
        require(msg.sender == address(Noundles));
        _;
    }

    constructor(address noundlesAddress) ERC20("NoundlesRainbows", "Rainbows") {

        // Set who the evofoxes address.
        Noundles = InterfaceNoundles(noundlesAddress);

        // Set the starting block.
        startBlock = block.timestamp;

        // Set to the owner for now.
        ticketContract = msg.sender;

        // Pause the system so no one can interact with it.
        _pause();
    }

    /*
        Admin Utility.
    */

    // Pause it.
    function pause() public onlyOwner { _pause(); }

    // Unpause it.
    function unpause() public onlyOwner { _unpause(); }

    // Set the start block.
    function setStartBlock(uint256 arg) public onlyOwner {
        if(arg == 0){
            startBlock = block.timestamp;
        }else{
            startBlock = arg;
        }
    }

    // Set the start block.
    function setIntervalAndRate(uint256 _interval, uint256 _rate) public onlyOwner {
        interval = _interval;
        rate = _rate;
    }


    // Set the address for the contract.
    function setNoundlesContractAddress(address _noundles) public onlyOwner {
        Noundles = InterfaceNoundles(_noundles);
    }

     // Set the address for the contract.
    function setTicketContractAddress(address _noundles) public onlyOwner {
        ticketContract = _noundles;
    }

    // Burn the tokens required to evolve.
    function burn(address user, uint256 amount) external {
        require(msg.sender == address(ticketContract), "Your address does not have permission to use burn");
        _burn(user, amount);
    }

    // Mint some tokens for uniswap.
    function adminCreate(address user, uint256 amount) public onlyOwner {
        _mint(user, amount);
    }


    /*
        User Utilities.
    */

    // Transfer the tokens (only accessable from the contract).
    function transferTokens(address _from, address _to) onlyFromNoundles whenNotPaused external {

        // Refactor this.
        if(_from != address(0)){
            rewards[_from]    += getPendingReward(_from);
            lastUpdate[_from]  = block.timestamp;
        }

        if(_to != address(0)){
            rewards[_to]    += getPendingReward(_to);
            lastUpdate[_to]  = block.timestamp;
        }
    }

    // Pay out the holder.
    function claimReward() external whenNotPaused {

        // Mint the user their tokens.
        _mint(msg.sender, rewards[msg.sender] + getPendingReward(msg.sender));

        // Reset the rewards for the user.
        rewards[msg.sender] = 0;
        lastUpdate[msg.sender] = block.timestamp;
    }

    // The rewards to the user.
    function getTotalClaimable(address user) external view returns(uint256) {
        return rewards[user] + getPendingReward(user);
    }

    // The rewards to the user.
    function getlastUpdate(address user) external view returns(uint256) {
        return lastUpdate[user];
    }

    // Get the total rewards.
    function getPendingReward(address user) internal view returns(uint256) {
        return Noundles.noundleBalance(user) * 
               rate *
               (block.timestamp - (lastUpdate[user] >= startBlock ? lastUpdate[user] : startBlock)) / 
               interval;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"noundlesAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"Noundles","outputs":[{"internalType":"contract InterfaceNoundles","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"adminCreate","outputs":[],"stateMutability":"nonpayable","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":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimReward","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":"user","type":"address"}],"name":"getTotalClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getlastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"interval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_interval","type":"uint256"},{"internalType":"uint256","name":"_rate","type":"uint256"}],"name":"setIntervalAndRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_noundles","type":"address"}],"name":"setNoundlesContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"arg","type":"uint256"}],"name":"setStartBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_noundles","type":"address"}],"name":"setTicketContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ticketContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405262015180600855673782dace9d9000006009553480156200002457600080fd5b5060405162001941380380620019418339810160408190526200004791620002cb565b604080518082018252601081526f4e6f756e646c65735261696e626f777360801b6020808301918252835180850190945260088452675261696e626f777360c01b9084015281519192916200009f9160039162000225565b508051620000b590600490602084019062000225565b505050620000d2620000cc6200011d60201b60201c565b62000121565b6005805460ff60a01b19169055600680546001600160a01b0383166001600160a01b03199182161790915542600755600a8054909116331790556200011662000173565b506200033a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000187600554600160a01b900460ff1690565b15620001cc5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002083390565b6040516001600160a01b03909116815260200160405180910390a1565b8280546200023390620002fd565b90600052602060002090601f016020900481019282620002575760008555620002a2565b82601f106200027257805160ff1916838001178555620002a2565b82800160010185558215620002a2579182015b82811115620002a257825182559160200191906001019062000285565b50620002b0929150620002b4565b5090565b5b80821115620002b05760008155600101620002b5565b600060208284031215620002de57600080fd5b81516001600160a01b0381168114620002f657600080fd5b9392505050565b600181811c908216806200031257607f821691505b602082108114156200033457634e487b7160e01b600052602260045260246000fd5b50919050565b6115f7806200034a6000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a578063a9059cbb116100ad578063cb03fb1e1161007c578063cb03fb1e14610447578063dc98839414610467578063dd62ed3e1461047a578063f2fde38b146104b3578063f35e4a6e146104c657600080fd5b8063a9059cbb146103f0578063acc0b3b714610403578063b88a802f14610416578063c6080fe41461041e57600080fd5b8063947a36fb116100e9578063947a36fb146103b957806395d89b41146103c25780639dc29fac146103ca578063a457c2d7146103dd57600080fd5b8063715018a6146103855780638456cb591461038d5780638da5cb5b1461039557806392826b48146103a657600080fd5b8063395093511161019d57806358a86e1d1161016c57806358a86e1d146103115780635c975abb146103245780635feae415146103365780636a092e791461034957806370a082311461035c57600080fd5b806339509351146102c05780633f4ba83a146102d35780634762e121146102dd57806348cd4cb11461030857600080fd5b806323b872dd116101d957806323b872dd14610282578063267e8ab6146102955780632c4e722e146102a8578063313ce567146102b157600080fd5b806306fdde031461020b5780630700037d14610229578063095ea7b31461025757806318160ddd1461027a575b600080fd5b6102136104d9565b604051610220919061144c565b60405180910390f35b61024961023736600461133d565b600b6020526000908152604090205481565b604051908152602001610220565b61026a6102653660046113ce565b61056b565b6040519015158152602001610220565b600254610249565b61026a610290366004611392565b610581565b6102496102a336600461133d565b610630565b61024960095481565b60405160128152602001610220565b61026a6102ce3660046113ce565b610664565b6102db6106a0565b005b6006546102f0906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b61024960075481565b600a546102f0906001600160a01b031681565b600554600160a01b900460ff1661026a565b6102db61034436600461142a565b6106d4565b6102db61035736600461135f565b610709565b61024961036a36600461133d565b6001600160a01b031660009081526020819052604090205490565b6102db610810565b6102db610844565b6005546001600160a01b03166102f0565b6102db6103b436600461133d565b610876565b61024960085481565b6102136108c2565b6102db6103d83660046113ce565b6108d1565b61026a6103eb3660046113ce565b61094f565b61026a6103fe3660046113ce565b6109e8565b6102db6104113660046113ce565b6109f5565b6102db610a29565b61024961042c36600461133d565b6001600160a01b03166000908152600c602052604090205490565b61024961045536600461133d565b600c6020526000908152604090205481565b6102db61047536600461133d565b610aa0565b61024961048836600461135f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102db6104c136600461133d565b610aec565b6102db6104d43660046113f8565b610b87565b6060600380546104e890611570565b80601f016020809104026020016040519081016040528092919081815260200182805461051490611570565b80156105615780601f1061053657610100808354040283529160200191610561565b820191906000526020600020905b81548152906001019060200180831161054457829003601f168201915b5050505050905090565b6000610578338484610bc2565b50600192915050565b600061058e848484610ce7565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106185760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6106258533858403610bc2565b506001949350505050565b600061063b82610eb6565b6001600160a01b0383166000908152600b602052604090205461065e9190611500565b92915050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161057891859061069b908690611500565b610bc2565b6005546001600160a01b031633146106ca5760405162461bcd60e51b815260040161060f906114cb565b6106d2610fa8565b565b6005546001600160a01b031633146106fe5760405162461bcd60e51b815260040161060f906114cb565b600891909155600955565b6006546001600160a01b0316331461072057600080fd5b600554600160a01b900460ff161561074a5760405162461bcd60e51b815260040161060f906114a1565b6001600160a01b038216156107ab5761076282610eb6565b6001600160a01b0383166000908152600b60205260408120805490919061078a908490611500565b90915550506001600160a01b0382166000908152600c602052604090204290555b6001600160a01b0381161561080c576107c381610eb6565b6001600160a01b0382166000908152600b6020526040812080549091906107eb908490611500565b90915550506001600160a01b0381166000908152600c602052604090204290555b5050565b6005546001600160a01b0316331461083a5760405162461bcd60e51b815260040161060f906114cb565b6106d26000611045565b6005546001600160a01b0316331461086e5760405162461bcd60e51b815260040161060f906114cb565b6106d2611097565b6005546001600160a01b031633146108a05760405162461bcd60e51b815260040161060f906114cb565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546104e890611570565b600a546001600160a01b031633146109455760405162461bcd60e51b815260206004820152603160248201527f596f7572206164647265737320646f6573206e6f742068617665207065726d6960448201527039b9b4b7b7103a37903ab9b290313ab93760791b606482015260840161060f565b61080c82826110fc565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109d15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161060f565b6109de3385858403610bc2565b5060019392505050565b6000610578338484610ce7565b6005546001600160a01b03163314610a1f5760405162461bcd60e51b815260040161060f906114cb565b61080c8282611242565b600554600160a01b900460ff1615610a535760405162461bcd60e51b815260040161060f906114a1565b610a7f33610a6033610eb6565b336000908152600b6020526040902054610a7a9190611500565b611242565b336000908152600b60209081526040808320839055600c9091529020429055565b6005546001600160a01b03163314610aca5760405162461bcd60e51b815260040161060f906114cb565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b165760405162461bcd60e51b815260040161060f906114cb565b6001600160a01b038116610b7b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161060f565b610b8481611045565b50565b6005546001600160a01b03163314610bb15760405162461bcd60e51b815260040161060f906114cb565b80610bbd574260075550565b600755565b6001600160a01b038316610c245760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161060f565b6001600160a01b038216610c855760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161060f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d4b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161060f565b6001600160a01b038216610dad5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161060f565b6001600160a01b03831660009081526020819052604090205481811015610e255760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161060f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e5c908490611500565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ea891815260200190565b60405180910390a350505050565b6008546007546001600160a01b0383166000908152600c60205260408120549092911115610ee657600754610f00565b6001600160a01b0383166000908152600c60205260409020545b610f0a9042611559565b60095460065460405163ea2c736b60e01b81526001600160a01b0387811660048301529091169063ea2c736b9060240160206040518083038186803b158015610f5257600080fd5b505afa158015610f66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8a9190611411565b610f94919061153a565b610f9e919061153a565b61065e9190611518565b600554600160a01b900460ff16610ff85760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161060f565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600554600160a01b900460ff16156110c15760405162461bcd60e51b815260040161060f906114a1565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110283390565b6001600160a01b03821661115c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161060f565b6001600160a01b038216600090815260208190526040902054818110156111d05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161060f565b6001600160a01b03831660009081526020819052604081208383039055600280548492906111ff908490611559565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610cda565b6001600160a01b0382166112985760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161060f565b80600260008282546112aa9190611500565b90915550506001600160a01b038216600090815260208190526040812080548392906112d7908490611500565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b038116811461133857600080fd5b919050565b60006020828403121561134f57600080fd5b61135882611321565b9392505050565b6000806040838503121561137257600080fd5b61137b83611321565b915061138960208401611321565b90509250929050565b6000806000606084860312156113a757600080fd5b6113b084611321565b92506113be60208501611321565b9150604084013590509250925092565b600080604083850312156113e157600080fd5b6113ea83611321565b946020939093013593505050565b60006020828403121561140a57600080fd5b5035919050565b60006020828403121561142357600080fd5b5051919050565b6000806040838503121561143d57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156114795785810183015185820160400152820161145d565b8181111561148b576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611513576115136115ab565b500190565b60008261153557634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611554576115546115ab565b500290565b60008282101561156b5761156b6115ab565b500390565b600181811c9082168061158457607f821691505b602082108114156115a557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212208b7ce5c7446af711e973cb1ee9096af33cd7e92e982af598f4c4a45debbf1e8e64736f6c634300080700330000000000000000000000004cff01dbed00a5e95d705f96acf369f210c203c8

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a578063a9059cbb116100ad578063cb03fb1e1161007c578063cb03fb1e14610447578063dc98839414610467578063dd62ed3e1461047a578063f2fde38b146104b3578063f35e4a6e146104c657600080fd5b8063a9059cbb146103f0578063acc0b3b714610403578063b88a802f14610416578063c6080fe41461041e57600080fd5b8063947a36fb116100e9578063947a36fb146103b957806395d89b41146103c25780639dc29fac146103ca578063a457c2d7146103dd57600080fd5b8063715018a6146103855780638456cb591461038d5780638da5cb5b1461039557806392826b48146103a657600080fd5b8063395093511161019d57806358a86e1d1161016c57806358a86e1d146103115780635c975abb146103245780635feae415146103365780636a092e791461034957806370a082311461035c57600080fd5b806339509351146102c05780633f4ba83a146102d35780634762e121146102dd57806348cd4cb11461030857600080fd5b806323b872dd116101d957806323b872dd14610282578063267e8ab6146102955780632c4e722e146102a8578063313ce567146102b157600080fd5b806306fdde031461020b5780630700037d14610229578063095ea7b31461025757806318160ddd1461027a575b600080fd5b6102136104d9565b604051610220919061144c565b60405180910390f35b61024961023736600461133d565b600b6020526000908152604090205481565b604051908152602001610220565b61026a6102653660046113ce565b61056b565b6040519015158152602001610220565b600254610249565b61026a610290366004611392565b610581565b6102496102a336600461133d565b610630565b61024960095481565b60405160128152602001610220565b61026a6102ce3660046113ce565b610664565b6102db6106a0565b005b6006546102f0906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b61024960075481565b600a546102f0906001600160a01b031681565b600554600160a01b900460ff1661026a565b6102db61034436600461142a565b6106d4565b6102db61035736600461135f565b610709565b61024961036a36600461133d565b6001600160a01b031660009081526020819052604090205490565b6102db610810565b6102db610844565b6005546001600160a01b03166102f0565b6102db6103b436600461133d565b610876565b61024960085481565b6102136108c2565b6102db6103d83660046113ce565b6108d1565b61026a6103eb3660046113ce565b61094f565b61026a6103fe3660046113ce565b6109e8565b6102db6104113660046113ce565b6109f5565b6102db610a29565b61024961042c36600461133d565b6001600160a01b03166000908152600c602052604090205490565b61024961045536600461133d565b600c6020526000908152604090205481565b6102db61047536600461133d565b610aa0565b61024961048836600461135f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102db6104c136600461133d565b610aec565b6102db6104d43660046113f8565b610b87565b6060600380546104e890611570565b80601f016020809104026020016040519081016040528092919081815260200182805461051490611570565b80156105615780601f1061053657610100808354040283529160200191610561565b820191906000526020600020905b81548152906001019060200180831161054457829003601f168201915b5050505050905090565b6000610578338484610bc2565b50600192915050565b600061058e848484610ce7565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106185760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6106258533858403610bc2565b506001949350505050565b600061063b82610eb6565b6001600160a01b0383166000908152600b602052604090205461065e9190611500565b92915050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161057891859061069b908690611500565b610bc2565b6005546001600160a01b031633146106ca5760405162461bcd60e51b815260040161060f906114cb565b6106d2610fa8565b565b6005546001600160a01b031633146106fe5760405162461bcd60e51b815260040161060f906114cb565b600891909155600955565b6006546001600160a01b0316331461072057600080fd5b600554600160a01b900460ff161561074a5760405162461bcd60e51b815260040161060f906114a1565b6001600160a01b038216156107ab5761076282610eb6565b6001600160a01b0383166000908152600b60205260408120805490919061078a908490611500565b90915550506001600160a01b0382166000908152600c602052604090204290555b6001600160a01b0381161561080c576107c381610eb6565b6001600160a01b0382166000908152600b6020526040812080549091906107eb908490611500565b90915550506001600160a01b0381166000908152600c602052604090204290555b5050565b6005546001600160a01b0316331461083a5760405162461bcd60e51b815260040161060f906114cb565b6106d26000611045565b6005546001600160a01b0316331461086e5760405162461bcd60e51b815260040161060f906114cb565b6106d2611097565b6005546001600160a01b031633146108a05760405162461bcd60e51b815260040161060f906114cb565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546104e890611570565b600a546001600160a01b031633146109455760405162461bcd60e51b815260206004820152603160248201527f596f7572206164647265737320646f6573206e6f742068617665207065726d6960448201527039b9b4b7b7103a37903ab9b290313ab93760791b606482015260840161060f565b61080c82826110fc565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109d15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161060f565b6109de3385858403610bc2565b5060019392505050565b6000610578338484610ce7565b6005546001600160a01b03163314610a1f5760405162461bcd60e51b815260040161060f906114cb565b61080c8282611242565b600554600160a01b900460ff1615610a535760405162461bcd60e51b815260040161060f906114a1565b610a7f33610a6033610eb6565b336000908152600b6020526040902054610a7a9190611500565b611242565b336000908152600b60209081526040808320839055600c9091529020429055565b6005546001600160a01b03163314610aca5760405162461bcd60e51b815260040161060f906114cb565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b165760405162461bcd60e51b815260040161060f906114cb565b6001600160a01b038116610b7b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161060f565b610b8481611045565b50565b6005546001600160a01b03163314610bb15760405162461bcd60e51b815260040161060f906114cb565b80610bbd574260075550565b600755565b6001600160a01b038316610c245760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161060f565b6001600160a01b038216610c855760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161060f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d4b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161060f565b6001600160a01b038216610dad5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161060f565b6001600160a01b03831660009081526020819052604090205481811015610e255760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161060f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e5c908490611500565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ea891815260200190565b60405180910390a350505050565b6008546007546001600160a01b0383166000908152600c60205260408120549092911115610ee657600754610f00565b6001600160a01b0383166000908152600c60205260409020545b610f0a9042611559565b60095460065460405163ea2c736b60e01b81526001600160a01b0387811660048301529091169063ea2c736b9060240160206040518083038186803b158015610f5257600080fd5b505afa158015610f66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8a9190611411565b610f94919061153a565b610f9e919061153a565b61065e9190611518565b600554600160a01b900460ff16610ff85760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161060f565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600554600160a01b900460ff16156110c15760405162461bcd60e51b815260040161060f906114a1565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110283390565b6001600160a01b03821661115c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161060f565b6001600160a01b038216600090815260208190526040902054818110156111d05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161060f565b6001600160a01b03831660009081526020819052604081208383039055600280548492906111ff908490611559565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610cda565b6001600160a01b0382166112985760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161060f565b80600260008282546112aa9190611500565b90915550506001600160a01b038216600090815260208190526040812080548392906112d7908490611500565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b038116811461133857600080fd5b919050565b60006020828403121561134f57600080fd5b61135882611321565b9392505050565b6000806040838503121561137257600080fd5b61137b83611321565b915061138960208401611321565b90509250929050565b6000806000606084860312156113a757600080fd5b6113b084611321565b92506113be60208501611321565b9150604084013590509250925092565b600080604083850312156113e157600080fd5b6113ea83611321565b946020939093013593505050565b60006020828403121561140a57600080fd5b5035919050565b60006020828403121561142357600080fd5b5051919050565b6000806040838503121561143d57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156114795785810183015185820160400152820161145d565b8181111561148b576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611513576115136115ab565b500190565b60008261153557634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611554576115546115ab565b500290565b60008282101561156b5761156b6115ab565b500390565b600181811c9082168061158457607f821691505b602082108114156115a557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212208b7ce5c7446af711e973cb1ee9096af33cd7e92e982af598f4c4a45debbf1e8e64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000004cff01dbed00a5e95d705f96acf369f210c203c8

-----Decoded View---------------
Arg [0] : noundlesAddress (address): 0x4cFF01DBed00A5E95D705F96ACF369F210C203c8

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004cff01dbed00a5e95d705f96acf369f210c203c8


Deployed Bytecode Sourcemap

21087:3978:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10944:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21446:42;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;9133:25:1;;;9121:2;9106:18;21446:42:0;8987:177:1;13111:169:0;;;;;;:::i;:::-;;:::i;:::-;;;2240:14:1;;2233:22;2215:41;;2203:2;2188:18;13111:169:0;2075:187:1;12064:108:0;12152:12;;12064:108;;13762:492;;;;;;:::i;:::-;;:::i;24455:136::-;;;;;;:::i;:::-;;:::i;21332:33::-;;;;;;11906:93;;;11989:2;9311:36:1;;9299:2;9284:18;11906:93:0;9169:184:1;14663:215:0;;;;;;:::i;:::-;;:::i;22316:51::-;;;:::i;:::-;;21142:33;;;;;-1:-1:-1;;;;;21142:33:0;;;;;;-1:-1:-1;;;;;2031:32:1;;;2013:51;;2001:2;1986:18;21142:33:0;1867:203:1;21212:25:0;;;;;;21374:29;;;;;-1:-1:-1;;;;;21374:29:0;;;1913:86;1984:7;;-1:-1:-1;;;1984:7:0;;;;1913:86;;22626:141;;;;;;:::i;:::-;;:::i;23638:433::-;;;;;;:::i;:::-;;:::i;12235:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12336:18:0;12309:7;12336:18;;;;;;;;;;;;12235:127;4748:94;;;:::i;22241:47::-;;;:::i;4097:87::-;4170:6;;-1:-1:-1;;;;;4170:6:0;4097:87;;23000:115;;;;;;:::i;:::-;;:::i;21294:31::-;;;;;;11163:104;;;:::i;23167:201::-;;;;;;:::i;:::-;;:::i;15381:413::-;;;;;;:::i;:::-;;:::i;12575:175::-;;;;;;:::i;:::-;;:::i;23414:106::-;;;;;;:::i;:::-;;:::i;24107:307::-;;;:::i;24632:110::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24718:16:0;24691:7;24718:16;;;:10;:16;;;;;;;24632:110;21539:45;;;;;;:::i;:::-;;;;;;;;;;;;;;22819:130;;;;;;:::i;:::-;;:::i;12813:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12929:18:0;;;12902:7;12929:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12813:151;4997:192;;;;;;:::i;:::-;;:::i;22404:185::-;;;;;;:::i;:::-;;:::i;10944:100::-;10998:13;11031:5;11024:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10944:100;:::o;13111:169::-;13194:4;13211:39;705:10;13234:7;13243:6;13211:8;:39::i;:::-;-1:-1:-1;13268:4:0;13111:169;;;;:::o;13762:492::-;13902:4;13919:36;13929:6;13937:9;13948:6;13919:9;:36::i;:::-;-1:-1:-1;;;;;13995:19:0;;13968:24;13995:19;;;:11;:19;;;;;;;;705:10;13995:33;;;;;;;;14047:26;;;;14039:79;;;;-1:-1:-1;;;14039:79:0;;6022:2:1;14039:79:0;;;6004:21:1;6061:2;6041:18;;;6034:30;6100:34;6080:18;;;6073:62;-1:-1:-1;;;6151:18:1;;;6144:38;6199:19;;14039:79:0;;;;;;;;;14154:57;14163:6;705:10;14204:6;14185:16;:25;14154:8;:57::i;:::-;-1:-1:-1;14242:4:0;;13762:492;-1:-1:-1;;;;13762:492:0:o;24455:136::-;24518:7;24561:22;24578:4;24561:16;:22::i;:::-;-1:-1:-1;;;;;24545:13:0;;;;;;:7;:13;;;;;;:38;;;;:::i;:::-;24538:45;24455:136;-1:-1:-1;;24455:136:0:o;14663:215::-;705:10;14751:4;14800:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14800:34:0;;;;;;;;;;14751:4;;14768:80;;14791:7;;14800:47;;14837:10;;14800:47;:::i;:::-;14768:8;:80::i;22316:51::-;4170:6;;-1:-1:-1;;;;;4170:6:0;705:10;4317:23;4309:68;;;;-1:-1:-1;;;4309:68:0;;;;;;;:::i;:::-;22354:10:::1;:8;:10::i;:::-;22316:51::o:0;22626:141::-;4170:6;;-1:-1:-1;;;;;4170:6:0;705:10;4317:23;4309:68;;;;-1:-1:-1;;;4309:68:0;;;;;;;:::i;:::-;22716:8:::1;:20:::0;;;;22747:4:::1;:12:::0;22626:141::o;23638:433::-;21715:8;;-1:-1:-1;;;;;21715:8:0;21693:10;:31;21685:40;;;;;;1984:7;;-1:-1:-1;;;1984:7:0;;;;2238:9:::1;2230:38;;;;-1:-1:-1::0;;;2230:38:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23773:19:0;::::2;::::0;23770:145:::2;;23829:23;23846:5;23829:16;:23::i;:::-;-1:-1:-1::0;;;;;23808:14:0;::::2;;::::0;;;:7:::2;:14;::::0;;;;:44;;:14;;;:44:::2;::::0;;;::::2;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;23867:17:0;::::2;;::::0;;;:10:::2;:17;::::0;;;;23888:15:::2;23867:36:::0;;23770:145:::2;-1:-1:-1::0;;;;;23930:17:0;::::2;::::0;23927:137:::2;;23982:21;23999:3;23982:16;:21::i;:::-;-1:-1:-1::0;;;;;23963:12:0;::::2;;::::0;;;:7:::2;:12;::::0;;;;:40;;:12;;;:40:::2;::::0;;;::::2;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;24018:15:0;::::2;;::::0;;;:10:::2;:15;::::0;;;;24037::::2;24018:34:::0;;23927:137:::2;23638:433:::0;;:::o;4748:94::-;4170:6;;-1:-1:-1;;;;;4170:6:0;705:10;4317:23;4309:68;;;;-1:-1:-1;;;4309:68:0;;;;;;;:::i;:::-;4813:21:::1;4831:1;4813:9;:21::i;22241:47::-:0;4170:6;;-1:-1:-1;;;;;4170:6:0;705:10;4317:23;4309:68;;;;-1:-1:-1;;;4309:68:0;;;;;;;:::i;:::-;22277:8:::1;:6;:8::i;23000:115::-:0;4170:6;;-1:-1:-1;;;;;4170:6:0;705:10;4317:23;4309:68;;;;-1:-1:-1;;;4309:68:0;;;;;;;:::i;:::-;23081:14:::1;:26:::0;;-1:-1:-1;;;;;;23081:26:0::1;-1:-1:-1::0;;;;;23081:26:0;;;::::1;::::0;;;::::1;::::0;;23000:115::o;11163:104::-;11219:13;11252:7;11245:14;;;;;:::i;23167:201::-;23261:14;;-1:-1:-1;;;;;23261:14:0;23239:10;:37;23231:99;;;;-1:-1:-1;;;23231:99:0;;8005:2:1;23231:99:0;;;7987:21:1;8044:2;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;-1:-1:-1;;;8134:18:1;;;8127:47;8191:19;;23231:99:0;7803:413:1;23231:99:0;23341:19;23347:4;23353:6;23341:5;:19::i;15381:413::-;705:10;15474:4;15518:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15518:34:0;;;;;;;;;;15571:35;;;;15563:85;;;;-1:-1:-1;;;15563:85:0;;8423:2:1;15563:85:0;;;8405:21:1;8462:2;8442:18;;;8435:30;8501:34;8481:18;;;8474:62;-1:-1:-1;;;8552:18:1;;;8545:35;8597:19;;15563:85:0;8221:401:1;15563:85:0;15684:67;705:10;15707:7;15735:15;15716:16;:34;15684:8;:67::i;:::-;-1:-1:-1;15782:4:0;;15381:413;-1:-1:-1;;;15381:413:0:o;12575:175::-;12661:4;12678:42;705:10;12702:9;12713:6;12678:9;:42::i;23414:106::-;4170:6;;-1:-1:-1;;;;;4170:6:0;705:10;4317:23;4309:68;;;;-1:-1:-1;;;4309:68:0;;;;;;;:::i;:::-;23493:19:::1;23499:4;23505:6;23493:5;:19::i;24107:307::-:0;1984:7;;-1:-1:-1;;;1984:7:0;;;;2238:9;2230:38;;;;-1:-1:-1;;;2230:38:0;;;;;;;:::i;:::-;24206:69:::1;24212:10;24246:28;24263:10;24246:16;:28::i;:::-;24232:10;24224:19;::::0;;;:7:::1;:19;::::0;;;;;:50:::1;::::0;;::::1;:::i;:::-;24206:5;:69::i;:::-;24340:10;24354:1;24332:19:::0;;;:7:::1;:19;::::0;;;;;;;:23;;;24366:10:::1;:22:::0;;;;;24391:15:::1;24366:40:::0;;24107:307::o;22819:130::-;4170:6;;-1:-1:-1;;;;;4170:6:0;705:10;4317:23;4309:68;;;;-1:-1:-1;;;4309:68:0;;;;;;;:::i;:::-;22902:8:::1;:39:::0;;-1:-1:-1;;;;;;22902:39:0::1;-1:-1:-1::0;;;;;22902:39:0;;;::::1;::::0;;;::::1;::::0;;22819:130::o;4997:192::-;4170:6;;-1:-1:-1;;;;;4170:6:0;705:10;4317:23;4309:68;;;;-1:-1:-1;;;4309:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5086:22:0;::::1;5078:73;;;::::0;-1:-1:-1;;;5078:73:0;;4460:2:1;5078:73:0::1;::::0;::::1;4442:21:1::0;4499:2;4479:18;;;4472:30;4538:34;4518:18;;;4511:62;-1:-1:-1;;;4589:18:1;;;4582:36;4635:19;;5078:73:0::1;4258:402:1::0;5078:73:0::1;5162:19;5172:8;5162:9;:19::i;:::-;4997:192:::0;:::o;22404:185::-;4170:6;;-1:-1:-1;;;;;4170:6:0;705:10;4317:23;4309:68;;;;-1:-1:-1;;;4309:68:0;;;;;;;:::i;:::-;22471:8;22468:114:::1;;22508:15;22495:10;:28:::0;4997:192;:::o;22468:114::-:1;22554:10;:16:::0;22404:185::o;19065:380::-;-1:-1:-1;;;;;19201:19:0;;19193:68;;;;-1:-1:-1;;;19193:68:0;;7600:2:1;19193:68:0;;;7582:21:1;7639:2;7619:18;;;7612:30;7678:34;7658:18;;;7651:62;-1:-1:-1;;;7729:18:1;;;7722:34;7773:19;;19193:68:0;7398:400:1;19193:68:0;-1:-1:-1;;;;;19280:21:0;;19272:68;;;;-1:-1:-1;;;19272:68:0;;4867:2:1;19272:68:0;;;4849:21:1;4906:2;4886:18;;;4879:30;4945:34;4925:18;;;4918:62;-1:-1:-1;;;4996:18:1;;;4989:32;5038:19;;19272:68:0;4665:398:1;19272:68:0;-1:-1:-1;;;;;19353:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19405:32;;9133:25:1;;;19405:32:0;;9106:18:1;19405:32:0;;;;;;;;19065:380;;;:::o;16284:733::-;-1:-1:-1;;;;;16424:20:0;;16416:70;;;;-1:-1:-1;;;16416:70:0;;7194:2:1;16416:70:0;;;7176:21:1;7233:2;7213:18;;;7206:30;7272:34;7252:18;;;7245:62;-1:-1:-1;;;7323:18:1;;;7316:35;7368:19;;16416:70:0;6992:401:1;16416:70:0;-1:-1:-1;;;;;16505:23:0;;16497:71;;;;-1:-1:-1;;;16497:71:0;;3304:2:1;16497:71:0;;;3286:21:1;3343:2;3323:18;;;3316:30;3382:34;3362:18;;;3355:62;-1:-1:-1;;;3433:18:1;;;3426:33;3476:19;;16497:71:0;3102:399:1;16497:71:0;-1:-1:-1;;;;;16665:17:0;;16641:21;16665:17;;;;;;;;;;;16701:23;;;;16693:74;;;;-1:-1:-1;;;16693:74:0;;5270:2:1;16693:74:0;;;5252:21:1;5309:2;5289:18;;;5282:30;5348:34;5328:18;;;5321:62;-1:-1:-1;;;5399:18:1;;;5392:36;5445:19;;16693:74:0;5068:402:1;16693:74:0;-1:-1:-1;;;;;16803:17:0;;;:9;:17;;;;;;;;;;;16823:22;;;16803:42;;16867:20;;;;;;;;:30;;16839:6;;16803:9;16867:30;;16839:6;;16867:30;:::i;:::-;;;;;;;;16932:9;-1:-1:-1;;;;;16915:35:0;16924:6;-1:-1:-1;;;;;16915:35:0;;16943:6;16915:35;;;;9133:25:1;;9121:2;9106:18;;8987:177;16915:35:0;;;;;;;;16405:612;16284:733;;;:::o;24781:281::-;25046:8;;24982:10;;-1:-1:-1;;;;;24962:16:0;;24843:7;24962:16;;;:10;:16;;;;;;24843:7;;25046:8;-1:-1:-1;24962:30:0;:62;;25014:10;;24962:62;;;-1:-1:-1;;;;;24995:16:0;;;;;;:10;:16;;;;;;24962:62;24943:82;;:15;:82;:::i;:::-;24919:4;;24870:8;;:29;;-1:-1:-1;;;24870:29:0;;-1:-1:-1;;;;;2031:32:1;;;24870:29:0;;;2013:51:1;24870:8:0;;;;:23;;1986:18:1;;24870:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;:156;;;;:::i;:::-;:184;;;;:::i;2972:120::-;1984:7;;-1:-1:-1;;;1984:7:0;;;;2508:41;;;;-1:-1:-1;;;2508:41:0;;3708:2:1;2508:41:0;;;3690:21:1;3747:2;3727:18;;;3720:30;-1:-1:-1;;;3766:18:1;;;3759:50;3826:18;;2508:41:0;3506:344:1;2508:41:0;3031:7:::1;:15:::0;;-1:-1:-1;;;;3031:15:0::1;::::0;;3062:22:::1;705:10:::0;3071:12:::1;3062:22;::::0;-1:-1:-1;;;;;2031:32:1;;;2013:51;;2001:2;1986:18;3062:22:0::1;;;;;;;2972:120::o:0;5197:173::-;5272:6;;;-1:-1:-1;;;;;5289:17:0;;;-1:-1:-1;;;;;;5289:17:0;;;;;;;5322:40;;5272:6;;;5289:17;5272:6;;5322:40;;5253:16;;5322:40;5242:128;5197:173;:::o;2713:118::-;1984:7;;-1:-1:-1;;;1984:7:0;;;;2238:9;2230:38;;;;-1:-1:-1;;;2230:38:0;;;;;;;:::i;:::-;2773:7:::1;:14:::0;;-1:-1:-1;;;;2773:14:0::1;-1:-1:-1::0;;;2773:14:0::1;::::0;;2803:20:::1;2810:12;705:10:::0;;625:98;18036:591;-1:-1:-1;;;;;18120:21:0;;18112:67;;;;-1:-1:-1;;;18112:67:0;;6792:2:1;18112:67:0;;;6774:21:1;6831:2;6811:18;;;6804:30;6870:34;6850:18;;;6843:62;-1:-1:-1;;;6921:18:1;;;6914:31;6962:19;;18112:67:0;6590:397:1;18112:67:0;-1:-1:-1;;;;;18279:18:0;;18254:22;18279:18;;;;;;;;;;;18316:24;;;;18308:71;;;;-1:-1:-1;;;18308:71:0;;4057:2:1;18308:71:0;;;4039:21:1;4096:2;4076:18;;;4069:30;4135:34;4115:18;;;4108:62;-1:-1:-1;;;4186:18:1;;;4179:32;4228:19;;18308:71:0;3855:398:1;18308:71:0;-1:-1:-1;;;;;18415:18:0;;:9;:18;;;;;;;;;;18436:23;;;18415:44;;18481:12;:22;;18453:6;;18415:9;18481:22;;18453:6;;18481:22;:::i;:::-;;;;-1:-1:-1;;18521:37:0;;9133:25:1;;;18547:1:0;;-1:-1:-1;;;;;18521:37:0;;;;;9121:2:1;9106:18;18521:37:0;8987:177:1;17304:399:0;-1:-1:-1;;;;;17388:21:0;;17380:65;;;;-1:-1:-1;;;17380:65:0;;8829:2:1;17380:65:0;;;8811:21:1;8868:2;8848:18;;;8841:30;8907:33;8887:18;;;8880:61;8958:18;;17380:65:0;8627:355:1;17380:65:0;17536:6;17520:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;17553:18:0;;:9;:18;;;;;;;;;;:28;;17575:6;;17553:9;:28;;17575:6;;17553:28;:::i;:::-;;;;-1:-1:-1;;17597:37:0;;9133:25:1;;;-1:-1:-1;;;;;17597:37:0;;;17614:1;;17597:37;;9121:2:1;9106:18;17597:37:0;;;;;;;23638:433;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:1;;1240:180;-1:-1:-1;1240:180:1:o;1425:184::-;1495:6;1548:2;1536:9;1527:7;1523:23;1519:32;1516:52;;;1564:1;1561;1554:12;1516:52;-1:-1:-1;1587:16:1;;1425:184;-1:-1:-1;1425:184:1:o;1614:248::-;1682:6;1690;1743:2;1731:9;1722:7;1718:23;1714:32;1711:52;;;1759:1;1756;1749:12;1711:52;-1:-1:-1;;1782:23:1;;;1852:2;1837:18;;;1824:32;;-1:-1:-1;1614:248:1:o;2500:597::-;2612:4;2641:2;2670;2659:9;2652:21;2702:6;2696:13;2745:6;2740:2;2729:9;2725:18;2718:34;2770:1;2780:140;2794:6;2791:1;2788:13;2780:140;;;2889:14;;;2885:23;;2879:30;2855:17;;;2874:2;2851:26;2844:66;2809:10;;2780:140;;;2938:6;2935:1;2932:13;2929:91;;;3008:1;3003:2;2994:6;2983:9;2979:22;2975:31;2968:42;2929:91;-1:-1:-1;3081:2:1;3060:15;-1:-1:-1;;3056:29:1;3041:45;;;;3088:2;3037:54;;2500:597;-1:-1:-1;;;2500:597:1:o;5475:340::-;5677:2;5659:21;;;5716:2;5696:18;;;5689:30;-1:-1:-1;;;5750:2:1;5735:18;;5728:46;5806:2;5791:18;;5475:340::o;6229:356::-;6431:2;6413:21;;;6450:18;;;6443:30;6509:34;6504:2;6489:18;;6482:62;6576:2;6561:18;;6229:356::o;9358:128::-;9398:3;9429:1;9425:6;9422:1;9419:13;9416:39;;;9435:18;;:::i;:::-;-1:-1:-1;9471:9:1;;9358:128::o;9491:217::-;9531:1;9557;9547:132;;9601:10;9596:3;9592:20;9589:1;9582:31;9636:4;9633:1;9626:15;9664:4;9661:1;9654:15;9547:132;-1:-1:-1;9693:9:1;;9491:217::o;9713:168::-;9753:7;9819:1;9815;9811:6;9807:14;9804:1;9801:21;9796:1;9789:9;9782:17;9778:45;9775:71;;;9826:18;;:::i;:::-;-1:-1:-1;9866:9:1;;9713:168::o;9886:125::-;9926:4;9954:1;9951;9948:8;9945:34;;;9959:18;;:::i;:::-;-1:-1:-1;9996:9:1;;9886:125::o;10016:380::-;10095:1;10091:12;;;;10138;;;10159:61;;10213:4;10205:6;10201:17;10191:27;;10159:61;10266:2;10258:6;10255:14;10235:18;10232:38;10229:161;;;10312:10;10307:3;10303:20;10300:1;10293:31;10347:4;10344:1;10337:15;10375:4;10372:1;10365:15;10229:161;;10016:380;;;:::o;10401:127::-;10462:10;10457:3;10453:20;10450:1;10443:31;10493:4;10490:1;10483:15;10517:4;10514:1;10507:15

Swarm Source

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