ETH Price: $3,294.13 (-1.08%)

Token

Backpack Buddiez (BUDDIEZ)
 

Overview

Max Total Supply

109 BUDDIEZ

Holders

56

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BUDDIEZ
0x8cae03c671f5bec82b8fe22c379e7041992d9a28
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:
BackpackBuddiez

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: buddiez.sol
// SPDX-License-Identifier: MIT
//
// Backpack Buddiez
/*
 *   
 *     __n__ 
 *    /   ' \,
 *   | gm    |
 *   | __,__,|
 *   \___|___/
 * 
 * 
 * @Danny_One
 * 
 */

import "./ERC721_efficient.sol";

pragma solidity ^0.8.0;


contract BackpackBuddiez is ERC721Enumerable, Ownable, nonReentrant {

	uint256 public PRICE = 33000000000000000;		// 0.033 ETH
	uint256 public b_PRICE = 30000000000000000;		// 0.030 ETH
	
    uint256 public MAX_SUPPLY = 3333;		// 3333 supply
    uint256 public MAX_TEAMRESERVE = 50;	// total team reserves allowed
	
	bool public saleActive = false;
	
	uint256 public maxSaleMint = 20;
	uint256 public maxBLMint = 3;
	uint256 public teamMints = 0;
	
	bytes32 public MerkleRoot;
	
    address public proxyRegistryAddress;
	
	struct AddressInfo {
		bool projectProxy;
		uint256 BLmint;
	}
	
	mapping(address => AddressInfo) public addressInfo;
		
	constructor() ERC721("Backpack Buddiez", "BUDDIEZ") {}

	
	// PUBLIC FUNCTIONS
	
	function mint(uint256 _mintAmount) public payable reentryLock {
		require(saleActive, "public sale not active");
		require(msg.sender == tx.origin, "no proxy transactions");
		
		uint256 supply = totalSupply();
		require(_mintAmount < maxSaleMint + 1, "max mint per session exceeded");
		require(supply + _mintAmount < MAX_SUPPLY + 1, "max NFT limit exceeded");
	
		require(msg.value >= _mintAmount * PRICE, "not enough ETH sent");

		for (uint256 i=0; i < _mintAmount; i++) {
		  _safeMint(msg.sender, supply + i);
		}
	}
  
  
	function mintBuddiezSale(bytes32[] memory _proof, uint256 _mintAmount) public payable reentryLock {
		require(saleActive, "public sale not active");
		require(MerkleRoot > 0x00, "root not set");
		
		uint256 supply = totalSupply();
		require(supply + _mintAmount < MAX_SUPPLY + 1, "max collection limit exceeded");
		require(addressInfo[msg.sender].BLmint + _mintAmount < maxBLMint + 1, "max BL mints exceeded");
		
		require(MerkleProof.verify(_proof, MerkleRoot, keccak256(abi.encodePacked(msg.sender))), "invalid sender proof");

		require(msg.value >= _mintAmount * b_PRICE, "not enough ETH sent");
		
		addressInfo[msg.sender].BLmint += _mintAmount;
		
		for (uint256 i=0; i < _mintAmount; i++) {
		  _safeMint(msg.sender, supply + i);
		}
	}
	
	
	function checkProof(bytes32[] memory proof) public view returns(bool) {
        return MerkleProof.verify(proof, MerkleRoot, keccak256(abi.encodePacked(msg.sender)));
    }
	
    function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
        MarketplaceProxyRegistry proxyRegistry = MarketplaceProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == operator || addressInfo[operator].projectProxy) return true;
        return super.isApprovedForAll(_owner, operator);
    }


	// ONLY OWNER FUNCTIONS

	function setBaseURI(string memory baseURI_) public onlyOwner {
        _setBaseURI(baseURI_);
    }

    function setMerkleRoot(bytes32 _MerkleRoot) public onlyOwner {
        MerkleRoot = _MerkleRoot;
    }
	
    function flipSaleState() public onlyOwner {
        saleActive = !saleActive;
    }

	function setProxyRegistry(address _proxyRegistryAddress) public onlyOwner {
		proxyRegistryAddress = _proxyRegistryAddress;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
		(bool success, ) = msg.sender.call{value: balance}("");
        require(success, "Transfer failed.");
    }

    function setPrice(uint256 _newPrice) public onlyOwner {
        PRICE = _newPrice;
    }
	
	// reserve function for team mints (giveaways & payments)
    function teamMint(address _to, uint256 _reserveAmount) public onlyOwner {
        require(_reserveAmount > 0 && _reserveAmount + teamMints < MAX_TEAMRESERVE + 1, "Not enough reserve left for team");
		uint256 supply = totalSupply();
		require(supply + _reserveAmount < MAX_SUPPLY + 1, "max collection limit exceeded");
		
		teamMints = teamMints + _reserveAmount;
		
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i );
        }
    }

}

contract OwnableDelegateProxy { }
contract MarketplaceProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

File 2 of 2: ERC721_efficient.sol
/**
* Flattened contract dependencies for ERC721 NFT projects
* @Danny_One
*
*
* Added Merkle Proof presale list
* Improved Enumerable per new best practices to save gas
* 
* Flattened from:
*	MerkleProof.sol - Nuclear Nerds (2022-01-16)
*   ERC721Enumerable.sol - Nuclear Nerds (2022-01-04)
*   IERC721Enumerable.sol - Open Zeppelin (2022-01-04)
* 	OpenZeppelin (on 2021-11-18):
*		IERC20.sol (2022-04-13)
* 		ERC721.sol **significantly modified
* 		IERC721.sol
* 		IERC721Receiver.sol
* 		IERC721Metadata.sol
* 		Address.sol
* 		Context.sol
* 		Ownable.sol
* 		Strings.sol
* 		Counters.sol
* 		ERC165.sol
* 		IERC165.sol
* 	nonReentrant (custom)
* 	
**/


// SPDX-License-Identifier: MIT




// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}




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

pragma solidity ^0.8.0;

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



// OpenZeppelin Contracts v4.3.2 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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






// OpenZeppelin Contracts v4.3.2 (utils/Strings.sol)

pragma solidity ^0.8.0;

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





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

pragma solidity ^0.8.0;

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

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




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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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




// OpenZeppelin Contracts v4.3.2 (utils/Address.sol)

pragma solidity ^0.8.0;

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






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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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







// OpenZeppelin Contracts v4.3.2 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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





// OpenZeppelin Contracts v4.3.2 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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




// OpenZeppelin Contracts v4.3.2 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}





/**
 * @title nonReentrant module to prevent recursive calling of functions
 * @dev See https://medium.com/coinmonks/protect-your-solidity-smart-contracts-from-reentrancy-attacks-9972c3af7c21
 * part of a flattened ERC721 dependency collection compiled by Danny_One
 */
 
abstract contract nonReentrant {
    bool private _reentryKey = false;
    modifier reentryLock {
        require(!_reentryKey, "cannot reenter a locked function");
        _reentryKey = true;
        _;
        _reentryKey = false;
    }
}







// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}







// OpenZeppelin Contracts v4.3.2 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 * 
 * Modified from original OpenZeppelin version to improve gas performance
 * 
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;
	
	// Base URI
    string private _baseURI;
	
	// Owner array
	address[] internal _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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
	 * updated for owner array
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
		uint256 _ownerBalance = 0;
		for(uint i = 0; i < _owners.length; i++) {
			if(_owners[i] == owner) _ownerBalance ++;
		}
        return _ownerBalance;
    }
	
	
    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI_ = baseURI();
        return bytes(baseURI_).length > 0 ? string(abi.encodePacked(baseURI_, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function baseURI() internal view virtual returns (string memory) {
        return _baseURI;
    }
	
    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }


    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.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);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    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);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    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);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    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");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

        _owners.push(to);

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _owners[tokenId] = address(0);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.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);

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    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);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    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;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}




// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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





