ETH Price: $2,967.43 (+3.58%)
Gas: 3 Gwei

Token

NOUN (NOUN)
 

Overview

Max Total Supply

1,824,070 NOUN

Holders

784

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
NounToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : NounToken.sol
// SPDX-License-Identifier: MIT

//  author Name: Alex Yap
//  author-email: <[email protected]>
//  author-website: https://alexyap.dev

pragma solidity ^0.8.0;

interface INouns3d {
    function balanceN3D(address _user) external view returns(uint256);
}

// Part: OpenZeppelin/[email protected]/Address
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract NounToken is ERC20, ReentrancyGuard, Ownable {
    //Start 1642204800 - Sat, January 15, 2022 08:00:00 AM 
    //End   1799884800 - Thu, January 14, 2027 08:00:00 AM, 5 years, 157680000
    uint256 constant public END = 1799884800;
    uint256 constant public BASE_RATE = 10 ether;
    uint256 constant public MINT_BONUS = 300 ether;

    // max supply 
    uint256 public constant MAX_YIELD_SUPPLY = 135050000 ether;
    uint256 public constant MAX_COMMUNITY_FUND_SUPPLY = 100000000 ether;
    uint256 public constant MAX_PUBLIC_SALES_SUPPLY = 50000000 ether;
    uint256 public constant MAX_TEAM_RESERVE_SUPPLY = 30000000 ether;

    // minted amount
    uint256 public totalYieldSupply;
    uint256 public totalCommunityFundSupply;
    uint256 public totalPublicSalesSupply;
    uint256 public totalTeamReserveSupply;

    mapping(address => bool) councillors;
    mapping(address => uint256) public rewards;
    mapping(address => uint256) public lastUpdate;

    INouns3d public nouns3dContract;

    event CouncillorAdded(address councillor);
    event CouncillorRemoved(address councillor);
    event RewardPaid(address indexed user, uint256 reward);

    constructor(address _nouns3d) ERC20("NOUN", "NOUN") {
        nouns3dContract = INouns3d(_nouns3d);
        addCouncillor(_nouns3d);
        //update community fund supply to cover the mint bonus
        totalCommunityFundSupply += 2220000000000000000000000;
    }

    function setInterface(address _nouns3d) external onlyOwner {
        nouns3dContract = INouns3d(_nouns3d);
    }

    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    function isCouncillor(address _councillor) public view returns(bool) {
        return councillors[_councillor];
    }

    function addCouncillor(address _councillor) public onlyOwner {
       require(_councillor != address(0), "Cannot add null address");
       councillors[_councillor] = true;
       emit CouncillorAdded(_councillor);
    }

    function removeCouncillor(address _councillor) public onlyOwner {
        require(isCouncillor(_councillor), "Not a councillor");
        delete councillors[_councillor];
        emit CouncillorRemoved(_councillor);
    }

    // updated_amount = (balanceN3D(user) * base_rate * delta / 86400) + amount * initial rate
    function updateRewardOnMint(address _user, uint256 _amount) external {
        require(councillors[msg.sender], "Unauthorized");

        uint256 time = min(block.timestamp, END);
        uint256 timerUser = lastUpdate[_user];
        uint256 timerRemainder = 0;

        //update reward count is this is not their first mint
        if (timerUser > 0) {
            rewards[_user] = rewards[_user] + (nouns3dContract.balanceN3D(_user) * BASE_RATE * ((time - timerUser) / 86400));
            timerRemainder = (time - timerUser) % 86400;
        }

        //award 300 NOUN per nft
        rewards[_user] += MINT_BONUS * _amount;
        
        //set new last updated
        lastUpdate[_user] = time - timerRemainder;
    }

    // called on transfers
    function updateReward(address _from, address _to, uint256 _tokenId) external {
        require(councillors[msg.sender], "Unauthorized");
        
        if (_tokenId < 7400) {
            uint256 time = min(block.timestamp, END);
            uint256 timerFrom = lastUpdate[_from];
            uint256 timerRemainderFrom = 0;
            
            if (timerFrom > 0) {
                rewards[_from] += nouns3dContract.balanceN3D(_from) * BASE_RATE * ((time - timerFrom) / 86400);
                timerRemainderFrom = (time - timerFrom) % 86400;
            }

            if (timerFrom != END) {
                lastUpdate[_from] = time - timerRemainderFrom;
            }

            if (_to != address(0)) {
                uint256 timerTo = lastUpdate[_to];
                uint256 timerRemainderTo = 0;

                if (timerTo > 0) {
                    rewards[_to] += nouns3dContract.balanceN3D(_to) * BASE_RATE * ((time - timerTo) / 86400);
                    timerRemainderTo = (time - timerTo) % 86400;
                }

                if (timerTo != END) {
                    lastUpdate[_to] = time - timerRemainderTo;
                }
            }
        }
    }

    function getReward(address _to) external nonReentrant{
        require(councillors[msg.sender], "Unauthorized");
        
        uint256 reward = rewards[_to];
        if (reward > 0) {
            require(
                totalYieldSupply + reward <= MAX_YIELD_SUPPLY,
                "Maximum yield supply reached"
            );

            rewards[_to] = 0;
            totalYieldSupply += reward;
            
            _mint(_to, reward);
            emit RewardPaid(_to, reward);
        }
    }

    function communityFundMint(address to, uint256 amount) external nonReentrant{
        require(councillors[msg.sender], "Unauthorized");
        require(
            totalCommunityFundSupply + amount <= MAX_COMMUNITY_FUND_SUPPLY,
            "Maximum community fund supply reached"
        );

        totalCommunityFundSupply += amount;
        _mint(to, amount);
    }

    function publicSalesMint(address to, uint256 amount) external nonReentrant{
        require(councillors[msg.sender], "Unauthorized");
        require(
            totalPublicSalesSupply + amount <= MAX_PUBLIC_SALES_SUPPLY,
            "Maximum public sales supply reached"
        );

        totalPublicSalesSupply += amount;
        _mint(to, amount);
    }

    function teamReserveMint(address to, uint256 amount) external nonReentrant{
        require(councillors[msg.sender], "Unauthorized");
        require(
            totalTeamReserveSupply + amount <= MAX_TEAM_RESERVE_SUPPLY,
            "Maximum team reserve supply reached"
        );

        totalTeamReserveSupply += amount;
        _mint(to, amount);
    }

    function burn(address _from, uint256 _amount) external nonReentrant{
        require(councillors[msg.sender], "Unauthorized");
        
        _burn(_from, _amount);
    }

    function getTotalClaimable(address _user) external view returns(uint256) {
        uint256 time = min(block.timestamp, END);
        uint256 pending = nouns3dContract.balanceN3D(_user) * BASE_RATE * ((time - lastUpdate[_user]) / 86400);
        return rewards[_user] + pending;
    }
}

