ETH Price: $3,364.51 (-1.53%)
Gas: 8 Gwei

Token

(0x95ad727d8676f91af53b80894007e4bc5192cbae)
 

Overview

Max Total Supply

71,614 ERC-721 TOKEN*

Holders

32,109

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
takkyonn.eth
Balance
0 ERC-721 TOKEN*
0xeB4B8eCCe912e40fa4877F1D5380A810C7b5036C
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:
MegaPark

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-16
*/

// SPDX-License-Identifier: MIT
/**
 ___      ___    ______  ___      ___    ______   ______   ______             __    ________  ____  ____ __   ___  __     
|"  \    /"  |  /    " \|"  \    /"  |  /    " \ /" _  "\ /    " \           /""\  ("      "\("  _||_ " |/"| /  ")|" \    
 \   \  //   | // ____  \\   \  //   | // ____  (: ( \___// ____  \         /    \  \___/   :|   (  ) : (: |/   / ||  |   
 /\\  \/.    |/  /    ) :/\\  \/.    |/  /    ) :\/ \   /  /    ) :)       /' /\  \   /  ___/(:  |  | . |    __/  |:  |   
|: \.        (: (____/ /|: \.        (: (____/ ////  \ (: (____/ //       //  __'  \ //  \__  \\ \__/ //(// _  \  |.  |   
|.  \    /:  |\        /|.  \    /:  |\        /(:   _) \        /       /   /  \\  (:   / "\ /\\ __ //\|: | \  \ /\  |\  
|___|\__/|___| \"_____/ |___|\__/|___| \"_____/  \_______\"_____/       (___/    \___\_______(__________(__|  \__(__\_|_) 
                                                                                                                          
*/
pragma solidity ^0.8.9;

/**
 * @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 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 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 metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}



/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

    function isContractOwner() public virtual returns (bool) {
        return (_owner == _msgSender());
    }

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




abstract contract Target721 { 
    function ownerOf(uint256 tokenId) public view virtual returns (address);
}




/**
 * @title Gutter Punks Flyer contract.
 * @author The Gutter Punks team.
 *
 * @notice Airdrops a flyer to Invisible Friends holders.
 *
 */
