ETH Price: $3,284.30 (-1.68%)

Token

Cryptoodles Toodle Token (TODL)
 

Overview

Max Total Supply

2,580,800,000 TODL

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
passme.eth
Balance
500,000 TODL

Value
$0.00
0x2227de445dbfd90712c48bcd74d492ccca1cb242
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:
CryptoodleToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-28
*/

// SPDX-License-Identifier: MIT

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;
    }
}

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

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

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

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

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

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

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

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

/**
 * @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
    );
}

/**
 * @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);
}

/**
 * @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 {}
}

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);
}

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

/**
 * @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;
}


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// Cryptoodles TODL Token 
// An airdrop contract for Loot Bag, More Loot, and Toodle Loot Bag holders to claim Cryptoodles native token
// https://cryptoodles.com
// This contract has not been officially audited. Use at your own risk.
contract CryptoodleToken is Context, Ownable, ERC20 {
    address public lootContractAddress =
        0xFF9C1b15B16263C61d017ee9F65C50e4AE0113D7;
    IERC721Enumerable public lootContract;

    address public toodleLootContractAddress =
        0x2A16107Ea0D28aE822168C8bB3eF5460b1924A78;
    IERC721Enumerable public toodleContract;

    address public moreLootContractAddress =
        0x1dfe7Ca09e99d10835Bf73044a23B73Fc20623DF;
    IERC721Enumerable public moreLootContract;

    bool public airdropForOGLootActive = true;
    bool public airdropForToodleLootActive = true;
    bool public airdropForMoreLootActive = true;

    // Airdrop 15 MIL TODL to each Toodle Loot Bag
    uint256 private todlForToodleLoot = 15000000 * (10**decimals());

    // Airdrop 5 MIL TODL to each Loot
    uint256 private todlForOgLoot = 5000000 * (10**decimals());

    // Airdrop 100K TODL to each More Loot Bag
    uint256 private todlForMoreLoot = 100000 * (10**decimals());

    uint256 private tokenIdStart = 1;
    uint256 private tokenIdStartMoreLoot = 8001;

    uint256 private tokenIdEnd = 8000;
    uint256 public tokenIdEndMoreLoot = 1316004;
    uint256 private tokenIdEndToodleLoot = 10000;

    // Track claimed airdropped tokens for each Loot bag
    mapping(uint256 => bool) public ogLootClaimedByTokenId;
    mapping(uint256 => bool) public toodleLootClaimedByTokenId;
    mapping(uint256 => bool) public moreLootClaimedByTokenId;

    constructor() Ownable() ERC20("Cryptoodles Toodle Token", "TODL") {
        lootContract = IERC721Enumerable(lootContractAddress);
        toodleContract = IERC721Enumerable(toodleLootContractAddress);
        moreLootContract = IERC721Enumerable(moreLootContractAddress);
    }

    function claimByToodleLootIds(uint256[] memory tokenId) external {
        require(airdropForToodleLootActive, "Air drop for Toodle Loot Bag is not active");

        for(uint256 i = 0; i < tokenId.length; i++){
        
        require(
            _msgSender() == toodleContract.ownerOf(tokenId[i]),
            "Error: A Loot Bag is not in your wallet"
        );

        _claim(tokenId[i], _msgSender(), 1);
        }
    }

    function claimByOGLootIds(uint256[] memory tokenId) external {
        require(airdropForOGLootActive, "Air drop for OG Loot Bag is not active");

        for(uint256 i = 0; i < tokenId.length; i++){
        
        require(
            _msgSender() == lootContract.ownerOf(tokenId[i]),
            "Error: A Loot Bag is not in your wallet"
        );

        _claim(tokenId[i], _msgSender(), 0);
        }
    }

    function claimByMoreLootIds(uint256[] memory tokenId) external {
        require(airdropForMoreLootActive, "Air drop for More Loot Bag is not active");

        for(uint256 i = 0; i < tokenId.length; i++){
        
        require(
            _msgSender() == moreLootContract.ownerOf(tokenId[i]),
            "Error: A Loot Bag is not in your wallet"
        );

        _claim(tokenId[i], _msgSender(), 2);
        }
    }

    // Deflationary mechanism to burn TODL from the caller's address and decrease overall supply
    function burn(uint256 amount) external {
        _burn(_msgSender(), amount * (10**decimals()));
    }

    function _claim(uint256 tokenId, address tokenOwner, uint256 contractId) internal {

        // Logic to claim aidropped tokens from OG Loot Bag
        if(contractId == 0) {
        require(
            tokenId >= tokenIdStart && tokenId <= tokenIdEnd,
            "Error: Invalid tokenId"
        );
        require(
            !ogLootClaimedByTokenId[tokenId],
            "Error: You included a Loot Bag with TODL already claimed for the airdrop"
        );
        
        ogLootClaimedByTokenId[tokenId] = true;
        _mint(tokenOwner, todlForOgLoot);

        }
        // Logic to claim aidropped tokens from Toodle Loot Bag
        else if (contractId == 1) {
        require(
            tokenId >= tokenIdStart && tokenId <= tokenIdEndToodleLoot,
            "Error: Invalid tokenId"
        );
        require(
            !toodleLootClaimedByTokenId[tokenId],
            "Error: You included a Loot Bag with TODL already claimed for the airdrop"
        );
        
        toodleLootClaimedByTokenId[tokenId] = true;
        _mint(tokenOwner, todlForToodleLoot);
        }
        // Logic to claim aidropped tokens from More Loot Bag 
        else if (contractId == 2) {
        require(
            tokenId >= tokenIdStartMoreLoot && tokenId <= tokenIdEndMoreLoot,
            "Error: Invalid tokenId"
        );
        require(
            !moreLootClaimedByTokenId[tokenId],
            "Error: You included a Loot Bag with TODL already claimed for the airdrop"
        );

        moreLootClaimedByTokenId[tokenId] = true;
        _mint(tokenOwner,todlForMoreLoot);
        }
    }

    // Inflationary mechanism to increase supply
    function mint(uint256 amountDisplayValue) external onlyOwner {
        _mint(owner(), amountDisplayValue * (10**decimals()));
    }

    // Pauses or resumes the TODL airdrop for Loot Bags. Used instead of burning TODL from each bag of the air drop for gas savings
    function pauseAirdrop(bool value, uint256 contractId) external onlyOwner {
        if(contractId == 0){
            airdropForOGLootActive = value;
        } else if(contractId == 1){
            airdropForToodleLootActive = value;
        } else if(contractId == 2){
            airdropForMoreLootActive = value;
        }
    }

    // Used in case More Loot bag max estimation is different than the one initialized in the contract
    function setMoreLootEndTokenId(uint256 tokenId) external onlyOwner {
        tokenIdEndMoreLoot = tokenId;
    }

    function setLootContractAddress(address lootContractAddress_)
        external
        onlyOwner
    {
        lootContractAddress = lootContractAddress_;
        lootContract = IERC721Enumerable(lootContractAddress);
    }

    function setToodleLootContractAddress(address lootContractAddress_)
        external
        onlyOwner
    {
        toodleLootContractAddress = lootContractAddress_;
        toodleContract = IERC721Enumerable(toodleLootContractAddress);
    }

    function setMoreLootContractAddress(address lootContractAddress_)
        external
        onlyOwner
    {
        moreLootContractAddress = lootContractAddress_;
        moreLootContract = IERC721Enumerable(moreLootContractAddress);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"airdropForMoreLootActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropForOGLootActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropForToodleLootActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"}],"name":"claimByMoreLootIds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"}],"name":"claimByOGLootIds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"}],"name":"claimByToodleLootIds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lootContract","outputs":[{"internalType":"contract IERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lootContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountDisplayValue","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"moreLootClaimedByTokenId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"moreLootContract","outputs":[{"internalType":"contract IERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"moreLootContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ogLootClaimedByTokenId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"},{"internalType":"uint256","name":"contractId","type":"uint256"}],"name":"pauseAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lootContractAddress_","type":"address"}],"name":"setLootContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lootContractAddress_","type":"address"}],"name":"setMoreLootContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"setMoreLootEndTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lootContractAddress_","type":"address"}],"name":"setToodleLootContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIdEndMoreLoot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toodleContract","outputs":[{"internalType":"contract IERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"toodleLootClaimedByTokenId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toodleLootContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600680546001600160a01b031990811673ff9c1b15b16263c61d017ee9f65c50e4ae0113d717909155600880548216732a16107ea0d28ae822168c8bb3ef5460b1924a78179055600a8054909116731dfe7ca09e99d10835bf73044a23b73fc20623df179055600b80546201010160a01b62ffffff60a01b199091161790556200008c601290565b6200009990600a62000340565b620000a89062e4e1c06200040e565b600c55620000b96012600a62000340565b620000c890624c4b406200040e565b600d55620000d96012600a62000340565b620000e890620186a06200040e565b600e556001600f55611f41601055611f40601155621414a46012556127106013553480156200011657600080fd5b506040518060400160405280601881526020017f43727970746f6f646c657320546f6f646c6520546f6b656e0000000000000000815250604051806040016040528060048152602001631513d11360e21b815250620001846200017e620001fd60201b60201c565b62000201565b81516200019990600490602085019062000251565b508051620001af90600590602084019062000251565b5050600654600780546001600160a01b039283166001600160a01b03199182161790915560085460098054918416918316919091179055600a54600b80549190931691161790555062000483565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200025f9062000430565b90600052602060002090601f016020900481019282620002835760008555620002ce565b82601f106200029e57805160ff1916838001178555620002ce565b82800160010185558215620002ce579182015b82811115620002ce578251825591602001919060010190620002b1565b50620002dc929150620002e0565b5090565b5b80821115620002dc5760008155600101620002e1565b600181815b80851115620003385781600019048211156200031c576200031c6200046d565b808516156200032a57918102915b93841c9390800290620002fc565b509250929050565b60006200035160ff84168362000358565b9392505050565b600082620003695750600162000408565b81620003785750600062000408565b81600181146200039157600281146200039c57620003bc565b600191505062000408565b60ff841115620003b057620003b06200046d565b50506001821b62000408565b5060208310610133831016604e8410600b8410161715620003e1575081810a62000408565b620003ed8383620002f7565b80600019048211156200040457620004046200046d565b0290505b92915050565b60008160001904831182151516156200042b576200042b6200046d565b500290565b600181811c908216806200044557607f821691505b602082108114156200046757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b611bda80620004936000396000f3fe608060405234801561001057600080fd5b50600436106102265760003560e01c8063715018a611610130578063ab1b85ab116100b8578063dd62ed3e1161007c578063dd62ed3e146104d7578063df5aa12914610510578063e28d1ee714610533578063f2fde38b1461053c578063f8e913a51461054f57600080fd5b8063ab1b85ab14610468578063b025e11d1461047b578063b4d406421461049e578063b689e755146104b1578063cab6bcc6146104c457600080fd5b8063992a50de116100ff578063992a50de146103f9578063a0712d681461041c578063a457c2d71461042f578063a8af32e914610442578063a9059cbb1461045557600080fd5b8063715018a6146103c55780638da5cb5b146103cd5780638ed3907b146103de57806395d89b41146103f157600080fd5b8063313ce567116101b357806342966c681161018257806342966c68146103505780634ae04e0514610363578063576aa7eb14610376578063691dedcc1461038957806370a082311461039c57600080fd5b8063313ce5671461030757806335b48afd1461031657806339509351146103295780633e43a2991461033c57600080fd5b80631c54652c116101fa5780631c54652c1461028e5780631c7b8c83146102a357806320c3cdd5146102ce57806322be1bf9146102e157806323b872dd146102f457600080fd5b8062331bf51461022b57806306fdde0314610254578063095ea7b31461026957806318160ddd1461027c575b600080fd5b600b5461023f90600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b61025c610563565b60405161024b919061184c565b61023f61027736600461171f565b6105f5565b6003545b60405190815260200161024b565b6102a161029c366004611664565b61060c565b005b600b546102b6906001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102a16102dc366004611664565b61066b565b6009546102b6906001600160a01b031681565b61023f6103023660046116de565b6106c1565b6040516012815260200161024b565b6007546102b6906001600160a01b031681565b61023f61033736600461171f565b61076b565b600b5461023f90600160b01b900460ff1681565b6102a161035e366004611833565b6107a7565b6102a161037136600461174b565b6107c9565b600a546102b6906001600160a01b031681565b6102a161039736600461174b565b61094d565b6102806103aa366004611664565b6001600160a01b031660009081526001602052604090205490565b6102a1610ad1565b6000546001600160a01b03166102b6565b6102a16103ec366004611664565b610b07565b61025c610b5d565b61023f610407366004611833565b60166020526000908152604090205460ff1681565b6102a161042a366004611833565b610b6c565b61023f61043d36600461171f565b610bc6565b6006546102b6906001600160a01b031681565b61023f61046336600461171f565b610c5f565b6102a161047636600461174b565b610c6c565b61023f610489366004611833565b60156020526000908152604090205460ff1681565b6102a16104ac366004611810565b610dee565b6102a16104bf366004611833565b610e86565b6008546102b6906001600160a01b031681565b6102806104e53660046116a5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61023f61051e366004611833565b60146020526000908152604090205460ff1681565b61028060125481565b6102a161054a366004611664565b610eb5565b600b5461023f90600160a81b900460ff1681565b60606004805461057290611af7565b80601f016020809104026020016040519081016040528092919081815260200182805461059e90611af7565b80156105eb5780601f106105c0576101008083540402835291602001916105eb565b820191906000526020600020905b8154815290600101906020018083116105ce57829003601f168201915b5050505050905090565b6000610602338484610f4d565b5060015b92915050565b6000546001600160a01b0316331461063f5760405162461bcd60e51b81526004016106369061193f565b60405180910390fd5b600880546001600160a01b039092166001600160a01b0319928316811790915560098054909216179055565b6000546001600160a01b031633146106955760405162461bcd60e51b81526004016106369061193f565b600680546001600160a01b039092166001600160a01b0319928316811790915560078054909216179055565b60006106ce848484611072565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156107535760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610636565b6107608533858403610f4d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916106029185906107a29086906119bb565b610f4d565b6107c6336107b76012600a611a16565b6107c19084611ac1565b611241565b50565b600b54600160a01b900460ff166108315760405162461bcd60e51b815260206004820152602660248201527f4169722064726f7020666f72204f47204c6f6f7420426167206973206e6f742060448201526561637469766560d01b6064820152608401610636565b60005b81518110156109495760075482516001600160a01b0390911690636352211e9084908490811061086657610866611b63565b60200260200101516040518263ffffffff1660e01b815260040161088c91815260200190565b60206040518083038186803b1580156108a457600080fd5b505afa1580156108b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108dc9190611688565b6001600160a01b0316336001600160a01b03161461090c5760405162461bcd60e51b815260040161063690611974565b61093782828151811061092157610921611b63565b60200260200101516109303390565b600061138c565b8061094181611b32565b915050610834565b5050565b600b54600160a81b900460ff166109b95760405162461bcd60e51b815260206004820152602a60248201527f4169722064726f7020666f7220546f6f646c65204c6f6f7420426167206973206044820152696e6f742061637469766560b01b6064820152608401610636565b60005b81518110156109495760095482516001600160a01b0390911690636352211e908490849081106109ee576109ee611b63565b60200260200101516040518263ffffffff1660e01b8152600401610a1491815260200190565b60206040518083038186803b158015610a2c57600080fd5b505afa158015610a40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a649190611688565b6001600160a01b0316336001600160a01b031614610a945760405162461bcd60e51b815260040161063690611974565b610abf828281518110610aa957610aa9611b63565b6020026020010151610ab83390565b600161138c565b80610ac981611b32565b9150506109bc565b6000546001600160a01b03163314610afb5760405162461bcd60e51b81526004016106369061193f565b610b056000611535565b565b6000546001600160a01b03163314610b315760405162461bcd60e51b81526004016106369061193f565b600a80546001600160a01b039092166001600160a01b03199283168117909155600b8054909216179055565b60606005805461057290611af7565b6000546001600160a01b03163314610b965760405162461bcd60e51b81526004016106369061193f565b6107c6610bab6000546001600160a01b031690565b610bb76012600a611a16565b610bc19084611ac1565b611585565b3360009081526002602090815260408083206001600160a01b038616845290915281205482811015610c485760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610636565b610c553385858403610f4d565b5060019392505050565b6000610602338484611072565b600b54600160b01b900460ff16610cd65760405162461bcd60e51b815260206004820152602860248201527f4169722064726f7020666f72204d6f7265204c6f6f7420426167206973206e6f604482015267742061637469766560c01b6064820152608401610636565b60005b815181101561094957600b5482516001600160a01b0390911690636352211e90849084908110610d0b57610d0b611b63565b60200260200101516040518263ffffffff1660e01b8152600401610d3191815260200190565b60206040518083038186803b158015610d4957600080fd5b505afa158015610d5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d819190611688565b6001600160a01b0316336001600160a01b031614610db15760405162461bcd60e51b815260040161063690611974565b610ddc828281518110610dc657610dc6611b63565b6020026020010151610dd53390565b600261138c565b80610de681611b32565b915050610cd9565b6000546001600160a01b03163314610e185760405162461bcd60e51b81526004016106369061193f565b80610e3a57600b8054831515600160a01b0260ff60a01b199091161790555050565b8060011415610e6057600b8054831515600160a81b0260ff60a81b199091161790555050565b806002141561094957600b8054831515600160b01b0260ff60b01b199091161790555050565b6000546001600160a01b03163314610eb05760405162461bcd60e51b81526004016106369061193f565b601255565b6000546001600160a01b03163314610edf5760405162461bcd60e51b81526004016106369061193f565b6001600160a01b038116610f445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610636565b6107c681611535565b6001600160a01b038316610faf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610636565b6001600160a01b0382166110105760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610636565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166110d65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610636565b6001600160a01b0382166111385760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610636565b6001600160a01b038316600090815260016020526040902054818110156111b05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610636565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906111e79084906119bb565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161123391815260200190565b60405180910390a350505050565b6001600160a01b0382166112a15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610636565b6001600160a01b038216600090815260016020526040902054818110156113155760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610636565b6001600160a01b0383166000908152600160205260408120838303905560038054849290611344908490611ae0565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611065565b505050565b8061141757600f5483101580156113a557506011548311155b6113c15760405162461bcd60e51b8152600401610636906118a1565b60008381526014602052604090205460ff16156113f05760405162461bcd60e51b8152600401610636906118d1565b6000838152601460205260409020805460ff19166001179055600d54611387908390611585565b80600114156114a657600f54831015801561143457506013548311155b6114505760405162461bcd60e51b8152600401610636906118a1565b60008381526015602052604090205460ff161561147f5760405162461bcd60e51b8152600401610636906118d1565b6000838152601560205260409020805460ff19166001179055600c54611387908390611585565b80600214156113875760105483101580156114c357506012548311155b6114df5760405162461bcd60e51b8152600401610636906118a1565b60008381526016602052604090205460ff161561150e5760405162461bcd60e51b8152600401610636906118d1565b6000838152601660205260409020805460ff19166001179055600e54611387908390611585565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166115db5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610636565b80600360008282546115ed91906119bb565b90915550506001600160a01b0382166000908152600160205260408120805483929061161a9084906119bb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006020828403121561167657600080fd5b813561168181611b8f565b9392505050565b60006020828403121561169a57600080fd5b815161168181611b8f565b600080604083850312156116b857600080fd5b82356116c381611b8f565b915060208301356116d381611b8f565b809150509250929050565b6000806000606084860312156116f357600080fd5b83356116fe81611b8f565b9250602084013561170e81611b8f565b929592945050506040919091013590565b6000806040838503121561173257600080fd5b823561173d81611b8f565b946020939093013593505050565b6000602080838503121561175e57600080fd5b823567ffffffffffffffff8082111561177657600080fd5b818501915085601f83011261178a57600080fd5b81358181111561179c5761179c611b79565b8060051b604051601f19603f830116810181811085821117156117c1576117c1611b79565b604052828152858101935084860182860187018a10156117e057600080fd5b600095505b838610156118035780358552600195909501949386019386016117e5565b5098975050505050505050565b6000806040838503121561182357600080fd5b8235801515811461173d57600080fd5b60006020828403121561184557600080fd5b5035919050565b600060208083528351808285015260005b818110156118795785810183015185820160400152820161185d565b8181111561188b576000604083870101525b50601f01601f1916929092016040019392505050565b602080825260169082015275115c9c9bdc8e88125b9d985b1a59081d1bdad95b925960521b604082015260600190565b60208082526048908201527f4572726f723a20596f7520696e636c756465642061204c6f6f7420426167207760408201527f69746820544f444c20616c726561647920636c61696d656420666f722074686560608201526702061697264726f760c41b608082015260a00190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526027908201527f4572726f723a2041204c6f6f7420426167206973206e6f7420696e20796f7572604082015266081dd85b1b195d60ca1b606082015260800190565b600082198211156119ce576119ce611b4d565b500190565b600181815b80851115611a0e5781600019048211156119f4576119f4611b4d565b80851615611a0157918102915b93841c93908002906119d8565b509250929050565b600061168160ff841683600082611a2f57506001610606565b81611a3c57506000610606565b8160018114611a525760028114611a5c57611a78565b6001915050610606565b60ff841115611a6d57611a6d611b4d565b50506001821b610606565b5060208310610133831016604e8410600b8410161715611a9b575081810a610606565b611aa583836119d3565b8060001904821115611ab957611ab9611b4d565b029392505050565b6000816000190483118215151615611adb57611adb611b4d565b500290565b600082821015611af257611af2611b4d565b500390565b600181811c90821680611b0b57607f821691505b60208210811415611b2c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b4657611b46611b4d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146107c657600080fdfea26469706673582212209afade6b4ae403c8d021d39927dd08c798d23d3f0534bade7a23bb7e63f511ab64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102265760003560e01c8063715018a611610130578063ab1b85ab116100b8578063dd62ed3e1161007c578063dd62ed3e146104d7578063df5aa12914610510578063e28d1ee714610533578063f2fde38b1461053c578063f8e913a51461054f57600080fd5b8063ab1b85ab14610468578063b025e11d1461047b578063b4d406421461049e578063b689e755146104b1578063cab6bcc6146104c457600080fd5b8063992a50de116100ff578063992a50de146103f9578063a0712d681461041c578063a457c2d71461042f578063a8af32e914610442578063a9059cbb1461045557600080fd5b8063715018a6146103c55780638da5cb5b146103cd5780638ed3907b146103de57806395d89b41146103f157600080fd5b8063313ce567116101b357806342966c681161018257806342966c68146103505780634ae04e0514610363578063576aa7eb14610376578063691dedcc1461038957806370a082311461039c57600080fd5b8063313ce5671461030757806335b48afd1461031657806339509351146103295780633e43a2991461033c57600080fd5b80631c54652c116101fa5780631c54652c1461028e5780631c7b8c83146102a357806320c3cdd5146102ce57806322be1bf9146102e157806323b872dd146102f457600080fd5b8062331bf51461022b57806306fdde0314610254578063095ea7b31461026957806318160ddd1461027c575b600080fd5b600b5461023f90600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b61025c610563565b60405161024b919061184c565b61023f61027736600461171f565b6105f5565b6003545b60405190815260200161024b565b6102a161029c366004611664565b61060c565b005b600b546102b6906001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102a16102dc366004611664565b61066b565b6009546102b6906001600160a01b031681565b61023f6103023660046116de565b6106c1565b6040516012815260200161024b565b6007546102b6906001600160a01b031681565b61023f61033736600461171f565b61076b565b600b5461023f90600160b01b900460ff1681565b6102a161035e366004611833565b6107a7565b6102a161037136600461174b565b6107c9565b600a546102b6906001600160a01b031681565b6102a161039736600461174b565b61094d565b6102806103aa366004611664565b6001600160a01b031660009081526001602052604090205490565b6102a1610ad1565b6000546001600160a01b03166102b6565b6102a16103ec366004611664565b610b07565b61025c610b5d565b61023f610407366004611833565b60166020526000908152604090205460ff1681565b6102a161042a366004611833565b610b6c565b61023f61043d36600461171f565b610bc6565b6006546102b6906001600160a01b031681565b61023f61046336600461171f565b610c5f565b6102a161047636600461174b565b610c6c565b61023f610489366004611833565b60156020526000908152604090205460ff1681565b6102a16104ac366004611810565b610dee565b6102a16104bf366004611833565b610e86565b6008546102b6906001600160a01b031681565b6102806104e53660046116a5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61023f61051e366004611833565b60146020526000908152604090205460ff1681565b61028060125481565b6102a161054a366004611664565b610eb5565b600b5461023f90600160a81b900460ff1681565b60606004805461057290611af7565b80601f016020809104026020016040519081016040528092919081815260200182805461059e90611af7565b80156105eb5780601f106105c0576101008083540402835291602001916105eb565b820191906000526020600020905b8154815290600101906020018083116105ce57829003601f168201915b5050505050905090565b6000610602338484610f4d565b5060015b92915050565b6000546001600160a01b0316331461063f5760405162461bcd60e51b81526004016106369061193f565b60405180910390fd5b600880546001600160a01b039092166001600160a01b0319928316811790915560098054909216179055565b6000546001600160a01b031633146106955760405162461bcd60e51b81526004016106369061193f565b600680546001600160a01b039092166001600160a01b0319928316811790915560078054909216179055565b60006106ce848484611072565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156107535760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610636565b6107608533858403610f4d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916106029185906107a29086906119bb565b610f4d565b6107c6336107b76012600a611a16565b6107c19084611ac1565b611241565b50565b600b54600160a01b900460ff166108315760405162461bcd60e51b815260206004820152602660248201527f4169722064726f7020666f72204f47204c6f6f7420426167206973206e6f742060448201526561637469766560d01b6064820152608401610636565b60005b81518110156109495760075482516001600160a01b0390911690636352211e9084908490811061086657610866611b63565b60200260200101516040518263ffffffff1660e01b815260040161088c91815260200190565b60206040518083038186803b1580156108a457600080fd5b505afa1580156108b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108dc9190611688565b6001600160a01b0316336001600160a01b03161461090c5760405162461bcd60e51b815260040161063690611974565b61093782828151811061092157610921611b63565b60200260200101516109303390565b600061138c565b8061094181611b32565b915050610834565b5050565b600b54600160a81b900460ff166109b95760405162461bcd60e51b815260206004820152602a60248201527f4169722064726f7020666f7220546f6f646c65204c6f6f7420426167206973206044820152696e6f742061637469766560b01b6064820152608401610636565b60005b81518110156109495760095482516001600160a01b0390911690636352211e908490849081106109ee576109ee611b63565b60200260200101516040518263ffffffff1660e01b8152600401610a1491815260200190565b60206040518083038186803b158015610a2c57600080fd5b505afa158015610a40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a649190611688565b6001600160a01b0316336001600160a01b031614610a945760405162461bcd60e51b815260040161063690611974565b610abf828281518110610aa957610aa9611b63565b6020026020010151610ab83390565b600161138c565b80610ac981611b32565b9150506109bc565b6000546001600160a01b03163314610afb5760405162461bcd60e51b81526004016106369061193f565b610b056000611535565b565b6000546001600160a01b03163314610b315760405162461bcd60e51b81526004016106369061193f565b600a80546001600160a01b039092166001600160a01b03199283168117909155600b8054909216179055565b60606005805461057290611af7565b6000546001600160a01b03163314610b965760405162461bcd60e51b81526004016106369061193f565b6107c6610bab6000546001600160a01b031690565b610bb76012600a611a16565b610bc19084611ac1565b611585565b3360009081526002602090815260408083206001600160a01b038616845290915281205482811015610c485760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610636565b610c553385858403610f4d565b5060019392505050565b6000610602338484611072565b600b54600160b01b900460ff16610cd65760405162461bcd60e51b815260206004820152602860248201527f4169722064726f7020666f72204d6f7265204c6f6f7420426167206973206e6f604482015267742061637469766560c01b6064820152608401610636565b60005b815181101561094957600b5482516001600160a01b0390911690636352211e90849084908110610d0b57610d0b611b63565b60200260200101516040518263ffffffff1660e01b8152600401610d3191815260200190565b60206040518083038186803b158015610d4957600080fd5b505afa158015610d5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d819190611688565b6001600160a01b0316336001600160a01b031614610db15760405162461bcd60e51b815260040161063690611974565b610ddc828281518110610dc657610dc6611b63565b6020026020010151610dd53390565b600261138c565b80610de681611b32565b915050610cd9565b6000546001600160a01b03163314610e185760405162461bcd60e51b81526004016106369061193f565b80610e3a57600b8054831515600160a01b0260ff60a01b199091161790555050565b8060011415610e6057600b8054831515600160a81b0260ff60a81b199091161790555050565b806002141561094957600b8054831515600160b01b0260ff60b01b199091161790555050565b6000546001600160a01b03163314610eb05760405162461bcd60e51b81526004016106369061193f565b601255565b6000546001600160a01b03163314610edf5760405162461bcd60e51b81526004016106369061193f565b6001600160a01b038116610f445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610636565b6107c681611535565b6001600160a01b038316610faf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610636565b6001600160a01b0382166110105760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610636565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166110d65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610636565b6001600160a01b0382166111385760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610636565b6001600160a01b038316600090815260016020526040902054818110156111b05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610636565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906111e79084906119bb565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161123391815260200190565b60405180910390a350505050565b6001600160a01b0382166112a15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610636565b6001600160a01b038216600090815260016020526040902054818110156113155760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610636565b6001600160a01b0383166000908152600160205260408120838303905560038054849290611344908490611ae0565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611065565b505050565b8061141757600f5483101580156113a557506011548311155b6113c15760405162461bcd60e51b8152600401610636906118a1565b60008381526014602052604090205460ff16156113f05760405162461bcd60e51b8152600401610636906118d1565b6000838152601460205260409020805460ff19166001179055600d54611387908390611585565b80600114156114a657600f54831015801561143457506013548311155b6114505760405162461bcd60e51b8152600401610636906118a1565b60008381526015602052604090205460ff161561147f5760405162461bcd60e51b8152600401610636906118d1565b6000838152601560205260409020805460ff19166001179055600c54611387908390611585565b80600214156113875760105483101580156114c357506012548311155b6114df5760405162461bcd60e51b8152600401610636906118a1565b60008381526016602052604090205460ff161561150e5760405162461bcd60e51b8152600401610636906118d1565b6000838152601660205260409020805460ff19166001179055600e54611387908390611585565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166115db5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610636565b80600360008282546115ed91906119bb565b90915550506001600160a01b0382166000908152600160205260408120805483929061161a9084906119bb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006020828403121561167657600080fd5b813561168181611b8f565b9392505050565b60006020828403121561169a57600080fd5b815161168181611b8f565b600080604083850312156116b857600080fd5b82356116c381611b8f565b915060208301356116d381611b8f565b809150509250929050565b6000806000606084860312156116f357600080fd5b83356116fe81611b8f565b9250602084013561170e81611b8f565b929592945050506040919091013590565b6000806040838503121561173257600080fd5b823561173d81611b8f565b946020939093013593505050565b6000602080838503121561175e57600080fd5b823567ffffffffffffffff8082111561177657600080fd5b818501915085601f83011261178a57600080fd5b81358181111561179c5761179c611b79565b8060051b604051601f19603f830116810181811085821117156117c1576117c1611b79565b604052828152858101935084860182860187018a10156117e057600080fd5b600095505b838610156118035780358552600195909501949386019386016117e5565b5098975050505050505050565b6000806040838503121561182357600080fd5b8235801515811461173d57600080fd5b60006020828403121561184557600080fd5b5035919050565b600060208083528351808285015260005b818110156118795785810183015185820160400152820161185d565b8181111561188b576000604083870101525b50601f01601f1916929092016040019392505050565b602080825260169082015275115c9c9bdc8e88125b9d985b1a59081d1bdad95b925960521b604082015260600190565b60208082526048908201527f4572726f723a20596f7520696e636c756465642061204c6f6f7420426167207760408201527f69746820544f444c20616c726561647920636c61696d656420666f722074686560608201526702061697264726f760c41b608082015260a00190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526027908201527f4572726f723a2041204c6f6f7420426167206973206e6f7420696e20796f7572604082015266081dd85b1b195d60ca1b606082015260800190565b600082198211156119ce576119ce611b4d565b500190565b600181815b80851115611a0e5781600019048211156119f4576119f4611b4d565b80851615611a0157918102915b93841c93908002906119d8565b509250929050565b600061168160ff841683600082611a2f57506001610606565b81611a3c57506000610606565b8160018114611a525760028114611a5c57611a78565b6001915050610606565b60ff841115611a6d57611a6d611b4d565b50506001821b610606565b5060208310610133831016604e8410600b8410161715611a9b575081810a610606565b611aa583836119d3565b8060001904821115611ab957611ab9611b4d565b029392505050565b6000816000190483118215151615611adb57611adb611b4d565b500290565b600082821015611af257611af2611b4d565b500390565b600181811c90821680611b0b57607f821691505b60208210811415611b2c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b4657611b46611b4d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146107c657600080fdfea26469706673582212209afade6b4ae403c8d021d39927dd08c798d23d3f0534bade7a23bb7e63f511ab64736f6c63430008070033

Deployed Bytecode Sourcemap

26277:6602:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26775:41;;;;;-1:-1:-1;;;26775:41:0;;;;;;;;;3731:14:1;;3724:22;3706:41;;3694:2;3679:18;26775:41:0;;;;;;;;8418:100;;;:::i;:::-;;;;;;;:::i;10726:210::-;;;;;;:::i;:::-;;:::i;9538:108::-;9626:12;;9538:108;;;11979:25:1;;;11967:2;11952:18;9538:108:0;11833:177:1;32374:249:0;;;;;;:::i;:::-;;:::i;:::-;;26725:41;;;;;-1:-1:-1;;;;;26725:41:0;;;;;;-1:-1:-1;;;;;3522:32:1;;;3504:51;;3492:2;3477:18;26725:41:0;3358:203:1;32137:229:0;;;;;;:::i;:::-;;:::i;26578:39::-;;;;;-1:-1:-1;;;;;26578:39:0;;;11418:529;;;;;;:::i;:::-;;:::i;9380:93::-;;;9463:2;12157:36:1;;12145:2;12130:18;9380:93:0;12015:184:1;26431:37:0;;;;;-1:-1:-1;;;;;26431:37:0;;;12356:297;;;;;;:::i;:::-;;:::i;26875:43::-;;;;;-1:-1:-1;;;26875:43:0;;;;;;29471:104;;;;;;:::i;:::-;;:::i;28495:426::-;;;;;;:::i;:::-;;:::i;26626:92::-;;;;;-1:-1:-1;;;;;26626:92:0;;;28047:440;;;;;;:::i;:::-;;:::i;9709:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9860:18:0;9828:7;9860:18;;;:9;:18;;;;;;;9709:177;2402:94;;;:::i;1751:87::-;1797:7;1824:6;-1:-1:-1;;;;;1824:6:0;1751:87;;32631:245;;;;;;:::i;:::-;;:::i;8637:104::-;;;:::i;27692:56::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;31292:133;;;;;;:::i;:::-;;:::i;13156:482::-;;;;;;:::i;:::-;;:::i;26336:88::-;;;;;-1:-1:-1;;;;;26336:88:0;;;10099:216;;;;;;:::i;:::-;;:::i;28929:436::-;;;;;;:::i;:::-;;:::i;27627:58::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;31566:337;;;;;;:::i;:::-;;:::i;32015:114::-;;;;;;:::i;:::-;;:::i;26477:94::-;;;;;-1:-1:-1;;;;;26477:94:0;;;10378:201;;;;;;:::i;:::-;-1:-1:-1;;;;;10544:18:0;;;10512:7;10544:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10378:201;27566:54;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27405:43;;;;;;2651:229;;;;;;:::i;:::-;;:::i;26823:45::-;;;;;-1:-1:-1;;;26823:45:0;;;;;;8418:100;8472:13;8505:5;8498:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8418:100;:::o;10726:210::-;10845:4;10867:39;682:10;10890:7;10899:6;10867:8;:39::i;:::-;-1:-1:-1;10924:4:0;10726:210;;;;;:::o;32374:249::-;1797:7;1824:6;-1:-1:-1;;;;;1824:6:0;682:10;1971:23;1963:68;;;;-1:-1:-1;;;1963:68:0;;;;;;;:::i;:::-;;;;;;;;;32495:25:::1;:48:::0;;-1:-1:-1;;;;;32495:48:0;;::::1;-1:-1:-1::0;;;;;;32495:48:0;;::::1;::::0;::::1;::::0;;;32554:14:::1;:61:::0;;;;::::1;;::::0;;32374:249::o;32137:229::-;1797:7;1824:6;-1:-1:-1;;;;;1824:6:0;682:10;1971:23;1963:68;;;;-1:-1:-1;;;1963:68:0;;;;;;;:::i;:::-;32252:19:::1;:42:::0;;-1:-1:-1;;;;;32252:42:0;;::::1;-1:-1:-1::0;;;;;;32252:42:0;;::::1;::::0;::::1;::::0;;;32305:12:::1;:53:::0;;;;::::1;;::::0;;32137:229::o;11418:529::-;11558:4;11575:36;11585:6;11593:9;11604:6;11575:9;:36::i;:::-;-1:-1:-1;;;;;11651:19:0;;11624:24;11651:19;;;:11;:19;;;;;;;;682:10;11651:33;;;;;;;;11717:26;;;;11695:116;;;;-1:-1:-1;;;11695:116:0;;7651:2:1;11695:116:0;;;7633:21:1;7690:2;7670:18;;;7663:30;7729:34;7709:18;;;7702:62;-1:-1:-1;;;7780:18:1;;;7773:38;7828:19;;11695:116:0;7449:404:1;11695:116:0;11847:57;11856:6;682:10;11897:6;11878:16;:25;11847:8;:57::i;:::-;-1:-1:-1;11935:4:0;;11418:529;-1:-1:-1;;;;11418:529:0:o;12356:297::-;682:10;12471:4;12565:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12565:34:0;;;;;;;;;;12471:4;;12493:130;;12543:7;;12565:47;;12602:10;;12565:47;:::i;:::-;12493:8;:130::i;29471:104::-;29521:46;682:10;29551:14;9463:2;29551;:14;:::i;:::-;29541:25;;:6;:25;:::i;:::-;29521:5;:46::i;:::-;29471:104;:::o;28495:426::-;28575:22;;-1:-1:-1;;;28575:22:0;;;;28567:73;;;;-1:-1:-1;;;28567:73:0;;9231:2:1;28567:73:0;;;9213:21:1;9270:2;9250:18;;;9243:30;9309:34;9289:18;;;9282:62;-1:-1:-1;;;9360:18:1;;;9353:36;9406:19;;28567:73:0;9029:402:1;28567:73:0;28657:9;28653:261;28676:7;:14;28672:1;:18;28653:261;;;28755:12;;28776:10;;-1:-1:-1;;;;;28755:12:0;;;;:20;;28776:7;;28784:1;;28776:10;;;;;;:::i;:::-;;;;;;;28755:32;;;;;;;;;;;;;11979:25:1;;11967:2;11952:18;;11833:177;28755:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;28739:48:0;682:10;-1:-1:-1;;;;;28739:48:0;;28717:137;;;;-1:-1:-1;;;28717:137:0;;;;;;;:::i;:::-;28867:35;28874:7;28882:1;28874:10;;;;;;;;:::i;:::-;;;;;;;28886:12;682:10;;602:98;28886:12;28900:1;28867:6;:35::i;:::-;28692:3;;;;:::i;:::-;;;;28653:261;;;;28495:426;:::o;28047:440::-;28131:26;;-1:-1:-1;;;28131:26:0;;;;28123:81;;;;-1:-1:-1;;;28123:81:0;;10044:2:1;28123:81:0;;;10026:21:1;10083:2;10063:18;;;10056:30;10122:34;10102:18;;;10095:62;-1:-1:-1;;;10173:18:1;;;10166:40;10223:19;;28123:81:0;9842:406:1;28123:81:0;28221:9;28217:263;28240:7;:14;28236:1;:18;28217:263;;;28319:14;;28342:10;;-1:-1:-1;;;;;28319:14:0;;;;:22;;28342:7;;28350:1;;28342:10;;;;;;:::i;:::-;;;;;;;28319:34;;;;;;;;;;;;;11979:25:1;;11967:2;11952:18;;11833:177;28319:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;28303:50:0;682:10;-1:-1:-1;;;;;28303:50:0;;28281:139;;;;-1:-1:-1;;;28281:139:0;;;;;;;:::i;:::-;28433:35;28440:7;28448:1;28440:10;;;;;;;;:::i;:::-;;;;;;;28452:12;682:10;;602:98;28452:12;28466:1;28433:6;:35::i;:::-;28256:3;;;;:::i;:::-;;;;28217:263;;2402:94;1797:7;1824:6;-1:-1:-1;;;;;1824:6:0;682:10;1971:23;1963:68;;;;-1:-1:-1;;;1963:68:0;;;;;;;:::i;:::-;2467:21:::1;2485:1;2467:9;:21::i;:::-;2402:94::o:0;32631:245::-;1797:7;1824:6;-1:-1:-1;;;;;1824:6:0;682:10;1971:23;1963:68;;;;-1:-1:-1;;;1963:68:0;;;;;;;:::i;:::-;32750:23:::1;:46:::0;;-1:-1:-1;;;;;32750:46:0;;::::1;-1:-1:-1::0;;;;;;32750:46:0;;::::1;::::0;::::1;::::0;;;32807:16:::1;:61:::0;;;;::::1;;::::0;;32631:245::o;8637:104::-;8693:13;8726:7;8719:14;;;;;:::i;31292:133::-;1797:7;1824:6;-1:-1:-1;;;;;1824:6:0;682:10;1971:23;1963:68;;;;-1:-1:-1;;;1963:68:0;;;;;;;:::i;:::-;31364:53:::1;31370:7;1797::::0;1824:6;-1:-1:-1;;;;;1824:6:0;;1751:87;31370:7:::1;31401:14;9463:2:::0;31401::::1;:14;:::i;:::-;31379:37;::::0;:18;:37:::1;:::i;:::-;31364:5;:53::i;13156:482::-:0;682:10;13276:4;13325:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13325:34:0;;;;;;;;;;13392:35;;;;13370:122;;;;-1:-1:-1;;;13370:122:0;;11269:2:1;13370:122:0;;;11251:21:1;11308:2;11288:18;;;11281:30;11347:34;11327:18;;;11320:62;-1:-1:-1;;;11398:18:1;;;11391:35;11443:19;;13370:122:0;11067:401:1;13370:122:0;13528:67;682:10;13551:7;13579:15;13560:16;:34;13528:8;:67::i;:::-;-1:-1:-1;13626:4:0;;13156:482;-1:-1:-1;;;13156:482:0:o;10099:216::-;10221:4;10243:42;682:10;10267:9;10278:6;10243:9;:42::i;28929:436::-;29011:24;;-1:-1:-1;;;29011:24:0;;;;29003:77;;;;-1:-1:-1;;;29003:77:0;;10860:2:1;29003:77:0;;;10842:21:1;10899:2;10879:18;;;10872:30;10938:34;10918:18;;;10911:62;-1:-1:-1;;;10989:18:1;;;10982:38;11037:19;;29003:77:0;10658:404:1;29003:77:0;29097:9;29093:265;29116:7;:14;29112:1;:18;29093:265;;;29195:16;;29220:10;;-1:-1:-1;;;;;29195:16:0;;;;:24;;29220:7;;29228:1;;29220:10;;;;;;:::i;:::-;;;;;;;29195:36;;;;;;;;;;;;;11979:25:1;;11967:2;11952:18;;11833:177;29195:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;29179:52:0;682:10;-1:-1:-1;;;;;29179:52:0;;29157:141;;;;-1:-1:-1;;;29157:141:0;;;;;;;:::i;:::-;29311:35;29318:7;29326:1;29318:10;;;;;;;;:::i;:::-;;;;;;;29330:12;682:10;;602:98;29330:12;29344:1;29311:6;:35::i;:::-;29132:3;;;;:::i;:::-;;;;29093:265;;31566:337;1797:7;1824:6;-1:-1:-1;;;;;1824:6:0;682:10;1971:23;1963:68;;;;-1:-1:-1;;;1963:68:0;;;;;;;:::i;:::-;31653:15;31650:246:::1;;31684:22;:30:::0;;;::::1;;-1:-1:-1::0;;;31684:30:0::1;-1:-1:-1::0;;;;31684:30:0;;::::1;;::::0;;28653:261;28495:426;:::o;31650:246::-:1;31735:10;31749:1;31735:15;31732:164;;;31766:26;:34:::0;;;::::1;;-1:-1:-1::0;;;31766:34:0::1;-1:-1:-1::0;;;;31766:34:0;;::::1;;::::0;;28653:261;28495:426;:::o;31732:164::-:1;31821:10;31835:1;31821:15;31818:78;;;31852:24;:32:::0;;;::::1;;-1:-1:-1::0;;;31852:32:0::1;-1:-1:-1::0;;;;31852:32:0;;::::1;;::::0;;31566:337;;:::o;32015:114::-;1797:7;1824:6;-1:-1:-1;;;;;1824:6:0;682:10;1971:23;1963:68;;;;-1:-1:-1;;;1963:68:0;;;;;;;:::i;:::-;32093:18:::1;:28:::0;32015:114::o;2651:229::-;1797:7;1824:6;-1:-1:-1;;;;;1824:6:0;682:10;1971:23;1963:68;;;;-1:-1:-1;;;1963:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2754:22:0;::::1;2732:110;;;::::0;-1:-1:-1;;;2732:110:0;;5602:2:1;2732:110:0::1;::::0;::::1;5584:21:1::0;5641:2;5621:18;;;5614:30;5680:34;5660:18;;;5653:62;-1:-1:-1;;;5731:18:1;;;5724:36;5777:19;;2732:110:0::1;5400:402:1::0;2732:110:0::1;2853:19;2863:8;2853:9;:19::i;16946:380::-:0;-1:-1:-1;;;;;17082:19:0;;17074:68;;;;-1:-1:-1;;;17074:68:0;;10455:2:1;17074:68:0;;;10437:21:1;10494:2;10474:18;;;10467:30;10533:34;10513:18;;;10506:62;-1:-1:-1;;;10584:18:1;;;10577:34;10628:19;;17074:68:0;10253:400:1;17074:68:0;-1:-1:-1;;;;;17161:21:0;;17153:68;;;;-1:-1:-1;;;17153:68:0;;6009:2:1;17153:68:0;;;5991:21:1;6048:2;6028:18;;;6021:30;6087:34;6067:18;;;6060:62;-1:-1:-1;;;6138:18:1;;;6131:32;6180:19;;17153:68:0;5807:398:1;17153:68:0;-1:-1:-1;;;;;17234:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17286:32;;11979:25:1;;;17286:32:0;;11952:18:1;17286:32:0;;;;;;;;16946:380;;;:::o;14128:770::-;-1:-1:-1;;;;;14268:20:0;;14260:70;;;;-1:-1:-1;;;14260:70:0;;9638:2:1;14260:70:0;;;9620:21:1;9677:2;9657:18;;;9650:30;9716:34;9696:18;;;9689:62;-1:-1:-1;;;9767:18:1;;;9760:35;9812:19;;14260:70:0;9436:401:1;14260:70:0;-1:-1:-1;;;;;14349:23:0;;14341:71;;;;-1:-1:-1;;;14341:71:0;;4795:2:1;14341:71:0;;;4777:21:1;4834:2;4814:18;;;4807:30;4873:34;4853:18;;;4846:62;-1:-1:-1;;;4924:18:1;;;4917:33;4967:19;;14341:71:0;4593:399:1;14341:71:0;-1:-1:-1;;;;;14509:17:0;;14485:21;14509:17;;;:9;:17;;;;;;14559:23;;;;14537:111;;;;-1:-1:-1;;;14537:111:0;;6412:2:1;14537:111:0;;;6394:21:1;6451:2;6431:18;;;6424:30;6490:34;6470:18;;;6463:62;-1:-1:-1;;;6541:18:1;;;6534:36;6587:19;;14537:111:0;6210:402:1;14537:111:0;-1:-1:-1;;;;;14684:17:0;;;;;;;:9;:17;;;;;;14704:22;;;14684:42;;14748:20;;;;;;;;:30;;14720:6;;14684:17;14748:30;;14720:6;;14748:30;:::i;:::-;;;;;;;;14813:9;-1:-1:-1;;;;;14796:35:0;14805:6;-1:-1:-1;;;;;14796:35:0;;14824:6;14796:35;;;;11979:25:1;;11967:2;11952:18;;11833:177;14796:35:0;;;;;;;;14249:649;14128:770;;;:::o;15917:591::-;-1:-1:-1;;;;;16001:21:0;;15993:67;;;;-1:-1:-1;;;15993:67:0;;8829:2:1;15993:67:0;;;8811:21:1;8868:2;8848:18;;;8841:30;8907:34;8887:18;;;8880:62;-1:-1:-1;;;8958:18:1;;;8951:31;8999:19;;15993:67:0;8627:397:1;15993:67:0;-1:-1:-1;;;;;16160:18:0;;16135:22;16160:18;;;:9;:18;;;;;;16197:24;;;;16189:71;;;;-1:-1:-1;;;16189:71:0;;5199:2:1;16189:71:0;;;5181:21:1;5238:2;5218:18;;;5211:30;5277:34;5257:18;;;5250:62;-1:-1:-1;;;5328:18:1;;;5321:32;5370:19;;16189:71:0;4997:398:1;16189:71:0;-1:-1:-1;;;;;16296:18:0;;;;;;:9;:18;;;;;16317:23;;;16296:44;;16362:12;:22;;16334:6;;16296:18;16362:22;;16334:6;;16362:22;:::i;:::-;;;;-1:-1:-1;;16402:37:0;;11979:25:1;;;16428:1:0;;-1:-1:-1;;;;;16402:37:0;;;;;11967:2:1;11952:18;16402:37:0;11833:177:1;16452:48:0;15982:526;15917:591;;:::o;29583:1651::-;29742:15;29739:1488;;29803:12;;29792:7;:23;;:48;;;;;29830:10;;29819:7;:21;;29792:48;29770:120;;;;-1:-1:-1;;;29770:120:0;;;;;;;:::i;:::-;29924:31;;;;:22;:31;;;;;;;;29923:32;29901:154;;;;-1:-1:-1;;;29901:154:0;;;;;;;:::i;:::-;30076:31;;;;:22;:31;;;;;:38;;-1:-1:-1;;30076:38:0;30110:4;30076:38;;;30143:13;;30125:32;;30131:10;;30125:5;:32::i;29739:1488::-;30255:10;30269:1;30255:15;30251:976;;;30316:12;;30305:7;:23;;:58;;;;;30343:20;;30332:7;:31;;30305:58;30283:130;;;;-1:-1:-1;;;30283:130:0;;;;;;;:::i;:::-;30447:35;;;;:26;:35;;;;;;;;30446:36;30424:158;;;;-1:-1:-1;;;30424:158:0;;;;;;;:::i;:::-;30603:35;;;;:26;:35;;;;;:42;;-1:-1:-1;;30603:42:0;30641:4;30603:42;;;30674:17;;30656:36;;30662:10;;30656:5;:36::i;30251:976::-;30787:10;30801:1;30787:15;30783:444;;;30848:20;;30837:7;:31;;:64;;;;;30883:18;;30872:7;:29;;30837:64;30815:136;;;;-1:-1:-1;;;30815:136:0;;;;;;;:::i;:::-;30985:33;;;;:24;:33;;;;;;;;30984:34;30962:156;;;;-1:-1:-1;;;30962:156:0;;;;;;;:::i;:::-;31131:33;;;;:24;:33;;;;;:40;;-1:-1:-1;;31131:40:0;31167:4;31131:40;;;31199:15;;31182:33;;31188:10;;31182:5;:33::i;2888:173::-;2944:16;2963:6;;-1:-1:-1;;;;;2980:17:0;;;-1:-1:-1;;;;;;2980:17:0;;;;;;3013:40;;2963:6;;;;;;;3013:40;;2944:16;3013:40;2933:128;2888:173;:::o;15185:399::-;-1:-1:-1;;;;;15269:21:0;;15261:65;;;;-1:-1:-1;;;15261:65:0;;11675:2:1;15261:65:0;;;11657:21:1;11714:2;11694:18;;;11687:30;11753:33;11733:18;;;11726:61;11804:18;;15261:65:0;11473:355:1;15261:65:0;15417:6;15401:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15434:18:0;;;;;;:9;:18;;;;;:28;;15456:6;;15434:18;:28;;15456:6;;15434:28;:::i;:::-;;;;-1:-1:-1;;15478:37:0;;11979:25:1;;;-1:-1:-1;;;;;15478:37:0;;;15495:1;;15478:37;;11967:2:1;11952:18;15478:37:0;;;;;;;28653:261;28495:426;:::o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;:::-;250:5;14:247;-1:-1:-1;;;14:247:1:o;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:52;;;405:1;402;395:12;357:52;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:52;;;667:1;664;657:12;619:52;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;522:388;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:52;;;1077:1;1074;1067:12;1029:52;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;915:456;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;915:456::o;1376:315::-;1444:6;1452;1505:2;1493:9;1484:7;1480:23;1476:32;1473:52;;;1521:1;1518;1511:12;1473:52;1560:9;1547:23;1579:31;1604:5;1579:31;:::i;:::-;1629:5;1681:2;1666:18;;;;1653:32;;-1:-1:-1;;;1376:315:1:o;1696:1126::-;1780:6;1811:2;1854;1842:9;1833:7;1829:23;1825:32;1822:52;;;1870:1;1867;1860:12;1822:52;1910:9;1897:23;1939:18;1980:2;1972:6;1969:14;1966:34;;;1996:1;1993;1986:12;1966:34;2034:6;2023:9;2019:22;2009:32;;2079:7;2072:4;2068:2;2064:13;2060:27;2050:55;;2101:1;2098;2091:12;2050:55;2137:2;2124:16;2159:2;2155;2152:10;2149:36;;;2165:18;;:::i;:::-;2211:2;2208:1;2204:10;2243:2;2237:9;2306:2;2302:7;2297:2;2293;2289:11;2285:25;2277:6;2273:38;2361:6;2349:10;2346:22;2341:2;2329:10;2326:18;2323:46;2320:72;;;2372:18;;:::i;:::-;2408:2;2401:22;2458:18;;;2492:15;;;;-1:-1:-1;2527:11:1;;;2557;;;2553:20;;2550:33;-1:-1:-1;2547:53:1;;;2596:1;2593;2586:12;2547:53;2618:1;2609:10;;2628:163;2642:2;2639:1;2636:9;2628:163;;;2699:17;;2687:30;;2660:1;2653:9;;;;;2737:12;;;;2769;;2628:163;;;-1:-1:-1;2810:6:1;1696:1126;-1:-1:-1;;;;;;;;1696:1126:1:o;2827:341::-;2892:6;2900;2953:2;2941:9;2932:7;2928:23;2924:32;2921:52;;;2969:1;2966;2959:12;2921:52;3008:9;2995:23;3061:5;3054:13;3047:21;3040:5;3037:32;3027:60;;3083:1;3080;3073:12;3173:180;3232:6;3285:2;3273:9;3264:7;3260:23;3256:32;3253:52;;;3301:1;3298;3291:12;3253:52;-1:-1:-1;3324:23:1;;3173:180;-1:-1:-1;3173:180:1:o;3991:597::-;4103:4;4132:2;4161;4150:9;4143:21;4193:6;4187:13;4236:6;4231:2;4220:9;4216:18;4209:34;4261:1;4271:140;4285:6;4282:1;4279:13;4271:140;;;4380:14;;;4376:23;;4370:30;4346:17;;;4365:2;4342:26;4335:66;4300:10;;4271:140;;;4429:6;4426:1;4423:13;4420:91;;;4499:1;4494:2;4485:6;4474:9;4470:22;4466:31;4459:42;4420:91;-1:-1:-1;4572:2:1;4551:15;-1:-1:-1;;4547:29:1;4532:45;;;;4579:2;4528:54;;3991:597;-1:-1:-1;;;3991:597:1:o;6617:346::-;6819:2;6801:21;;;6858:2;6838:18;;;6831:30;-1:-1:-1;;;6892:2:1;6877:18;;6870:52;6954:2;6939:18;;6617:346::o;6968:476::-;7170:2;7152:21;;;7209:2;7189:18;;;7182:30;7248:34;7243:2;7228:18;;7221:62;7319:34;7314:2;7299:18;;7292:62;-1:-1:-1;;;7385:3:1;7370:19;;7363:39;7434:3;7419:19;;6968:476::o;7858:356::-;8060:2;8042:21;;;8079:18;;;8072:30;8138:34;8133:2;8118:18;;8111:62;8205:2;8190:18;;7858:356::o;8219:403::-;8421:2;8403:21;;;8460:2;8440:18;;;8433:30;8499:34;8494:2;8479:18;;8472:62;-1:-1:-1;;;8565:2:1;8550:18;;8543:37;8612:3;8597:19;;8219:403::o;12204:128::-;12244:3;12275:1;12271:6;12268:1;12265:13;12262:39;;;12281:18;;:::i;:::-;-1:-1:-1;12317:9:1;;12204:128::o;12337:422::-;12426:1;12469:5;12426:1;12483:270;12504:7;12494:8;12491:21;12483:270;;;12563:4;12559:1;12555:6;12551:17;12545:4;12542:27;12539:53;;;12572:18;;:::i;:::-;12622:7;12612:8;12608:22;12605:55;;;12642:16;;;;12605:55;12721:22;;;;12681:15;;;;12483:270;;;12487:3;12337:422;;;;;:::o;12764:140::-;12822:5;12851:47;12892:4;12882:8;12878:19;12872:4;12958:5;12988:8;12978:80;;-1:-1:-1;13029:1:1;13043:5;;12978:80;13077:4;13067:76;;-1:-1:-1;13114:1:1;13128:5;;13067:76;13159:4;13177:1;13172:59;;;;13245:1;13240:130;;;;13152:218;;13172:59;13202:1;13193:10;;13216:5;;;13240:130;13277:3;13267:8;13264:17;13261:43;;;13284:18;;:::i;:::-;-1:-1:-1;;13340:1:1;13326:16;;13355:5;;13152:218;;13454:2;13444:8;13441:16;13435:3;13429:4;13426:13;13422:36;13416:2;13406:8;13403:16;13398:2;13392:4;13389:12;13385:35;13382:77;13379:159;;;-1:-1:-1;13491:19:1;;;13523:5;;13379:159;13570:34;13595:8;13589:4;13570:34;:::i;:::-;13640:6;13636:1;13632:6;13628:19;13619:7;13616:32;13613:58;;;13651:18;;:::i;:::-;13689:20;;12909:806;-1:-1:-1;;;12909:806:1:o;13720:168::-;13760:7;13826:1;13822;13818:6;13814:14;13811:1;13808:21;13803:1;13796:9;13789:17;13785:45;13782:71;;;13833:18;;:::i;:::-;-1:-1:-1;13873:9:1;;13720:168::o;13893:125::-;13933:4;13961:1;13958;13955:8;13952:34;;;13966:18;;:::i;:::-;-1:-1:-1;14003:9:1;;13893:125::o;14023:380::-;14102:1;14098:12;;;;14145;;;14166:61;;14220:4;14212:6;14208:17;14198:27;;14166:61;14273:2;14265:6;14262:14;14242:18;14239:38;14236:161;;;14319:10;14314:3;14310:20;14307:1;14300:31;14354:4;14351:1;14344:15;14382:4;14379:1;14372:15;14236:161;;14023:380;;;:::o;14408:135::-;14447:3;-1:-1:-1;;14468:17:1;;14465:43;;;14488:18;;:::i;:::-;-1:-1:-1;14535:1:1;14524:13;;14408:135::o;14548:127::-;14609:10;14604:3;14600:20;14597:1;14590:31;14640:4;14637:1;14630:15;14664:4;14661:1;14654:15;14680:127;14741:10;14736:3;14732:20;14729:1;14722:31;14772:4;14769:1;14762:15;14796:4;14793:1;14786:15;14812:127;14873:10;14868:3;14864:20;14861:1;14854:31;14904:4;14901:1;14894:15;14928:4;14925:1;14918:15;14944:131;-1:-1:-1;;;;;15019:31:1;;15009:42;;14999:70;;15065:1;15062;15055:12

Swarm Source

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