File 2 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin 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 3 of 7 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.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 7 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_nouns3d","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":false,"internalType":"address","name":"councillor","type":"address"}],"name":"CouncillorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"councillor","type":"address"}],"name":"CouncillorRemoved","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":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","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":[],"name":"BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_COMMUNITY_FUND_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_SALES_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TEAM_RESERVE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_YIELD_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_BONUS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_councillor","type":"address"}],"name":"addCouncillor","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":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"communityFundMint","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":"_to","type":"address"}],"name":"getReward","outputs":[],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_councillor","type":"address"}],"name":"isCouncillor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"nouns3dContract","outputs":[{"internalType":"contract INouns3d","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicSalesMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_councillor","type":"address"}],"name":"removeCouncillor","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_nouns3d","type":"address"}],"name":"setInterface","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamReserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalCommunityFundSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSalesSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTeamReserveSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalYieldSupply","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"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"updateReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateRewardOnMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200442b3803806200442b833981810160405281019062000037919062000526565b6040518060400160405280600481526020017f4e4f554e000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e4f554e000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb9291906200040c565b508060049080519060200190620000d49291906200040c565b5050506001600581905550620000ff620000f36200017e60201b60201c565b6200018660201b60201c565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000151816200024c60201b60201c565b6a01d61a70eeefe6938000006008600082825462000170919062000591565b925050819055505062000776565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200025c6200017e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000282620003e260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d2906200064f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200034e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034590620006c1565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f683022275b534cbe101e7fbecfa9dba48b55d462866355b31b809bca1c35600181604051620003d79190620006f4565b60405180910390a150565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200041a9062000740565b90600052602060002090601f0160209004810192826200043e57600085556200048a565b82601f106200045957805160ff19168380011785556200048a565b828001600101855582156200048a579182015b82811115620004895782518255916020019190600101906200046c565b5b5090506200049991906200049d565b5090565b5b80821115620004b85760008160009055506001016200049e565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004ee82620004c1565b9050919050565b6200050081620004e1565b81146200050c57600080fd5b50565b6000815190506200052081620004f5565b92915050565b6000602082840312156200053f576200053e620004bc565b5b60006200054f848285016200050f565b91505092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200059e8262000558565b9150620005ab8362000558565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005e357620005e262000562565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000637602083620005ee565b91506200064482620005ff565b602082019050919050565b600060208201905081810360008301526200066a8162000628565b9050919050565b7f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000600082015250565b6000620006a9601783620005ee565b9150620006b68262000671565b602082019050919050565b60006020820190508181036000830152620006dc816200069a565b9050919050565b620006ee81620004e1565b82525050565b60006020820190506200070b6000830184620006e3565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200075957607f821691505b6020821081141562000770576200076f62000711565b5b50919050565b613ca580620007866000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c806370a082311161013b578063cb03fb1e116100b8578063e07cddea1161007c578063e07cddea14610707578063efe7a50414610723578063f2fde38b14610741578063fd090b661461075d578063fd7a3a151461077b57610248565b8063cb03fb1e14610651578063cc240c0114610681578063d37c9b6f1461069d578063d4582490146106b9578063dd62ed3e146106d757610248565b806397492c46116100ff57806397492c461461059d5780639dc29fac146105b9578063a457c2d7146105d5578063a9059cbb14610605578063c00007b01461063557610248565b806370a0823114610509578063715018a61461053957806372185e20146105435780638da5cb5b1461056157806395d89b411461057f57610248565b806323b872dd116101c95780633177d1d11161018d5780633177d1d114610463578063395093511461048157806341910f90146104b15780634cbc0047146104cf578063656229cc146104ed57610248565b806323b872dd146103ab57806324a4558e146103db578063267e8ab6146103f95780632c8e8dfa14610429578063313ce5671461044557610248565b8063157cc8d811610210578063157cc8d81461030557806315f27dac1461032157806317ffe6701461033f57806318160ddd1461035d578063210415131461037b57610248565b8063044760381461024d57806306fdde031461026b5780630700037d14610289578063095ea7b3146102b95780630d0fbe9b146102e9575b600080fd5b610255610799565b6040516102629190612c54565b60405180910390f35b61027361079f565b6040516102809190612d08565b60405180910390f35b6102a3600480360381019061029e9190612d8d565b610831565b6040516102b09190612c54565b60405180910390f35b6102d360048036038101906102ce9190612de6565b610849565b6040516102e09190612e41565b60405180910390f35b61030360048036038101906102fe9190612d8d565b610867565b005b61031f600480360381019061031a9190612de6565b6109e5565b005b610329610b49565b6040516103369190612ebb565b60405180910390f35b610347610b6f565b6040516103549190612c54565b60405180910390f35b610365610b7e565b6040516103729190612c54565b60405180910390f35b61039560048036038101906103909190612d8d565b610b88565b6040516103a29190612e41565b60405180910390f35b6103c560048036038101906103c09190612ed6565b610bde565b6040516103d29190612e41565b60405180910390f35b6103e3610cd6565b6040516103f09190612c54565b60405180910390f35b610413600480360381019061040e9190612d8d565b610cdc565b6040516104209190612c54565b60405180910390f35b610443600480360381019061043e9190612ed6565b610e68565b005b61044d61134a565b60405161045a9190612f45565b60405180910390f35b61046b611353565b6040516104789190612c54565b60405180910390f35b61049b60048036038101906104969190612de6565b611362565b6040516104a89190612e41565b60405180910390f35b6104b961140e565b6040516104c69190612c54565b60405180910390f35b6104d761141a565b6040516104e49190612c54565b60405180910390f35b61050760048036038101906105029190612de6565b611420565b005b610523600480360381019061051e9190612d8d565b611584565b6040516105309190612c54565b60405180910390f35b6105416115cc565b005b61054b611654565b6040516105589190612c54565b60405180910390f35b610569611663565b6040516105769190612f6f565b60405180910390f35b61058761168d565b6040516105949190612d08565b60405180910390f35b6105b760048036038101906105b29190612d8d565b61171f565b005b6105d360048036038101906105ce9190612de6565b6117df565b005b6105ef60048036038101906105ea9190612de6565b6118cf565b6040516105fc9190612e41565b60405180910390f35b61061f600480360381019061061a9190612de6565b6119ba565b60405161062c9190612e41565b60405180910390f35b61064f600480360381019061064a9190612d8d565b6119d8565b005b61066b60048036038101906106669190612d8d565b611c1d565b6040516106789190612c54565b60405180910390f35b61069b60048036038101906106969190612de6565b611c35565b005b6106b760048036038101906106b29190612de6565b611f6d565b005b6106c16120d1565b6040516106ce9190612c54565b60405180910390f35b6106f160048036038101906106ec9190612f8a565b6120de565b6040516106fe9190612c54565b60405180910390f35b610721600480360381019061071c9190612d8d565b612165565b005b61072b6122b2565b6040516107389190612c54565b60405180910390f35b61075b60048036038101906107569190612d8d565b6122ba565b005b6107656123b2565b6040516107729190612c54565b60405180910390f35b6107836123b8565b6040516107909190612c54565b60405180910390f35b60095481565b6060600380546107ae90612ff9565b80601f01602080910402602001604051908101604052809291908181526020018280546107da90612ff9565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b600c6020528060005260406000206000915090505481565b600061085d6108566123c7565b84846123cf565b6001905092915050565b61086f6123c7565b73ffffffffffffffffffffffffffffffffffffffff1661088d611663565b73ffffffffffffffffffffffffffffffffffffffff16146108e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108da90613077565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a906130e3565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f683022275b534cbe101e7fbecfa9dba48b55d462866355b31b809bca1c356001816040516109da9190612f6f565b60405180910390a150565b60026005541415610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a229061314f565b60405180910390fd5b6002600581905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906131bb565b60405180910390fd5b6a52b7d2dcc80cd2e400000081600854610ad9919061320a565b1115610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b11906132d2565b60405180910390fd5b8060086000828254610b2c919061320a565b92505081905550610b3d828261259a565b60016005819055505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6a295be96e6406697200000081565b6000600254905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610beb8484846126fa565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c366123c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90613364565b60405180910390fd5b610cca85610cc26123c7565b8584036123cf565b60019150509392505050565b600a5481565b600080610ced42636b48100061297b565b9050600062015180600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483610d409190613384565b610d4a91906133e7565b678ac7230489e80000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f2876040518263ffffffff1660e01b8152600401610dae9190612f6f565b60206040518083038186803b158015610dc657600080fd5b505afa158015610dda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfe919061342d565b610e08919061345a565b610e12919061345a565b905080600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e5f919061320a565b92505050919050565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb906131bb565b60405180910390fd5b611ce8811015611345576000610f0e42636b48100061297b565b90506000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000808211156110b257620151808284610f6e9190613384565b610f7891906133e7565b678ac7230489e80000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f2896040518263ffffffff1660e01b8152600401610fdc9190612f6f565b60206040518083038186803b158015610ff457600080fd5b505afa158015611008573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102c919061342d565b611036919061345a565b611040919061345a565b600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461108e919061320a565b925050819055506201518082846110a59190613384565b6110af91906134b4565b90505b636b481000821461110d5780836110c99190613384565b600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611341576000600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000808211156112e35762015180828661119f9190613384565b6111a991906133e7565b678ac7230489e80000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f28a6040518263ffffffff1660e01b815260040161120d9190612f6f565b60206040518083038186803b15801561122557600080fd5b505afa158015611239573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125d919061342d565b611267919061345a565b611271919061345a565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112bf919061320a565b925050819055506201518082866112d69190613384565b6112e091906134b4565b90505b636b481000821461133e5780856112fa9190613384565b600d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50505b5050505b505050565b60006012905090565b6a6fb5f32b7201f56240000081565b600061140461136f6123c7565b84846001600061137d6123c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ff919061320a565b6123cf565b6001905092915050565b678ac7230489e8000081565b60085481565b60026005541415611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d9061314f565b60405180910390fd5b6002600581905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906131bb565b60405180910390fd5b6a295be96e6406697200000081600954611514919061320a565b1115611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90613557565b60405180910390fd5b8060096000828254611567919061320a565b92505081905550611578828261259a565b60016005819055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115d46123c7565b73ffffffffffffffffffffffffffffffffffffffff166115f2611663565b73ffffffffffffffffffffffffffffffffffffffff1614611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f90613077565b60405180910390fd5b6116526000612994565b565b6a18d0bf423c03d8de00000081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461169c90612ff9565b80601f01602080910402602001604051908101604052809291908181526020018280546116c890612ff9565b80156117155780601f106116ea57610100808354040283529160200191611715565b820191906000526020600020905b8154815290600101906020018083116116f857829003601f168201915b5050505050905090565b6117276123c7565b73ffffffffffffffffffffffffffffffffffffffff16611745611663565b73ffffffffffffffffffffffffffffffffffffffff161461179b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179290613077565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60026005541415611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c9061314f565b60405180910390fd5b6002600581905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b0906131bb565b60405180910390fd5b6118c38282612a5a565b60016005819055505050565b600080600160006118de6123c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561199b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611992906135e9565b60405180910390fd5b6119af6119a66123c7565b858584036123cf565b600191505092915050565b60006119ce6119c76123c7565b84846126fa565b6001905092915050565b60026005541415611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a159061314f565b60405180910390fd5b6002600581905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa9906131bb565b60405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115611c11576a6fb5f32b7201f56240000081600754611b19919061320a565b1115611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190613655565b60405180910390fd5b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060076000828254611bb1919061320a565b92505081905550611bc2828261259a565b8173ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e048682604051611c089190612c54565b60405180910390a25b50600160058190555050565b600d6020528060005260406000206000915090505481565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb8906131bb565b60405180910390fd5b6000611cd142636b48100061297b565b90506000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600080821115611ead57620151808284611d319190613384565b611d3b91906133e7565b678ac7230489e80000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f2886040518263ffffffff1660e01b8152600401611d9f9190612f6f565b60206040518083038186803b158015611db757600080fd5b505afa158015611dcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611def919061342d565b611df9919061345a565b611e03919061345a565b600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e4d919061320a565b600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620151808284611ea09190613384565b611eaa91906134b4565b90505b83681043561a8829300000611ec2919061345a565b600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f10919061320a565b925050819055508083611f239190613384565b600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050505050565b60026005541415611fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faa9061314f565b60405180910390fd5b6002600581905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203e906131bb565b60405180910390fd5b6a18d0bf423c03d8de00000081600a54612061919061320a565b11156120a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612099906136e7565b60405180910390fd5b80600a60008282546120b4919061320a565b925050819055506120c5828261259a565b60016005819055505050565b681043561a882930000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61216d6123c7565b73ffffffffffffffffffffffffffffffffffffffff1661218b611663565b73ffffffffffffffffffffffffffffffffffffffff16146121e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d890613077565b60405180910390fd5b6121ea81610b88565b612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090613753565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690557fe1d518851a4a8f6d2bdc707d44edf660e2ad1db5a7667376cf7c178eaeec0b48816040516122a79190612f6f565b60405180910390a150565b636b48100081565b6122c26123c7565b73ffffffffffffffffffffffffffffffffffffffff166122e0611663565b73ffffffffffffffffffffffffffffffffffffffff1614612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90613077565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d906137e5565b60405180910390fd5b6123af81612994565b50565b60075481565b6a52b7d2dcc80cd2e400000081565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561243f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243690613877565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a690613909565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161258d9190612c54565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561260a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260190613975565b60405180910390fd5b61261660008383612c31565b8060026000828254612628919061320a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461267d919061320a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516126e29190612c54565b60405180910390a36126f660008383612c36565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561276a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276190613a07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d190613a99565b60405180910390fd5b6127e5838383612c31565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561286b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286290613b2b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128fe919061320a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129629190612c54565b60405180910390a3612975848484612c36565b50505050565b600081831061298a578161298c565b825b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac190613bbd565b60405180910390fd5b612ad682600083612c31565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5390613c4f565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612bb39190613384565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c189190612c54565b60405180910390a3612c2c83600084612c36565b505050565b505050565b505050565b6000819050919050565b612c4e81612c3b565b82525050565b6000602082019050612c696000830184612c45565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ca9578082015181840152602081019050612c8e565b83811115612cb8576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cda82612c6f565b612ce48185612c7a565b9350612cf4818560208601612c8b565b612cfd81612cbe565b840191505092915050565b60006020820190508181036000830152612d228184612ccf565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d5a82612d2f565b9050919050565b612d6a81612d4f565b8114612d7557600080fd5b50565b600081359050612d8781612d61565b92915050565b600060208284031215612da357612da2612d2a565b5b6000612db184828501612d78565b91505092915050565b612dc381612c3b565b8114612dce57600080fd5b50565b600081359050612de081612dba565b92915050565b60008060408385031215612dfd57612dfc612d2a565b5b6000612e0b85828601612d78565b9250506020612e1c85828601612dd1565b9150509250929050565b60008115159050919050565b612e3b81612e26565b82525050565b6000602082019050612e566000830184612e32565b92915050565b6000819050919050565b6000612e81612e7c612e7784612d2f565b612e5c565b612d2f565b9050919050565b6000612e9382612e66565b9050919050565b6000612ea582612e88565b9050919050565b612eb581612e9a565b82525050565b6000602082019050612ed06000830184612eac565b92915050565b600080600060608486031215612eef57612eee612d2a565b5b6000612efd86828701612d78565b9350506020612f0e86828701612d78565b9250506040612f1f86828701612dd1565b9150509250925092565b600060ff82169050919050565b612f3f81612f29565b82525050565b6000602082019050612f5a6000830184612f36565b92915050565b612f6981612d4f565b82525050565b6000602082019050612f846000830184612f60565b92915050565b60008060408385031215612fa157612fa0612d2a565b5b6000612faf85828601612d78565b9250506020612fc085828601612d78565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061301157607f821691505b6020821081141561302557613024612fca565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613061602083612c7a565b915061306c8261302b565b602082019050919050565b6000602082019050818103600083015261309081613054565b9050919050565b7f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000600082015250565b60006130cd601783612c7a565b91506130d882613097565b602082019050919050565b600060208201905081810360008301526130fc816130c0565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613139601f83612c7a565b915061314482613103565b602082019050919050565b600060208201905081810360008301526131688161312c565b9050919050565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b60006131a5600c83612c7a565b91506131b08261316f565b602082019050919050565b600060208201905081810360008301526131d481613198565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061321582612c3b565b915061322083612c3b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613255576132546131db565b5b828201905092915050565b7f4d6178696d756d20636f6d6d756e6974792066756e6420737570706c7920726560008201527f6163686564000000000000000000000000000000000000000000000000000000602082015250565b60006132bc602583612c7a565b91506132c782613260565b604082019050919050565b600060208201905081810360008301526132eb816132af565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061334e602883612c7a565b9150613359826132f2565b604082019050919050565b6000602082019050818103600083015261337d81613341565b9050919050565b600061338f82612c3b565b915061339a83612c3b565b9250828210156133ad576133ac6131db565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133f282612c3b565b91506133fd83612c3b565b92508261340d5761340c6133b8565b5b828204905092915050565b60008151905061342781612dba565b92915050565b60006020828403121561344357613442612d2a565b5b600061345184828501613418565b91505092915050565b600061346582612c3b565b915061347083612c3b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134a9576134a86131db565b5b828202905092915050565b60006134bf82612c3b565b91506134ca83612c3b565b9250826134da576134d96133b8565b5b828206905092915050565b7f4d6178696d756d207075626c69632073616c657320737570706c79207265616360008201527f6865640000000000000000000000000000000000000000000000000000000000602082015250565b6000613541602383612c7a565b915061354c826134e5565b604082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006135d3602583612c7a565b91506135de82613577565b604082019050919050565b60006020820190508181036000830152613602816135c6565b9050919050565b7f4d6178696d756d207969656c6420737570706c79207265616368656400000000600082015250565b600061363f601c83612c7a565b915061364a82613609565b602082019050919050565b6000602082019050818103600083015261366e81613632565b9050919050565b7f4d6178696d756d207465616d207265736572766520737570706c79207265616360008201527f6865640000000000000000000000000000000000000000000000000000000000602082015250565b60006136d1602383612c7a565b91506136dc82613675565b604082019050919050565b60006020820190508181036000830152613700816136c4565b9050919050565b7f4e6f74206120636f756e63696c6c6f7200000000000000000000000000000000600082015250565b600061373d601083612c7a565b915061374882613707565b602082019050919050565b6000602082019050818103600083015261376c81613730565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137cf602683612c7a565b91506137da82613773565b604082019050919050565b600060208201905081810360008301526137fe816137c2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613861602483612c7a565b915061386c82613805565b604082019050919050565b6000602082019050818103600083015261389081613854565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006138f3602283612c7a565b91506138fe82613897565b604082019050919050565b60006020820190508181036000830152613922816138e6565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061395f601f83612c7a565b915061396a82613929565b602082019050919050565b6000602082019050818103600083015261398e81613952565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139f1602583612c7a565b91506139fc82613995565b604082019050919050565b60006020820190508181036000830152613a20816139e4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a83602383612c7a565b9150613a8e82613a27565b604082019050919050565b60006020820190508181036000830152613ab281613a76565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613b15602683612c7a565b9150613b2082613ab9565b604082019050919050565b60006020820190508181036000830152613b4481613b08565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ba7602183612c7a565b9150613bb282613b4b565b604082019050919050565b60006020820190508181036000830152613bd681613b9a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c39602283612c7a565b9150613c4482613bdd565b604082019050919050565b60006020820190508181036000830152613c6881613c2c565b905091905056fea2646970667358221220d4cb9eb9b7f15a384ba9495e5f614973c7d32f607529e3f0cf7b5ac25110718e64736f6c63430008090033000000000000000000000000db05f0d43b15fba15a003b1fe7933441e04f0802

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c806370a082311161013b578063cb03fb1e116100b8578063e07cddea1161007c578063e07cddea14610707578063efe7a50414610723578063f2fde38b14610741578063fd090b661461075d578063fd7a3a151461077b57610248565b8063cb03fb1e14610651578063cc240c0114610681578063d37c9b6f1461069d578063d4582490146106b9578063dd62ed3e146106d757610248565b806397492c46116100ff57806397492c461461059d5780639dc29fac146105b9578063a457c2d7146105d5578063a9059cbb14610605578063c00007b01461063557610248565b806370a0823114610509578063715018a61461053957806372185e20146105435780638da5cb5b1461056157806395d89b411461057f57610248565b806323b872dd116101c95780633177d1d11161018d5780633177d1d114610463578063395093511461048157806341910f90146104b15780634cbc0047146104cf578063656229cc146104ed57610248565b806323b872dd146103ab57806324a4558e146103db578063267e8ab6146103f95780632c8e8dfa14610429578063313ce5671461044557610248565b8063157cc8d811610210578063157cc8d81461030557806315f27dac1461032157806317ffe6701461033f57806318160ddd1461035d578063210415131461037b57610248565b8063044760381461024d57806306fdde031461026b5780630700037d14610289578063095ea7b3146102b95780630d0fbe9b146102e9575b600080fd5b610255610799565b6040516102629190612c54565b60405180910390f35b61027361079f565b6040516102809190612d08565b60405180910390f35b6102a3600480360381019061029e9190612d8d565b610831565b6040516102b09190612c54565b60405180910390f35b6102d360048036038101906102ce9190612de6565b610849565b6040516102e09190612e41565b60405180910390f35b61030360048036038101906102fe9190612d8d565b610867565b005b61031f600480360381019061031a9190612de6565b6109e5565b005b610329610b49565b6040516103369190612ebb565b60405180910390f35b610347610b6f565b6040516103549190612c54565b60405180910390f35b610365610b7e565b6040516103729190612c54565b60405180910390f35b61039560048036038101906103909190612d8d565b610b88565b6040516103a29190612e41565b60405180910390f35b6103c560048036038101906103c09190612ed6565b610bde565b6040516103d29190612e41565b60405180910390f35b6103e3610cd6565b6040516103f09190612c54565b60405180910390f35b610413600480360381019061040e9190612d8d565b610cdc565b6040516104209190612c54565b60405180910390f35b610443600480360381019061043e9190612ed6565b610e68565b005b61044d61134a565b60405161045a9190612f45565b60405180910390f35b61046b611353565b6040516104789190612c54565b60405180910390f35b61049b60048036038101906104969190612de6565b611362565b6040516104a89190612e41565b60405180910390f35b6104b961140e565b6040516104c69190612c54565b60405180910390f35b6104d761141a565b6040516104e49190612c54565b60405180910390f35b61050760048036038101906105029190612de6565b611420565b005b610523600480360381019061051e9190612d8d565b611584565b6040516105309190612c54565b60405180910390f35b6105416115cc565b005b61054b611654565b6040516105589190612c54565b60405180910390f35b610569611663565b6040516105769190612f6f565b60405180910390f35b61058761168d565b6040516105949190612d08565b60405180910390f35b6105b760048036038101906105b29190612d8d565b61171f565b005b6105d360048036038101906105ce9190612de6565b6117df565b005b6105ef60048036038101906105ea9190612de6565b6118cf565b6040516105fc9190612e41565b60405180910390f35b61061f600480360381019061061a9190612de6565b6119ba565b60405161062c9190612e41565b60405180910390f35b61064f600480360381019061064a9190612d8d565b6119d8565b005b61066b60048036038101906106669190612d8d565b611c1d565b6040516106789190612c54565b60405180910390f35b61069b60048036038101906106969190612de6565b611c35565b005b6106b760048036038101906106b29190612de6565b611f6d565b005b6106c16120d1565b6040516106ce9190612c54565b60405180910390f35b6106f160048036038101906106ec9190612f8a565b6120de565b6040516106fe9190612c54565b60405180910390f35b610721600480360381019061071c9190612d8d565b612165565b005b61072b6122b2565b6040516107389190612c54565b60405180910390f35b61075b60048036038101906107569190612d8d565b6122ba565b005b6107656123b2565b6040516107729190612c54565b60405180910390f35b6107836123b8565b6040516107909190612c54565b60405180910390f35b60095481565b6060600380546107ae90612ff9565b80601f01602080910402602001604051908101604052809291908181526020018280546107da90612ff9565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b600c6020528060005260406000206000915090505481565b600061085d6108566123c7565b84846123cf565b6001905092915050565b61086f6123c7565b73ffffffffffffffffffffffffffffffffffffffff1661088d611663565b73ffffffffffffffffffffffffffffffffffffffff16146108e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108da90613077565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a906130e3565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f683022275b534cbe101e7fbecfa9dba48b55d462866355b31b809bca1c356001816040516109da9190612f6f565b60405180910390a150565b60026005541415610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a229061314f565b60405180910390fd5b6002600581905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906131bb565b60405180910390fd5b6a52b7d2dcc80cd2e400000081600854610ad9919061320a565b1115610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b11906132d2565b60405180910390fd5b8060086000828254610b2c919061320a565b92505081905550610b3d828261259a565b60016005819055505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6a295be96e6406697200000081565b6000600254905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610beb8484846126fa565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c366123c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90613364565b60405180910390fd5b610cca85610cc26123c7565b8584036123cf565b60019150509392505050565b600a5481565b600080610ced42636b48100061297b565b9050600062015180600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483610d409190613384565b610d4a91906133e7565b678ac7230489e80000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f2876040518263ffffffff1660e01b8152600401610dae9190612f6f565b60206040518083038186803b158015610dc657600080fd5b505afa158015610dda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfe919061342d565b610e08919061345a565b610e12919061345a565b905080600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e5f919061320a565b92505050919050565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb906131bb565b60405180910390fd5b611ce8811015611345576000610f0e42636b48100061297b565b90506000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000808211156110b257620151808284610f6e9190613384565b610f7891906133e7565b678ac7230489e80000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f2896040518263ffffffff1660e01b8152600401610fdc9190612f6f565b60206040518083038186803b158015610ff457600080fd5b505afa158015611008573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102c919061342d565b611036919061345a565b611040919061345a565b600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461108e919061320a565b925050819055506201518082846110a59190613384565b6110af91906134b4565b90505b636b481000821461110d5780836110c99190613384565b600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611341576000600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000808211156112e35762015180828661119f9190613384565b6111a991906133e7565b678ac7230489e80000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f28a6040518263ffffffff1660e01b815260040161120d9190612f6f565b60206040518083038186803b15801561122557600080fd5b505afa158015611239573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125d919061342d565b611267919061345a565b611271919061345a565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112bf919061320a565b925050819055506201518082866112d69190613384565b6112e091906134b4565b90505b636b481000821461133e5780856112fa9190613384565b600d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50505b5050505b505050565b60006012905090565b6a6fb5f32b7201f56240000081565b600061140461136f6123c7565b84846001600061137d6123c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ff919061320a565b6123cf565b6001905092915050565b678ac7230489e8000081565b60085481565b60026005541415611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d9061314f565b60405180910390fd5b6002600581905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906131bb565b60405180910390fd5b6a295be96e6406697200000081600954611514919061320a565b1115611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90613557565b60405180910390fd5b8060096000828254611567919061320a565b92505081905550611578828261259a565b60016005819055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115d46123c7565b73ffffffffffffffffffffffffffffffffffffffff166115f2611663565b73ffffffffffffffffffffffffffffffffffffffff1614611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f90613077565b60405180910390fd5b6116526000612994565b565b6a18d0bf423c03d8de00000081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461169c90612ff9565b80601f01602080910402602001604051908101604052809291908181526020018280546116c890612ff9565b80156117155780601f106116ea57610100808354040283529160200191611715565b820191906000526020600020905b8154815290600101906020018083116116f857829003601f168201915b5050505050905090565b6117276123c7565b73ffffffffffffffffffffffffffffffffffffffff16611745611663565b73ffffffffffffffffffffffffffffffffffffffff161461179b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179290613077565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60026005541415611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c9061314f565b60405180910390fd5b6002600581905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b0906131bb565b60405180910390fd5b6118c38282612a5a565b60016005819055505050565b600080600160006118de6123c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561199b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611992906135e9565b60405180910390fd5b6119af6119a66123c7565b858584036123cf565b600191505092915050565b60006119ce6119c76123c7565b84846126fa565b6001905092915050565b60026005541415611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a159061314f565b60405180910390fd5b6002600581905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa9906131bb565b60405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115611c11576a6fb5f32b7201f56240000081600754611b19919061320a565b1115611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190613655565b60405180910390fd5b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060076000828254611bb1919061320a565b92505081905550611bc2828261259a565b8173ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e048682604051611c089190612c54565b60405180910390a25b50600160058190555050565b600d6020528060005260406000206000915090505481565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb8906131bb565b60405180910390fd5b6000611cd142636b48100061297b565b90506000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600080821115611ead57620151808284611d319190613384565b611d3b91906133e7565b678ac7230489e80000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f2886040518263ffffffff1660e01b8152600401611d9f9190612f6f565b60206040518083038186803b158015611db757600080fd5b505afa158015611dcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611def919061342d565b611df9919061345a565b611e03919061345a565b600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e4d919061320a565b600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620151808284611ea09190613384565b611eaa91906134b4565b90505b83681043561a8829300000611ec2919061345a565b600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f10919061320a565b925050819055508083611f239190613384565b600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050505050565b60026005541415611fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faa9061314f565b60405180910390fd5b6002600581905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203e906131bb565b60405180910390fd5b6a18d0bf423c03d8de00000081600a54612061919061320a565b11156120a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612099906136e7565b60405180910390fd5b80600a60008282546120b4919061320a565b925050819055506120c5828261259a565b60016005819055505050565b681043561a882930000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61216d6123c7565b73ffffffffffffffffffffffffffffffffffffffff1661218b611663565b73ffffffffffffffffffffffffffffffffffffffff16146121e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d890613077565b60405180910390fd5b6121ea81610b88565b612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090613753565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690557fe1d518851a4a8f6d2bdc707d44edf660e2ad1db5a7667376cf7c178eaeec0b48816040516122a79190612f6f565b60405180910390a150565b636b48100081565b6122c26123c7565b73ffffffffffffffffffffffffffffffffffffffff166122e0611663565b73ffffffffffffffffffffffffffffffffffffffff1614612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90613077565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d906137e5565b60405180910390fd5b6123af81612994565b50565b60075481565b6a52b7d2dcc80cd2e400000081565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561243f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243690613877565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a690613909565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161258d9190612c54565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561260a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260190613975565b60405180910390fd5b61261660008383612c31565b8060026000828254612628919061320a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461267d919061320a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516126e29190612c54565b60405180910390a36126f660008383612c36565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561276a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276190613a07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d190613a99565b60405180910390fd5b6127e5838383612c31565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561286b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286290613b2b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128fe919061320a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129629190612c54565b60405180910390a3612975848484612c36565b50505050565b600081831061298a578161298c565b825b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac190613bbd565b60405180910390fd5b612ad682600083612c31565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5390613c4f565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612bb39190613384565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c189190612c54565b60405180910390a3612c2c83600084612c36565b505050565b505050565b505050565b6000819050919050565b612c4e81612c3b565b82525050565b6000602082019050612c696000830184612c45565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ca9578082015181840152602081019050612c8e565b83811115612cb8576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cda82612c6f565b612ce48185612c7a565b9350612cf4818560208601612c8b565b612cfd81612cbe565b840191505092915050565b60006020820190508181036000830152612d228184612ccf565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d5a82612d2f565b9050919050565b612d6a81612d4f565b8114612d7557600080fd5b50565b600081359050612d8781612d61565b92915050565b600060208284031215612da357612da2612d2a565b5b6000612db184828501612d78565b91505092915050565b612dc381612c3b565b8114612dce57600080fd5b50565b600081359050612de081612dba565b92915050565b60008060408385031215612dfd57612dfc612d2a565b5b6000612e0b85828601612d78565b9250506020612e1c85828601612dd1565b9150509250929050565b60008115159050919050565b612e3b81612e26565b82525050565b6000602082019050612e566000830184612e32565b92915050565b6000819050919050565b6000612e81612e7c612e7784612d2f565b612e5c565b612d2f565b9050919050565b6000612e9382612e66565b9050919050565b6000612ea582612e88565b9050919050565b612eb581612e9a565b82525050565b6000602082019050612ed06000830184612eac565b92915050565b600080600060608486031215612eef57612eee612d2a565b5b6000612efd86828701612d78565b9350506020612f0e86828701612d78565b9250506040612f1f86828701612dd1565b9150509250925092565b600060ff82169050919050565b612f3f81612f29565b82525050565b6000602082019050612f5a6000830184612f36565b92915050565b612f6981612d4f565b82525050565b6000602082019050612f846000830184612f60565b92915050565b60008060408385031215612fa157612fa0612d2a565b5b6000612faf85828601612d78565b9250506020612fc085828601612d78565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061301157607f821691505b6020821081141561302557613024612fca565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613061602083612c7a565b915061306c8261302b565b602082019050919050565b6000602082019050818103600083015261309081613054565b9050919050565b7f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000600082015250565b60006130cd601783612c7a565b91506130d882613097565b602082019050919050565b600060208201905081810360008301526130fc816130c0565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613139601f83612c7a565b915061314482613103565b602082019050919050565b600060208201905081810360008301526131688161312c565b9050919050565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b60006131a5600c83612c7a565b91506131b08261316f565b602082019050919050565b600060208201905081810360008301526131d481613198565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061321582612c3b565b915061322083612c3b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613255576132546131db565b5b828201905092915050565b7f4d6178696d756d20636f6d6d756e6974792066756e6420737570706c7920726560008201527f6163686564000000000000000000000000000000000000000000000000000000602082015250565b60006132bc602583612c7a565b91506132c782613260565b604082019050919050565b600060208201905081810360008301526132eb816132af565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061334e602883612c7a565b9150613359826132f2565b604082019050919050565b6000602082019050818103600083015261337d81613341565b9050919050565b600061338f82612c3b565b915061339a83612c3b565b9250828210156133ad576133ac6131db565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133f282612c3b565b91506133fd83612c3b565b92508261340d5761340c6133b8565b5b828204905092915050565b60008151905061342781612dba565b92915050565b60006020828403121561344357613442612d2a565b5b600061345184828501613418565b91505092915050565b600061346582612c3b565b915061347083612c3b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134a9576134a86131db565b5b828202905092915050565b60006134bf82612c3b565b91506134ca83612c3b565b9250826134da576134d96133b8565b5b828206905092915050565b7f4d6178696d756d207075626c69632073616c657320737570706c79207265616360008201527f6865640000000000000000000000000000000000000000000000000000000000602082015250565b6000613541602383612c7a565b915061354c826134e5565b604082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006135d3602583612c7a565b91506135de82613577565b604082019050919050565b60006020820190508181036000830152613602816135c6565b9050919050565b7f4d6178696d756d207969656c6420737570706c79207265616368656400000000600082015250565b600061363f601c83612c7a565b915061364a82613609565b602082019050919050565b6000602082019050818103600083015261366e81613632565b9050919050565b7f4d6178696d756d207465616d207265736572766520737570706c79207265616360008201527f6865640000000000000000000000000000000000000000000000000000000000602082015250565b60006136d1602383612c7a565b91506136dc82613675565b604082019050919050565b60006020820190508181036000830152613700816136c4565b9050919050565b7f4e6f74206120636f756e63696c6c6f7200000000000000000000000000000000600082015250565b600061373d601083612c7a565b915061374882613707565b602082019050919050565b6000602082019050818103600083015261376c81613730565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137cf602683612c7a565b91506137da82613773565b604082019050919050565b600060208201905081810360008301526137fe816137c2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613861602483612c7a565b915061386c82613805565b604082019050919050565b6000602082019050818103600083015261389081613854565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006138f3602283612c7a565b91506138fe82613897565b604082019050919050565b60006020820190508181036000830152613922816138e6565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061395f601f83612c7a565b915061396a82613929565b602082019050919050565b6000602082019050818103600083015261398e81613952565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139f1602583612c7a565b91506139fc82613995565b604082019050919050565b60006020820190508181036000830152613a20816139e4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a83602383612c7a565b9150613a8e82613a27565b604082019050919050565b60006020820190508181036000830152613ab281613a76565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613b15602683612c7a565b9150613b2082613ab9565b604082019050919050565b60006020820190508181036000830152613b4481613b08565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ba7602183612c7a565b9150613bb282613b4b565b604082019050919050565b60006020820190508181036000830152613bd681613b9a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c39602283612c7a565b9150613c4482613bdd565b604082019050919050565b60006020820190508181036000830152613c6881613c2c565b905091905056fea2646970667358221220d4cb9eb9b7f15a384ba9495e5f614973c7d32f607529e3f0cf7b5ac25110718e64736f6c63430008090033

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

000000000000000000000000db05f0d43b15fba15a003b1fe7933441e04f0802

-----Decoded View---------------
Arg [0] : _nouns3d (address): 0xdB05F0d43B15fba15A003B1fE7933441e04F0802

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000db05f0d43b15fba15a003b1fe7933441e04f0802


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.