contract MegaPark is Context, ERC165, IERC721, IERC721Metadata, Ownable {
    
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    mapping(uint256 => bool) private _tokenBifurcated;

    string internal _baseTokenURI;
    string internal _contractURI;

    uint256 internal _totalSupply;
    uint256 internal MAX_TOKEN_ID; 
	
	bool internal burnAirdrop = false;

    Target721 _target = Target721(0xED5AF388653567Af2F388E6224dC7C4b3241C544);


    constructor() {
        _name = "MegaPark";
        _symbol = "MP";
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function setTargetContract(address contractAddress) external onlyOwner { 
        _target = Target721(contractAddress);
    }

    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint256 balance = 0;
        for(uint256 i = 0;i <= MAX_TOKEN_ID;i++) {
           if(_ownerOf(i) == owner) { balance++; }
        }
        return balance;
    }

    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        address owner = _owners[tokenId];
        if(owner == address(0) && !_tokenBifurcated[tokenId] && !burnAirdrop) {
           try _target.ownerOf(tokenId) returns (address result) { owner = result; } catch { owner = address(0); }
        }
        return owner;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");
        address approved = _tokenApprovals[tokenId];
        return approved;
    }

    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0) || _target.ownerOf(tokenId) != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    function _mint(address to, uint256 tokenId) internal virtual {
        emit Transfer(address(0), to, tokenId);
    }

    function _burn(uint256 tokenId) internal virtual {
        address owner = ownerOf(tokenId);
        require(owner == _msgSender(), "Must own token to burn.");

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);
        unchecked { 
           if(!_tokenBifurcated[tokenId]) { _tokenBifurcated[tokenId] = true; }
           _totalSupply -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
       
        unchecked { 
           _owners[tokenId] = to;
        }

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}


    function setURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setBurnAirdrop(bool setBurn) external onlyOwner {
        burnAirdrop = setBurn;
    }

    function giftAirDrop(address[] calldata recipients) external onlyOwner {
        uint256 startingSupply = _totalSupply;

        // Update the total supply.
        _totalSupply = startingSupply + recipients.length;

        // Note: First token has ID #0.
        for (uint256 i = 0; i < recipients.length; i++) {
            _mint(recipients[i], startingSupply + i);
        }
        if((startingSupply + recipients.length - 1) > MAX_TOKEN_ID) { MAX_TOKEN_ID = (startingSupply + recipients.length - 1); } 
    }

    function bifurcateToken(uint256 tokenId) external { 
        address owner = ownerOf(tokenId);
        require(owner == _msgSender() || isContractOwner(), "Must own token to bifurcate.");
        _tokenBifurcated[tokenId] = true; 
        unchecked { 
           _owners[tokenId] = owner;
        }
    }
    function burn(uint256 tokenId) external { 
        _burn(tokenId);
    }
	
    function emitTransfers(uint256[] calldata tokenId, address[] calldata from, address[] calldata to) external onlyOwner { 
       require(tokenId.length == from.length && from.length == to.length, "Arrays do not match.");
       for(uint256 i = 0;i < tokenId.length;i++) { 
           if(_owners[tokenId[i]] == address(0)) { 
              emit Transfer(from[i], to[i], tokenId[i]);
           } 
       }
    }

    function contractURI() external view returns (string memory) {
        return _contractURI;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        
        return _baseTokenURI;
    }

    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }
}


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"bifurcateToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"},{"internalType":"address[]","name":"from","type":"address[]"},{"internalType":"address[]","name":"to","type":"address[]"}],"name":"emitTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"giftAirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isContractOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"setBurn","type":"bool"}],"name":"setBurnAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setTargetContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b80546001600160a81b03191674ed5af388653567af2f388e6224dc7c4b3241c544001790553480156200003857600080fd5b506200004433620000a6565b604080518082019091526008808252674d6567615061726b60c01b60209092019182526200007591600191620000f6565b506040805180820190915260028082526104d560f41b60209092019182526200009f9181620000f6565b50620001d8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000104906200019c565b90600052602060002090601f01602090048101928262000128576000855562000173565b82601f106200014357805160ff191683800117855562000173565b8280016001018555821562000173579182015b828111156200017357825182559160200191906001019062000156565b506200018192915062000185565b5090565b5b8082111562000181576000815560010162000186565b600181811c90821680620001b157607f821691505b602082108103620001d257634e487b7160e01b600052602260045260246000fd5b50919050565b611c9080620001e86000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063a22cb46511610097578063e8a3d48511610071578063e8a3d4851461034e578063e985e9c514610356578063f0d6f8ef14610392578063f2fde38b146103a557600080fd5b8063a22cb46514610315578063b88d4fde14610328578063c87b56dd1461033b57600080fd5b80636352211e146102ba57806370a08231146102cd578063715018a6146102e05780637f7dcdbf146102e85780638da5cb5b146102fc57806395d89b411461030d57600080fd5b806318160ddd1161014b57806342842e0e1161012557806342842e0e1461026e57806342966c681461028157806342d8c7d51461029457806347fc822f146102a757600080fd5b806318160ddd1461023657806323b872dd14610248578063370eb6971461025b57600080fd5b806301ffc9a71461019357806302fe5305146101bb57806306fdde03146101d0578063081812fc146101e5578063095ea7b31461021057806317495dde14610223575b600080fd5b6101a66101a13660046115da565b6103b8565b60405190151581526020015b60405180910390f35b6101ce6101c93660046115f7565b61040a565b005b6101d861044e565b6040516101b291906116b6565b6101f86101f33660046116c9565b6104e0565b6040516001600160a01b0390911681526020016101b2565b6101ce61021e3660046116f7565b610568565b6101ce610231366004611738565b610678565b6009545b6040519081526020016101b2565b6101ce610256366004611753565b6106b5565b6101ce6102693660046117e0565b6106e6565b6101ce61027c366004611753565b6107b4565b6101ce61028f3660046116c9565b6107cf565b6101ce6102a2366004611822565b6107db565b6101ce6102b53660046118bc565b61094f565b6101f86102c83660046116c9565b6109a1565b61023a6102db3660046118bc565b610a17565b6101ce610ad7565b6101a66000546001600160a01b0316331490565b6000546001600160a01b03166101f8565b6101d8610b0d565b6101ce6103233660046118d9565b610b1c565b6101ce610336366004611924565b610b2b565b6101d86103493660046116c9565b610b63565b6101d8610c64565b6101a6610364366004611a04565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101ce6103a03660046116c9565b610c73565b6101ce6103b33660046118bc565b610d37565b60006001600160e01b031982166380ac58cd60e01b14806103e957506001600160e01b03198216635b5e139f60e01b145b8061040457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b0316331461043d5760405162461bcd60e51b815260040161043490611a3d565b60405180910390fd5b6104496007838361152b565b505050565b60606001805461045d90611a72565b80601f016020809104026020016040519081016040528092919081815260200182805461048990611a72565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b60006104eb82610dcf565b61054c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610434565b506000908152600460205260409020546001600160a01b031690565b6000610573826109a1565b9050806001600160a01b0316836001600160a01b0316036105e05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610434565b336001600160a01b03821614806105fc57506105fc8133610364565b61066e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610434565b6104498383610e73565b6000546001600160a01b031633146106a25760405162461bcd60e51b815260040161043490611a3d565b600b805460ff1916911515919091179055565b6106bf3382610ee1565b6106db5760405162461bcd60e51b815260040161043490611aac565b610449838383610fcb565b6000546001600160a01b031633146107105760405162461bcd60e51b815260040161043490611a3d565b60095461071d8282611b13565b60095560005b828110156107765761076484848381811061074057610740611b2b565b905060200201602081019061075591906118bc565b61075f8385611b13565b6110fd565b8061076e81611b41565b915050610723565b50600a5460016107868484611b13565b6107909190611b5a565b11156104495760016107a28383611b13565b6107ac9190611b5a565b600a55505050565b61044983838360405180602001604052806000815250610b2b565b6107d881611127565b50565b6000546001600160a01b031633146108055760405162461bcd60e51b815260040161043490611a3d565b848314801561081357508281145b6108565760405162461bcd60e51b815260206004820152601460248201527320b93930bcb9903237903737ba1036b0ba31b41760611b6044820152606401610434565b60005b8581101561094657600060038189898581811061087857610878611b2b565b60209081029290920135835250810191909152604001600020546001600160a01b031603610934578686828181106108b2576108b2611b2b565b905060200201358383838181106108cb576108cb611b2b565b90506020020160208101906108e091906118bc565b6001600160a01b03168686848181106108fb576108fb611b2b565b905060200201602081019061091091906118bc565b6001600160a01b0316600080516020611c3b83398151915260405160405180910390a45b8061093e81611b41565b915050610859565b50505050505050565b6000546001600160a01b031633146109795760405162461bcd60e51b815260040161043490611a3d565b600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000806109ad83611214565b90506001600160a01b0381166104045760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610434565b60006001600160a01b038216610a825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610434565b6000805b600a548111610ad057836001600160a01b0316610aa282611214565b6001600160a01b031603610abe5781610aba81611b41565b9250505b80610ac881611b41565b915050610a86565b5092915050565b6000546001600160a01b03163314610b015760405162461bcd60e51b815260040161043490611a3d565b610b0b60006112d9565b565b60606002805461045d90611a72565b610b27338383611329565b5050565b610b353383610ee1565b610b515760405162461bcd60e51b815260040161043490611aac565b610b5d848484846113f7565b50505050565b6060610b6e82610dcf565b610bd25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610434565b60078054610bdf90611a72565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0b90611a72565b8015610c585780601f10610c2d57610100808354040283529160200191610c58565b820191906000526020600020905b815481529060010190602001808311610c3b57829003601f168201915b50505050509050919050565b60606008805461045d90611a72565b6000610c7e826109a1565b90506001600160a01b038116331480610ca65750610ca66000546001600160a01b0316331490565b610cf25760405162461bcd60e51b815260206004820152601c60248201527f4d757374206f776e20746f6b656e20746f206269667572636174652e000000006044820152606401610434565b6000918252600660209081526040808420805460ff19166001179055600390915290912080546001600160a01b039092166001600160a01b0319909216919091179055565b6000546001600160a01b03163314610d615760405162461bcd60e51b815260040161043490611a3d565b6001600160a01b038116610dc65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610434565b6107d8816112d9565b6000818152600360205260408120546001600160a01b03161515806104045750600b546040516331a9108f60e11b81526004810184905260009161010090046001600160a01b031690636352211e90602401602060405180830381865afa158015610e3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e629190611b71565b6001600160a01b0316141592915050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ea8826109a1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610eec82610dcf565b610f4d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610434565b6000610f58836109a1565b9050806001600160a01b0316846001600160a01b03161480610f935750836001600160a01b0316610f88846104e0565b6001600160a01b0316145b80610fc357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610fde826109a1565b6001600160a01b0316146110465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610434565b6001600160a01b0382166110a85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610434565b6110b3600082610e73565b60008181526003602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020611c3b83398151915291a4505050565b60405181906001600160a01b03841690600090600080516020611c3b833981519152908290a45050565b6000611132826109a1565b90506001600160a01b038116331461118c5760405162461bcd60e51b815260206004820152601760248201527f4d757374206f776e20746f6b656e20746f206275726e2e0000000000000000006044820152606401610434565b611197600083610e73565b60008281526006602052604090205460ff166111c7576000828152600660205260409020805460ff191660011790555b6009805460001901905560008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020611c3b833981519152908390a45050565b6000818152600360205260408120546001600160a01b031680158015611249575060008381526006602052604090205460ff16155b80156112585750600b5460ff16155b1561040457600b546040516331a9108f60e11b8152600481018590526101009091046001600160a01b031690636352211e90602401602060405180830381865afa9250505080156112c6575060408051601f3d908101601f191682019092526112c391810190611b71565b60015b6112d257506000610404565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03160361138a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610434565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611402848484610fcb565b61140e8484848461142a565b610b5d5760405162461bcd60e51b815260040161043490611b8e565b60006001600160a01b0384163b1561152057604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061146e903390899088908890600401611be0565b6020604051808303816000875af19250505080156114a9575060408051601f3d908101601f191682019092526114a691810190611c1d565b60015b611506573d8080156114d7576040519150601f19603f3d011682016040523d82523d6000602084013e6114dc565b606091505b5080516000036114fe5760405162461bcd60e51b815260040161043490611b8e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fc3565b506001949350505050565b82805461153790611a72565b90600052602060002090601f016020900481019282611559576000855561159f565b82601f106115725782800160ff1982351617855561159f565b8280016001018555821561159f579182015b8281111561159f578235825591602001919060010190611584565b506115ab9291506115af565b5090565b5b808211156115ab57600081556001016115b0565b6001600160e01b0319811681146107d857600080fd5b6000602082840312156115ec57600080fd5b81356112d2816115c4565b6000806020838503121561160a57600080fd5b823567ffffffffffffffff8082111561162257600080fd5b818501915085601f83011261163657600080fd5b81358181111561164557600080fd5b86602082850101111561165757600080fd5b60209290920196919550909350505050565b6000815180845260005b8181101561168f57602081850181015186830182015201611673565b818111156116a1576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006112d26020830184611669565b6000602082840312156116db57600080fd5b5035919050565b6001600160a01b03811681146107d857600080fd5b6000806040838503121561170a57600080fd5b8235611715816116e2565b946020939093013593505050565b8035801515811461173357600080fd5b919050565b60006020828403121561174a57600080fd5b6112d282611723565b60008060006060848603121561176857600080fd5b8335611773816116e2565b92506020840135611783816116e2565b929592945050506040919091013590565b60008083601f8401126117a657600080fd5b50813567ffffffffffffffff8111156117be57600080fd5b6020830191508360208260051b85010111156117d957600080fd5b9250929050565b600080602083850312156117f357600080fd5b823567ffffffffffffffff81111561180a57600080fd5b61181685828601611794565b90969095509350505050565b6000806000806000806060878903121561183b57600080fd5b863567ffffffffffffffff8082111561185357600080fd5b61185f8a838b01611794565b9098509650602089013591508082111561187857600080fd5b6118848a838b01611794565b9096509450604089013591508082111561189d57600080fd5b506118aa89828a01611794565b979a9699509497509295939492505050565b6000602082840312156118ce57600080fd5b81356112d2816116e2565b600080604083850312156118ec57600080fd5b82356118f7816116e2565b915061190560208401611723565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561193a57600080fd5b8435611945816116e2565b93506020850135611955816116e2565b925060408501359150606085013567ffffffffffffffff8082111561197957600080fd5b818701915087601f83011261198d57600080fd5b81358181111561199f5761199f61190e565b604051601f8201601f19908116603f011681019083821181831017156119c7576119c761190e565b816040528281528a60208487010111156119e057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a1757600080fd5b8235611a22816116e2565b91506020830135611a32816116e2565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611a8657607f821691505b602082108103611aa657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611b2657611b26611afd565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201611b5357611b53611afd565b5060010190565b600082821015611b6c57611b6c611afd565b500390565b600060208284031215611b8357600080fd5b81516112d2816116e2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c1390830184611669565b9695505050505050565b600060208284031215611c2f57600080fd5b81516112d2816115c456feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220d909dc8bc4f4be15bef484624a5e55b841d9f86b91d38f02fbd7ef5e9f56d37064736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063a22cb46511610097578063e8a3d48511610071578063e8a3d4851461034e578063e985e9c514610356578063f0d6f8ef14610392578063f2fde38b146103a557600080fd5b8063a22cb46514610315578063b88d4fde14610328578063c87b56dd1461033b57600080fd5b80636352211e146102ba57806370a08231146102cd578063715018a6146102e05780637f7dcdbf146102e85780638da5cb5b146102fc57806395d89b411461030d57600080fd5b806318160ddd1161014b57806342842e0e1161012557806342842e0e1461026e57806342966c681461028157806342d8c7d51461029457806347fc822f146102a757600080fd5b806318160ddd1461023657806323b872dd14610248578063370eb6971461025b57600080fd5b806301ffc9a71461019357806302fe5305146101bb57806306fdde03146101d0578063081812fc146101e5578063095ea7b31461021057806317495dde14610223575b600080fd5b6101a66101a13660046115da565b6103b8565b60405190151581526020015b60405180910390f35b6101ce6101c93660046115f7565b61040a565b005b6101d861044e565b6040516101b291906116b6565b6101f86101f33660046116c9565b6104e0565b6040516001600160a01b0390911681526020016101b2565b6101ce61021e3660046116f7565b610568565b6101ce610231366004611738565b610678565b6009545b6040519081526020016101b2565b6101ce610256366004611753565b6106b5565b6101ce6102693660046117e0565b6106e6565b6101ce61027c366004611753565b6107b4565b6101ce61028f3660046116c9565b6107cf565b6101ce6102a2366004611822565b6107db565b6101ce6102b53660046118bc565b61094f565b6101f86102c83660046116c9565b6109a1565b61023a6102db3660046118bc565b610a17565b6101ce610ad7565b6101a66000546001600160a01b0316331490565b6000546001600160a01b03166101f8565b6101d8610b0d565b6101ce6103233660046118d9565b610b1c565b6101ce610336366004611924565b610b2b565b6101d86103493660046116c9565b610b63565b6101d8610c64565b6101a6610364366004611a04565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101ce6103a03660046116c9565b610c73565b6101ce6103b33660046118bc565b610d37565b60006001600160e01b031982166380ac58cd60e01b14806103e957506001600160e01b03198216635b5e139f60e01b145b8061040457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b0316331461043d5760405162461bcd60e51b815260040161043490611a3d565b60405180910390fd5b6104496007838361152b565b505050565b60606001805461045d90611a72565b80601f016020809104026020016040519081016040528092919081815260200182805461048990611a72565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b60006104eb82610dcf565b61054c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610434565b506000908152600460205260409020546001600160a01b031690565b6000610573826109a1565b9050806001600160a01b0316836001600160a01b0316036105e05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610434565b336001600160a01b03821614806105fc57506105fc8133610364565b61066e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610434565b6104498383610e73565b6000546001600160a01b031633146106a25760405162461bcd60e51b815260040161043490611a3d565b600b805460ff1916911515919091179055565b6106bf3382610ee1565b6106db5760405162461bcd60e51b815260040161043490611aac565b610449838383610fcb565b6000546001600160a01b031633146107105760405162461bcd60e51b815260040161043490611a3d565b60095461071d8282611b13565b60095560005b828110156107765761076484848381811061074057610740611b2b565b905060200201602081019061075591906118bc565b61075f8385611b13565b6110fd565b8061076e81611b41565b915050610723565b50600a5460016107868484611b13565b6107909190611b5a565b11156104495760016107a28383611b13565b6107ac9190611b5a565b600a55505050565b61044983838360405180602001604052806000815250610b2b565b6107d881611127565b50565b6000546001600160a01b031633146108055760405162461bcd60e51b815260040161043490611a3d565b848314801561081357508281145b6108565760405162461bcd60e51b815260206004820152601460248201527320b93930bcb9903237903737ba1036b0ba31b41760611b6044820152606401610434565b60005b8581101561094657600060038189898581811061087857610878611b2b565b60209081029290920135835250810191909152604001600020546001600160a01b031603610934578686828181106108b2576108b2611b2b565b905060200201358383838181106108cb576108cb611b2b565b90506020020160208101906108e091906118bc565b6001600160a01b03168686848181106108fb576108fb611b2b565b905060200201602081019061091091906118bc565b6001600160a01b0316600080516020611c3b83398151915260405160405180910390a45b8061093e81611b41565b915050610859565b50505050505050565b6000546001600160a01b031633146109795760405162461bcd60e51b815260040161043490611a3d565b600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000806109ad83611214565b90506001600160a01b0381166104045760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610434565b60006001600160a01b038216610a825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610434565b6000805b600a548111610ad057836001600160a01b0316610aa282611214565b6001600160a01b031603610abe5781610aba81611b41565b9250505b80610ac881611b41565b915050610a86565b5092915050565b6000546001600160a01b03163314610b015760405162461bcd60e51b815260040161043490611a3d565b610b0b60006112d9565b565b60606002805461045d90611a72565b610b27338383611329565b5050565b610b353383610ee1565b610b515760405162461bcd60e51b815260040161043490611aac565b610b5d848484846113f7565b50505050565b6060610b6e82610dcf565b610bd25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610434565b60078054610bdf90611a72565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0b90611a72565b8015610c585780601f10610c2d57610100808354040283529160200191610c58565b820191906000526020600020905b815481529060010190602001808311610c3b57829003601f168201915b50505050509050919050565b60606008805461045d90611a72565b6000610c7e826109a1565b90506001600160a01b038116331480610ca65750610ca66000546001600160a01b0316331490565b610cf25760405162461bcd60e51b815260206004820152601c60248201527f4d757374206f776e20746f6b656e20746f206269667572636174652e000000006044820152606401610434565b6000918252600660209081526040808420805460ff19166001179055600390915290912080546001600160a01b039092166001600160a01b0319909216919091179055565b6000546001600160a01b03163314610d615760405162461bcd60e51b815260040161043490611a3d565b6001600160a01b038116610dc65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610434565b6107d8816112d9565b6000818152600360205260408120546001600160a01b03161515806104045750600b546040516331a9108f60e11b81526004810184905260009161010090046001600160a01b031690636352211e90602401602060405180830381865afa158015610e3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e629190611b71565b6001600160a01b0316141592915050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ea8826109a1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610eec82610dcf565b610f4d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610434565b6000610f58836109a1565b9050806001600160a01b0316846001600160a01b03161480610f935750836001600160a01b0316610f88846104e0565b6001600160a01b0316145b80610fc357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610fde826109a1565b6001600160a01b0316146110465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610434565b6001600160a01b0382166110a85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610434565b6110b3600082610e73565b60008181526003602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020611c3b83398151915291a4505050565b60405181906001600160a01b03841690600090600080516020611c3b833981519152908290a45050565b6000611132826109a1565b90506001600160a01b038116331461118c5760405162461bcd60e51b815260206004820152601760248201527f4d757374206f776e20746f6b656e20746f206275726e2e0000000000000000006044820152606401610434565b611197600083610e73565b60008281526006602052604090205460ff166111c7576000828152600660205260409020805460ff191660011790555b6009805460001901905560008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020611c3b833981519152908390a45050565b6000818152600360205260408120546001600160a01b031680158015611249575060008381526006602052604090205460ff16155b80156112585750600b5460ff16155b1561040457600b546040516331a9108f60e11b8152600481018590526101009091046001600160a01b031690636352211e90602401602060405180830381865afa9250505080156112c6575060408051601f3d908101601f191682019092526112c391810190611b71565b60015b6112d257506000610404565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03160361138a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610434565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611402848484610fcb565b61140e8484848461142a565b610b5d5760405162461bcd60e51b815260040161043490611b8e565b60006001600160a01b0384163b1561152057604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061146e903390899088908890600401611be0565b6020604051808303816000875af19250505080156114a9575060408051601f3d908101601f191682019092526114a691810190611c1d565b60015b611506573d8080156114d7576040519150601f19603f3d011682016040523d82523d6000602084013e6114dc565b606091505b5080516000036114fe5760405162461bcd60e51b815260040161043490611b8e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fc3565b506001949350505050565b82805461153790611a72565b90600052602060002090601f016020900481019282611559576000855561159f565b82601f106115725782800160ff1982351617855561159f565b8280016001018555821561159f579182015b8281111561159f578235825591602001919060010190611584565b506115ab9291506115af565b5090565b5b808211156115ab57600081556001016115b0565b6001600160e01b0319811681146107d857600080fd5b6000602082840312156115ec57600080fd5b81356112d2816115c4565b6000806020838503121561160a57600080fd5b823567ffffffffffffffff8082111561162257600080fd5b818501915085601f83011261163657600080fd5b81358181111561164557600080fd5b86602082850101111561165757600080fd5b60209290920196919550909350505050565b6000815180845260005b8181101561168f57602081850181015186830182015201611673565b818111156116a1576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006112d26020830184611669565b6000602082840312156116db57600080fd5b5035919050565b6001600160a01b03811681146107d857600080fd5b6000806040838503121561170a57600080fd5b8235611715816116e2565b946020939093013593505050565b8035801515811461173357600080fd5b919050565b60006020828403121561174a57600080fd5b6112d282611723565b60008060006060848603121561176857600080fd5b8335611773816116e2565b92506020840135611783816116e2565b929592945050506040919091013590565b60008083601f8401126117a657600080fd5b50813567ffffffffffffffff8111156117be57600080fd5b6020830191508360208260051b85010111156117d957600080fd5b9250929050565b600080602083850312156117f357600080fd5b823567ffffffffffffffff81111561180a57600080fd5b61181685828601611794565b90969095509350505050565b6000806000806000806060878903121561183b57600080fd5b863567ffffffffffffffff8082111561185357600080fd5b61185f8a838b01611794565b9098509650602089013591508082111561187857600080fd5b6118848a838b01611794565b9096509450604089013591508082111561189d57600080fd5b506118aa89828a01611794565b979a9699509497509295939492505050565b6000602082840312156118ce57600080fd5b81356112d2816116e2565b600080604083850312156118ec57600080fd5b82356118f7816116e2565b915061190560208401611723565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561193a57600080fd5b8435611945816116e2565b93506020850135611955816116e2565b925060408501359150606085013567ffffffffffffffff8082111561197957600080fd5b818701915087601f83011261198d57600080fd5b81358181111561199f5761199f61190e565b604051601f8201601f19908116603f011681019083821181831017156119c7576119c761190e565b816040528281528a60208487010111156119e057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a1757600080fd5b8235611a22816116e2565b91506020830135611a32816116e2565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611a8657607f821691505b602082108103611aa657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611b2657611b26611afd565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201611b5357611b53611afd565b5060010190565b600082821015611b6c57611b6c611afd565b500390565b600060208284031215611b8357600080fd5b81516112d2816116e2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c1390830184611669565b9695505050505050565b600060208284031215611c2f57600080fd5b81516112d2816115c456feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220d909dc8bc4f4be15bef484624a5e55b841d9f86b91d38f02fbd7ef5e9f56d37064736f6c634300080d0033