/**
 * borrowed from Nuclear Nerds implementation
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < _owners.length, "ERC721Enumerable: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TEAMRESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressInfo","outputs":[{"internalType":"bool","name":"projectProxy","type":"bool"},{"internalType":"uint256","name":"BLmint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"b_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"checkProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","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":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBLMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintBuddiezSale","outputs":[],"stateMutability":"payable","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":"proxyRegistryAddress","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_MerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistry","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526006805460ff60a01b1916905566753d533d968000600755666a94d74f430000600855610d056009556032600a55600b805460ff191690556014600c556003600d556000600e553480156200005857600080fd5b50604080518082018252601081526f2130b1b5b830b1b590213ab23234b2bd60811b602080830191825283518085019094526007845266212aa22224a2ad60c91b908401528151919291620000b0916000916200013f565b508051620000c69060019060208401906200013f565b505050620000e3620000dd620000e960201b60201c565b620000ed565b62000222565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014d90620001e5565b90600052602060002090601f016020900481019282620001715760008555620001bc565b82601f106200018c57805160ff1916838001178555620001bc565b82800160010185558215620001bc579182015b82811115620001bc5782518255916020019190600101906200019f565b50620001ca929150620001ce565b5090565b5b80821115620001ca5760008155600101620001cf565b600181811c90821680620001fa57607f821691505b602082108114156200021c57634e487b7160e01b600052602260045260246000fd5b50919050565b61284580620002326000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063add5a4fa116100ab578063c87b56dd1161006f578063c87b56dd14610671578063cd7c032614610691578063def60e91146106b1578063e985e9c5146106c7578063f2fde38b146106e757600080fd5b8063add5a4fa146105e5578063adfdeef914610605578063b0e6272214610625578063b88d4fde1461063b578063c81557e81461065b57600080fd5b80638da5cb5b116100f25780638da5cb5b1461055f57806391b7f5ed1461057d57806395d89b411461059d578063a0712d68146105b2578063a22cb465146105c557600080fd5b8063715018a6146104eb5780637cb64759146105005780638ad8f72c146105205780638b568c20146105335780638d859f3e1461054957600080fd5b806332cb6b0c116101bc5780634f6ccce7116101805780634f6ccce71461045157806355f804b3146104715780636352211e1461049157806368428a1b146104b157806370a08231146104cb57600080fd5b806332cb6b0c146103db57806334918dfd146103f1578063378f33be146104065780633ccfd60b1461041c57806342842e0e1461043157600080fd5b806316ddcd191161020357806316ddcd191461031557806318160ddd146103355780632126fcb21461034a57806323b872dd1461039b5780632f745c59146103bb57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf578063132d3f6a146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046123f5565b610707565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610732565b60405161026c919061252d565b3480156102a357600080fd5b506102b76102b23660046123dc565b6107c4565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612336565b610851565b005b3480156102fd57600080fd5b50610307600f5481565b60405190815260200161026c565b34801561032157600080fd5b50610260610330366004612362565b610967565b34801561034157600080fd5b50600354610307565b34801561035657600080fd5b506103846103653660046121ec565b6011602052600090815260409020805460019091015460ff9091169082565b60408051921515835260208301919091520161026c565b3480156103a757600080fd5b506102ef6103b6366004612242565b6109ae565b3480156103c757600080fd5b506103076103d6366004612336565b6109df565b3480156103e757600080fd5b5061030760095481565b3480156103fd57600080fd5b506102ef610a92565b34801561041257600080fd5b50610307600e5481565b34801561042857600080fd5b506102ef610ad0565b34801561043d57600080fd5b506102ef61044c366004612242565b610b8b565b34801561045d57600080fd5b5061030761046c3660046123dc565b610ba6565b34801561047d57600080fd5b506102ef61048c36600461244c565b610c13565b34801561049d57600080fd5b506102b76104ac3660046123dc565b610c49565b3480156104bd57600080fd5b50600b546102609060ff1681565b3480156104d757600080fd5b506103076104e63660046121ec565b610cd5565b3480156104f757600080fd5b506102ef610dad565b34801561050c57600080fd5b506102ef61051b3660046123dc565b610de3565b6102ef61052e366004612397565b610e12565b34801561053f57600080fd5b5061030760085481565b34801561055557600080fd5b5061030760075481565b34801561056b57600080fd5b506006546001600160a01b03166102b7565b34801561058957600080fd5b506102ef6105983660046123dc565b611118565b3480156105a957600080fd5b5061028a611147565b6102ef6105c03660046123dc565b611156565b3480156105d157600080fd5b506102ef6105e0366004612303565b6113ac565b3480156105f157600080fd5b506102ef610600366004612336565b6113b7565b34801561061157600080fd5b506102ef6106203660046121ec565b61150a565b34801561063157600080fd5b50610307600d5481565b34801561064757600080fd5b506102ef610656366004612283565b611556565b34801561066757600080fd5b50610307600c5481565b34801561067d57600080fd5b5061028a61068c3660046123dc565b611588565b34801561069d57600080fd5b506010546102b7906001600160a01b031681565b3480156106bd57600080fd5b50610307600a5481565b3480156106d357600080fd5b506102606106e2366004612209565b611653565b3480156106f357600080fd5b506102ef6107023660046121ec565b611746565b60006001600160e01b0319821663780e9d6360e01b148061072c575061072c826117de565b92915050565b60606000805461074190612722565b80601f016020809104026020016040519081016040528092919081815260200182805461076d90612722565b80156107ba5780601f1061078f576101008083540402835291602001916107ba565b820191906000526020600020905b81548152906001019060200180831161079d57829003601f168201915b5050505050905090565b60006107cf8261182e565b6108355760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061085c82610c49565b9050806001600160a01b0316836001600160a01b031614156108ca5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082c565b336001600160a01b03821614806108e657506108e68133611653565b6109585760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082c565b6109628383611878565b505050565b600f546040516bffffffffffffffffffffffff193360601b16602082015260009161072c918491906034015b604051602081830303815290604052805190602001206118e6565b6109b833826118fc565b6109d45760405162461bcd60e51b815260040161082c90612612565b6109628383836119be565b60006109ea83610cd5565b8210610a085760405162461bcd60e51b815260040161082c90612540565b6000805b600354811015610a795760038181548110610a2957610a296127b8565b6000918252602090912001546001600160a01b0386811691161415610a675783821415610a5957915061072c9050565b81610a638161275d565b9250505b80610a718161275d565b915050610a0c565b5060405162461bcd60e51b815260040161082c90612540565b6006546001600160a01b03163314610abc5760405162461bcd60e51b815260040161082c906125dd565b600b805460ff19811660ff90911615179055565b6006546001600160a01b03163314610afa5760405162461bcd60e51b815260040161082c906125dd565b6040514790600090339083908381818185875af1925050503d8060008114610b3e576040519150601f19603f3d011682016040523d82523d6000602084013e610b43565b606091505b5050905080610b875760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161082c565b5050565b61096283838360405180602001604052806000815250611556565b6003546000908210610c0f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161082c565b5090565b6006546001600160a01b03163314610c3d5760405162461bcd60e51b815260040161082c906125dd565b610c4681611b14565b50565b60008060038381548110610c5f57610c5f6127b8565b6000918252602090912001546001600160a01b031690508061072c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082c565b60006001600160a01b038216610d405760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082c565b6000805b600354811015610da657836001600160a01b031660038281548110610d6b57610d6b6127b8565b6000918252602090912001546001600160a01b03161415610d945781610d908161275d565b9250505b80610d9e8161275d565b915050610d44565b5092915050565b6006546001600160a01b03163314610dd75760405162461bcd60e51b815260040161082c906125dd565b610de16000611b27565b565b6006546001600160a01b03163314610e0d5760405162461bcd60e51b815260040161082c906125dd565b600f55565b600654600160a01b900460ff1615610e6c5760405162461bcd60e51b815260206004820181905260248201527f63616e6e6f74207265656e7465722061206c6f636b65642066756e6374696f6e604482015260640161082c565b6006805460ff60a01b1916600160a01b179055600b5460ff16610eca5760405162461bcd60e51b81526020600482015260166024820152757075626c69632073616c65206e6f742061637469766560501b604482015260640161082c565b600f54610f085760405162461bcd60e51b815260206004820152600c60248201526b1c9bdbdd081b9bdd081cd95d60a21b604482015260640161082c565b6000610f1360035490565b90506009546001610f249190612694565b610f2e8383612694565b10610f7b5760405162461bcd60e51b815260206004820152601d60248201527f6d617820636f6c6c656374696f6e206c696d6974206578636565646564000000604482015260640161082c565b600d54610f89906001612694565b33600090815260116020526040902060010154610fa7908490612694565b10610fec5760405162461bcd60e51b81526020600482015260156024820152741b585e081093081b5a5b9d1cc8195e18d959591959605a1b604482015260640161082c565b600f546040516bffffffffffffffffffffffff193360601b166020820152611018918591603401610993565b61105b5760405162461bcd60e51b815260206004820152601460248201527334b73b30b634b21039b2b73232b910383937b7b360611b604482015260640161082c565b60085461106890836126c0565b3410156110ad5760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da08115512081cd95b9d606a1b604482015260640161082c565b33600090815260116020526040812060010180548492906110cf908490612694565b90915550600090505b82811015611105576110f3336110ee8385612694565b611b79565b806110fd8161275d565b9150506110d8565b50506006805460ff60a01b191690555050565b6006546001600160a01b031633146111425760405162461bcd60e51b815260040161082c906125dd565b600755565b60606001805461074190612722565b600654600160a01b900460ff16156111b05760405162461bcd60e51b815260206004820181905260248201527f63616e6e6f74207265656e7465722061206c6f636b65642066756e6374696f6e604482015260640161082c565b6006805460ff60a01b1916600160a01b179055600b5460ff1661120e5760405162461bcd60e51b81526020600482015260166024820152757075626c69632073616c65206e6f742061637469766560501b604482015260640161082c565b3332146112555760405162461bcd60e51b81526020600482015260156024820152746e6f2070726f7879207472616e73616374696f6e7360581b604482015260640161082c565b600061126060035490565b9050600c5460016112719190612694565b82106112bf5760405162461bcd60e51b815260206004820152601d60248201527f6d6178206d696e74207065722073657373696f6e206578636565646564000000604482015260640161082c565b6009546112cd906001612694565b6112d78383612694565b1061131d5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161082c565b60075461132a90836126c0565b34101561136f5760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da08115512081cd95b9d606a1b604482015260640161082c565b60005b8281101561139a57611388336110ee8385612694565b806113928161275d565b915050611372565b50506006805460ff60a01b1916905550565b610b87338383611b93565b6006546001600160a01b031633146113e15760405162461bcd60e51b815260040161082c906125dd565b6000811180156114095750600a546113fa906001612694565b600e546114079083612694565b105b6114555760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604482015260640161082c565b600061146060035490565b905060095460016114719190612694565b61147b8383612694565b106114c85760405162461bcd60e51b815260206004820152601d60248201527f6d617820636f6c6c656374696f6e206c696d6974206578636565646564000000604482015260640161082c565b81600e546114d69190612694565b600e5560005b82811015611504576114f2846110ee8385612694565b806114fc8161275d565b9150506114dc565b50505050565b6006546001600160a01b031633146115345760405162461bcd60e51b815260040161082c906125dd565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b61156033836118fc565b61157c5760405162461bcd60e51b815260040161082c90612612565b61150484848484611c62565b60606115938261182e565b6115f75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161082c565b6000611601611c95565b90506000815111611621576040518060200160405280600081525061164c565b8061162b84611ca4565b60405160200161163c9291906124c1565b6040516020818303038152906040525b9392505050565b60105460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156116a057600080fd5b505afa1580156116b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d8919061242f565b6001600160a01b0316148061170557506001600160a01b03831660009081526011602052604090205460ff165b1561171457600191505061072c565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b031633146117705760405162461bcd60e51b815260040161082c906125dd565b6001600160a01b0381166117d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082c565b610c4681611b27565b60006001600160e01b031982166380ac58cd60e01b148061180f57506001600160e01b03198216635b5e139f60e01b145b8061072c57506301ffc9a760e01b6001600160e01b031983161461072c565b6003546000908210801561072c575060006001600160a01b03166003838154811061185b5761185b6127b8565b6000918252602090912001546001600160a01b0316141592915050565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118ad82610c49565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000826118f38584611da2565b14949350505050565b60006119078261182e565b6119685760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082c565b600061197383610c49565b9050806001600160a01b0316846001600160a01b031614806119ae5750836001600160a01b03166119a3846107c4565b6001600160a01b0316145b8061173e575061173e8185611653565b826001600160a01b03166119d182610c49565b6001600160a01b031614611a395760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082c565b6001600160a01b038216611a9b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082c565b611aa6600082611878565b8160038281548110611aba57611aba6127b8565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b8051610b8790600290602084019061207e565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b87828260405180602001604052806000815250611e16565b816001600160a01b0316836001600160a01b03161415611bf55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c6d8484846119be565b611c7984848484611e49565b6115045760405162461bcd60e51b815260040161082c9061258b565b60606002805461074190612722565b606081611cc85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cf25780611cdc8161275d565b9150611ceb9050600a836126ac565b9150611ccc565b60008167ffffffffffffffff811115611d0d57611d0d6127ce565b6040519080825280601f01601f191660200182016040528015611d37576020820181803683370190505b5090505b841561173e57611d4c6001836126df565b9150611d59600a86612778565b611d64906030612694565b60f81b818381518110611d7957611d796127b8565b60200101906001600160f81b031916908160001a905350611d9b600a866126ac565b9450611d3b565b600081815b8451811015611e0e576000858281518110611dc457611dc46127b8565b60200260200101519050808311611dea5760008381526020829052604090209250611dfb565b600081815260208490526040902092505b5080611e068161275d565b915050611da7565b509392505050565b611e208383611f56565b611e2d6000848484611e49565b6109625760405162461bcd60e51b815260040161082c9061258b565b60006001600160a01b0384163b15611f4b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e8d9033908990889088906004016124f0565b602060405180830381600087803b158015611ea757600080fd5b505af1925050508015611ed7575060408051601f3d908101601f19168201909252611ed491810190612412565b60015b611f31573d808015611f05576040519150601f19603f3d011682016040523d82523d6000602084013e611f0a565b606091505b508051611f295760405162461bcd60e51b815260040161082c9061258b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061173e565b506001949350505050565b6001600160a01b038216611fac5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082c565b611fb58161182e565b156120025760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082c565b6003805460018101825560009182527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461208a90612722565b90600052602060002090601f0160209004810192826120ac57600085556120f2565b82601f106120c557805160ff19168380011785556120f2565b828001600101855582156120f2579182015b828111156120f25782518255916020019190600101906120d7565b50610c0f9291505b80821115610c0f57600081556001016120fa565b600067ffffffffffffffff831115612128576121286127ce565b61213b601f8401601f1916602001612663565b905082815283838301111561214f57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261217757600080fd5b8135602067ffffffffffffffff821115612193576121936127ce565b8160051b6121a2828201612663565b8381528281019086840183880185018910156121bd57600080fd5b600093505b858410156121e05780358352600193909301929184019184016121c2565b50979650505050505050565b6000602082840312156121fe57600080fd5b813561164c816127e4565b6000806040838503121561221c57600080fd5b8235612227816127e4565b91506020830135612237816127e4565b809150509250929050565b60008060006060848603121561225757600080fd5b8335612262816127e4565b92506020840135612272816127e4565b929592945050506040919091013590565b6000806000806080858703121561229957600080fd5b84356122a4816127e4565b935060208501356122b4816127e4565b925060408501359150606085013567ffffffffffffffff8111156122d757600080fd5b8501601f810187136122e857600080fd5b6122f78782356020840161210e565b91505092959194509250565b6000806040838503121561231657600080fd5b8235612321816127e4565b91506020830135801515811461223757600080fd5b6000806040838503121561234957600080fd5b8235612354816127e4565b946020939093013593505050565b60006020828403121561237457600080fd5b813567ffffffffffffffff81111561238b57600080fd5b61173e84828501612166565b600080604083850312156123aa57600080fd5b823567ffffffffffffffff8111156123c157600080fd5b6123cd85828601612166565b95602094909401359450505050565b6000602082840312156123ee57600080fd5b5035919050565b60006020828403121561240757600080fd5b813561164c816127f9565b60006020828403121561242457600080fd5b815161164c816127f9565b60006020828403121561244157600080fd5b815161164c816127e4565b60006020828403121561245e57600080fd5b813567ffffffffffffffff81111561247557600080fd5b8201601f8101841361248657600080fd5b61173e8482356020840161210e565b600081518084526124ad8160208601602086016126f6565b601f01601f19169290920160200192915050565b600083516124d38184602088016126f6565b8351908301906124e78183602088016126f6565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061252390830184612495565b9695505050505050565b60208152600061164c6020830184612495565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561268c5761268c6127ce565b604052919050565b600082198211156126a7576126a761278c565b500190565b6000826126bb576126bb6127a2565b500490565b60008160001904831182151516156126da576126da61278c565b500290565b6000828210156126f1576126f161278c565b500390565b60005b838110156127115781810151838201526020016126f9565b838111156115045750506000910152565b600181811c9082168061273657607f821691505b6020821081141561275757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127715761277161278c565b5060010190565b600082612787576127876127a2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c4657600080fd5b6001600160e01b031981168114610c4657600080fdfea26469706673582212208233d4179b32db2f7b289713d5e03984663cdcf02cf791643ab56b2a9be0b15b64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063add5a4fa116100ab578063c87b56dd1161006f578063c87b56dd14610671578063cd7c032614610691578063def60e91146106b1578063e985e9c5146106c7578063f2fde38b146106e757600080fd5b8063add5a4fa146105e5578063adfdeef914610605578063b0e6272214610625578063b88d4fde1461063b578063c81557e81461065b57600080fd5b80638da5cb5b116100f25780638da5cb5b1461055f57806391b7f5ed1461057d57806395d89b411461059d578063a0712d68146105b2578063a22cb465146105c557600080fd5b8063715018a6146104eb5780637cb64759146105005780638ad8f72c146105205780638b568c20146105335780638d859f3e1461054957600080fd5b806332cb6b0c116101bc5780634f6ccce7116101805780634f6ccce71461045157806355f804b3146104715780636352211e1461049157806368428a1b146104b157806370a08231146104cb57600080fd5b806332cb6b0c146103db57806334918dfd146103f1578063378f33be146104065780633ccfd60b1461041c57806342842e0e1461043157600080fd5b806316ddcd191161020357806316ddcd191461031557806318160ddd146103355780632126fcb21461034a57806323b872dd1461039b5780632f745c59146103bb57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf578063132d3f6a146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046123f5565b610707565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610732565b60405161026c919061252d565b3480156102a357600080fd5b506102b76102b23660046123dc565b6107c4565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612336565b610851565b005b3480156102fd57600080fd5b50610307600f5481565b60405190815260200161026c565b34801561032157600080fd5b50610260610330366004612362565b610967565b34801561034157600080fd5b50600354610307565b34801561035657600080fd5b506103846103653660046121ec565b6011602052600090815260409020805460019091015460ff9091169082565b60408051921515835260208301919091520161026c565b3480156103a757600080fd5b506102ef6103b6366004612242565b6109ae565b3480156103c757600080fd5b506103076103d6366004612336565b6109df565b3480156103e757600080fd5b5061030760095481565b3480156103fd57600080fd5b506102ef610a92565b34801561041257600080fd5b50610307600e5481565b34801561042857600080fd5b506102ef610ad0565b34801561043d57600080fd5b506102ef61044c366004612242565b610b8b565b34801561045d57600080fd5b5061030761046c3660046123dc565b610ba6565b34801561047d57600080fd5b506102ef61048c36600461244c565b610c13565b34801561049d57600080fd5b506102b76104ac3660046123dc565b610c49565b3480156104bd57600080fd5b50600b546102609060ff1681565b3480156104d757600080fd5b506103076104e63660046121ec565b610cd5565b3480156104f757600080fd5b506102ef610dad565b34801561050c57600080fd5b506102ef61051b3660046123dc565b610de3565b6102ef61052e366004612397565b610e12565b34801561053f57600080fd5b5061030760085481565b34801561055557600080fd5b5061030760075481565b34801561056b57600080fd5b506006546001600160a01b03166102b7565b34801561058957600080fd5b506102ef6105983660046123dc565b611118565b3480156105a957600080fd5b5061028a611147565b6102ef6105c03660046123dc565b611156565b3480156105d157600080fd5b506102ef6105e0366004612303565b6113ac565b3480156105f157600080fd5b506102ef610600366004612336565b6113b7565b34801561061157600080fd5b506102ef6106203660046121ec565b61150a565b34801561063157600080fd5b50610307600d5481565b34801561064757600080fd5b506102ef610656366004612283565b611556565b34801561066757600080fd5b50610307600c5481565b34801561067d57600080fd5b5061028a61068c3660046123dc565b611588565b34801561069d57600080fd5b506010546102b7906001600160a01b031681565b3480156106bd57600080fd5b50610307600a5481565b3480156106d357600080fd5b506102606106e2366004612209565b611653565b3480156106f357600080fd5b506102ef6107023660046121ec565b611746565b60006001600160e01b0319821663780e9d6360e01b148061072c575061072c826117de565b92915050565b60606000805461074190612722565b80601f016020809104026020016040519081016040528092919081815260200182805461076d90612722565b80156107ba5780601f1061078f576101008083540402835291602001916107ba565b820191906000526020600020905b81548152906001019060200180831161079d57829003601f168201915b5050505050905090565b60006107cf8261182e565b6108355760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061085c82610c49565b9050806001600160a01b0316836001600160a01b031614156108ca5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082c565b336001600160a01b03821614806108e657506108e68133611653565b6109585760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082c565b6109628383611878565b505050565b600f546040516bffffffffffffffffffffffff193360601b16602082015260009161072c918491906034015b604051602081830303815290604052805190602001206118e6565b6109b833826118fc565b6109d45760405162461bcd60e51b815260040161082c90612612565b6109628383836119be565b60006109ea83610cd5565b8210610a085760405162461bcd60e51b815260040161082c90612540565b6000805b600354811015610a795760038181548110610a2957610a296127b8565b6000918252602090912001546001600160a01b0386811691161415610a675783821415610a5957915061072c9050565b81610a638161275d565b9250505b80610a718161275d565b915050610a0c565b5060405162461bcd60e51b815260040161082c90612540565b6006546001600160a01b03163314610abc5760405162461bcd60e51b815260040161082c906125dd565b600b805460ff19811660ff90911615179055565b6006546001600160a01b03163314610afa5760405162461bcd60e51b815260040161082c906125dd565b6040514790600090339083908381818185875af1925050503d8060008114610b3e576040519150601f19603f3d011682016040523d82523d6000602084013e610b43565b606091505b5050905080610b875760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161082c565b5050565b61096283838360405180602001604052806000815250611556565b6003546000908210610c0f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161082c565b5090565b6006546001600160a01b03163314610c3d5760405162461bcd60e51b815260040161082c906125dd565b610c4681611b14565b50565b60008060038381548110610c5f57610c5f6127b8565b6000918252602090912001546001600160a01b031690508061072c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082c565b60006001600160a01b038216610d405760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082c565b6000805b600354811015610da657836001600160a01b031660038281548110610d6b57610d6b6127b8565b6000918252602090912001546001600160a01b03161415610d945781610d908161275d565b9250505b80610d9e8161275d565b915050610d44565b5092915050565b6006546001600160a01b03163314610dd75760405162461bcd60e51b815260040161082c906125dd565b610de16000611b27565b565b6006546001600160a01b03163314610e0d5760405162461bcd60e51b815260040161082c906125dd565b600f55565b600654600160a01b900460ff1615610e6c5760405162461bcd60e51b815260206004820181905260248201527f63616e6e6f74207265656e7465722061206c6f636b65642066756e6374696f6e604482015260640161082c565b6006805460ff60a01b1916600160a01b179055600b5460ff16610eca5760405162461bcd60e51b81526020600482015260166024820152757075626c69632073616c65206e6f742061637469766560501b604482015260640161082c565b600f54610f085760405162461bcd60e51b815260206004820152600c60248201526b1c9bdbdd081b9bdd081cd95d60a21b604482015260640161082c565b6000610f1360035490565b90506009546001610f249190612694565b610f2e8383612694565b10610f7b5760405162461bcd60e51b815260206004820152601d60248201527f6d617820636f6c6c656374696f6e206c696d6974206578636565646564000000604482015260640161082c565b600d54610f89906001612694565b33600090815260116020526040902060010154610fa7908490612694565b10610fec5760405162461bcd60e51b81526020600482015260156024820152741b585e081093081b5a5b9d1cc8195e18d959591959605a1b604482015260640161082c565b600f546040516bffffffffffffffffffffffff193360601b166020820152611018918591603401610993565b61105b5760405162461bcd60e51b815260206004820152601460248201527334b73b30b634b21039b2b73232b910383937b7b360611b604482015260640161082c565b60085461106890836126c0565b3410156110ad5760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da08115512081cd95b9d606a1b604482015260640161082c565b33600090815260116020526040812060010180548492906110cf908490612694565b90915550600090505b82811015611105576110f3336110ee8385612694565b611b79565b806110fd8161275d565b9150506110d8565b50506006805460ff60a01b191690555050565b6006546001600160a01b031633146111425760405162461bcd60e51b815260040161082c906125dd565b600755565b60606001805461074190612722565b600654600160a01b900460ff16156111b05760405162461bcd60e51b815260206004820181905260248201527f63616e6e6f74207265656e7465722061206c6f636b65642066756e6374696f6e604482015260640161082c565b6006805460ff60a01b1916600160a01b179055600b5460ff1661120e5760405162461bcd60e51b81526020600482015260166024820152757075626c69632073616c65206e6f742061637469766560501b604482015260640161082c565b3332146112555760405162461bcd60e51b81526020600482015260156024820152746e6f2070726f7879207472616e73616374696f6e7360581b604482015260640161082c565b600061126060035490565b9050600c5460016112719190612694565b82106112bf5760405162461bcd60e51b815260206004820152601d60248201527f6d6178206d696e74207065722073657373696f6e206578636565646564000000604482015260640161082c565b6009546112cd906001612694565b6112d78383612694565b1061131d5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161082c565b60075461132a90836126c0565b34101561136f5760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da08115512081cd95b9d606a1b604482015260640161082c565b60005b8281101561139a57611388336110ee8385612694565b806113928161275d565b915050611372565b50506006805460ff60a01b1916905550565b610b87338383611b93565b6006546001600160a01b031633146113e15760405162461bcd60e51b815260040161082c906125dd565b6000811180156114095750600a546113fa906001612694565b600e546114079083612694565b105b6114555760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604482015260640161082c565b600061146060035490565b905060095460016114719190612694565b61147b8383612694565b106114c85760405162461bcd60e51b815260206004820152601d60248201527f6d617820636f6c6c656374696f6e206c696d6974206578636565646564000000604482015260640161082c565b81600e546114d69190612694565b600e5560005b82811015611504576114f2846110ee8385612694565b806114fc8161275d565b9150506114dc565b50505050565b6006546001600160a01b031633146115345760405162461bcd60e51b815260040161082c906125dd565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b61156033836118fc565b61157c5760405162461bcd60e51b815260040161082c90612612565b61150484848484611c62565b60606115938261182e565b6115f75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161082c565b6000611601611c95565b90506000815111611621576040518060200160405280600081525061164c565b8061162b84611ca4565b60405160200161163c9291906124c1565b6040516020818303038152906040525b9392505050565b60105460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156116a057600080fd5b505afa1580156116b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d8919061242f565b6001600160a01b0316148061170557506001600160a01b03831660009081526011602052604090205460ff165b1561171457600191505061072c565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b031633146117705760405162461bcd60e51b815260040161082c906125dd565b6001600160a01b0381166117d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082c565b610c4681611b27565b60006001600160e01b031982166380ac58cd60e01b148061180f57506001600160e01b03198216635b5e139f60e01b145b8061072c57506301ffc9a760e01b6001600160e01b031983161461072c565b6003546000908210801561072c575060006001600160a01b03166003838154811061185b5761185b6127b8565b6000918252602090912001546001600160a01b0316141592915050565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118ad82610c49565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000826118f38584611da2565b14949350505050565b60006119078261182e565b6119685760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082c565b600061197383610c49565b9050806001600160a01b0316846001600160a01b031614806119ae5750836001600160a01b03166119a3846107c4565b6001600160a01b0316145b8061173e575061173e8185611653565b826001600160a01b03166119d182610c49565b6001600160a01b031614611a395760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082c565b6001600160a01b038216611a9b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082c565b611aa6600082611878565b8160038281548110611aba57611aba6127b8565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b8051610b8790600290602084019061207e565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b87828260405180602001604052806000815250611e16565b816001600160a01b0316836001600160a01b03161415611bf55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c6d8484846119be565b611c7984848484611e49565b6115045760405162461bcd60e51b815260040161082c9061258b565b60606002805461074190612722565b606081611cc85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cf25780611cdc8161275d565b9150611ceb9050600a836126ac565b9150611ccc565b60008167ffffffffffffffff811115611d0d57611d0d6127ce565b6040519080825280601f01601f191660200182016040528015611d37576020820181803683370190505b5090505b841561173e57611d4c6001836126df565b9150611d59600a86612778565b611d64906030612694565b60f81b818381518110611d7957611d796127b8565b60200101906001600160f81b031916908160001a905350611d9b600a866126ac565b9450611d3b565b600081815b8451811015611e0e576000858281518110611dc457611dc46127b8565b60200260200101519050808311611dea5760008381526020829052604090209250611dfb565b600081815260208490526040902092505b5080611e068161275d565b915050611da7565b509392505050565b611e208383611f56565b611e2d6000848484611e49565b6109625760405162461bcd60e51b815260040161082c9061258b565b60006001600160a01b0384163b15611f4b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e8d9033908990889088906004016124f0565b602060405180830381600087803b158015611ea757600080fd5b505af1925050508015611ed7575060408051601f3d908101601f19168201909252611ed491810190612412565b60015b611f31573d808015611f05576040519150601f19603f3d011682016040523d82523d6000602084013e611f0a565b606091505b508051611f295760405162461bcd60e51b815260040161082c9061258b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061173e565b506001949350505050565b6001600160a01b038216611fac5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082c565b611fb58161182e565b156120025760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082c565b6003805460018101825560009182527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461208a90612722565b90600052602060002090601f0160209004810192826120ac57600085556120f2565b82601f106120c557805160ff19168380011785556120f2565b828001600101855582156120f2579182015b828111156120f25782518255916020019190600101906120d7565b50610c0f9291505b80821115610c0f57600081556001016120fa565b600067ffffffffffffffff831115612128576121286127ce565b61213b601f8401601f1916602001612663565b905082815283838301111561214f57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261217757600080fd5b8135602067ffffffffffffffff821115612193576121936127ce565b8160051b6121a2828201612663565b8381528281019086840183880185018910156121bd57600080fd5b600093505b858410156121e05780358352600193909301929184019184016121c2565b50979650505050505050565b6000602082840312156121fe57600080fd5b813561164c816127e4565b6000806040838503121561221c57600080fd5b8235612227816127e4565b91506020830135612237816127e4565b809150509250929050565b60008060006060848603121561225757600080fd5b8335612262816127e4565b92506020840135612272816127e4565b929592945050506040919091013590565b6000806000806080858703121561229957600080fd5b84356122a4816127e4565b935060208501356122b4816127e4565b925060408501359150606085013567ffffffffffffffff8111156122d757600080fd5b8501601f810187136122e857600080fd5b6122f78782356020840161210e565b91505092959194509250565b6000806040838503121561231657600080fd5b8235612321816127e4565b91506020830135801515811461223757600080fd5b6000806040838503121561234957600080fd5b8235612354816127e4565b946020939093013593505050565b60006020828403121561237457600080fd5b813567ffffffffffffffff81111561238b57600080fd5b61173e84828501612166565b600080604083850312156123aa57600080fd5b823567ffffffffffffffff8111156123c157600080fd5b6123cd85828601612166565b95602094909401359450505050565b6000602082840312156123ee57600080fd5b5035919050565b60006020828403121561240757600080fd5b813561164c816127f9565b60006020828403121561242457600080fd5b815161164c816127f9565b60006020828403121561244157600080fd5b815161164c816127e4565b60006020828403121561245e57600080fd5b813567ffffffffffffffff81111561247557600080fd5b8201601f8101841361248657600080fd5b61173e8482356020840161210e565b600081518084526124ad8160208601602086016126f6565b601f01601f19169290920160200192915050565b600083516124d38184602088016126f6565b8351908301906124e78183602088016126f6565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061252390830184612495565b9695505050505050565b60208152600061164c6020830184612495565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561268c5761268c6127ce565b604052919050565b600082198211156126a7576126a761278c565b500190565b6000826126bb576126bb6127a2565b500490565b60008160001904831182151516156126da576126da61278c565b500290565b6000828210156126f1576126f161278c565b500390565b60005b838110156127115781810151838201526020016126f9565b838111156115045750506000910152565b600181811c9082168061273657607f821691505b6020821081141561275757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127715761277161278c565b5060010190565b600082612787576127876127a2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c4657600080fd5b6001600160e01b031981168114610c4657600080fdfea26469706673582212208233d4179b32db2f7b289713d5e03984663cdcf02cf791643ab56b2a9be0b15b64736f6c63430008070033

Deployed Bytecode Sourcemap

250:3980:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43859:222:0;;;;;;;;;;-1:-1:-1;43859:222:0;;;;;:::i;:::-;;:::i;:::-;;;8234:14:2;;8227:22;8209:41;;8197:2;8182:18;43859:222:0;;;;;;;;31044:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32885:217::-;;;;;;;;;;-1:-1:-1;32885:217:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7532:32:2;;;7514:51;;7502:2;7487:18;32885:217:0;7368:203:2;32423:401:0;;;;;;;;;;-1:-1:-1;32423:401:0;;;;;:::i;:::-;;:::i;:::-;;715:25:1;;;;;;;;;;;;;;;;;;;8670::2;;;8658:2;8643:18;715:25:1;8524:177:2;2327:174:1;;;;;;;;;;-1:-1:-1;2327:174:1;;;;;:::i;:::-;;:::i;44152:108:0:-;;;;;;;;;;-1:-1:-1;44239:7:0;:14;44152:108;;863:50:1;;;;;;;;;;-1:-1:-1;863:50:1;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8454:14:2;;8447:22;8429:41;;8501:2;8486:18;;8479:34;;;;8402:18;863:50:1;8261:258:2;33612:330:0;;;;;;;;;;-1:-1:-1;33612:330:0;;;;;:::i;:::-;;:::i;44613:478::-;;;;;;;;;;-1:-1:-1;44613:478:0;;;;;:::i;:::-;;:::i;448:32:1:-;;;;;;;;;;;;;;;;3143:85;;;;;;;;;;;;;:::i;680:28::-;;;;;;;;;;;;;;;;3372:201;;;;;;;;;;;;;:::i;34008:179:0:-;;;;;;;;;;-1:-1:-1;34008:179:0;;;;;:::i;:::-;;:::i;44332:202::-;;;;;;;;;;-1:-1:-1;44332:202:0;;;;;:::i;:::-;;:::i;2921:101:1:-;;;;;;;;;;-1:-1:-1;2921:101:1;;;;;:::i;:::-;;:::i;30747:235:0:-;;;;;;;;;;-1:-1:-1;30747:235:0;;;;;:::i;:::-;;:::i;576:30:1:-;;;;;;;;;;-1:-1:-1;576:30:1;;;;;;;;30362:325:0;;;;;;;;;;-1:-1:-1;30362:325:0;;;;;:::i;:::-;;:::i;9125:101::-;;;;;;;;;;;;;:::i;3030:104:1:-;;;;;;;;;;-1:-1:-1;3030:104:1;;;;;:::i;:::-;;:::i;1554:764::-;;;;;;:::i;:::-;;:::i;382:42::-;;;;;;;;;;;;;;;;324:40;;;;;;;;;;;;;;;;8493:85:0;;;;;;;;;;-1:-1:-1;8565:6:0;;-1:-1:-1;;;;;8565:6:0;8493:85;;3581:90:1;;;;;;;;;;-1:-1:-1;3581:90:1;;;;;:::i;:::-;;:::i;31206:102:0:-;;;;;;;;;;;;;:::i;1008:535:1:-;;;;;;:::i;:::-;;:::i;33169:153:0:-;;;;;;;;;;-1:-1:-1;33169:153:0;;;;;:::i;:::-;;:::i;3740:485:1:-;;;;;;;;;;-1:-1:-1;3740:485:1;;;;;:::i;:::-;;:::i;3233:131::-;;;;;;;;;;-1:-1:-1;3233:131:1;;;;;:::i;:::-;;:::i;648:28::-;;;;;;;;;;;;;;;;34253:320:0;;;;;;;;;;-1:-1:-1;34253:320:0;;;;;:::i;:::-;;:::i;613:31:1:-;;;;;;;;;;;;;;;;31374:331:0;;;;;;;;;;-1:-1:-1;31374:331:0;;;;;:::i;:::-;;:::i;750:35:1:-;;;;;;;;;;-1:-1:-1;750:35:1;;;;-1:-1:-1;;;;;750:35:1;;;503;;;;;;;;;;;;;;;;2510:376;;;;;;;;;;-1:-1:-1;2510:376:1;;;;;:::i;:::-;;:::i;9375:198:0:-;;;;;;;;;;-1:-1:-1;9375:198:0;;;;;:::i;:::-;;:::i;43859:222::-;43961:4;-1:-1:-1;;;;;;43984:50:0;;-1:-1:-1;;;43984:50:0;;:90;;;44038:36;44062:11;44038:23;:36::i;:::-;43977:97;43859:222;-1:-1:-1;;43859:222:0:o;31044:98::-;31098:13;31130:5;31123:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31044:98;:::o;32885:217::-;32961:7;32988:16;32996:7;32988;:16::i;:::-;32980:73;;;;-1:-1:-1;;;32980:73:0;;16325:2:2;32980:73:0;;;16307:21:2;16364:2;16344:18;;;16337:30;16403:34;16383:18;;;16376:62;-1:-1:-1;;;16454:18:2;;;16447:42;16506:19;;32980:73:0;;;;;;;;;-1:-1:-1;33071:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33071:24:0;;32885:217::o;32423:401::-;32503:13;32519:23;32534:7;32519:14;:23::i;:::-;32503:39;;32566:5;-1:-1:-1;;;;;32560:11:0;:2;-1:-1:-1;;;;;32560:11:0;;;32552:57;;;;-1:-1:-1;;;32552:57:0;;18273:2:2;32552:57:0;;;18255:21:2;18312:2;18292:18;;;18285:30;18351:34;18331:18;;;18324:62;-1:-1:-1;;;18402:18:2;;;18395:31;18443:19;;32552:57:0;18071:397:2;32552:57:0;7391:10;-1:-1:-1;;;;;32641:21:0;;;;:62;;-1:-1:-1;32666:37:0;32683:5;7391:10;2510:376:1;:::i;32666:37:0:-;32620:165;;;;-1:-1:-1;;;32620:165:0;;13308:2:2;32620:165:0;;;13290:21:2;13347:2;13327:18;;;13320:30;13386:34;13366:18;;;13359:62;13457:26;13437:18;;;13430:54;13501:19;;32620:165:0;13106:420:2;32620:165:0;32796:21;32805:2;32809:7;32796:8;:21::i;:::-;32493:331;32423:401;;:::o;2327:174:1:-;2441:10;;2463:28;;-1:-1:-1;;2480:10:1;6598:2:2;6594:15;6590:53;2463:28:1;;;6578:66:2;2391:4:1;;2415:78;;2434:5;;2441:10;6660:12:2;;2463:28:1;;;;;;;;;;;;;2453:39;;;;;;2415:18;:78::i;33612:330:0:-;33801:41;7391:10;33834:7;33801:18;:41::i;:::-;33793:103;;;;-1:-1:-1;;;33793:103:0;;;;;;;:::i;:::-;33907:28;33917:4;33923:2;33927:7;33907:9;:28::i;44613:478::-;44710:15;44753:16;44763:5;44753:9;:16::i;:::-;44745:5;:24;44737:80;;;;-1:-1:-1;;;44737:80:0;;;;;;;:::i;:::-;44828:10;44852:6;44848:173;44864:7;:14;44860:18;;44848:173;;;44910:7;44918:1;44910:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;44901:19:0;;;44910:10;;44901:19;44898:113;;;44951:5;44942;:14;44939:57;;;44965:1;-1:-1:-1;44958:8:0;;-1:-1:-1;44958:8:0;44939:57;44989:7;;;;:::i;:::-;;;;44939:57;44880:3;;;;:::i;:::-;;;;44848:173;;;;45031:53;;-1:-1:-1;;;45031:53:0;;;;;;;:::i;3143:85:1:-;8565:6:0;;-1:-1:-1;;;;;8565:6:0;7391:10;8705:23;8697:68;;;;-1:-1:-1;;;8697:68:0;;;;;;;:::i;:::-;3210:10:1::1;::::0;;-1:-1:-1;;3196:24:1;::::1;3210:10;::::0;;::::1;3209:11;3196:24;::::0;;3143:85::o;3372:201::-;8565:6:0;;-1:-1:-1;;;;;8565:6:0;7391:10;8705:23;8697:68;;;;-1:-1:-1;;;8697:68:0;;;;;;;:::i;:::-;3483:35:1::1;::::0;3438:21:::1;::::0;3420:15:::1;::::0;3483:10:::1;::::0;3438:21;;3420:15;3483:35;3420:15;3483:35;3438:21;3483:10;:35:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3464:54;;;3537:7;3529:36;;;::::0;-1:-1:-1;;;3529:36:1;;18675:2:2;3529:36:1::1;::::0;::::1;18657:21:2::0;18714:2;18694:18;;;18687:30;-1:-1:-1;;;18733:18:2;;;18726:46;18789:18;;3529:36:1::1;18473:340:2::0;3529:36:1::1;3409:164;;3372:201::o:0;34008:179:0:-;34141:39;34158:4;34164:2;34168:7;34141:39;;;;;;;;;;;;:16;:39::i;44332:202::-;44442:7;:14;44407:7;;44434:22;;44426:79;;;;-1:-1:-1;;;44426:79:0;;19438:2:2;44426:79:0;;;19420:21:2;19477:2;19457:18;;;19450:30;19516:34;19496:18;;;19489:62;-1:-1:-1;;;19567:18:2;;;19560:42;19619:19;;44426:79:0;19236:408:2;44426:79:0;-1:-1:-1;44522:5:0;44332:202::o;2921:101:1:-;8565:6:0;;-1:-1:-1;;;;;8565:6:0;7391:10;8705:23;8697:68;;;;-1:-1:-1;;;8697:68:0;;;;;;;:::i;:::-;2993:21:1::1;3005:8;2993:11;:21::i;:::-;2921:101:::0;:::o;30747:235:0:-;30819:7;30838:13;30854:7;30862;30854:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;30854:16:0;;-1:-1:-1;30888:19:0;30880:73;;;;-1:-1:-1;;;30880:73:0;;14144:2:2;30880:73:0;;;14126:21:2;14183:2;14163:18;;;14156:30;14222:34;14202:18;;;14195:62;-1:-1:-1;;;14273:18:2;;;14266:39;14322:19;;30880:73:0;13942:405:2;30362:325:0;30434:7;-1:-1:-1;;;;;30461:19:0;;30453:74;;;;-1:-1:-1;;;30453:74:0;;13733:2:2;30453:74:0;;;13715:21:2;13772:2;13752:18;;;13745:30;13811:34;13791:18;;;13784:62;-1:-1:-1;;;13862:18:2;;;13855:40;13912:19;;30453:74:0;13531:406:2;30453:74:0;30531:21;30564:6;30560:91;30580:7;:14;30576:18;;30560:91;;;30623:5;-1:-1:-1;;;;;30609:19:0;:7;30617:1;30609:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;30609:10:0;:19;30606:40;;;30630:16;;;;:::i;:::-;;;;30606:40;30596:3;;;;:::i;:::-;;;;30560:91;;;-1:-1:-1;30667:13:0;30362:325;-1:-1:-1;;30362:325:0:o;9125:101::-;8565:6;;-1:-1:-1;;;;;8565:6:0;7391:10;8705:23;8697:68;;;;-1:-1:-1;;;8697:68:0;;;;;;;:::i;:::-;9189:30:::1;9216:1;9189:18;:30::i;:::-;9125:101::o:0;3030:104:1:-;8565:6:0;;-1:-1:-1;;;;;8565:6:0;7391:10;8705:23;8697:68;;;;-1:-1:-1;;;8697:68:0;;;;;;;:::i;:::-;3102:10:1::1;:24:::0;3030:104::o;1554:764::-;25868:11:0;;-1:-1:-1;;;25868:11:0;;;;25867:12;25859:57;;;;-1:-1:-1;;;25859:57:0;;19851:2:2;25859:57:0;;;19833:21:2;;;19870:18;;;19863:30;19929:34;19909:18;;;19902:62;19981:18;;25859:57:0;19649:356:2;25859:57:0;25926:11;:18;;-1:-1:-1;;;;25926:18:0;-1:-1:-1;;;25926:18:0;;;1665:10:1::1;::::0;25926:18:0;1665:10:1::1;1657:45;;;::::0;-1:-1:-1;;;1657:45:1;;15613:2:2;1657:45:1::1;::::0;::::1;15595:21:2::0;15652:2;15632:18;;;15625:30;-1:-1:-1;;;15671:18:2;;;15664:52;15733:18;;1657:45:1::1;15411:346:2::0;1657:45:1::1;1715:10;::::0;1707:42:::1;;;::::0;-1:-1:-1;;;1707:42:1;;9132:2:2;1707:42:1::1;::::0;::::1;9114:21:2::0;9171:2;9151:18;;;9144:30;-1:-1:-1;;;9190:18:2;;;9183:42;9242:18;;1707:42:1::1;8930:336:2::0;1707:42:1::1;1758:14;1775:13;44239:7:0::0;:14;;44152:108;1775:13:1::1;1758:30;;1824:10;;1837:1;1824:14;;;;:::i;:::-;1801:20;1810:11:::0;1801:6;:20:::1;:::i;:::-;:37;1793:79;;;::::0;-1:-1:-1;;;1793:79:1;;14905:2:2;1793:79:1::1;::::0;::::1;14887:21:2::0;14944:2;14924:18;;;14917:30;14983:31;14963:18;;;14956:59;15032:18;;1793:79:1::1;14703:353:2::0;1793:79:1::1;1932:9;::::0;:13:::1;::::0;1944:1:::1;1932:13;:::i;:::-;1897:10;1885:23;::::0;;;:11:::1;:23;::::0;;;;:30:::1;;::::0;:44:::1;::::0;1918:11;;1885:44:::1;:::i;:::-;:60;1877:94;;;::::0;-1:-1:-1;;;1877:94:1;;15263:2:2;1877:94:1::1;::::0;::::1;15245:21:2::0;15302:2;15282:18;;;15275:30;-1:-1:-1;;;15321:18:2;;;15314:51;15382:18;;1877:94:1::1;15061:345:2::0;1877:94:1::1;2015:10;::::0;2037:28:::1;::::0;-1:-1:-1;;2054:10:1::1;6598:2:2::0;6594:15;6590:53;2037:28:1::1;::::0;::::1;6578:66:2::0;1988:79:1::1;::::0;2007:6;;6660:12:2;;2037:28:1::1;6449:229:2::0;1988:79:1::1;1980:112;;;::::0;-1:-1:-1;;;1980:112:1;;12959:2:2;1980:112:1::1;::::0;::::1;12941:21:2::0;12998:2;12978:18;;;12971:30;-1:-1:-1;;;13017:18:2;;;13010:50;13077:18;;1980:112:1::1;12757:344:2::0;1980:112:1::1;2134:7;::::0;2120:21:::1;::::0;:11;:21:::1;:::i;:::-;2107:9;:34;;2099:66;;;::::0;-1:-1:-1;;;2099:66:1;;17509:2:2;2099:66:1::1;::::0;::::1;17491:21:2::0;17548:2;17528:18;;;17521:30;-1:-1:-1;;;17567:18:2;;;17560:49;17626:18;;2099:66:1::1;17307:343:2::0;2099:66:1::1;2186:10;2174:23;::::0;;;:11:::1;:23;::::0;;;;:30:::1;;:45:::0;;2208:11;;2174:23;:45:::1;::::0;2208:11;;2174:45:::1;:::i;:::-;::::0;;;-1:-1:-1;2233:9:1::1;::::0;-1:-1:-1;2228:86:1::1;2250:11;2246:1;:15;2228:86;;;2275:33;2285:10;2297;2306:1:::0;2297:6;:10:::1;:::i;:::-;2275:9;:33::i;:::-;2263:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2228:86;;;-1:-1:-1::0;;25965:11:0;:19;;-1:-1:-1;;;;25965:19:0;;;-1:-1:-1;;1554:764:1:o;3581:90::-;8565:6:0;;-1:-1:-1;;;;;8565:6:0;7391:10;8705:23;8697:68;;;;-1:-1:-1;;;8697:68:0;;;;;;;:::i;:::-;3646:5:1::1;:17:::0;3581:90::o;31206:102:0:-;31262:13;31294:7;31287:14;;;;;:::i;1008:535:1:-;25868:11:0;;-1:-1:-1;;;25868:11:0;;;;25867:12;25859:57;;;;-1:-1:-1;;;25859:57:0;;19851:2:2;25859:57:0;;;19833:21:2;;;19870:18;;;19863:30;19929:34;19909:18;;;19902:62;19981:18;;25859:57:0;19649:356:2;25859:57:0;25926:11;:18;;-1:-1:-1;;;;25926:18:0;-1:-1:-1;;;25926:18:0;;;1083:10:1::1;::::0;25926:18:0;1083:10:1::1;1075:45;;;::::0;-1:-1:-1;;;1075:45:1;;15613:2:2;1075:45:1::1;::::0;::::1;15595:21:2::0;15652:2;15632:18;;;15625:30;-1:-1:-1;;;15671:18:2;;;15664:52;15733:18;;1075:45:1::1;15411:346:2::0;1075:45:1::1;1133:10;1147:9;1133:23;1125:57;;;::::0;-1:-1:-1;;;1125:57:1;;20212:2:2;1125:57:1::1;::::0;::::1;20194:21:2::0;20251:2;20231:18;;;20224:30;-1:-1:-1;;;20270:18:2;;;20263:51;20331:18;;1125:57:1::1;20010:345:2::0;1125:57:1::1;1191:14;1208:13;44239:7:0::0;:14;;44152:108;1208:13:1::1;1191:30;;1248:11;;1262:1;1248:15;;;;:::i;:::-;1234:11;:29;1226:71;;;::::0;-1:-1:-1;;;1226:71:1;;11068:2:2;1226:71:1::1;::::0;::::1;11050:21:2::0;11107:2;11087:18;;;11080:30;11146:31;11126:18;;;11119:59;11195:18;;1226:71:1::1;10866:353:2::0;1226:71:1::1;1333:10;::::0;:14:::1;::::0;1346:1:::1;1333:14;:::i;:::-;1310:20;1319:11:::0;1310:6;:20:::1;:::i;:::-;:37;1302:72;;;::::0;-1:-1:-1;;;1302:72:1;;14554:2:2;1302:72:1::1;::::0;::::1;14536:21:2::0;14593:2;14573:18;;;14566:30;-1:-1:-1;;;14612:18:2;;;14605:52;14674:18;;1302:72:1::1;14352:346:2::0;1302:72:1::1;1417:5;::::0;1403:19:::1;::::0;:11;:19:::1;:::i;:::-;1390:9;:32;;1382:64;;;::::0;-1:-1:-1;;;1382:64:1;;17509:2:2;1382:64:1::1;::::0;::::1;17491:21:2::0;17548:2;17528:18;;;17521:30;-1:-1:-1;;;17567:18:2;;;17560:49;17626:18;;1382:64:1::1;17307:343:2::0;1382:64:1::1;1458:9;1453:86;1475:11;1471:1;:15;1453:86;;;1500:33;1510:10;1522;1531:1:::0;1522:6;:10:::1;:::i;1500:33::-;1488:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1453:86;;;-1:-1:-1::0;;25965:11:0;:19;;-1:-1:-1;;;;25965:19:0;;;-1:-1:-1;1008:535:1:o;33169:153:0:-;33263:52;7391:10;33296:8;33306;33263:18;:52::i;3740:485:1:-;8565:6:0;;-1:-1:-1;;;;;8565:6:0;7391:10;8705:23;8697:68;;;;-1:-1:-1;;;8697:68:0;;;;;;;:::i;:::-;3848:1:1::1;3831:14;:18;:70;;;;-1:-1:-1::0;3882:15:1::1;::::0;:19:::1;::::0;3900:1:::1;3882:19;:::i;:::-;3870:9;::::0;3853:26:::1;::::0;:14;:26:::1;:::i;:::-;:48;3831:70;3823:115;;;::::0;-1:-1:-1;;;3823:115:1;;11426:2:2;3823:115:1::1;::::0;::::1;11408:21:2::0;;;11445:18;;;11438:30;11504:34;11484:18;;;11477:62;11556:18;;3823:115:1::1;11224:356:2::0;3823:115:1::1;3943:14;3960:13;44239:7:0::0;:14;;44152:108;3960:13:1::1;3943:30;;4012:10;;4025:1;4012:14;;;;:::i;:::-;3986:23;3995:14:::0;3986:6;:23:::1;:::i;:::-;:40;3978:82;;;::::0;-1:-1:-1;;;3978:82:1;;14905:2:2;3978:82:1::1;::::0;::::1;14887:21:2::0;14944:2;14924:18;;;14917:30;14983:31;14963:18;;;14956:59;15032:18;;3978:82:1::1;14703:353:2::0;3978:82:1::1;4093:14;4081:9;;:26;;;;:::i;:::-;4069:9;:38:::0;4127:6:::1;4122:96;4143:14;4139:1;:18;4122:96;;;4179:27;4189:3:::0;4194:10:::1;4203:1:::0;4194:6;:10:::1;:::i;4179:27::-;4159:3:::0;::::1;::::0;::::1;:::i;:::-;;;;4122:96;;;;3812:413;3740:485:::0;;:::o;3233:131::-;8565:6:0;;-1:-1:-1;;;;;8565:6:0;7391:10;8705:23;8697:68;;;;-1:-1:-1;;;8697:68:0;;;;;;;:::i;:::-;3312:20:1::1;:44:::0;;-1:-1:-1;;;;;;3312:44:1::1;-1:-1:-1::0;;;;;3312:44:1;;;::::1;::::0;;;::::1;::::0;;3233:131::o;34253:320:0:-;34422:41;7391:10;34455:7;34422:18;:41::i;:::-;34414:103;;;;-1:-1:-1;;;34414:103:0;;;;;;;:::i;:::-;34527:39;34541:4;34547:2;34551:7;34560:5;34527:13;:39::i;31374:331::-;31447:13;31480:16;31488:7;31480;:16::i;:::-;31472:76;;;;-1:-1:-1;;;31472:76:0;;17857:2:2;31472:76:0;;;17839:21:2;17896:2;17876:18;;;17869:30;17935:34;17915:18;;;17908:62;-1:-1:-1;;;17986:18:2;;;17979:45;18041:19;;31472:76:0;17655:411:2;31472:76:0;31559:22;31584:9;:7;:9::i;:::-;31559:34;;31635:1;31616:8;31610:22;:26;:88;;;;;;;;;;;;;;;;;31663:8;31673:18;:7;:16;:18::i;:::-;31646:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31610:88;31603:95;31374:331;-1:-1:-1;;;31374:331:0:o;2510:376:1:-;2683:20;;2727:29;;-1:-1:-1;;;2727:29:1;;-1:-1:-1;;;;;7532:32:2;;;2727:29:1;;;7514:51:2;2600:4:1;;2683:20;;;2719:50;;;;2683:20;;2727:21;;7487:18:2;;2727:29:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2719:50:1;;:88;;;-1:-1:-1;;;;;;2773:21:1;;;;;;:11;:21;;;;;:34;;;2719:88;2715:105;;;2816:4;2809:11;;;;;2715:105;-1:-1:-1;;;;;33508:25:0;;;33485:4;33508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;2838:40:1;2831:47;2510:376;-1:-1:-1;;;;2510:376:1:o;9375:198:0:-;8565:6;;-1:-1:-1;;;;;8565:6:0;7391:10;8705:23;8697:68;;;;-1:-1:-1;;;8697:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9463:22:0;::::1;9455:73;;;::::0;-1:-1:-1;;;9455:73:0;;10304:2:2;9455:73:0::1;::::0;::::1;10286:21:2::0;10343:2;10323:18;;;10316:30;10382:34;10362:18;;;10355:62;-1:-1:-1;;;10433:18:2;;;10426:36;10479:19;;9455:73:0::1;10102:402:2::0;9455:73:0::1;9538:28;9557:8;9538:18;:28::i;29975:300::-:0;30077:4;-1:-1:-1;;;;;;30112:40:0;;-1:-1:-1;;;30112:40:0;;:104;;-1:-1:-1;;;;;;;30168:48:0;;-1:-1:-1;;;30168:48:0;30112:104;:156;;;-1:-1:-1;;;;;;;;;;4643:40:0;;;30232:36;4535:155;36045:153;36143:7;:14;36110:4;;36133:24;;:58;;;;;36189:1;-1:-1:-1;;;;;36161:30:0;:7;36169;36161:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;36161:16:0;:30;;36126:65;36045:153;-1:-1:-1;;36045:153:0:o;39808:171::-;39882:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39882:29:0;-1:-1:-1;;;;;39882:29:0;;;;;;;;:24;;39935:23;39882:24;39935:14;:23::i;:::-;-1:-1:-1;;;;;39926:46:0;;;;;;;;;;;39808:171;;:::o;1509:184::-;1630:4;1682;1653:25;1666:5;1673:4;1653:12;:25::i;:::-;:33;;1509:184;-1:-1:-1;;;;1509:184:0:o;36356:344::-;36449:4;36473:16;36481:7;36473;:16::i;:::-;36465:73;;;;-1:-1:-1;;;36465:73:0;;12546:2:2;36465:73:0;;;12528:21:2;12585:2;12565:18;;;12558:30;12624:34;12604:18;;;12597:62;-1:-1:-1;;;12675:18:2;;;12668:42;12727:19;;36465:73:0;12344:408:2;36465:73:0;36548:13;36564:23;36579:7;36564:14;:23::i;:::-;36548:39;;36616:5;-1:-1:-1;;;;;36605:16:0;:7;-1:-1:-1;;;;;36605:16:0;;:51;;;;36649:7;-1:-1:-1;;;;;36625:31:0;:20;36637:7;36625:11;:20::i;:::-;-1:-1:-1;;;;;36625:31:0;;36605:51;:87;;;;36660:32;36677:5;36684:7;36660:16;:32::i;39195:502::-;39349:4;-1:-1:-1;;;;;39322:31:0;:23;39337:7;39322:14;:23::i;:::-;-1:-1:-1;;;;;39322:31:0;;39314:85;;;;-1:-1:-1;;;39314:85:0;;17099:2:2;39314:85:0;;;17081:21:2;17138:2;17118:18;;;17111:30;17177:34;17157:18;;;17150:62;-1:-1:-1;;;17228:18:2;;;17221:39;17277:19;;39314:85:0;16897:405:2;39314:85:0;-1:-1:-1;;;;;39417:16:0;;39409:65;;;;-1:-1:-1;;;39409:65:0;;11787:2:2;39409:65:0;;;11769:21:2;11826:2;11806:18;;;11799:30;11865:34;11845:18;;;11838:62;-1:-1:-1;;;11916:18:2;;;11909:34;11960:19;;39409:65:0;11585:400:2;39409:65:0;39586:29;39603:1;39607:7;39586:8;:29::i;:::-;39645:2;39626:7;39634;39626:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;39626:21:0;-1:-1:-1;;;;;39626:21:0;;;;;;39663:27;;39682:7;;39663:27;;;;;;;;;;39626:16;39663:27;39195:502;;;:::o;32267:98::-;32339:19;;;;:8;;:19;;;;;:::i;9727:187::-;9819:6;;;-1:-1:-1;;;;;9835:17:0;;;-1:-1:-1;;;;;;9835:17:0;;;;;;;9867:40;;9819:6;;;9835:17;9819:6;;9867:40;;9800:16;;9867:40;9790:124;9727:187;:::o;37030:108::-;37105:26;37115:2;37119:7;37105:26;;;;;;;;;;;;:9;:26::i;40114:307::-;40264:8;-1:-1:-1;;;;;40255:17:0;:5;-1:-1:-1;;;;;40255:17:0;;;40247:55;;;;-1:-1:-1;;;40247:55:0;;12192:2:2;40247:55:0;;;12174:21:2;12231:2;12211:18;;;12204:30;12270:27;12250:18;;;12243:55;12315:18;;40247:55:0;11990:349:2;40247:55:0;-1:-1:-1;;;;;40312:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;40312:46:0;;;;;;;;;;40373:41;;8209::2;;;40373::0;;8182:18:2;40373:41:0;;;;;;;40114:307;;;:::o;35435:::-;35586:28;35596:4;35602:2;35606:7;35586:9;:28::i;:::-;35632:48;35655:4;35661:2;35665:7;35674:5;35632:22;:48::i;:::-;35624:111;;;;-1:-1:-1;;;35624:111:0;;;;;;;:::i;31946:97::-;31996:13;32028:8;32021:15;;;;;:::i;4995:703::-;5051:13;5268:10;5264:51;;-1:-1:-1;;5294:10:0;;;;;;;;;;;;-1:-1:-1;;;5294:10:0;;;;;4995:703::o;5264:51::-;5339:5;5324:12;5378:75;5385:9;;5378:75;;5410:8;;;;:::i;:::-;;-1:-1:-1;5432:10:0;;-1:-1:-1;5440:2:0;5432:10;;:::i;:::-;;;5378:75;;;5462:19;5494:6;5484:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5484:17:0;;5462:39;;5511:150;5518:10;;5511:150;;5544:11;5554:1;5544:11;;:::i;:::-;;-1:-1:-1;5612:10:0;5620:2;5612:5;:10;:::i;:::-;5599:24;;:2;:24;:::i;:::-;5586:39;;5569:6;5576;5569:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5569:56:0;;;;;;;;-1:-1:-1;5639:11:0;5648:2;5639:11;;:::i;:::-;;;5511:150;;2045:662;2128:7;2170:4;2128:7;2184:488;2208:5;:12;2204:1;:16;2184:488;;;2241:20;2264:5;2270:1;2264:8;;;;;;;;:::i;:::-;;;;;;;2241:31;;2306:12;2290;:28;2286:376;;2781:13;2829:15;;;2864:4;2857:15;;;2910:4;2894:21;;2416:57;;2286:376;;;2781:13;2829:15;;;2864:4;2857:15;;;2910:4;2894:21;;2590:57;;2286:376;-1:-1:-1;2222:3:0;;;;:::i;:::-;;;;2184:488;;;-1:-1:-1;2688:12:0;2045:662;-1:-1:-1;;;2045:662:0:o;37359:311::-;37484:18;37490:2;37494:7;37484:5;:18::i;:::-;37533:54;37564:1;37568:2;37572:7;37581:5;37533:22;:54::i;:::-;37512:151;;;;-1:-1:-1;;;37512:151:0;;;;;;;:::i;40974:778::-;41124:4;-1:-1:-1;;;;;41144:13:0;;10976:20;11022:8;41140:606;;41179:72;;-1:-1:-1;;;41179:72:0;;-1:-1:-1;;;;;41179:36:0;;;;;:72;;7391:10;;41230:4;;41236:7;;41245:5;;41179:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41179:72:0;;;;;;;;-1:-1:-1;;41179:72:0;;;;;;;;;;;;:::i;:::-;;;41175:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41418:13:0;;41414:266;;41460:60;;-1:-1:-1;;;41460:60:0;;;;;;;:::i;41414:266::-;41632:6;41626:13;41617:6;41613:2;41609:15;41602:38;41175:519;-1:-1:-1;;;;;;41301:51:0;-1:-1:-1;;;41301:51:0;;-1:-1:-1;41294:58:0;;41140:606;-1:-1:-1;41731:4:0;40974:778;;;;;;:::o;37992:339::-;-1:-1:-1;;;;;38071:16:0;;38063:61;;;;-1:-1:-1;;;38063:61:0;;15964:2:2;38063:61:0;;;15946:21:2;;;15983:18;;;15976:30;16042:34;16022:18;;;16015:62;16094:18;;38063:61:0;15762:356:2;38063:61:0;38143:16;38151:7;38143;:16::i;:::-;38142:17;38134:58;;;;-1:-1:-1;;;38134:58:0;;10711:2:2;38134:58:0;;;10693:21:2;10750:2;10730:18;;;10723:30;10789;10769:18;;;10762:58;10837:18;;38134:58:0;10509:352:2;38134:58:0;38259:7;:16;;;;;;;-1:-1:-1;38259:16:0;;;;;;;-1:-1:-1;;;;;;38259:16:0;-1:-1:-1;;;;;38259:16:0;;;;;;;;38291:33;;38316:7;;-1:-1:-1;38291:33:0;;-1:-1:-1;;38291:33:0;37992:339;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:2;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:2;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:723::-;479:5;532:3;525:4;517:6;513:17;509:27;499:55;;550:1;547;540:12;499:55;586:6;573:20;612:4;635:18;631:2;628:26;625:52;;;657:18;;:::i;:::-;703:2;700:1;696:10;726:28;750:2;746;742:11;726:28;:::i;:::-;788:15;;;819:12;;;;851:15;;;885;;;881:24;;878:33;-1:-1:-1;875:53:2;;;924:1;921;914:12;875:53;946:1;937:10;;956:163;970:2;967:1;964:9;956:163;;;1027:17;;1015:30;;988:1;981:9;;;;;1065:12;;;;1097;;956:163;;;-1:-1:-1;1137:5:2;425:723;-1:-1:-1;;;;;;;425:723:2:o;1153:247::-;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;1320:9;1307:23;1339:31;1364:5;1339:31;:::i;1405:388::-;1473:6;1481;1534:2;1522:9;1513:7;1509:23;1505:32;1502:52;;;1550:1;1547;1540:12;1502:52;1589:9;1576:23;1608:31;1633:5;1608:31;:::i;:::-;1658:5;-1:-1:-1;1715:2:2;1700:18;;1687:32;1728:33;1687:32;1728:33;:::i;:::-;1780:7;1770:17;;;1405:388;;;;;:::o;1798:456::-;1875:6;1883;1891;1944:2;1932:9;1923:7;1919:23;1915:32;1912:52;;;1960:1;1957;1950:12;1912:52;1999:9;1986:23;2018:31;2043:5;2018:31;:::i;:::-;2068:5;-1:-1:-1;2125:2:2;2110:18;;2097:32;2138:33;2097:32;2138:33;:::i;:::-;1798:456;;2190:7;;-1:-1:-1;;;2244:2:2;2229:18;;;;2216:32;;1798:456::o;2259:794::-;2354:6;2362;2370;2378;2431:3;2419:9;2410:7;2406:23;2402:33;2399:53;;;2448:1;2445;2438:12;2399:53;2487:9;2474:23;2506:31;2531:5;2506:31;:::i;:::-;2556:5;-1:-1:-1;2613:2:2;2598:18;;2585:32;2626:33;2585:32;2626:33;:::i;:::-;2678:7;-1:-1:-1;2732:2:2;2717:18;;2704:32;;-1:-1:-1;2787:2:2;2772:18;;2759:32;2814:18;2803:30;;2800:50;;;2846:1;2843;2836:12;2800:50;2869:22;;2922:4;2914:13;;2910:27;-1:-1:-1;2900:55:2;;2951:1;2948;2941:12;2900:55;2974:73;3039:7;3034:2;3021:16;3016:2;3012;3008:11;2974:73;:::i;:::-;2964:83;;;2259:794;;;;;;;:::o;3058:416::-;3123:6;3131;3184:2;3172:9;3163:7;3159:23;3155:32;3152:52;;;3200:1;3197;3190:12;3152:52;3239:9;3226:23;3258:31;3283:5;3258:31;:::i;:::-;3308:5;-1:-1:-1;3365:2:2;3350:18;;3337:32;3407:15;;3400:23;3388:36;;3378:64;;3438:1;3435;3428:12;3479:315;3547:6;3555;3608:2;3596:9;3587:7;3583:23;3579:32;3576:52;;;3624:1;3621;3614:12;3576:52;3663:9;3650:23;3682:31;3707:5;3682:31;:::i;:::-;3732:5;3784:2;3769:18;;;;3756:32;;-1:-1:-1;;;3479:315:2:o;3799:348::-;3883:6;3936:2;3924:9;3915:7;3911:23;3907:32;3904:52;;;3952:1;3949;3942:12;3904:52;3992:9;3979:23;4025:18;4017:6;4014:30;4011:50;;;4057:1;4054;4047:12;4011:50;4080:61;4133:7;4124:6;4113:9;4109:22;4080:61;:::i;4152:416::-;4245:6;4253;4306:2;4294:9;4285:7;4281:23;4277:32;4274:52;;;4322:1;4319;4312:12;4274:52;4362:9;4349:23;4395:18;4387:6;4384:30;4381:50;;;4427:1;4424;4417:12;4381:50;4450:61;4503:7;4494:6;4483:9;4479:22;4450:61;:::i;:::-;4440:71;4558:2;4543:18;;;;4530:32;;-1:-1:-1;;;;4152:416:2:o;4573:180::-;4632:6;4685:2;4673:9;4664:7;4660:23;4656:32;4653:52;;;4701:1;4698;4691:12;4653:52;-1:-1:-1;4724:23:2;;4573:180;-1:-1:-1;4573:180:2:o;4758:245::-;4816:6;4869:2;4857:9;4848:7;4844:23;4840:32;4837:52;;;4885:1;4882;4875:12;4837:52;4924:9;4911:23;4943:30;4967:5;4943:30;:::i;5008:249::-;5077:6;5130:2;5118:9;5109:7;5105:23;5101:32;5098:52;;;5146:1;5143;5136:12;5098:52;5178:9;5172:16;5197:30;5221:5;5197:30;:::i;5262:280::-;5361:6;5414:2;5402:9;5393:7;5389:23;5385:32;5382:52;;;5430:1;5427;5420:12;5382:52;5462:9;5456:16;5481:31;5506:5;5481:31;:::i;5547:450::-;5616:6;5669:2;5657:9;5648:7;5644:23;5640:32;5637:52;;;5685:1;5682;5675:12;5637:52;5725:9;5712:23;5758:18;5750:6;5747:30;5744:50;;;5790:1;5787;5780:12;5744:50;5813:22;;5866:4;5858:13;;5854:27;-1:-1:-1;5844:55:2;;5895:1;5892;5885:12;5844:55;5918:73;5983:7;5978:2;5965:16;5960:2;5956;5952:11;5918:73;:::i;6187:257::-;6228:3;6266:5;6260:12;6293:6;6288:3;6281:19;6309:63;6365:6;6358:4;6353:3;6349:14;6342:4;6335:5;6331:16;6309:63;:::i;:::-;6426:2;6405:15;-1:-1:-1;;6401:29:2;6392:39;;;;6433:4;6388:50;;6187:257;-1:-1:-1;;6187:257:2:o;6683:470::-;6862:3;6900:6;6894:13;6916:53;6962:6;6957:3;6950:4;6942:6;6938:17;6916:53;:::i;:::-;7032:13;;6991:16;;;;7054:57;7032:13;6991:16;7088:4;7076:17;;7054:57;:::i;:::-;7127:20;;6683:470;-1:-1:-1;;;;6683:470:2:o;7576:488::-;-1:-1:-1;;;;;7845:15:2;;;7827:34;;7897:15;;7892:2;7877:18;;7870:43;7944:2;7929:18;;7922:34;;;7992:3;7987:2;7972:18;;7965:31;;;7770:4;;8013:45;;8038:19;;8030:6;8013:45;:::i;:::-;8005:53;7576:488;-1:-1:-1;;;;;;7576:488:2:o;8706:219::-;8855:2;8844:9;8837:21;8818:4;8875:44;8915:2;8904:9;8900:18;8892:6;8875:44;:::i;9271:407::-;9473:2;9455:21;;;9512:2;9492:18;;;9485:30;9551:34;9546:2;9531:18;;9524:62;-1:-1:-1;;;9617:2:2;9602:18;;9595:41;9668:3;9653:19;;9271:407::o;9683:414::-;9885:2;9867:21;;;9924:2;9904:18;;;9897:30;9963:34;9958:2;9943:18;;9936:62;-1:-1:-1;;;10029:2:2;10014:18;;10007:48;10087:3;10072:19;;9683:414::o;16536:356::-;16738:2;16720:21;;;16757:18;;;16750:30;16816:34;16811:2;16796:18;;16789:62;16883:2;16868:18;;16536:356::o;18818:413::-;19020:2;19002:21;;;19059:2;19039:18;;;19032:30;19098:34;19093:2;19078:18;;19071:62;-1:-1:-1;;;19164:2:2;19149:18;;19142:47;19221:3;19206:19;;18818:413::o;20542:275::-;20613:2;20607:9;20678:2;20659:13;;-1:-1:-1;;20655:27:2;20643:40;;20713:18;20698:34;;20734:22;;;20695:62;20692:88;;;20760:18;;:::i;:::-;20796:2;20789:22;20542:275;;-1:-1:-1;20542:275:2:o;20822:128::-;20862:3;20893:1;20889:6;20886:1;20883:13;20880:39;;;20899:18;;:::i;:::-;-1:-1:-1;20935:9:2;;20822:128::o;20955:120::-;20995:1;21021;21011:35;;21026:18;;:::i;:::-;-1:-1:-1;21060:9:2;;20955:120::o;21080:168::-;21120:7;21186:1;21182;21178:6;21174:14;21171:1;21168:21;21163:1;21156:9;21149:17;21145:45;21142:71;;;21193:18;;:::i;:::-;-1:-1:-1;21233:9:2;;21080:168::o;21253:125::-;21293:4;21321:1;21318;21315:8;21312:34;;;21326:18;;:::i;:::-;-1:-1:-1;21363:9:2;;21253:125::o;21383:258::-;21455:1;21465:113;21479:6;21476:1;21473:13;21465:113;;;21555:11;;;21549:18;21536:11;;;21529:39;21501:2;21494:10;21465:113;;;21596:6;21593:1;21590:13;21587:48;;;-1:-1:-1;;21631:1:2;21613:16;;21606:27;21383:258::o;21646:380::-;21725:1;21721:12;;;;21768;;;21789:61;;21843:4;21835:6;21831:17;21821:27;;21789:61;21896:2;21888:6;21885:14;21865:18;21862:38;21859:161;;;21942:10;21937:3;21933:20;21930:1;21923:31;21977:4;21974:1;21967:15;22005:4;22002:1;21995:15;21859:161;;21646:380;;;:::o;22031:135::-;22070:3;-1:-1:-1;;22091:17:2;;22088:43;;;22111:18;;:::i;:::-;-1:-1:-1;22158:1:2;22147:13;;22031:135::o;22171:112::-;22203:1;22229;22219:35;;22234:18;;:::i;:::-;-1:-1:-1;22268:9:2;;22171:112::o;22288:127::-;22349:10;22344:3;22340:20;22337:1;22330:31;22380:4;22377:1;22370:15;22404:4;22401:1;22394:15;22420:127;22481:10;22476:3;22472:20;22469:1;22462:31;22512:4;22509:1;22502:15;22536:4;22533:1;22526:15;22552:127;22613:10;22608:3;22604:20;22601:1;22594:31;22644:4;22641:1;22634:15;22668:4;22665:1;22658:15;22684:127;22745:10;22740:3;22736:20;22733:1;22726:31;22776:4;22773:1;22766:15;22800:4;22797:1;22790:15;22816:131;-1:-1:-1;;;;;22891:31:2;;22881:42;;22871:70;;22937:1;22934;22927:12;22952:131;-1:-1:-1;;;;;;23026:32:2;;23016:43;;23006:71;;23073:1;23070;23063:12

Swarm Source

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