ETH Price: $2,498.63 (+12.33%)
 

Overview

Max Total Supply

72,880.551041666666667369 DINO

Holders

110

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
346.138657407407407407 DINO

Value
$0.00
0xbe7064eBD3b0c54d0C219CEBAB071b384b8d2976
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:
Dino

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-21
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// 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: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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


// 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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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: contracts/WastelandStaking.sol

//SPDX-License-Identifier: Unlicense

pragma solidity ^0.8.0;






contract Dino is ERC20, Ownable, Pausable, ReentrancyGuard {
    IERC721 public AngryDinos;

    uint256 constant public MAX_SUPPLY = type(uint256).max;
    uint256 constant public MAX_PER_TX = 25;
    uint256 constant public BASE_RATE = 10 ether;

    uint256 public totalStaked;
    uint256 public totalClaimed;
    mapping(address => uint256) public stash;
    mapping(address => uint256) public lastUpdate;
    mapping(uint256 => address) public tokenOwners;
    mapping(address => mapping(uint256 => uint256)) public ownedTokens;
    mapping(address => uint256) public stakedTokens;
    mapping(address => uint256) public specialStakedTokens;
    mapping (uint256 => bool) public specialTokens;
    mapping(uint256 => uint256) public tokenIndex;
    mapping(address => bool) public allowed;

    constructor(address angryDinos)
        ERC20("DINO", "DINO")
    {
        AngryDinos = IERC721(angryDinos);
        AngryDinos.setApprovalForAll(msg.sender, true);
    }

    modifier onlyAllowed() {
        require(allowed[msg.sender], "Caller not allowed");
        _;
    }

    modifier isApprovedForAll() {
        require(
            AngryDinos.isApprovedForAll(msg.sender, address(this)),
            "Contract not approved"
        );
        _;
    }

    function setSpecialTokens(uint256[] calldata tokenIds, bool state) public onlyOwner {
        require(tokenIds.length > 0, "No tokens selected");

        for(uint256 i = 0; i < tokenIds.length; i++) {
            specialTokens[tokenIds[i]] = state;
        }
    }

    /// @notice Get AngryDinos token ID by account and index
    /// @param account The address of the token owner
    /// @param index Index of the owned token
    /// @return The token ID of the owned token at that index
    function getOwnedByIndex(address account, uint256 index) public view returns (uint256) {
        require(index < stakedTokens[account], "Nonexistent token");

        return ownedTokens[account][index];
    }

    /// @notice Get amount of claimable DINO tokens
    /// @param account The address to return claimable token amount for
    /// @return The amount of claimable tokens
    function getClaimable(address account) public view returns (uint256) {
        return stash[account] + _getPending(account);
    }

    function _getPending(address account) internal view returns (uint256) {
        return (stakedTokens[account] + specialStakedTokens[account])
        * BASE_RATE
        * (block.timestamp - lastUpdate[account])
        / 1 days;
    }

    function _update(address account) internal {
        stash[account] += _getPending(account);
        lastUpdate[account] = block.timestamp;
    }

    /// @notice Claim available DINO tokens
    /// @param account The address to claim tokens for
    function claim(address account) public nonReentrant {
        _claim(account);
    }

    function _claim(address account) internal whenNotPaused {
        require(msg.sender == account || allowed[msg.sender], "Caller not allowed");
        require(totalClaimed < MAX_SUPPLY,                    "Max supply has been claimed");

        uint256 claimable = getClaimable(account);
        uint256 claimAmount = totalClaimed + claimable > MAX_SUPPLY
            ? MAX_SUPPLY - totalClaimed
            : claimable;

        _mint(account, claimAmount);
        stash[account] = 0;
        lastUpdate[account] = block.timestamp;
        totalClaimed += claimAmount;
    }

    /// @notice Remove AngryDinos tokens from staking contract and optionally collect DINO tokens
    /// @param account The address to change permissions for
    /// @param isAllowed Whether the address is allowed to use privileged functionality
    function setAllowed(address account, bool isAllowed) external onlyOwner {
        allowed[account] = isAllowed;
    }

    /// @notice Stake AngryDinos tokens
    /// @param tokenIds The tokens IDs to stake
    function stake(uint256[] calldata tokenIds) external isApprovedForAll whenNotPaused {
        require(tokenIds.length <= MAX_PER_TX, "Exceeds max tokens per transaction");

        _update(msg.sender);

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(AngryDinos.ownerOf(tokenIds[i]) == msg.sender, "Caller is not token owner");

            uint256 current = tokenIds[i];

            if(specialTokens[current]) {
                specialStakedTokens[msg.sender] += 1;
            }

            tokenOwners[current] = msg.sender;
            tokenIndex[current] = stakedTokens[msg.sender];
            ownedTokens[msg.sender][tokenIndex[current]] = current;
            stakedTokens[msg.sender] += 1;

            AngryDinos.transferFrom(msg.sender, address(this), tokenIds[i]);
        }

        totalStaked += tokenIds.length;
    }

    /// @notice Remove AngryDinos tokens and optionally collect DINO tokens
    /// @param tokenIds The tokens IDs to unstake
    /// @param claimTokens Whether DINO tokens should be claimed
    function unstake(uint256[] calldata tokenIds, bool claimTokens) external nonReentrant {
        require(tokenIds.length <= MAX_PER_TX, "Exceeds max tokens per transaction");

        if (claimTokens) _claim(msg.sender);
        else _update(msg.sender);

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(tokenOwners[tokenIds[i]] == msg.sender, "Caller is not token owner");

            uint256 last = ownedTokens[msg.sender][stakedTokens[msg.sender] - 1];

            if(specialTokens[tokenIds[i]]) {
                specialStakedTokens[msg.sender] -= 1;
            }

            tokenOwners[tokenIds[i]] = address(0);
            tokenIndex[last] = tokenIndex[tokenIds[i]];
            ownedTokens[msg.sender][tokenIndex[tokenIds[i]]] = last;
            stakedTokens[msg.sender] -= 1;

            AngryDinos.transferFrom(address(this), msg.sender, tokenIds[i]);
        }

        totalStaked -= tokenIds.length;
    }

    /// @notice Burn a specified amount of DINO tokens
    /// @dev Used only by contracts for extending token utility
    /// @param from The account to burn tokens from
    /// @param amount The amount of tokens to burn
    function burn(address from, uint256 amount) external onlyAllowed {
        _burn(from, amount);
    }

    /// @notice Mint a specified amount of DINO tokens
    /// @dev Used only by owner for creating treasury
    /// @param to The account to mint tokens to
    /// @param amount The amount of tokens to mint
    function mint(address to, uint256 amount) external onlyOwner {
        _mint(to, amount);
        totalClaimed += amount;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"angryDinos","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"AngryDinos","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"account","type":"address"}],"name":"claim","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":"account","type":"address"}],"name":"getClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getOwnedByIndex","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":"","type":"address"}],"name":"lastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"ownedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isAllowed","type":"bool"}],"name":"setAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setSpecialTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"specialStakedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"specialTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenOwners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bool","name":"claimTokens","type":"bool"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200440a3803806200440a83398181016040528101906200003791906200038b565b6040518060400160405280600481526020017f44494e4f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f44494e4f000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb929190620002c4565b508060049080519060200190620000d4929190620002c4565b505050620000f7620000eb620001f660201b60201c565b620001fe60201b60201c565b6000600560146101000a81548160ff021916908315150217905550600160068190555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a22cb4653360016040518363ffffffff1660e01b8152600401620001bb929190620003d9565b600060405180830381600087803b158015620001d657600080fd5b505af1158015620001eb573d6000803e3d6000fd5b5050505050620004c5565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d29062000446565b90600052602060002090601f016020900481019282620002f6576000855562000342565b82601f106200031157805160ff191683800117855562000342565b8280016001018555821562000342579182015b828111156200034157825182559160200191906001019062000324565b5b50905062000351919062000355565b5090565b5b808211156200037057600081600090555060010162000356565b5090565b6000815190506200038581620004ab565b92915050565b6000602082840312156200039e57600080fd5b6000620003ae8482850162000374565b91505092915050565b620003c28162000406565b82525050565b620003d3816200041a565b82525050565b6000604082019050620003f06000830185620003b7565b620003ff6020830184620003c8565b9392505050565b6000620004138262000426565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200045f57607f821691505b602082108114156200047657620004756200047c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620004b68162000406565b8114620004c257600080fd5b50565b613f3580620004d56000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c8063715018a61161013b578063a9059cbb116100b8578063e149f0361161007c578063e149f0361461072a578063e80fadcd1461075a578063f2fde38b1461078a578063f43a22dc146107a6578063f8a14f46146107c45761023d565b8063a9059cbb1461064c578063cb03fb1e1461067c578063d54ad2a1146106ac578063d63a8e11146106ca578063dd62ed3e146106fa5761023d565b80639dc29fac116100ff5780639dc29fac146105705780639e97f7d01461058c578063a457c2d7146105bc578063a583024b146105ec578063a5b39cfb1461061c5761023d565b8063715018a6146104ee578063817b1cd2146104f85780638da5cb5b1461051657806395d89b41146105345780639b37ef66146105525761023d565b8063313ce567116101c957806341910f901161018d57806341910f901461044a5780634697f05d146104685780635c975abb14610484578063609866e4146104a257806370a08231146104be5761023d565b8063313ce567146103a65780633228337a146103c457806332cb6b0c146103e057806339509351146103fe57806340c10f191461042e5761023d565b806318160ddd1161021057806318160ddd146102dc5780631d0504a8146102fa5780631e83409a1461032a57806323b872dd146103465780632da74ccc146103765761023d565b80630583e9f81461024257806306fdde0314610272578063095ea7b3146102905780630fbf0a93146102c0575b600080fd5b61025c6004803603810190610257919061308c565b6107f4565b6040516102699190613b8e565b60405180910390f35b61027a61080c565b60405161028791906138cc565b60405180910390f35b6102aa60048036038101906102a59190612f8a565b61089e565b6040516102b79190613896565b60405180910390f35b6102da60048036038101906102d59190612fc6565b6108bc565b005b6102e4610ed4565b6040516102f19190613b8e565b60405180910390f35b610314600480360381019061030f9190612e71565b610ede565b6040516103219190613b8e565b60405180910390f35b610344600480360381019061033f9190612e71565b610ef6565b005b610360600480360381019061035b9190612eff565b610f58565b60405161036d9190613896565b60405180910390f35b610390600480360381019061038b9190612f8a565b611050565b60405161039d9190613b8e565b60405180910390f35b6103ae61112c565b6040516103bb9190613ba9565b60405180910390f35b6103de60048036038101906103d9919061300b565b611135565b005b6103e861173b565b6040516103f59190613b8e565b60405180910390f35b61041860048036038101906104139190612f8a565b61175f565b6040516104259190613896565b60405180910390f35b61044860048036038101906104439190612f8a565b61180b565b005b6104526118ae565b60405161045f9190613b8e565b60405180910390f35b610482600480360381019061047d9190612f4e565b6118ba565b005b61048c611991565b6040516104999190613896565b60405180910390f35b6104bc60048036038101906104b7919061300b565b6119a8565b005b6104d860048036038101906104d39190612e71565b611afb565b6040516104e59190613b8e565b60405180910390f35b6104f6611b43565b005b610500611bcb565b60405161050d9190613b8e565b60405180910390f35b61051e611bd1565b60405161052b919061381b565b60405180910390f35b61053c611bfb565b60405161054991906138cc565b60405180910390f35b61055a611c8d565b60405161056791906138b1565b60405180910390f35b61058a60048036038101906105859190612f8a565b611cb3565b005b6105a660048036038101906105a1919061308c565b611d4d565b6040516105b39190613896565b60405180910390f35b6105d660048036038101906105d19190612f8a565b611d6d565b6040516105e39190613896565b60405180910390f35b61060660048036038101906106019190612e71565b611e58565b6040516106139190613b8e565b60405180910390f35b61063660048036038101906106319190612e71565b611eb4565b6040516106439190613b8e565b60405180910390f35b61066660048036038101906106619190612f8a565b611ecc565b6040516106739190613896565b60405180910390f35b61069660048036038101906106919190612e71565b611eea565b6040516106a39190613b8e565b60405180910390f35b6106b4611f02565b6040516106c19190613b8e565b60405180910390f35b6106e460048036038101906106df9190612e71565b611f08565b6040516106f19190613896565b60405180910390f35b610714600480360381019061070f9190612ec3565b611f28565b6040516107219190613b8e565b60405180910390f35b610744600480360381019061073f9190612f8a565b611faf565b6040516107519190613b8e565b60405180910390f35b610774600480360381019061076f9190612e71565b611fd4565b6040516107819190613b8e565b60405180910390f35b6107a4600480360381019061079f9190612e71565b611fec565b005b6107ae6120e4565b6040516107bb9190613b8e565b60405180910390f35b6107de60048036038101906107d9919061308c565b6120e9565b6040516107eb919061381b565b60405180910390f35b60116020528060005260406000206000915090505481565b60606003805461081b90613da1565b80601f016020809104026020016040519081016040528092919081815260200182805461084790613da1565b80156108945780601f1061086957610100808354040283529160200191610894565b820191906000526020600020905b81548152906001019060200180831161087757829003601f168201915b5050505050905090565b60006108b26108ab61211c565b8484612124565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e985e9c533306040518363ffffffff1660e01b8152600401610919929190613836565b60206040518083038186803b15801561093157600080fd5b505afa158015610945573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109699190613063565b6109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f906139ce565b60405180910390fd5b6109b0611991565b156109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e790613a2e565b60405180910390fd5b6019828290501115610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e906139ee565b60405180910390fd5b610a40336122ef565b60005b82829050811015610eb3573373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e858585818110610adc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518263ffffffff1660e01b8152600401610aff9190613b8e565b60206040518083038186803b158015610b1757600080fd5b505afa158015610b2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4f9190612e9a565b73ffffffffffffffffffffffffffffffffffffffff1614610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c90613aae565b60405180910390fd5b6000838383818110610be0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013590506010600082815260200190815260200160002060009054906101000a900460ff1615610c67576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c5f9190613be0565b925050819055505b33600c600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601160008381526020019081526020016000208190555080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060116000858152602001908152602001600020548152602001908152602001600020819055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dc89190613be0565b92505081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330878787818110610e48577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518463ffffffff1660e01b8152600401610e6d9392919061385f565b600060405180830381600087803b158015610e8757600080fd5b505af1158015610e9b573d6000803e3d6000fd5b50505050508080610eab90613dd3565b915050610a43565b508181905060086000828254610ec99190613be0565b925050819055505050565b6000600254905090565b600a6020528060005260406000206000915090505481565b60026006541415610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390613b2e565b60405180910390fd5b6002600681905550610f4d81612394565b600160068190555050565b6000610f6584848461262d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fb061211c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790613a6e565b60405180910390fd5b6110448561103c61211c565b858403612124565b60019150509392505050565b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482106110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90613a4e565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006012905090565b6002600654141561117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290613b2e565b60405180910390fd5b600260068190555060198383905011156111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c1906139ee565b60405180910390fd5b80156111de576111d933612394565b6111e8565b6111e7336122ef565b5b60005b83839050811015611711573373ffffffffffffffffffffffffffffffffffffffff16600c600086868581811061124a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90613aae565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113659190613cc1565b8152602001908152602001600020549050601060008686858181106113b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002060009054906101000a900460ff1615611433576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461142b9190613cc1565b925050819055505b6000600c6000878786818110611472577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060116000868685818110611502577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002054601160008381526020019081526020016000208190555080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000601160008989888181106115ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358152602001908152602001600020548152602001908152602001600020819055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116269190613cc1565b92505081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd30338888878181106116a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518463ffffffff1660e01b81526004016116cb9392919061385f565b600060405180830381600087803b1580156116e557600080fd5b505af11580156116f9573d6000803e3d6000fd5b5050505050808061170990613dd3565b9150506111eb565b5082829050600860008282546117279190613cc1565b925050819055506001600681905550505050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b600061180161176c61211c565b84846001600061177a61211c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117fc9190613be0565b612124565b6001905092915050565b61181361211c565b73ffffffffffffffffffffffffffffffffffffffff16611831611bd1565b73ffffffffffffffffffffffffffffffffffffffff1614611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e90613a8e565b60405180910390fd5b61189182826128ae565b80600960008282546118a39190613be0565b925050819055505050565b678ac7230489e8000081565b6118c261211c565b73ffffffffffffffffffffffffffffffffffffffff166118e0611bd1565b73ffffffffffffffffffffffffffffffffffffffff1614611936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192d90613a8e565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560149054906101000a900460ff16905090565b6119b061211c565b73ffffffffffffffffffffffffffffffffffffffff166119ce611bd1565b73ffffffffffffffffffffffffffffffffffffffff1614611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90613a8e565b60405180910390fd5b60008383905011611a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a619061390e565b60405180910390fd5b60005b83839050811015611af5578160106000868685818110611ab6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611aed90613dd3565b915050611a6d565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b4b61211c565b73ffffffffffffffffffffffffffffffffffffffff16611b69611bd1565b73ffffffffffffffffffffffffffffffffffffffff1614611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb690613a8e565b60405180910390fd5b611bc96000612a0e565b565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611c0a90613da1565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3690613da1565b8015611c835780601f10611c5857610100808354040283529160200191611c83565b820191906000526020600020905b815481529060010190602001808311611c6657829003601f168201915b5050505050905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d369061392e565b60405180910390fd5b611d498282612ad4565b5050565b60106020528060005260406000206000915054906101000a900460ff1681565b60008060016000611d7c61211c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3090613b4e565b60405180910390fd5b611e4d611e4461211c565b85858403612124565b600191505092915050565b6000611e6382612cab565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ead9190613be0565b9050919050565b600e6020528060005260406000206000915090505481565b6000611ee0611ed961211c565b848461262d565b6001905092915050565b600b6020528060005260406000206000915090505481565b60095481565b60126020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d602052816000526040600020602052806000526040600020600091509150505481565b600f6020528060005260406000206000915090505481565b611ff461211c565b73ffffffffffffffffffffffffffffffffffffffff16612012611bd1565b73ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90613a8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf9061396e565b60405180910390fd5b6120e181612a0e565b50565b601981565b600c6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b90613b0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb9061398e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122e29190613b8e565b60405180910390a3505050565b6122f881612cab565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123469190613be0565b9250508190555042600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b61239c611991565b156123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d390613a2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061245f5750601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61249e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124959061392e565b60405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60095410612502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f990613a0e565b60405180910390fd5b600061250d82611e58565b905060007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826009546125409190613be0565b1161254b578161257a565b6009547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6125799190613cc1565b5b905061258683826128ae565b6000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600960008282546126219190613be0565b92505081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561269d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269490613aee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561270d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612704906138ee565b60405180910390fd5b612718838383612db4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561279e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612795906139ae565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128319190613be0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128959190613b8e565b60405180910390a36128a8848484612db9565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561291e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291590613b6e565b60405180910390fd5b61292a60008383612db4565b806002600082825461293c9190613be0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129919190613be0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516129f69190613b8e565b60405180910390a3612a0a60008383612db9565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3b90613ace565b60405180910390fd5b612b5082600083612db4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcd9061394e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612c2d9190613cc1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c929190613b8e565b60405180910390a3612ca683600084612db9565b505050565b600062015180600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442612cfc9190613cc1565b678ac7230489e80000600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d8f9190613be0565b612d999190613c67565b612da39190613c67565b612dad9190613c36565b9050919050565b505050565b505050565b600081359050612dcd81613eba565b92915050565b600081519050612de281613eba565b92915050565b60008083601f840112612dfa57600080fd5b8235905067ffffffffffffffff811115612e1357600080fd5b602083019150836020820283011115612e2b57600080fd5b9250929050565b600081359050612e4181613ed1565b92915050565b600081519050612e5681613ed1565b92915050565b600081359050612e6b81613ee8565b92915050565b600060208284031215612e8357600080fd5b6000612e9184828501612dbe565b91505092915050565b600060208284031215612eac57600080fd5b6000612eba84828501612dd3565b91505092915050565b60008060408385031215612ed657600080fd5b6000612ee485828601612dbe565b9250506020612ef585828601612dbe565b9150509250929050565b600080600060608486031215612f1457600080fd5b6000612f2286828701612dbe565b9350506020612f3386828701612dbe565b9250506040612f4486828701612e5c565b9150509250925092565b60008060408385031215612f6157600080fd5b6000612f6f85828601612dbe565b9250506020612f8085828601612e32565b9150509250929050565b60008060408385031215612f9d57600080fd5b6000612fab85828601612dbe565b9250506020612fbc85828601612e5c565b9150509250929050565b60008060208385031215612fd957600080fd5b600083013567ffffffffffffffff811115612ff357600080fd5b612fff85828601612de8565b92509250509250929050565b60008060006040848603121561302057600080fd5b600084013567ffffffffffffffff81111561303a57600080fd5b61304686828701612de8565b9350935050602061305986828701612e32565b9150509250925092565b60006020828403121561307557600080fd5b600061308384828501612e47565b91505092915050565b60006020828403121561309e57600080fd5b60006130ac84828501612e5c565b91505092915050565b6130be81613cf5565b82525050565b6130cd81613d07565b82525050565b6130dc81613d4a565b82525050565b60006130ed82613bc4565b6130f78185613bcf565b9350613107818560208601613d6e565b61311081613ea9565b840191505092915050565b6000613128602383613bcf565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061318e601283613bcf565b91507f4e6f20746f6b656e732073656c656374656400000000000000000000000000006000830152602082019050919050565b60006131ce601283613bcf565b91507f43616c6c6572206e6f7420616c6c6f77656400000000000000000000000000006000830152602082019050919050565b600061320e602283613bcf565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613274602683613bcf565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132da602283613bcf565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613340602683613bcf565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133a6601583613bcf565b91507f436f6e7472616374206e6f7420617070726f76656400000000000000000000006000830152602082019050919050565b60006133e6602283613bcf565b91507f45786365656473206d617820746f6b656e7320706572207472616e736163746960008301527f6f6e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061344c601b83613bcf565b91507f4d617820737570706c7920686173206265656e20636c61696d656400000000006000830152602082019050919050565b600061348c601083613bcf565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006134cc601183613bcf565b91507f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006000830152602082019050919050565b600061350c602883613bcf565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613572602083613bcf565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006135b2601983613bcf565b91507f43616c6c6572206973206e6f7420746f6b656e206f776e6572000000000000006000830152602082019050919050565b60006135f2602183613bcf565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613658602583613bcf565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136be602483613bcf565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613724601f83613bcf565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000613764602583613bcf565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137ca601f83613bcf565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61380681613d33565b82525050565b61381581613d3d565b82525050565b600060208201905061383060008301846130b5565b92915050565b600060408201905061384b60008301856130b5565b61385860208301846130b5565b9392505050565b600060608201905061387460008301866130b5565b61388160208301856130b5565b61388e60408301846137fd565b949350505050565b60006020820190506138ab60008301846130c4565b92915050565b60006020820190506138c660008301846130d3565b92915050565b600060208201905081810360008301526138e681846130e2565b905092915050565b600060208201905081810360008301526139078161311b565b9050919050565b6000602082019050818103600083015261392781613181565b9050919050565b60006020820190508181036000830152613947816131c1565b9050919050565b6000602082019050818103600083015261396781613201565b9050919050565b6000602082019050818103600083015261398781613267565b9050919050565b600060208201905081810360008301526139a7816132cd565b9050919050565b600060208201905081810360008301526139c781613333565b9050919050565b600060208201905081810360008301526139e781613399565b9050919050565b60006020820190508181036000830152613a07816133d9565b9050919050565b60006020820190508181036000830152613a278161343f565b9050919050565b60006020820190508181036000830152613a478161347f565b9050919050565b60006020820190508181036000830152613a67816134bf565b9050919050565b60006020820190508181036000830152613a87816134ff565b9050919050565b60006020820190508181036000830152613aa781613565565b9050919050565b60006020820190508181036000830152613ac7816135a5565b9050919050565b60006020820190508181036000830152613ae7816135e5565b9050919050565b60006020820190508181036000830152613b078161364b565b9050919050565b60006020820190508181036000830152613b27816136b1565b9050919050565b60006020820190508181036000830152613b4781613717565b9050919050565b60006020820190508181036000830152613b6781613757565b9050919050565b60006020820190508181036000830152613b87816137bd565b9050919050565b6000602082019050613ba360008301846137fd565b92915050565b6000602082019050613bbe600083018461380c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000613beb82613d33565b9150613bf683613d33565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c2b57613c2a613e1c565b5b828201905092915050565b6000613c4182613d33565b9150613c4c83613d33565b925082613c5c57613c5b613e4b565b5b828204905092915050565b6000613c7282613d33565b9150613c7d83613d33565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cb657613cb5613e1c565b5b828202905092915050565b6000613ccc82613d33565b9150613cd783613d33565b925082821015613cea57613ce9613e1c565b5b828203905092915050565b6000613d0082613d13565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613d5582613d5c565b9050919050565b6000613d6782613d13565b9050919050565b60005b83811015613d8c578082015181840152602081019050613d71565b83811115613d9b576000848401525b50505050565b60006002820490506001821680613db957607f821691505b60208210811415613dcd57613dcc613e7a565b5b50919050565b6000613dde82613d33565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e1157613e10613e1c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b613ec381613cf5565b8114613ece57600080fd5b50565b613eda81613d07565b8114613ee557600080fd5b50565b613ef181613d33565b8114613efc57600080fd5b5056fea2646970667358221220d24b31985c7643b394938b5d093037e33d3791e860f914fb57b2d899db3bcec164736f6c634300080000330000000000000000000000004f2ba7296391ab85ce4f4fc9f64608db6a267101

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061023d5760003560e01c8063715018a61161013b578063a9059cbb116100b8578063e149f0361161007c578063e149f0361461072a578063e80fadcd1461075a578063f2fde38b1461078a578063f43a22dc146107a6578063f8a14f46146107c45761023d565b8063a9059cbb1461064c578063cb03fb1e1461067c578063d54ad2a1146106ac578063d63a8e11146106ca578063dd62ed3e146106fa5761023d565b80639dc29fac116100ff5780639dc29fac146105705780639e97f7d01461058c578063a457c2d7146105bc578063a583024b146105ec578063a5b39cfb1461061c5761023d565b8063715018a6146104ee578063817b1cd2146104f85780638da5cb5b1461051657806395d89b41146105345780639b37ef66146105525761023d565b8063313ce567116101c957806341910f901161018d57806341910f901461044a5780634697f05d146104685780635c975abb14610484578063609866e4146104a257806370a08231146104be5761023d565b8063313ce567146103a65780633228337a146103c457806332cb6b0c146103e057806339509351146103fe57806340c10f191461042e5761023d565b806318160ddd1161021057806318160ddd146102dc5780631d0504a8146102fa5780631e83409a1461032a57806323b872dd146103465780632da74ccc146103765761023d565b80630583e9f81461024257806306fdde0314610272578063095ea7b3146102905780630fbf0a93146102c0575b600080fd5b61025c6004803603810190610257919061308c565b6107f4565b6040516102699190613b8e565b60405180910390f35b61027a61080c565b60405161028791906138cc565b60405180910390f35b6102aa60048036038101906102a59190612f8a565b61089e565b6040516102b79190613896565b60405180910390f35b6102da60048036038101906102d59190612fc6565b6108bc565b005b6102e4610ed4565b6040516102f19190613b8e565b60405180910390f35b610314600480360381019061030f9190612e71565b610ede565b6040516103219190613b8e565b60405180910390f35b610344600480360381019061033f9190612e71565b610ef6565b005b610360600480360381019061035b9190612eff565b610f58565b60405161036d9190613896565b60405180910390f35b610390600480360381019061038b9190612f8a565b611050565b60405161039d9190613b8e565b60405180910390f35b6103ae61112c565b6040516103bb9190613ba9565b60405180910390f35b6103de60048036038101906103d9919061300b565b611135565b005b6103e861173b565b6040516103f59190613b8e565b60405180910390f35b61041860048036038101906104139190612f8a565b61175f565b6040516104259190613896565b60405180910390f35b61044860048036038101906104439190612f8a565b61180b565b005b6104526118ae565b60405161045f9190613b8e565b60405180910390f35b610482600480360381019061047d9190612f4e565b6118ba565b005b61048c611991565b6040516104999190613896565b60405180910390f35b6104bc60048036038101906104b7919061300b565b6119a8565b005b6104d860048036038101906104d39190612e71565b611afb565b6040516104e59190613b8e565b60405180910390f35b6104f6611b43565b005b610500611bcb565b60405161050d9190613b8e565b60405180910390f35b61051e611bd1565b60405161052b919061381b565b60405180910390f35b61053c611bfb565b60405161054991906138cc565b60405180910390f35b61055a611c8d565b60405161056791906138b1565b60405180910390f35b61058a60048036038101906105859190612f8a565b611cb3565b005b6105a660048036038101906105a1919061308c565b611d4d565b6040516105b39190613896565b60405180910390f35b6105d660048036038101906105d19190612f8a565b611d6d565b6040516105e39190613896565b60405180910390f35b61060660048036038101906106019190612e71565b611e58565b6040516106139190613b8e565b60405180910390f35b61063660048036038101906106319190612e71565b611eb4565b6040516106439190613b8e565b60405180910390f35b61066660048036038101906106619190612f8a565b611ecc565b6040516106739190613896565b60405180910390f35b61069660048036038101906106919190612e71565b611eea565b6040516106a39190613b8e565b60405180910390f35b6106b4611f02565b6040516106c19190613b8e565b60405180910390f35b6106e460048036038101906106df9190612e71565b611f08565b6040516106f19190613896565b60405180910390f35b610714600480360381019061070f9190612ec3565b611f28565b6040516107219190613b8e565b60405180910390f35b610744600480360381019061073f9190612f8a565b611faf565b6040516107519190613b8e565b60405180910390f35b610774600480360381019061076f9190612e71565b611fd4565b6040516107819190613b8e565b60405180910390f35b6107a4600480360381019061079f9190612e71565b611fec565b005b6107ae6120e4565b6040516107bb9190613b8e565b60405180910390f35b6107de60048036038101906107d9919061308c565b6120e9565b6040516107eb919061381b565b60405180910390f35b60116020528060005260406000206000915090505481565b60606003805461081b90613da1565b80601f016020809104026020016040519081016040528092919081815260200182805461084790613da1565b80156108945780601f1061086957610100808354040283529160200191610894565b820191906000526020600020905b81548152906001019060200180831161087757829003601f168201915b5050505050905090565b60006108b26108ab61211c565b8484612124565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e985e9c533306040518363ffffffff1660e01b8152600401610919929190613836565b60206040518083038186803b15801561093157600080fd5b505afa158015610945573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109699190613063565b6109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f906139ce565b60405180910390fd5b6109b0611991565b156109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e790613a2e565b60405180910390fd5b6019828290501115610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e906139ee565b60405180910390fd5b610a40336122ef565b60005b82829050811015610eb3573373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e858585818110610adc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518263ffffffff1660e01b8152600401610aff9190613b8e565b60206040518083038186803b158015610b1757600080fd5b505afa158015610b2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4f9190612e9a565b73ffffffffffffffffffffffffffffffffffffffff1614610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c90613aae565b60405180910390fd5b6000838383818110610be0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013590506010600082815260200190815260200160002060009054906101000a900460ff1615610c67576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c5f9190613be0565b925050819055505b33600c600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601160008381526020019081526020016000208190555080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060116000858152602001908152602001600020548152602001908152602001600020819055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dc89190613be0565b92505081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330878787818110610e48577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518463ffffffff1660e01b8152600401610e6d9392919061385f565b600060405180830381600087803b158015610e8757600080fd5b505af1158015610e9b573d6000803e3d6000fd5b50505050508080610eab90613dd3565b915050610a43565b508181905060086000828254610ec99190613be0565b925050819055505050565b6000600254905090565b600a6020528060005260406000206000915090505481565b60026006541415610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390613b2e565b60405180910390fd5b6002600681905550610f4d81612394565b600160068190555050565b6000610f6584848461262d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fb061211c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790613a6e565b60405180910390fd5b6110448561103c61211c565b858403612124565b60019150509392505050565b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482106110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90613a4e565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006012905090565b6002600654141561117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290613b2e565b60405180910390fd5b600260068190555060198383905011156111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c1906139ee565b60405180910390fd5b80156111de576111d933612394565b6111e8565b6111e7336122ef565b5b60005b83839050811015611711573373ffffffffffffffffffffffffffffffffffffffff16600c600086868581811061124a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90613aae565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113659190613cc1565b8152602001908152602001600020549050601060008686858181106113b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002060009054906101000a900460ff1615611433576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461142b9190613cc1565b925050819055505b6000600c6000878786818110611472577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060116000868685818110611502577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002054601160008381526020019081526020016000208190555080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000601160008989888181106115ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358152602001908152602001600020548152602001908152602001600020819055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116269190613cc1565b92505081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd30338888878181106116a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518463ffffffff1660e01b81526004016116cb9392919061385f565b600060405180830381600087803b1580156116e557600080fd5b505af11580156116f9573d6000803e3d6000fd5b5050505050808061170990613dd3565b9150506111eb565b5082829050600860008282546117279190613cc1565b925050819055506001600681905550505050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b600061180161176c61211c565b84846001600061177a61211c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117fc9190613be0565b612124565b6001905092915050565b61181361211c565b73ffffffffffffffffffffffffffffffffffffffff16611831611bd1565b73ffffffffffffffffffffffffffffffffffffffff1614611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e90613a8e565b60405180910390fd5b61189182826128ae565b80600960008282546118a39190613be0565b925050819055505050565b678ac7230489e8000081565b6118c261211c565b73ffffffffffffffffffffffffffffffffffffffff166118e0611bd1565b73ffffffffffffffffffffffffffffffffffffffff1614611936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192d90613a8e565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560149054906101000a900460ff16905090565b6119b061211c565b73ffffffffffffffffffffffffffffffffffffffff166119ce611bd1565b73ffffffffffffffffffffffffffffffffffffffff1614611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90613a8e565b60405180910390fd5b60008383905011611a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a619061390e565b60405180910390fd5b60005b83839050811015611af5578160106000868685818110611ab6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611aed90613dd3565b915050611a6d565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b4b61211c565b73ffffffffffffffffffffffffffffffffffffffff16611b69611bd1565b73ffffffffffffffffffffffffffffffffffffffff1614611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb690613a8e565b60405180910390fd5b611bc96000612a0e565b565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611c0a90613da1565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3690613da1565b8015611c835780601f10611c5857610100808354040283529160200191611c83565b820191906000526020600020905b815481529060010190602001808311611c6657829003601f168201915b5050505050905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d369061392e565b60405180910390fd5b611d498282612ad4565b5050565b60106020528060005260406000206000915054906101000a900460ff1681565b60008060016000611d7c61211c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3090613b4e565b60405180910390fd5b611e4d611e4461211c565b85858403612124565b600191505092915050565b6000611e6382612cab565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ead9190613be0565b9050919050565b600e6020528060005260406000206000915090505481565b6000611ee0611ed961211c565b848461262d565b6001905092915050565b600b6020528060005260406000206000915090505481565b60095481565b60126020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d602052816000526040600020602052806000526040600020600091509150505481565b600f6020528060005260406000206000915090505481565b611ff461211c565b73ffffffffffffffffffffffffffffffffffffffff16612012611bd1565b73ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90613a8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf9061396e565b60405180910390fd5b6120e181612a0e565b50565b601981565b600c6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b90613b0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb9061398e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122e29190613b8e565b60405180910390a3505050565b6122f881612cab565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123469190613be0565b9250508190555042600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b61239c611991565b156123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d390613a2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061245f5750601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61249e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124959061392e565b60405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60095410612502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f990613a0e565b60405180910390fd5b600061250d82611e58565b905060007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826009546125409190613be0565b1161254b578161257a565b6009547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6125799190613cc1565b5b905061258683826128ae565b6000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600960008282546126219190613be0565b92505081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561269d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269490613aee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561270d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612704906138ee565b60405180910390fd5b612718838383612db4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561279e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612795906139ae565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128319190613be0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128959190613b8e565b60405180910390a36128a8848484612db9565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561291e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291590613b6e565b60405180910390fd5b61292a60008383612db4565b806002600082825461293c9190613be0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129919190613be0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516129f69190613b8e565b60405180910390a3612a0a60008383612db9565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3b90613ace565b60405180910390fd5b612b5082600083612db4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcd9061394e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612c2d9190613cc1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c929190613b8e565b60405180910390a3612ca683600084612db9565b505050565b600062015180600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442612cfc9190613cc1565b678ac7230489e80000600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d8f9190613be0565b612d999190613c67565b612da39190613c67565b612dad9190613c36565b9050919050565b505050565b505050565b600081359050612dcd81613eba565b92915050565b600081519050612de281613eba565b92915050565b60008083601f840112612dfa57600080fd5b8235905067ffffffffffffffff811115612e1357600080fd5b602083019150836020820283011115612e2b57600080fd5b9250929050565b600081359050612e4181613ed1565b92915050565b600081519050612e5681613ed1565b92915050565b600081359050612e6b81613ee8565b92915050565b600060208284031215612e8357600080fd5b6000612e9184828501612dbe565b91505092915050565b600060208284031215612eac57600080fd5b6000612eba84828501612dd3565b91505092915050565b60008060408385031215612ed657600080fd5b6000612ee485828601612dbe565b9250506020612ef585828601612dbe565b9150509250929050565b600080600060608486031215612f1457600080fd5b6000612f2286828701612dbe565b9350506020612f3386828701612dbe565b9250506040612f4486828701612e5c565b9150509250925092565b60008060408385031215612f6157600080fd5b6000612f6f85828601612dbe565b9250506020612f8085828601612e32565b9150509250929050565b60008060408385031215612f9d57600080fd5b6000612fab85828601612dbe565b9250506020612fbc85828601612e5c565b9150509250929050565b60008060208385031215612fd957600080fd5b600083013567ffffffffffffffff811115612ff357600080fd5b612fff85828601612de8565b92509250509250929050565b60008060006040848603121561302057600080fd5b600084013567ffffffffffffffff81111561303a57600080fd5b61304686828701612de8565b9350935050602061305986828701612e32565b9150509250925092565b60006020828403121561307557600080fd5b600061308384828501612e47565b91505092915050565b60006020828403121561309e57600080fd5b60006130ac84828501612e5c565b91505092915050565b6130be81613cf5565b82525050565b6130cd81613d07565b82525050565b6130dc81613d4a565b82525050565b60006130ed82613bc4565b6130f78185613bcf565b9350613107818560208601613d6e565b61311081613ea9565b840191505092915050565b6000613128602383613bcf565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061318e601283613bcf565b91507f4e6f20746f6b656e732073656c656374656400000000000000000000000000006000830152602082019050919050565b60006131ce601283613bcf565b91507f43616c6c6572206e6f7420616c6c6f77656400000000000000000000000000006000830152602082019050919050565b600061320e602283613bcf565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613274602683613bcf565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132da602283613bcf565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613340602683613bcf565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133a6601583613bcf565b91507f436f6e7472616374206e6f7420617070726f76656400000000000000000000006000830152602082019050919050565b60006133e6602283613bcf565b91507f45786365656473206d617820746f6b656e7320706572207472616e736163746960008301527f6f6e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061344c601b83613bcf565b91507f4d617820737570706c7920686173206265656e20636c61696d656400000000006000830152602082019050919050565b600061348c601083613bcf565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006134cc601183613bcf565b91507f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006000830152602082019050919050565b600061350c602883613bcf565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613572602083613bcf565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006135b2601983613bcf565b91507f43616c6c6572206973206e6f7420746f6b656e206f776e6572000000000000006000830152602082019050919050565b60006135f2602183613bcf565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613658602583613bcf565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136be602483613bcf565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613724601f83613bcf565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000613764602583613bcf565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137ca601f83613bcf565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61380681613d33565b82525050565b61381581613d3d565b82525050565b600060208201905061383060008301846130b5565b92915050565b600060408201905061384b60008301856130b5565b61385860208301846130b5565b9392505050565b600060608201905061387460008301866130b5565b61388160208301856130b5565b61388e60408301846137fd565b949350505050565b60006020820190506138ab60008301846130c4565b92915050565b60006020820190506138c660008301846130d3565b92915050565b600060208201905081810360008301526138e681846130e2565b905092915050565b600060208201905081810360008301526139078161311b565b9050919050565b6000602082019050818103600083015261392781613181565b9050919050565b60006020820190508181036000830152613947816131c1565b9050919050565b6000602082019050818103600083015261396781613201565b9050919050565b6000602082019050818103600083015261398781613267565b9050919050565b600060208201905081810360008301526139a7816132cd565b9050919050565b600060208201905081810360008301526139c781613333565b9050919050565b600060208201905081810360008301526139e781613399565b9050919050565b60006020820190508181036000830152613a07816133d9565b9050919050565b60006020820190508181036000830152613a278161343f565b9050919050565b60006020820190508181036000830152613a478161347f565b9050919050565b60006020820190508181036000830152613a67816134bf565b9050919050565b60006020820190508181036000830152613a87816134ff565b9050919050565b60006020820190508181036000830152613aa781613565565b9050919050565b60006020820190508181036000830152613ac7816135a5565b9050919050565b60006020820190508181036000830152613ae7816135e5565b9050919050565b60006020820190508181036000830152613b078161364b565b9050919050565b60006020820190508181036000830152613b27816136b1565b9050919050565b60006020820190508181036000830152613b4781613717565b9050919050565b60006020820190508181036000830152613b6781613757565b9050919050565b60006020820190508181036000830152613b87816137bd565b9050919050565b6000602082019050613ba360008301846137fd565b92915050565b6000602082019050613bbe600083018461380c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000613beb82613d33565b9150613bf683613d33565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c2b57613c2a613e1c565b5b828201905092915050565b6000613c4182613d33565b9150613c4c83613d33565b925082613c5c57613c5b613e4b565b5b828204905092915050565b6000613c7282613d33565b9150613c7d83613d33565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cb657613cb5613e1c565b5b828202905092915050565b6000613ccc82613d33565b9150613cd783613d33565b925082821015613cea57613ce9613e1c565b5b828203905092915050565b6000613d0082613d13565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613d5582613d5c565b9050919050565b6000613d6782613d13565b9050919050565b60005b83811015613d8c578082015181840152602081019050613d71565b83811115613d9b576000848401525b50505050565b60006002820490506001821680613db957607f821691505b60208210811415613dcd57613dcc613e7a565b5b50919050565b6000613dde82613d33565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e1157613e10613e1c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b613ec381613cf5565b8114613ece57600080fd5b50565b613eda81613d07565b8114613ee557600080fd5b50565b613ef181613d33565b8114613efc57600080fd5b5056fea2646970667358221220d24b31985c7643b394938b5d093037e33d3791e860f914fb57b2d899db3bcec164736f6c63430008000033

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