Deployed Bytecode Sourcemap

12405:10076:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13408:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;13408:305:0;;;;;;;;20447:102;;;;;;:::i;:::-;;:::i;:::-;;14821:100;;;:::i;:::-;;;;;;;:::i;15453:257::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2240:32:1;;;2222:51;;2210:2;2195:18;15453:257:0;2076:203:1;15041:404:0;;;;;;:::i;:::-;;:::i;20557:97::-;;;;;;:::i;:::-;;:::i;22387:91::-;22458:12;;22387:91;;;3236:25:1;;;3224:2;3209:18;22387:91:0;3090:177:1;16053:339:0;;;;;;:::i;:::-;;:::i;20662:525::-;;;;;;:::i;:::-;;:::i;16400:185::-;;;;;;:::i;:::-;;:::i;21512:74::-;;;;;;:::i;:::-;;:::i;21595:416::-;;;;;;:::i;:::-;;:::i;13721:127::-;;;;;;:::i;:::-;;:::i;14208:240::-;;;;;;:::i;:::-;;:::i;13856:344::-;;;;;;:::i;:::-;;:::i;11194:103::-;;;:::i;11305:107::-;;11356:4;11381:6;-1:-1:-1;;;;;11381:6:0;1681:10;11381:22;;11305:107;10543:87;10589:7;10616:6;-1:-1:-1;;;;;10616:6:0;10543:87;;14929:104;;;:::i;15718:155::-;;;;;;:::i;:::-;;:::i;16593:328::-;;;;;;:::i;:::-;;:::i;22126:253::-;;;;;;:::i;:::-;;:::i;22019:99::-;;;:::i;15881:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;16002:25:0;;;15978:4;16002:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;15881:164;21195:311;;;;;;:::i;:::-;;:::i;11567:201::-;;;;;;:::i;:::-;;:::i;13408:305::-;13510:4;-1:-1:-1;;;;;;13547:40:0;;-1:-1:-1;;;13547:40:0;;:105;;-1:-1:-1;;;;;;;13604:48:0;;-1:-1:-1;;;13604:48:0;13547:105;:158;;;-1:-1:-1;;;;;;;;;;9569:40:0;;;13669:36;13527:178;13408:305;-1:-1:-1;;13408:305:0:o;20447:102::-;10589:7;10616:6;-1:-1:-1;;;;;10616:6:0;1681:10;10763:23;10755:68;;;;-1:-1:-1;;;10755:68:0;;;;;;;:::i;:::-;;;;;;;;;20518:23:::1;:13;20534:7:::0;;20518:23:::1;:::i;:::-;;20447:102:::0;;:::o;14821:100::-;14875:13;14908:5;14901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14821:100;:::o;15453:257::-;15529:7;15557:16;15565:7;15557;:16::i;:::-;15549:73;;;;-1:-1:-1;;;15549:73:0;;8956:2:1;15549:73:0;;;8938:21:1;8995:2;8975:18;;;8968:30;9034:34;9014:18;;;9007:62;-1:-1:-1;;;9085:18:1;;;9078:42;9137:19;;15549:73:0;8754:408:1;15549:73:0;-1:-1:-1;15633:16:0;15652:24;;;:15;:24;;;;;;-1:-1:-1;;;;;15652:24:0;;15453:257::o;15041:404::-;15122:13;15138:16;15146:7;15138;:16::i;:::-;15122:32;;15179:5;-1:-1:-1;;;;;15173:11:0;:2;-1:-1:-1;;;;;15173:11:0;;15165:57;;;;-1:-1:-1;;;15165:57:0;;9369:2:1;15165:57:0;;;9351:21:1;9408:2;9388:18;;;9381:30;9447:34;9427:18;;;9420:62;-1:-1:-1;;;9498:18:1;;;9491:31;9539:19;;15165:57:0;9167:397:1;15165:57:0;1681:10;-1:-1:-1;;;;;15257:21:0;;;;:62;;-1:-1:-1;15282:37:0;15299:5;1681:10;15881:164;:::i;15282:37::-;15235:168;;;;-1:-1:-1;;;15235:168:0;;9771:2:1;15235:168:0;;;9753:21:1;9810:2;9790:18;;;9783:30;9849:34;9829:18;;;9822:62;9920:26;9900:18;;;9893:54;9964:19;;15235:168:0;9569:420:1;15235:168:0;15416:21;15425:2;15429:7;15416:8;:21::i;20557:97::-;10589:7;10616:6;-1:-1:-1;;;;;10616:6:0;1681:10;10763:23;10755:68;;;;-1:-1:-1;;;10755:68:0;;;;;;;:::i;:::-;20625:11:::1;:21:::0;;-1:-1:-1;;20625:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20557:97::o;16053:339::-;16248:41;1681:10;16281:7;16248:18;:41::i;:::-;16240:103;;;;-1:-1:-1;;;16240:103:0;;;;;;;:::i;:::-;16356:28;16366:4;16372:2;16376:7;16356:9;:28::i;20662:525::-;10589:7;10616:6;-1:-1:-1;;;;;10616:6:0;1681:10;10763:23;10755:68;;;;-1:-1:-1;;;10755:68:0;;;;;;;:::i;:::-;20769:12:::1;::::0;20846:34:::1;20863:10:::0;20769:12;20846:34:::1;:::i;:::-;20831:12;:49:::0;20939:9:::1;20934:115;20954:21:::0;;::::1;20934:115;;;20997:40;21003:10;;21014:1;21003:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;21018:18;21035:1:::0;21018:14;:18:::1;:::i;:::-;20997:5;:40::i;:::-;20977:3:::0;::::1;::::0;::::1;:::i;:::-;;;;20934:115;;;-1:-1:-1::0;21105:12:0::1;::::0;21100:1:::1;21063:34;21080:10:::0;21063:14;:34:::1;:::i;:::-;:38;;;;:::i;:::-;21062:55;21059:120;;;21174:1;21137:34;21154:10:::0;21137:14;:34:::1;:::i;:::-;:38;;;;:::i;:::-;21121:12;:55:::0;20733:454:::1;20662:525:::0;;:::o;16400:185::-;16538:39;16555:4;16561:2;16565:7;16538:39;;;;;;;;;;;;:16;:39::i;21512:74::-;21564:14;21570:7;21564:5;:14::i;:::-;21512:74;:::o;21595:416::-;10589:7;10616:6;-1:-1:-1;;;;;10616:6:0;1681:10;10763:23;10755:68;;;;-1:-1:-1;;;10755:68:0;;;;;;;:::i;:::-;21732:29;;::::1;:57:::0;::::1;;;-1:-1:-1::0;21765:24:0;;::::1;21732:57;21724:90;;;::::0;-1:-1:-1;;;21724:90:0;;11281:2:1;21724:90:0::1;::::0;::::1;11263:21:1::0;11320:2;11300:18;;;11293:30;-1:-1:-1;;;11339:18:1;;;11332:50;11399:18;;21724:90:0::1;11079:344:1::0;21724:90:0::1;21828:9;21824:180;21842:18:::0;;::::1;21824:180;;;21915:1;21884:7;21915:1:::0;21892:7;;21900:1;21892:10;;::::1;;;;;:::i;:::-;;::::0;;::::1;::::0;;;::::1;;21884:19:::0;;-1:-1:-1;21884:19:0;::::1;::::0;;;;;;-1:-1:-1;21884:19:0;;-1:-1:-1;;;;;21884:19:0::1;:33:::0;21881:112:::1;;21967:7;;21975:1;21967:10;;;;;;;:::i;:::-;;;;;;;21960:2;;21963:1;21960:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;21942:36:0::1;21951:4;;21956:1;21951:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;21942:36:0::1;-1:-1:-1::0;;;;;;;;;;;21942:36:0::1;;;;;;;;;21881:112;21861:3:::0;::::1;::::0;::::1;:::i;:::-;;;;21824:180;;;;21595:416:::0;;;;;;:::o;13721:127::-;10589:7;10616:6;-1:-1:-1;;;;;10616:6:0;1681:10;10763:23;10755:68;;;;-1:-1:-1;;;10755:68:0;;;;;;;:::i;:::-;13804:7:::1;:36:::0;;-1:-1:-1;;;;;13804:36:0;;::::1;;;-1:-1:-1::0;;;;;;13804:36:0;;::::1;::::0;;;::::1;::::0;;13721:127::o;14208:240::-;14280:7;14300:13;14316:17;14325:7;14316:8;:17::i;:::-;14300:33;-1:-1:-1;;;;;;14352:19:0;;14344:73;;;;-1:-1:-1;;;14344:73:0;;11630:2:1;14344:73:0;;;11612:21:1;11669:2;11649:18;;;11642:30;11708:34;11688:18;;;11681:62;-1:-1:-1;;;11759:18:1;;;11752:39;11808:19;;14344:73:0;11428:405:1;13856:344:0;13928:7;-1:-1:-1;;;;;13956:19:0;;13948:74;;;;-1:-1:-1;;;13948:74:0;;12040:2:1;13948:74:0;;;12022:21:1;12079:2;12059:18;;;12052:30;12118:34;12098:18;;;12091:62;-1:-1:-1;;;12169:18:1;;;12162:40;12219:19;;13948:74:0;11838:406:1;13948:74:0;14033:15;14067:9;14063:105;14086:12;;14081:1;:17;14063:105;;14136:5;-1:-1:-1;;;;;14121:20:0;:11;14130:1;14121:8;:11::i;:::-;-1:-1:-1;;;;;14121:20:0;;14118:39;;14145:9;;;;:::i;:::-;;;;14118:39;14099:3;;;;:::i;:::-;;;;14063:105;;;-1:-1:-1;14185:7:0;13856:344;-1:-1:-1;;13856:344:0:o;11194:103::-;10589:7;10616:6;-1:-1:-1;;;;;10616:6:0;1681:10;10763:23;10755:68;;;;-1:-1:-1;;;10755:68:0;;;;;;;:::i;:::-;11259:30:::1;11286:1;11259:18;:30::i;:::-;11194:103::o:0;14929:104::-;14985:13;15018:7;15011:14;;;;;:::i;15718:155::-;15813:52;1681:10;15846:8;15856;15813:18;:52::i;:::-;15718:155;;:::o;16593:328::-;16768:41;1681:10;16801:7;16768:18;:41::i;:::-;16760:103;;;;-1:-1:-1;;;16760:103:0;;;;;;;:::i;:::-;16874:39;16888:4;16894:2;16898:7;16907:5;16874:13;:39::i;:::-;16593:328;;;;:::o;22126:253::-;22191:13;22239:16;22247:7;22239;:16::i;:::-;22217:113;;;;-1:-1:-1;;;22217:113:0;;12451:2:1;22217:113:0;;;12433:21:1;12490:2;12470:18;;;12463:30;12529:34;12509:18;;;12502:62;-1:-1:-1;;;12580:18:1;;;12573:45;12635:19;;22217:113:0;12249:411:1;22217:113:0;22358:13;22351:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22126:253;;;:::o;22019:99::-;22065:13;22098:12;22091:19;;;;;:::i;21195:311::-;21257:13;21273:16;21281:7;21273;:16::i;:::-;21257:32;-1:-1:-1;;;;;;21308:21:0;;1681:10;21308:21;;:42;;;21333:17;11356:4;11381:6;-1:-1:-1;;;;;11381:6:0;1681:10;11381:22;;11305:107;21333:17;21300:83;;;;-1:-1:-1;;;21300:83:0;;12867:2:1;21300:83:0;;;12849:21:1;12906:2;12886:18;;;12879:30;12945;12925:18;;;12918:58;12993:18;;21300:83:0;12665:352:1;21300:83:0;21394:25;;;;:16;:25;;;;;;;;:32;;-1:-1:-1;;21394:32:0;21422:4;21394:32;;;21463:7;:16;;;;;;:24;;-1:-1:-1;;;;;21463:24:0;;;-1:-1:-1;;;;;;21463:24:0;;;;;;;;;21195:311::o;11567:201::-;10589:7;10616:6;-1:-1:-1;;;;;10616:6:0;1681:10;10763:23;10755:68;;;;-1:-1:-1;;;10755:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11656:22:0;::::1;11648:73;;;::::0;-1:-1:-1;;;11648:73:0;;13224:2:1;11648:73:0::1;::::0;::::1;13206:21:1::0;13263:2;13243:18;;;13236:30;13302:34;13282:18;;;13275:62;-1:-1:-1;;;13353:18:1;;;13346:36;13399:19;;11648:73:0::1;13022:402:1::0;11648:73:0::1;11732:28;11751:8;11732:18;:28::i;17252:169::-:0;17317:4;17341:16;;;:7;:16;;;;;;-1:-1:-1;;;;;17341:16:0;:30;;;:72;;-1:-1:-1;17375:7:0;;:24;;-1:-1:-1;;;17375:24:0;;;;;3236:25:1;;;-1:-1:-1;;17375:7:0;;;-1:-1:-1;;;;;17375:7:0;;:15;;3209:18:1;;17375:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;17375:38:0;;;17334:79;17252:169;-1:-1:-1;;17252:169:0:o;19006:167::-;19081:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;19081:29:0;-1:-1:-1;;;;;19081:29:0;;;;;;;;:24;;19135:16;19081:24;19135:7;:16::i;:::-;-1:-1:-1;;;;;19126:39:0;;;;;;;;;;;19006:167;;:::o;17429:341::-;17522:4;17547:16;17555:7;17547;:16::i;:::-;17539:73;;;;-1:-1:-1;;;17539:73:0;;13887:2:1;17539:73:0;;;13869:21:1;13926:2;13906:18;;;13899:30;13965:34;13945:18;;;13938:62;-1:-1:-1;;;14016:18:1;;;14009:42;14068:19;;17539:73:0;13685:408:1;17539:73:0;17623:13;17639:16;17647:7;17639;:16::i;:::-;17623:32;;17685:5;-1:-1:-1;;;;;17674:16:0;:7;-1:-1:-1;;;;;17674:16:0;;:51;;;;17718:7;-1:-1:-1;;;;;17694:31:0;:20;17706:7;17694:11;:20::i;:::-;-1:-1:-1;;;;;17694:31:0;;17674:51;:87;;;-1:-1:-1;;;;;;16002:25:0;;;15978:4;16002:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;17729:32;17666:96;17429:341;-1:-1:-1;;;;17429:341:0:o;18444:554::-;18596:4;-1:-1:-1;;;;;18576:24:0;:16;18584:7;18576;:16::i;:::-;-1:-1:-1;;;;;18576:24:0;;18568:78;;;;-1:-1:-1;;;18568:78:0;;14300:2:1;18568:78:0;;;14282:21:1;14339:2;14319:18;;;14312:30;14378:34;14358:18;;;14351:62;-1:-1:-1;;;14429:18:1;;;14422:39;14478:19;;18568:78:0;14098:405:1;18568:78:0;-1:-1:-1;;;;;18665:16:0;;18657:65;;;;-1:-1:-1;;;18657:65:0;;14710:2:1;18657:65:0;;;14692:21:1;14749:2;14729:18;;;14722:30;14788:34;14768:18;;;14761:62;-1:-1:-1;;;14839:18:1;;;14832:34;14883:19;;18657:65:0;14508:400:1;18657:65:0;18839:29;18856:1;18860:7;18839:8;:29::i;:::-;18913:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;18913:21:0;-1:-1:-1;;;;;18913:21:0;;;;;;;;;18963:27;;18913:16;;18963:27;;;;-1:-1:-1;;;;;;;;;;;18963:27:0;;18444:554;;;:::o;17778:118::-;17855:33;;17880:7;;-1:-1:-1;;;;;17855:33:0;;;17872:1;;-1:-1:-1;;;;;;;;;;;17855:33:0;17872:1;;17855:33;17778:118;;:::o;17904:532::-;17964:13;17980:16;17988:7;17980;:16::i;:::-;17964:32;-1:-1:-1;;;;;;18015:21:0;;1681:10;18015:21;18007:57;;;;-1:-1:-1;;;18007:57:0;;15115:2:1;18007:57:0;;;15097:21:1;15154:2;15134:18;;;15127:30;15193:25;15173:18;;;15166:53;15236:18;;18007:57:0;14913:347:1;18007:57:0;18166:29;18183:1;18187:7;18166:8;:29::i;:::-;18235:25;;;;:16;:25;;;;;;;;18231:68;;18264:25;;;;:16;:25;;;;;:32;;-1:-1:-1;;18264:32:0;18292:4;18264:32;;;18231:68;18312:12;:17;;-1:-1:-1;;18312:17:0;;;:12;18358:16;;;:7;:16;;;;;;18351:23;;-1:-1:-1;;;;;;18351:23:0;;;18392:36;18366:7;;18312:12;-1:-1:-1;;;;;18392:36:0;;;-1:-1:-1;;;;;;;;;;;18392:36:0;18312:12;;18392:36;17953:483;17904:532;:::o;14456:357::-;14522:7;14558:16;;;:7;:16;;;;;;-1:-1:-1;;;;;14558:16:0;14588:19;;:49;;;;-1:-1:-1;14612:25:0;;;;:16;:25;;;;;;;;14611:26;14588:49;:65;;;;-1:-1:-1;14642:11:0;;;;14641:12;14588:65;14585:198;;;14673:7;;:24;;-1:-1:-1;;;14673:24:0;;;;;3236:25:1;;;14673:7:0;;;;-1:-1:-1;;;;;14673:7:0;;:15;;3209:18:1;;14673:24:0;;;;;;;;;;;;;;;;;;-1:-1:-1;14673:24:0;;;;;;;;-1:-1:-1;;14673:24:0;;;;;;;;;;;;:::i;:::-;;;14669:103;;-1:-1:-1;14767:1:0;14669:103;;;14733:6;14800:5;-1:-1:-1;;;14456:357:0:o;11928:191::-;12002:16;12021:6;;-1:-1:-1;;;;;12038:17:0;;;-1:-1:-1;;;;;;12038:17:0;;;;;;12071:40;;12021:6;;;;;;;12071:40;;12002:16;12071:40;11991:128;11928:191;:::o;19181:315::-;19336:8;-1:-1:-1;;;;;19327:17:0;:5;-1:-1:-1;;;;;19327:17:0;;19319:55;;;;-1:-1:-1;;;19319:55:0;;15467:2:1;19319:55:0;;;15449:21:1;15506:2;15486:18;;;15479:30;15545:27;15525:18;;;15518:55;15590:18;;19319:55:0;15265:349:1;19319:55:0;-1:-1:-1;;;;;19385:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;19385:46:0;;;;;;;;;;19447:41;;540::1;;;19447::0;;513:18:1;19447:41:0;;;;;;;19181:315;;;:::o;16929:::-;17086:28;17096:4;17102:2;17106:7;17086:9;:28::i;:::-;17133:48;17156:4;17162:2;17166:7;17175:5;17133:22;:48::i;:::-;17125:111;;;;-1:-1:-1;;;17125:111:0;;;;;;;:::i;19504:799::-;19659:4;-1:-1:-1;;;;;19680:13:0;;25478:20;25526:8;19676:620;;19716:72;;-1:-1:-1;;;19716:72:0;;-1:-1:-1;;;;;19716:36:0;;;;;:72;;1681:10;;19767:4;;19773:7;;19782:5;;19716:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19716:72:0;;;;;;;;-1:-1:-1;;19716:72:0;;;;;;;;;;;;:::i;:::-;;;19712:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19958:6;:13;19975:1;19958:18;19954:272;;20001:60;;-1:-1:-1;;;20001:60:0;;;;;;;:::i;19954:272::-;20176:6;20170:13;20161:6;20157:2;20153:15;20146:38;19712:529;-1:-1:-1;;;;;;19839:51:0;-1:-1:-1;;;19839:51:0;;-1:-1:-1;19832:58:0;;19676:620;-1:-1:-1;20280:4:0;19504:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:592::-;663:6;671;724:2;712:9;703:7;699:23;695:32;692:52;;;740:1;737;730:12;692:52;780:9;767:23;809:18;850:2;842:6;839:14;836:34;;;866:1;863;856:12;836:34;904:6;893:9;889:22;879:32;;949:7;942:4;938:2;934:13;930:27;920:55;;971:1;968;961:12;920:55;1011:2;998:16;1037:2;1029:6;1026:14;1023:34;;;1053:1;1050;1043:12;1023:34;1098:7;1093:2;1084:6;1080:2;1076:15;1072:24;1069:37;1066:57;;;1119:1;1116;1109:12;1066:57;1150:2;1142:11;;;;;1172:6;;-1:-1:-1;592:592:1;;-1:-1:-1;;;;592:592:1:o;1189:472::-;1231:3;1269:5;1263:12;1296:6;1291:3;1284:19;1321:1;1331:162;1345:6;1342:1;1339:13;1331:162;;;1407:4;1463:13;;;1459:22;;1453:29;1435:11;;;1431:20;;1424:59;1360:12;1331:162;;;1511:6;1508:1;1505:13;1502:87;;;1577:1;1570:4;1561:6;1556:3;1552:16;1548:27;1541:38;1502:87;-1:-1:-1;1643:2:1;1622:15;-1:-1:-1;;1618:29:1;1609:39;;;;1650:4;1605:50;;1189:472;-1:-1:-1;;1189:472:1:o;1666:220::-;1815:2;1804:9;1797:21;1778:4;1835:45;1876:2;1865:9;1861:18;1853:6;1835:45;:::i;1891:180::-;1950:6;2003:2;1991:9;1982:7;1978:23;1974:32;1971:52;;;2019:1;2016;2009:12;1971:52;-1:-1:-1;2042:23:1;;1891:180;-1:-1:-1;1891:180:1:o;2284:131::-;-1:-1:-1;;;;;2359:31:1;;2349:42;;2339:70;;2405:1;2402;2395:12;2420:315;2488:6;2496;2549:2;2537:9;2528:7;2524:23;2520:32;2517:52;;;2565:1;2562;2555:12;2517:52;2604:9;2591:23;2623:31;2648:5;2623:31;:::i;:::-;2673:5;2725:2;2710:18;;;;2697:32;;-1:-1:-1;;;2420:315:1:o;2740:160::-;2805:20;;2861:13;;2854:21;2844:32;;2834:60;;2890:1;2887;2880:12;2834:60;2740:160;;;:::o;2905:180::-;2961:6;3014:2;3002:9;2993:7;2989:23;2985:32;2982:52;;;3030:1;3027;3020:12;2982:52;3053:26;3069:9;3053:26;:::i;3272:456::-;3349:6;3357;3365;3418:2;3406:9;3397:7;3393:23;3389:32;3386:52;;;3434:1;3431;3424:12;3386:52;3473:9;3460:23;3492:31;3517:5;3492:31;:::i;:::-;3542:5;-1:-1:-1;3599:2:1;3584:18;;3571:32;3612:33;3571:32;3612:33;:::i;:::-;3272:456;;3664:7;;-1:-1:-1;;;3718:2:1;3703:18;;;;3690:32;;3272:456::o;3733:367::-;3796:8;3806:6;3860:3;3853:4;3845:6;3841:17;3837:27;3827:55;;3878:1;3875;3868:12;3827:55;-1:-1:-1;3901:20:1;;3944:18;3933:30;;3930:50;;;3976:1;3973;3966:12;3930:50;4013:4;4005:6;4001:17;3989:29;;4073:3;4066:4;4056:6;4053:1;4049:14;4041:6;4037:27;4033:38;4030:47;4027:67;;;4090:1;4087;4080:12;4027:67;3733:367;;;;;:::o;4105:437::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4308:9;4295:23;4341:18;4333:6;4330:30;4327:50;;;4373:1;4370;4363:12;4327:50;4412:70;4474:7;4465:6;4454:9;4450:22;4412:70;:::i;:::-;4501:8;;4386:96;;-1:-1:-1;4105:437:1;-1:-1:-1;;;;4105:437:1:o;4547:1088::-;4705:6;4713;4721;4729;4737;4745;4798:2;4786:9;4777:7;4773:23;4769:32;4766:52;;;4814:1;4811;4804:12;4766:52;4854:9;4841:23;4883:18;4924:2;4916:6;4913:14;4910:34;;;4940:1;4937;4930:12;4910:34;4979:70;5041:7;5032:6;5021:9;5017:22;4979:70;:::i;:::-;5068:8;;-1:-1:-1;4953:96:1;-1:-1:-1;5156:2:1;5141:18;;5128:32;;-1:-1:-1;5172:16:1;;;5169:36;;;5201:1;5198;5191:12;5169:36;5240:72;5304:7;5293:8;5282:9;5278:24;5240:72;:::i;:::-;5331:8;;-1:-1:-1;5214:98:1;-1:-1:-1;5419:2:1;5404:18;;5391:32;;-1:-1:-1;5435:16:1;;;5432:36;;;5464:1;5461;5454:12;5432:36;;5503:72;5567:7;5556:8;5545:9;5541:24;5503:72;:::i;:::-;4547:1088;;;;-1:-1:-1;4547:1088:1;;-1:-1:-1;4547:1088:1;;5594:8;;4547:1088;-1:-1:-1;;;4547:1088:1:o;5640:247::-;5699:6;5752:2;5740:9;5731:7;5727:23;5723:32;5720:52;;;5768:1;5765;5758:12;5720:52;5807:9;5794:23;5826:31;5851:5;5826:31;:::i;5892:315::-;5957:6;5965;6018:2;6006:9;5997:7;5993:23;5989:32;5986:52;;;6034:1;6031;6024:12;5986:52;6073:9;6060:23;6092:31;6117:5;6092:31;:::i;:::-;6142:5;-1:-1:-1;6166:35:1;6197:2;6182:18;;6166:35;:::i;:::-;6156:45;;5892:315;;;;;:::o;6212:127::-;6273:10;6268:3;6264:20;6261:1;6254:31;6304:4;6301:1;6294:15;6328:4;6325:1;6318:15;6344:1266;6439:6;6447;6455;6463;6516:3;6504:9;6495:7;6491:23;6487:33;6484:53;;;6533:1;6530;6523:12;6484:53;6572:9;6559:23;6591:31;6616:5;6591:31;:::i;:::-;6641:5;-1:-1:-1;6698:2:1;6683:18;;6670:32;6711:33;6670:32;6711:33;:::i;:::-;6763:7;-1:-1:-1;6817:2:1;6802:18;;6789:32;;-1:-1:-1;6872:2:1;6857:18;;6844:32;6895:18;6925:14;;;6922:34;;;6952:1;6949;6942:12;6922:34;6990:6;6979:9;6975:22;6965:32;;7035:7;7028:4;7024:2;7020:13;7016:27;7006:55;;7057:1;7054;7047:12;7006:55;7093:2;7080:16;7115:2;7111;7108:10;7105:36;;;7121:18;;:::i;:::-;7196:2;7190:9;7164:2;7250:13;;-1:-1:-1;;7246:22:1;;;7270:2;7242:31;7238:40;7226:53;;;7294:18;;;7314:22;;;7291:46;7288:72;;;7340:18;;:::i;:::-;7380:10;7376:2;7369:22;7415:2;7407:6;7400:18;7455:7;7450:2;7445;7441;7437:11;7433:20;7430:33;7427:53;;;7476:1;7473;7466:12;7427:53;7532:2;7527;7523;7519:11;7514:2;7506:6;7502:15;7489:46;7577:1;7572:2;7567;7559:6;7555:15;7551:24;7544:35;7598:6;7588:16;;;;;;;6344:1266;;;;;;;:::o;7615:388::-;7683:6;7691;7744:2;7732:9;7723:7;7719:23;7715:32;7712:52;;;7760:1;7757;7750:12;7712:52;7799:9;7786:23;7818:31;7843:5;7818:31;:::i;:::-;7868:5;-1:-1:-1;7925:2:1;7910:18;;7897:32;7938:33;7897:32;7938:33;:::i;:::-;7990:7;7980:17;;;7615:388;;;;;:::o;8008:356::-;8210:2;8192:21;;;8229:18;;;8222:30;8288:34;8283:2;8268:18;;8261:62;8355:2;8340:18;;8008:356::o;8369:380::-;8448:1;8444:12;;;;8491;;;8512:61;;8566:4;8558:6;8554:17;8544:27;;8512:61;8619:2;8611:6;8608:14;8588:18;8585:38;8582:161;;8665:10;8660:3;8656:20;8653:1;8646:31;8700:4;8697:1;8690:15;8728:4;8725:1;8718:15;8582:161;;8369:380;;;:::o;9994:413::-;10196:2;10178:21;;;10235:2;10215:18;;;10208:30;10274:34;10269:2;10254:18;;10247:62;-1:-1:-1;;;10340:2:1;10325:18;;10318:47;10397:3;10382:19;;9994:413::o;10412:127::-;10473:10;10468:3;10464:20;10461:1;10454:31;10504:4;10501:1;10494:15;10528:4;10525:1;10518:15;10544:128;10584:3;10615:1;10611:6;10608:1;10605:13;10602:39;;;10621:18;;:::i;:::-;-1:-1:-1;10657:9:1;;10544:128::o;10677:127::-;10738:10;10733:3;10729:20;10726:1;10719:31;10769:4;10766:1;10759:15;10793:4;10790:1;10783:15;10809:135;10848:3;10869:17;;;10866:43;;10889:18;;:::i;:::-;-1:-1:-1;10936:1:1;10925:13;;10809:135::o;10949:125::-;10989:4;11017:1;11014;11011:8;11008:34;;;11022:18;;:::i;:::-;-1:-1:-1;11059:9:1;;10949:125::o;13429:251::-;13499:6;13552:2;13540:9;13531:7;13527:23;13523:32;13520:52;;;13568:1;13565;13558:12;13520:52;13600:9;13594:16;13619:31;13644:5;13619:31;:::i;15619:414::-;15821:2;15803:21;;;15860:2;15840:18;;;15833:30;15899:34;15894:2;15879:18;;15872:62;-1:-1:-1;;;15965:2:1;15950:18;;15943:48;16023:3;16008:19;;15619:414::o;16038:489::-;-1:-1:-1;;;;;16307:15:1;;;16289:34;;16359:15;;16354:2;16339:18;;16332:43;16406:2;16391:18;;16384:34;;;16454:3;16449:2;16434:18;;16427:31;;;16232:4;;16475:46;;16501:19;;16493:6;16475:46;:::i;:::-;16467:54;16038:489;-1:-1:-1;;;;;;16038:489:1:o;16532:249::-;16601:6;16654:2;16642:9;16633:7;16629:23;16625:32;16622:52;;;16670:1;16667;16660:12;16622:52;16702:9;16696:16;16721:30;16745:5;16721:30;:::i

Swarm Source

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