0000000000000000000000004f2ba7296391ab85ce4f4fc9f64608db6a267101

-----Decoded View---------------
Arg [0] : angryDinos (address): 0x4f2BA7296391AB85ce4F4Fc9F64608Db6a267101

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


Deployed Bytecode Sourcemap

30122:6766:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30842:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17511:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19678:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34134:886;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18631:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30449:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32975:86;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20329:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31936:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18473:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35222:976;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30222:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21230:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36755:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30329:44;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33917:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14194:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31430:271;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18802:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29185:103;;;:::i;:::-;;30382:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28534:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17730:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30188:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36432:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30789:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21948:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32330:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30674:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19142:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30496:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30415:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30894:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19380:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30601:66;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30728:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29443:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30283:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30548:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30842:45;;;;;;;;;;;;;;;;;:::o;17511:100::-;17565:13;17598:5;17591:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17511:100;:::o;19678:169::-;19761:4;19778:39;19787:12;:10;:12::i;:::-;19801:7;19810:6;19778:8;:39::i;:::-;19835:4;19828:11;;19678:169;;;;:::o;34134:886::-;31299:10;;;;;;;;;;;:27;;;31327:10;31347:4;31299:54;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31277:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;14520:8:::1;:6;:8::i;:::-;14519:9;14511:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;30320:2:::2;34237:8;;:15;;:29;;34229:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;34318:19;34326:10;34318:7;:19::i;:::-;34355:9;34350:620;34374:8;;:15;;34370:1;:19;34350:620;;;34454:10;34419:45;;:10;;;;;;;;;;;:18;;;34438:8;;34447:1;34438:11;;;;;;;;;;;;;;;;;;;;;34419:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:45;;;34411:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;34511:15;34529:8;;34538:1;34529:11;;;;;;;;;;;;;;;;;;;;;34511:29;;34560:13;:22;34574:7;34560:22;;;;;;;;;;;;;;;;;;;;;34557:98;;;34638:1;34603:19;:31;34623:10;34603:31;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;34557:98;34694:10;34671:11;:20;34683:7;34671:20;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;34741:12;:24;34754:10;34741:24;;;;;;;;;;;;;;;;34719:10;:19;34730:7;34719:19;;;;;;;;;;;:46;;;;34827:7;34780:11;:23;34792:10;34780:23;;;;;;;;;;;;;;;:44;34804:10;:19;34815:7;34804:19;;;;;;;;;;;;34780:44;;;;;;;;;;;:54;;;;34877:1;34849:12;:24;34862:10;34849:24;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;34895:10;;;;;;;;;;;:23;;;34919:10;34939:4;34946:8;;34955:1;34946:11;;;;;;;;;;;;;;;;;;;;;34895:63;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;34350:620;34391:3;;;;;:::i;:::-;;;;34350:620;;;;34997:8;;:15;;34982:11;;:30;;;;;;;:::i;:::-;;;;;;;;34134:886:::0;;:::o;18631:108::-;18692:7;18719:12;;18712:19;;18631:108;:::o;30449:40::-;;;;;;;;;;;;;;;;;:::o;32975:86::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;33038:15:::1;33045:7;33038:6;:15::i;:::-;1768:1:::0;2722:7;:22;;;;32975:86;:::o;20329:492::-;20469:4;20486:36;20496:6;20504:9;20515:6;20486:9;:36::i;:::-;20535:24;20562:11;:19;20574:6;20562:19;;;;;;;;;;;;;;;:33;20582:12;:10;:12::i;:::-;20562:33;;;;;;;;;;;;;;;;20535:60;;20634:6;20614:16;:26;;20606:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;20721:57;20730:6;20738:12;:10;:12::i;:::-;20771:6;20752:16;:25;20721:8;:57::i;:::-;20809:4;20802:11;;;20329:492;;;;;:::o;31936:212::-;32014:7;32050:12;:21;32063:7;32050:21;;;;;;;;;;;;;;;;32042:5;:29;32034:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;32113:11;:20;32125:7;32113:20;;;;;;;;;;;;;;;:27;32134:5;32113:27;;;;;;;;;;;;32106:34;;31936:212;;;;:::o;18473:93::-;18531:5;18556:2;18549:9;;18473:93;:::o;35222:976::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;30320:2:::1;35327:8;;:15;;:29;;35319:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;35412:11;35408:70;;;35425:18;35432:10;35425:6;:18::i;:::-;35408:70;;;35459:19;35467:10;35459:7;:19::i;:::-;35408:70;35496:9;35491:657;35515:8;;:15;;35511:1;:19;35491:657;;;35588:10;35560:38;;:11;:24;35572:8;;35581:1;35572:11;;;;;;;;;;;;;;;;;;;;;35560:24;;;;;;;;;;;;;;;;;;;;;:38;;;35552:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;35645:12;35660:11;:23;35672:10;35660:23;;;;;;;;;;;;;;;:53;35711:1;35684:12;:24;35697:10;35684:24;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;35660:53;;;;;;;;;;;;35645:68;;35733:13;:26;35747:8;;35756:1;35747:11;;;;;;;;;;;;;;;;;;;;;35733:26;;;;;;;;;;;;;;;;;;;;;35730:102;;;35815:1;35780:19;:31;35800:10;35780:31;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;35730:102;35883:1;35848:11;:24;35860:8;;35869:1;35860:11;;;;;;;;;;;;;;;;;;;;;35848:24;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;35919:10;:23;35930:8;;35939:1;35930:11;;;;;;;;;;;;;;;;;;;;;35919:23;;;;;;;;;;;;35900:10;:16;35911:4;35900:16;;;;;;;;;;;:42;;;;36008:4;35957:11;:23;35969:10;35957:23;;;;;;;;;;;;;;;:48;35981:10;:23;35992:8;;36001:1;35992:11;;;;;;;;;;;;;;;;;;;;;35981:23;;;;;;;;;;;;35957:48;;;;;;;;;;;:55;;;;36055:1;36027:12;:24;36040:10;36027:24;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;36073:10;;;;;;;;;;;:23;;;36105:4;36112:10;36124:8;;36133:1;36124:11;;;;;;;;;;;;;;;;;;;;;36073:63;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;35491:657;35532:3;;;;;:::i;:::-;;;;35491:657;;;;36175:8;;:15;;36160:11;;:30;;;;;;;:::i;:::-;;;;;;;;1768:1:::0;2722:7;:22;;;;35222:976;;;:::o;30222:54::-;30259:17;30222:54;:::o;21230:215::-;21318:4;21335:80;21344:12;:10;:12::i;:::-;21358:7;21404:10;21367:11;:25;21379:12;:10;:12::i;:::-;21367:25;;;;;;;;;;;;;;;:34;21393:7;21367:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;21335:8;:80::i;:::-;21433:4;21426:11;;21230:215;;;;:::o;36755:130::-;28765:12;:10;:12::i;:::-;28754:23;;:7;:5;:7::i;:::-;:23;;;28746:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36827:17:::1;36833:2;36837:6;36827:5;:17::i;:::-;36871:6;36855:12;;:22;;;;;;;:::i;:::-;;;;;;;;36755:130:::0;;:::o;30329:44::-;30365:8;30329:44;:::o;33917:119::-;28765:12;:10;:12::i;:::-;28754:23;;:7;:5;:7::i;:::-;:23;;;28746:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34019:9:::1;34000:7;:16;34008:7;34000:16;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;33917:119:::0;;:::o;14194:86::-;14241:4;14265:7;;;;;;;;;;;14258:14;;14194:86;:::o;31430:271::-;28765:12;:10;:12::i;:::-;28754:23;;:7;:5;:7::i;:::-;:23;;;28746:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31551:1:::1;31533:8;;:15;;:19;31525:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;31592:9;31588:106;31611:8;;:15;;31607:1;:19;31588:106;;;31677:5;31648:13;:26;31662:8;;31671:1;31662:11;;;;;;;;;;;;;;;;;;;;;31648:26;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;31628:3;;;;;:::i;:::-;;;;31588:106;;;;31430:271:::0;;;:::o;18802:127::-;18876:7;18903:9;:18;18913:7;18903:18;;;;;;;;;;;;;;;;18896:25;;18802:127;;;:::o;29185:103::-;28765:12;:10;:12::i;:::-;28754:23;;:7;:5;:7::i;:::-;:23;;;28746:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29250:30:::1;29277:1;29250:18;:30::i;:::-;29185:103::o:0;30382:26::-;;;;:::o;28534:87::-;28580:7;28607:6;;;;;;;;;;;28600:13;;28534:87;:::o;17730:104::-;17786:13;17819:7;17812:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17730:104;:::o;30188:25::-;;;;;;;;;;;;;:::o;36432:103::-;31168:7;:19;31176:10;31168:19;;;;;;;;;;;;;;;;;;;;;;;;;31160:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;36508:19:::1;36514:4;36520:6;36508:5;:19::i;:::-;36432:103:::0;;:::o;30789:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;21948:413::-;22041:4;22058:24;22085:11;:25;22097:12;:10;:12::i;:::-;22085:25;;;;;;;;;;;;;;;:34;22111:7;22085:34;;;;;;;;;;;;;;;;22058:61;;22158:15;22138:16;:35;;22130:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;22251:67;22260:12;:10;:12::i;:::-;22274:7;22302:15;22283:16;:34;22251:8;:67::i;:::-;22349:4;22342:11;;;21948:413;;;;:::o;32330:132::-;32390:7;32434:20;32446:7;32434:11;:20::i;:::-;32417:5;:14;32423:7;32417:14;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;32410:44;;32330:132;;;:::o;30674:47::-;;;;;;;;;;;;;;;;;:::o;19142:175::-;19228:4;19245:42;19255:12;:10;:12::i;:::-;19269:9;19280:6;19245:9;:42::i;:::-;19305:4;19298:11;;19142:175;;;;:::o;30496:45::-;;;;;;;;;;;;;;;;;:::o;30415:27::-;;;;:::o;30894:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;19380:151::-;19469:7;19496:11;:18;19508:5;19496:18;;;;;;;;;;;;;;;:27;19515:7;19496:27;;;;;;;;;;;;;;;;19489:34;;19380:151;;;;:::o;30601:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30728:54::-;;;;;;;;;;;;;;;;;:::o;29443:201::-;28765:12;:10;:12::i;:::-;28754:23;;:7;:5;:7::i;:::-;:23;;;28746:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29552:1:::1;29532:22;;:8;:22;;;;29524:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29608:28;29627:8;29608:18;:28::i;:::-;29443:201:::0;:::o;30283:39::-;30320:2;30283:39;:::o;30548:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;12848:98::-;12901:7;12928:10;12921:17;;12848:98;:::o;25632:380::-;25785:1;25768:19;;:5;:19;;;;25760:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25866:1;25847:21;;:7;:21;;;;25839:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25950:6;25920:11;:18;25932:5;25920:18;;;;;;;;;;;;;;;:27;25939:7;25920:27;;;;;;;;;;;;;;;:36;;;;25988:7;25972:32;;25981:5;25972:32;;;25997:6;25972:32;;;;;;:::i;:::-;;;;;;;;25632:380;;;:::o;32718:148::-;32790:20;32802:7;32790:11;:20::i;:::-;32772:5;:14;32778:7;32772:14;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;32843:15;32821:10;:19;32832:7;32821:19;;;;;;;;;;;;;;;:37;;;;32718:148;:::o;33069:590::-;14520:8;:6;:8::i;:::-;14519:9;14511:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;33158:7:::1;33144:21;;:10;:21;;;:44;;;;33169:7;:19;33177:10;33169:19;;;;;;;;;;;;;;;;;;;;;;;;;33144:44;33136:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;30259:17;33230:12;;:25;33222:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;33319:17;33339:21;33352:7;33339:12;:21::i;:::-;33319:41;;33371:19;30259:17;33408:9;33393:12;;:24;;;;:::i;:::-;:37;:103;;33487:9;33393:103;;;33459:12;;30259:17;33446:25;;;;:::i;:::-;33393:103;33371:125;;33509:27;33515:7;33524:11;33509:5;:27::i;:::-;33564:1;33547:5;:14;33553:7;33547:14;;;;;;;;;;;;;;;:18;;;;33598:15;33576:10;:19;33587:7;33576:19;;;;;;;;;;;;;;;:37;;;;33640:11;33624:12;;:27;;;;;;;:::i;:::-;;;;;;;;14560:1;;33069:590:::0;:::o;22851:733::-;23009:1;22991:20;;:6;:20;;;;22983:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;23093:1;23072:23;;:9;:23;;;;23064:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23148:47;23169:6;23177:9;23188:6;23148:20;:47::i;:::-;23208:21;23232:9;:17;23242:6;23232:17;;;;;;;;;;;;;;;;23208:41;;23285:6;23268:13;:23;;23260:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23406:6;23390:13;:22;23370:9;:17;23380:6;23370:17;;;;;;;;;;;;;;;:42;;;;23458:6;23434:9;:20;23444:9;23434:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;23499:9;23482:35;;23491:6;23482:35;;;23510:6;23482:35;;;;;;:::i;:::-;;;;;;;;23530:46;23550:6;23558:9;23569:6;23530:19;:46::i;:::-;22851:733;;;;:::o;23871:399::-;23974:1;23955:21;;:7;:21;;;;23947:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;24025:49;24054:1;24058:7;24067:6;24025:20;:49::i;:::-;24103:6;24087:12;;:22;;;;;;;:::i;:::-;;;;;;;;24142:6;24120:9;:18;24130:7;24120:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;24185:7;24164:37;;24181:1;24164:37;;;24194:6;24164:37;;;;;;:::i;:::-;;;;;;;;24214:48;24242:1;24246:7;24255:6;24214:19;:48::i;:::-;23871:399;;:::o;29804:191::-;29878:16;29897:6;;;;;;;;;;;29878:25;;29923:8;29914:6;;:17;;;;;;;;;;;;;;;;;;29978:8;29947:40;;29968:8;29947:40;;;;;;;;;;;;29804:191;;:::o;24603:591::-;24706:1;24687:21;;:7;:21;;;;24679:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;24759:49;24780:7;24797:1;24801:6;24759:20;:49::i;:::-;24821:22;24846:9;:18;24856:7;24846:18;;;;;;;;;;;;;;;;24821:43;;24901:6;24883:14;:24;;24875:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25020:6;25003:14;:23;24982:9;:18;24992:7;24982:18;;;;;;;;;;;;;;;:44;;;;25064:6;25048:12;;:22;;;;;;;:::i;:::-;;;;;;;;25114:1;25088:37;;25097:7;25088:37;;;25118:6;25088:37;;;;;;:::i;:::-;;;;;;;;25138:48;25158:7;25175:1;25179:6;25138:19;:48::i;:::-;24603:591;;;:::o;32470:240::-;32531:7;32696:6;32664:10;:19;32675:7;32664:19;;;;;;;;;;;;;;;;32646:15;:37;;;;:::i;:::-;30365:8;32583:19;:28;32603:7;32583:28;;;;;;;;;;;;;;;;32559:12;:21;32572:7;32559:21;;;;;;;;;;;;;;;;:52;;;;:::i;:::-;32558:75;;;;:::i;:::-;:126;;;;:::i;:::-;:144;;;;:::i;:::-;32551:151;;32470:240;;;:::o;26612:125::-;;;;:::o;27341:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:143::-;;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;215:80;;;;:::o;318:367::-;;;451:3;444:4;436:6;432:17;428:27;418:2;;469:1;466;459:12;418:2;505:6;492:20;482:30;;535:18;527:6;524:30;521:2;;;567:1;564;557:12;521:2;604:4;596:6;592:17;580:29;;658:3;650:4;642:6;638:17;628:8;624:32;621:41;618:2;;;675:1;672;665:12;618:2;408:277;;;;;:::o;691:133::-;;772:6;759:20;750:29;;788:30;812:5;788:30;:::i;:::-;740:84;;;;:::o;830:137::-;;915:6;909:13;900:22;;931:30;955:5;931:30;:::i;:::-;890:77;;;;:::o;973:139::-;;1057:6;1044:20;1035:29;;1073:33;1100:5;1073:33;:::i;:::-;1025:87;;;;:::o;1118:262::-;;1226:2;1214:9;1205:7;1201:23;1197:32;1194:2;;;1242:1;1239;1232:12;1194:2;1285:1;1310:53;1355:7;1346:6;1335:9;1331:22;1310:53;:::i;:::-;1300:63;;1256:117;1184:196;;;;:::o;1386:284::-;;1505:2;1493:9;1484:7;1480:23;1476:32;1473:2;;;1521:1;1518;1511:12;1473:2;1564:1;1589:64;1645:7;1636:6;1625:9;1621:22;1589:64;:::i;:::-;1579:74;;1535:128;1463:207;;;;:::o;1676:407::-;;;1801:2;1789:9;1780:7;1776:23;1772:32;1769:2;;;1817:1;1814;1807:12;1769:2;1860:1;1885:53;1930:7;1921:6;1910:9;1906:22;1885:53;:::i;:::-;1875:63;;1831:117;1987:2;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1958:118;1759:324;;;;;:::o;2089:552::-;;;;2231:2;2219:9;2210:7;2206:23;2202:32;2199:2;;;2247:1;2244;2237:12;2199:2;2290:1;2315:53;2360:7;2351:6;2340:9;2336:22;2315:53;:::i;:::-;2305:63;;2261:117;2417:2;2443:53;2488:7;2479:6;2468:9;2464:22;2443:53;:::i;:::-;2433:63;;2388:118;2545:2;2571:53;2616:7;2607:6;2596:9;2592:22;2571:53;:::i;:::-;2561:63;;2516:118;2189:452;;;;;:::o;2647:401::-;;;2769:2;2757:9;2748:7;2744:23;2740:32;2737:2;;;2785:1;2782;2775:12;2737:2;2828:1;2853:53;2898:7;2889:6;2878:9;2874:22;2853:53;:::i;:::-;2843:63;;2799:117;2955:2;2981:50;3023:7;3014:6;3003:9;2999:22;2981:50;:::i;:::-;2971:60;;2926:115;2727:321;;;;;:::o;3054:407::-;;;3179:2;3167:9;3158:7;3154:23;3150:32;3147:2;;;3195:1;3192;3185:12;3147:2;3238:1;3263:53;3308:7;3299:6;3288:9;3284:22;3263:53;:::i;:::-;3253:63;;3209:117;3365:2;3391:53;3436:7;3427:6;3416:9;3412:22;3391:53;:::i;:::-;3381:63;;3336:118;3137:324;;;;;:::o;3467:425::-;;;3610:2;3598:9;3589:7;3585:23;3581:32;3578:2;;;3626:1;3623;3616:12;3578:2;3697:1;3686:9;3682:17;3669:31;3727:18;3719:6;3716:30;3713:2;;;3759:1;3756;3749:12;3713:2;3795:80;3867:7;3858:6;3847:9;3843:22;3795:80;:::i;:::-;3777:98;;;;3640:245;3568:324;;;;;:::o;3898:564::-;;;;4055:2;4043:9;4034:7;4030:23;4026:32;4023:2;;;4071:1;4068;4061:12;4023:2;4142:1;4131:9;4127:17;4114:31;4172:18;4164:6;4161:30;4158:2;;;4204:1;4201;4194:12;4158:2;4240:80;4312:7;4303:6;4292:9;4288:22;4240:80;:::i;:::-;4222:98;;;;4085:245;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4013:449;;;;;:::o;4468:278::-;;4584:2;4572:9;4563:7;4559:23;4555:32;4552:2;;;4600:1;4597;4590:12;4552:2;4643:1;4668:61;4721:7;4712:6;4701:9;4697:22;4668:61;:::i;:::-;4658:71;;4614:125;4542:204;;;;:::o;4752:262::-;;4860:2;4848:9;4839:7;4835:23;4831:32;4828:2;;;4876:1;4873;4866:12;4828:2;4919:1;4944:53;4989:7;4980:6;4969:9;4965:22;4944:53;:::i;:::-;4934:63;;4890:117;4818:196;;;;:::o;5020:118::-;5107:24;5125:5;5107:24;:::i;:::-;5102:3;5095:37;5085:53;;:::o;5144:109::-;5225:21;5240:5;5225:21;:::i;:::-;5220:3;5213:34;5203:50;;:::o;5259:161::-;5361:52;5407:5;5361:52;:::i;:::-;5356:3;5349:65;5339:81;;:::o;5426:364::-;;5542:39;5575:5;5542:39;:::i;:::-;5597:71;5661:6;5656:3;5597:71;:::i;:::-;5590:78;;5677:52;5722:6;5717:3;5710:4;5703:5;5699:16;5677:52;:::i;:::-;5754:29;5776:6;5754:29;:::i;:::-;5749:3;5745:39;5738:46;;5518:272;;;;;:::o;5796:367::-;;5959:67;6023:2;6018:3;5959:67;:::i;:::-;5952:74;;6056:34;6052:1;6047:3;6043:11;6036:55;6122:5;6117:2;6112:3;6108:12;6101:27;6154:2;6149:3;6145:12;6138:19;;5942:221;;;:::o;6169:316::-;;6332:67;6396:2;6391:3;6332:67;:::i;:::-;6325:74;;6429:20;6425:1;6420:3;6416:11;6409:41;6476:2;6471:3;6467:12;6460:19;;6315:170;;;:::o;6491:316::-;;6654:67;6718:2;6713:3;6654:67;:::i;:::-;6647:74;;6751:20;6747:1;6742:3;6738:11;6731:41;6798:2;6793:3;6789:12;6782:19;;6637:170;;;:::o;6813:366::-;;6976:67;7040:2;7035:3;6976:67;:::i;:::-;6969:74;;7073:34;7069:1;7064:3;7060:11;7053:55;7139:4;7134:2;7129:3;7125:12;7118:26;7170:2;7165:3;7161:12;7154:19;;6959:220;;;:::o;7185:370::-;;7348:67;7412:2;7407:3;7348:67;:::i;:::-;7341:74;;7445:34;7441:1;7436:3;7432:11;7425:55;7511:8;7506:2;7501:3;7497:12;7490:30;7546:2;7541:3;7537:12;7530:19;;7331:224;;;:::o;7561:366::-;;7724:67;7788:2;7783:3;7724:67;:::i;:::-;7717:74;;7821:34;7817:1;7812:3;7808:11;7801:55;7887:4;7882:2;7877:3;7873:12;7866:26;7918:2;7913:3;7909:12;7902:19;;7707:220;;;:::o;7933:370::-;;8096:67;8160:2;8155:3;8096:67;:::i;:::-;8089:74;;8193:34;8189:1;8184:3;8180:11;8173:55;8259:8;8254:2;8249:3;8245:12;8238:30;8294:2;8289:3;8285:12;8278:19;;8079:224;;;:::o;8309:319::-;;8472:67;8536:2;8531:3;8472:67;:::i;:::-;8465:74;;8569:23;8565:1;8560:3;8556:11;8549:44;8619:2;8614:3;8610:12;8603:19;;8455:173;;;:::o;8634:366::-;;8797:67;8861:2;8856:3;8797:67;:::i;:::-;8790:74;;8894:34;8890:1;8885:3;8881:11;8874:55;8960:4;8955:2;8950:3;8946:12;8939:26;8991:2;8986:3;8982:12;8975:19;;8780:220;;;:::o;9006:325::-;;9169:67;9233:2;9228:3;9169:67;:::i;:::-;9162:74;;9266:29;9262:1;9257:3;9253:11;9246:50;9322:2;9317:3;9313:12;9306:19;;9152:179;;;:::o;9337:314::-;;9500:67;9564:2;9559:3;9500:67;:::i;:::-;9493:74;;9597:18;9593:1;9588:3;9584:11;9577:39;9642:2;9637:3;9633:12;9626:19;;9483:168;;;:::o;9657:315::-;;9820:67;9884:2;9879:3;9820:67;:::i;:::-;9813:74;;9917:19;9913:1;9908:3;9904:11;9897:40;9963:2;9958:3;9954:12;9947:19;;9803:169;;;:::o;9978:372::-;;10141:67;10205:2;10200:3;10141:67;:::i;:::-;10134:74;;10238:34;10234:1;10229:3;10225:11;10218:55;10304:10;10299:2;10294:3;10290:12;10283:32;10341:2;10336:3;10332:12;10325:19;;10124:226;;;:::o;10356:330::-;;10519:67;10583:2;10578:3;10519:67;:::i;:::-;10512:74;;10616:34;10612:1;10607:3;10603:11;10596:55;10677:2;10672:3;10668:12;10661:19;;10502:184;;;:::o;10692:323::-;;10855:67;10919:2;10914:3;10855:67;:::i;:::-;10848:74;;10952:27;10948:1;10943:3;10939:11;10932:48;11006:2;11001:3;10997:12;10990:19;;10838:177;;;:::o;11021:365::-;;11184:67;11248:2;11243:3;11184:67;:::i;:::-;11177:74;;11281:34;11277:1;11272:3;11268:11;11261:55;11347:3;11342:2;11337:3;11333:12;11326:25;11377:2;11372:3;11368:12;11361:19;;11167:219;;;:::o;11392:369::-;;11555:67;11619:2;11614:3;11555:67;:::i;:::-;11548:74;;11652:34;11648:1;11643:3;11639:11;11632:55;11718:7;11713:2;11708:3;11704:12;11697:29;11752:2;11747:3;11743:12;11736:19;;11538:223;;;:::o;11767:368::-;;11930:67;11994:2;11989:3;11930:67;:::i;:::-;11923:74;;12027:34;12023:1;12018:3;12014:11;12007:55;12093:6;12088:2;12083:3;12079:12;12072:28;12126:2;12121:3;12117:12;12110:19;;11913:222;;;:::o;12141:329::-;;12304:67;12368:2;12363:3;12304:67;:::i;:::-;12297:74;;12401:33;12397:1;12392:3;12388:11;12381:54;12461:2;12456:3;12452:12;12445:19;;12287:183;;;:::o;12476:369::-;;12639:67;12703:2;12698:3;12639:67;:::i;:::-;12632:74;;12736:34;12732:1;12727:3;12723:11;12716:55;12802:7;12797:2;12792:3;12788:12;12781:29;12836:2;12831:3;12827:12;12820:19;;12622:223;;;:::o;12851:329::-;;13014:67;13078:2;13073:3;13014:67;:::i;:::-;13007:74;;13111:33;13107:1;13102:3;13098:11;13091:54;13171:2;13166:3;13162:12;13155:19;;12997:183;;;:::o;13186:118::-;13273:24;13291:5;13273:24;:::i;:::-;13268:3;13261:37;13251:53;;:::o;13310:112::-;13393:22;13409:5;13393:22;:::i;:::-;13388:3;13381:35;13371:51;;:::o;13428:222::-;;13559:2;13548:9;13544:18;13536:26;;13572:71;13640:1;13629:9;13625:17;13616:6;13572:71;:::i;:::-;13526:124;;;;:::o;13656:332::-;;13815:2;13804:9;13800:18;13792:26;;13828:71;13896:1;13885:9;13881:17;13872:6;13828:71;:::i;:::-;13909:72;13977:2;13966:9;13962:18;13953:6;13909:72;:::i;:::-;13782:206;;;;;:::o;13994:442::-;;14181:2;14170:9;14166:18;14158:26;;14194:71;14262:1;14251:9;14247:17;14238:6;14194:71;:::i;:::-;14275:72;14343:2;14332:9;14328:18;14319:6;14275:72;:::i;:::-;14357;14425:2;14414:9;14410:18;14401:6;14357:72;:::i;:::-;14148:288;;;;;;:::o;14442:210::-;;14567:2;14556:9;14552:18;14544:26;;14580:65;14642:1;14631:9;14627:17;14618:6;14580:65;:::i;:::-;14534:118;;;;:::o;14658:252::-;;14804:2;14793:9;14789:18;14781:26;;14817:86;14900:1;14889:9;14885:17;14876:6;14817:86;:::i;:::-;14771:139;;;;:::o;14916:313::-;;15067:2;15056:9;15052:18;15044:26;;15116:9;15110:4;15106:20;15102:1;15091:9;15087:17;15080:47;15144:78;15217:4;15208:6;15144:78;:::i;:::-;15136:86;;15034:195;;;;:::o;15235:419::-;;15439:2;15428:9;15424:18;15416:26;;15488:9;15482:4;15478:20;15474:1;15463:9;15459:17;15452:47;15516:131;15642:4;15516:131;:::i;:::-;15508:139;;15406:248;;;:::o;15660:419::-;;15864:2;15853:9;15849:18;15841:26;;15913:9;15907:4;15903:20;15899:1;15888:9;15884:17;15877:47;15941:131;16067:4;15941:131;:::i;:::-;15933:139;;15831:248;;;:::o;16085:419::-;;16289:2;16278:9;16274:18;16266:26;;16338:9;16332:4;16328:20;16324:1;16313:9;16309:17;16302:47;16366:131;16492:4;16366:131;:::i;:::-;16358:139;;16256:248;;;:::o;16510:419::-;;16714:2;16703:9;16699:18;16691:26;;16763:9;16757:4;16753:20;16749:1;16738:9;16734:17;16727:47;16791:131;16917:4;16791:131;:::i;:::-;16783:139;;16681:248;;;:::o;16935:419::-;;17139:2;17128:9;17124:18;17116:26;;17188:9;17182:4;17178:20;17174:1;17163:9;17159:17;17152:47;17216:131;17342:4;17216:131;:::i;:::-;17208:139;;17106:248;;;:::o;17360:419::-;;17564:2;17553:9;17549:18;17541:26;;17613:9;17607:4;17603:20;17599:1;17588:9;17584:17;17577:47;17641:131;17767:4;17641:131;:::i;:::-;17633:139;;17531:248;;;:::o;17785:419::-;;17989:2;17978:9;17974:18;17966:26;;18038:9;18032:4;18028:20;18024:1;18013:9;18009:17;18002:47;18066:131;18192:4;18066:131;:::i;:::-;18058:139;;17956:248;;;:::o;18210:419::-;;18414:2;18403:9;18399:18;18391:26;;18463:9;18457:4;18453:20;18449:1;18438:9;18434:17;18427:47;18491:131;18617:4;18491:131;:::i;:::-;18483:139;;18381:248;;;:::o;18635:419::-;;18839:2;18828:9;18824:18;18816:26;;18888:9;18882:4;18878:20;18874:1;18863:9;18859:17;18852:47;18916:131;19042:4;18916:131;:::i;:::-;18908:139;;18806:248;;;:::o;19060:419::-;;19264:2;19253:9;19249:18;19241:26;;19313:9;19307:4;19303:20;19299:1;19288:9;19284:17;19277:47;19341:131;19467:4;19341:131;:::i;:::-;19333:139;;19231:248;;;:::o;19485:419::-;;19689:2;19678:9;19674:18;19666:26;;19738:9;19732:4;19728:20;19724:1;19713:9;19709:17;19702:47;19766:131;19892:4;19766:131;:::i;:::-;19758:139;;19656:248;;;:::o;19910:419::-;;20114:2;20103:9;20099:18;20091:26;;20163:9;20157:4;20153:20;20149:1;20138:9;20134:17;20127:47;20191:131;20317:4;20191:131;:::i;:::-;20183:139;;20081:248;;;:::o;20335:419::-;;20539:2;20528:9;20524:18;20516:26;;20588:9;20582:4;20578:20;20574:1;20563:9;20559:17;20552:47;20616:131;20742:4;20616:131;:::i;:::-;20608:139;;20506:248;;;:::o;20760:419::-;;20964:2;20953:9;20949:18;20941:26;;21013:9;21007:4;21003:20;20999:1;20988:9;20984:17;20977:47;21041:131;21167:4;21041:131;:::i;:::-;21033:139;;20931:248;;;:::o;21185:419::-;;21389:2;21378:9;21374:18;21366:26;;21438:9;21432:4;21428:20;21424:1;21413:9;21409:17;21402:47;21466:131;21592:4;21466:131;:::i;:::-;21458:139;;21356:248;;;:::o;21610:419::-;;21814:2;21803:9;21799:18;21791:26;;21863:9;21857:4;21853:20;21849:1;21838:9;21834:17;21827:47;21891:131;22017:4;21891:131;:::i;:::-;21883:139;;21781:248;;;:::o;22035:419::-;;22239:2;22228:9;22224:18;22216:26;;22288:9;22282:4;22278:20;22274:1;22263:9;22259:17;22252:47;22316:131;22442:4;22316:131;:::i;:::-;22308:139;;22206:248;;;:::o;22460:419::-;;22664:2;22653:9;22649:18;22641:26;;22713:9;22707:4;22703:20;22699:1;22688:9;22684:17;22677:47;22741:131;22867:4;22741:131;:::i;:::-;22733:139;;22631:248;;;:::o;22885:419::-;;23089:2;23078:9;23074:18;23066:26;;23138:9;23132:4;23128:20;23124:1;23113:9;23109:17;23102:47;23166:131;23292:4;23166:131;:::i;:::-;23158:139;;23056:248;;;:::o;23310:419::-;;23514:2;23503:9;23499:18;23491:26;;23563:9;23557:4;23553:20;23549:1;23538:9;23534:17;23527:47;23591:131;23717:4;23591:131;:::i;:::-;23583:139;;23481:248;;;:::o;23735:419::-;;23939:2;23928:9;23924:18;23916:26;;23988:9;23982:4;23978:20;23974:1;23963:9;23959:17;23952:47;24016:131;24142:4;24016:131;:::i;:::-;24008:139;;23906:248;;;:::o;24160:222::-;;24291:2;24280:9;24276:18;24268:26;;24304:71;24372:1;24361:9;24357:17;24348:6;24304:71;:::i;:::-;24258:124;;;;:::o;24388:214::-;;24515:2;24504:9;24500:18;24492:26;;24528:67;24592:1;24581:9;24577:17;24568:6;24528:67;:::i;:::-;24482:120;;;;:::o;24608:99::-;;24694:5;24688:12;24678:22;;24667:40;;;:::o;24713:169::-;;24831:6;24826:3;24819:19;24871:4;24866:3;24862:14;24847:29;;24809:73;;;;:::o;24888:305::-;;24947:20;24965:1;24947:20;:::i;:::-;24942:25;;24981:20;24999:1;24981:20;:::i;:::-;24976:25;;25135:1;25067:66;25063:74;25060:1;25057:81;25054:2;;;25141:18;;:::i;:::-;25054:2;25185:1;25182;25178:9;25171:16;;24932:261;;;;:::o;25199:185::-;;25256:20;25274:1;25256:20;:::i;:::-;25251:25;;25290:20;25308:1;25290:20;:::i;:::-;25285:25;;25329:1;25319:2;;25334:18;;:::i;:::-;25319:2;25376:1;25373;25369:9;25364:14;;25241:143;;;;:::o;25390:348::-;;25453:20;25471:1;25453:20;:::i;:::-;25448:25;;25487:20;25505:1;25487:20;:::i;:::-;25482:25;;25675:1;25607:66;25603:74;25600:1;25597:81;25592:1;25585:9;25578:17;25574:105;25571:2;;;25682:18;;:::i;:::-;25571:2;25730:1;25727;25723:9;25712:20;;25438:300;;;;:::o;25744:191::-;;25804:20;25822:1;25804:20;:::i;:::-;25799:25;;25838:20;25856:1;25838:20;:::i;:::-;25833:25;;25877:1;25874;25871:8;25868:2;;;25882:18;;:::i;:::-;25868:2;25927:1;25924;25920:9;25912:17;;25789:146;;;;:::o;25941:96::-;;26007:24;26025:5;26007:24;:::i;:::-;25996:35;;25986:51;;;:::o;26043:90::-;;26120:5;26113:13;26106:21;26095:32;;26085:48;;;:::o;26139:126::-;;26216:42;26209:5;26205:54;26194:65;;26184:81;;;:::o;26271:77::-;;26337:5;26326:16;;26316:32;;;:::o;26354:86::-;;26429:4;26422:5;26418:16;26407:27;;26397:43;;;:::o;26446:156::-;;26544:52;26590:5;26544:52;:::i;:::-;26531:65;;26521:81;;;:::o;26608:128::-;;26706:24;26724:5;26706:24;:::i;:::-;26693:37;;26683:53;;;:::o;26742:307::-;26810:1;26820:113;26834:6;26831:1;26828:13;26820:113;;;26919:1;26914:3;26910:11;26904:18;26900:1;26895:3;26891:11;26884:39;26856:2;26853:1;26849:10;26844:15;;26820:113;;;26951:6;26948:1;26945:13;26942:2;;;27031:1;27022:6;27017:3;27013:16;27006:27;26942:2;26791:258;;;;:::o;27055:320::-;;27136:1;27130:4;27126:12;27116:22;;27183:1;27177:4;27173:12;27204:18;27194:2;;27260:4;27252:6;27248:17;27238:27;;27194:2;27322;27314:6;27311:14;27291:18;27288:38;27285:2;;;27341:18;;:::i;:::-;27285:2;27106:269;;;;:::o;27381:233::-;;27443:24;27461:5;27443:24;:::i;:::-;27434:33;;27489:66;27482:5;27479:77;27476:2;;;27559:18;;:::i;:::-;27476:2;27606:1;27599:5;27595:13;27588:20;;27424:190;;;:::o;27620:180::-;27668:77;27665:1;27658:88;27765:4;27762:1;27755:15;27789:4;27786:1;27779:15;27806:180;27854:77;27851:1;27844:88;27951:4;27948:1;27941:15;27975:4;27972:1;27965:15;27992:180;28040:77;28037:1;28030:88;28137:4;28134:1;28127:15;28161:4;28158:1;28151:15;28178:102;;28270:2;28266:7;28261:2;28254:5;28250:14;28246:28;28236:38;;28226:54;;;:::o;28286:122::-;28359:24;28377:5;28359:24;:::i;:::-;28352:5;28349:35;28339:2;;28398:1;28395;28388:12;28339:2;28329:79;:::o;28414:116::-;28484:21;28499:5;28484:21;:::i;:::-;28477:5;28474:32;28464:2;;28520:1;28517;28510:12;28464:2;28454:76;:::o;28536:122::-;28609:24;28627:5;28609:24;:::i;:::-;28602:5;28599:35;28589:2;;28648:1;28645;28638:12;28589:2;28579:79;:::o

Swarm Source

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