ERC-721
Overview
Max Total Supply
697 WOLFBOSS
Holders
151
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WOLFBOSSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Wolfboss
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-20 */ // SPDX-License-Identifier: MIT // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (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. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ 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 Merkle 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) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (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); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (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); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (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); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: contracts/erc721a.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/contract.sol pragma solidity ^0.8.4; contract Wolfboss is Ownable, ERC721A { using Strings for uint256; string private baseTokenURI; uint256 public ogCost = 0.2 ether; uint256 public wlCost = 0.22 ether; uint256 public publicSaleCost = 0.15 ether; uint128 public maxSupply = 4500; uint64 public maxMintAmountPerOgAccount = 3; uint64 public maxMintAmountPerWlAccount = 3; uint64 public maxMintAmountPerPublicAccount = 4; bool public presaleActive = false; bool public publicSaleActive =false; bytes32 public ogMerkleRoot; bytes32 public wlMerkleRoot; constructor() ERC721A("WOLFBOSS", "WOLFBOSS") {} modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 , "Invalid mint amount!"); require(totalMinted() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } ///Mints NFTs for OG whitelist members during the presale function ogMint(bytes32[] calldata _merkleProof, uint64 _mintAmount) public payable mintCompliance(_mintAmount) { require(presaleActive, "Presale is not Active"); require(msg.value == ogCost * _mintAmount, "Insufficient funds!"); require(numberMinted(msg.sender) + _mintAmount <= maxMintAmountPerOgAccount, "Mint limit exceeded." ); ///verify the provided _merkleProof bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, ogMerkleRoot, leaf), "Not part of the Presale whitelist."); _safeMint(msg.sender, _mintAmount); } ///Mints NFTs for WL whitelist addresses during the presale function wlMint(bytes32[] calldata _merkleProof, uint64 _mintAmount) public payable mintCompliance(_mintAmount) { require(presaleActive, "Presale is not Active"); require(msg.value == wlCost * _mintAmount, "Insufficient funds!"); require(numberMinted(msg.sender) + _mintAmount <= maxMintAmountPerWlAccount, "Mint limit exceeded." ); ///verify the provided _merkleProof bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, wlMerkleRoot, leaf), "Not part of the Presale whitelist."); _safeMint(msg.sender, _mintAmount); } ///Allows any address to mint when the public sale is open function publicMint(uint64 _mintAmount) public payable mintCompliance(_mintAmount) { require(publicSaleActive, "Public is not Active"); uint64 publicAmountMinted = getPublicAmountMinted(msg.sender); require(publicAmountMinted + _mintAmount <= maxMintAmountPerPublicAccount, "Mint limit exceeded." ); require(msg.value == publicSaleCost * _mintAmount, "Insufficient funds!"); setPublicAmountMinted(msg.sender,publicAmountMinted + _mintAmount); _safeMint(msg.sender, _mintAmount); } ///Allows owner of the collection to airdrop a token to any address function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } //@return token ids owned by an address in the collection function walletOfOwner(address _owner) external view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { if(exists(currentTokenId) == true) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } } currentTokenId++; } return ownedTokenIds; } //@return full url for passed in token id function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : ""; } //@return amount an address has minted during the public sale function getPublicAmountMinted(address _owner) public view returns (uint64) { return _getAux(_owner); } function setPublicAmountMinted(address _owner, uint64 _aux) internal { _setAux(_owner, _aux); } //@return amount an address has minted during all sales function numberMinted(address _owner) public view returns (uint256) { return _numberMinted(_owner); } //@return all NFT's minted including burned tokens function totalMinted() public view returns (uint256) { return _totalMinted(); } function exists(uint256 _tokenId) public view returns (bool) { return _exists(_tokenId); } function burn(uint256 _tokenId) public { require(exists(_tokenId), "Token does not exist"); require(msg.sender == ownerOf(_tokenId), "Not the owner of the token"); _burn(_tokenId, false); } //@return url for the nft metadata function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string calldata _URI) external onlyOwner { baseTokenURI = _URI; } function setPublicSaleCost(uint256 _publicSaleCost) public onlyOwner { publicSaleCost = _publicSaleCost; } function setOgCost(uint256 _ogCost) public onlyOwner { ogCost = _ogCost; } function setWlCost(uint256 _wlCost) public onlyOwner { wlCost = _wlCost; } function setMaxMintPerOgAccount(uint64 _maxMintPerOgAccount) public onlyOwner { maxMintAmountPerOgAccount = _maxMintPerOgAccount; } function setMaxMintPerWlAccount(uint64 _maxMintPerWlAccount) public onlyOwner { maxMintAmountPerWlAccount = _maxMintPerWlAccount; } function setMaxMintPerPublicAccount(uint64 _maxMintAmountPerPublicAccount) public onlyOwner { maxMintAmountPerPublicAccount = _maxMintAmountPerPublicAccount; } function setPresaleActive(bool _state) public onlyOwner { presaleActive = _state; } function setPublicActive(bool _state) public onlyOwner { require(presaleActive == false); publicSaleActive = _state; } ///sets merkle tree root which determines the OG whitelisted addresses function setOgMerkleRoot(bytes32 _ogMerkleRoot) public onlyOwner { ogMerkleRoot = _ogMerkleRoot; } ///sets merkle tree root which determines the WL whitelisted addresses function setWLMerkleRoot(bytes32 _wlMerkleRoot) public onlyOwner { wlMerkleRoot = _wlMerkleRoot; } function setMaxSupply(uint128 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } ///sends a percentage to each address function withdraw() public onlyOwner { ///original balance before percent is deducted uint256 initialBalance = address(this).balance; (bool t1, ) = payable(0x5FCa6B3Ec00cbF468f37a9BD6A96422c7ea122b5).call{value: initialBalance * 1 / 100}(""); require(t1); (bool t2, ) = payable(0xE7d8724498c961c6296c3E0Ed6a192F24d23Bdea).call{value: initialBalance * 18 / 100}(""); require(t2); (bool t3, ) = payable(0x6F74dd347B660f07ccc0749A1f19eFAa3244BceE).call{value: initialBalance * 5 / 100}(""); require(t3); (bool t4, ) = payable(0x2B2411c4C28d1028646486c2A6089FE3a3521ef5).call{value: initialBalance * 39 / 100}(""); require(t4); (bool t5, ) = payable(0x284496E2Af8703A39b536361a715f857c7D891F4).call{value: initialBalance * 37 / 100}(""); require(t5); } /// Fallbacks receive() external payable { } fallback() external payable { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"}],"name":"getPublicAmountMinted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"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":"maxMintAmountPerOgAccount","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerPublicAccount","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWlAccount","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"ogMint","outputs":[],"stateMutability":"payable","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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_maxMintPerOgAccount","type":"uint64"}],"name":"setMaxMintPerOgAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_maxMintAmountPerPublicAccount","type":"uint64"}],"name":"setMaxMintPerPublicAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_maxMintPerWlAccount","type":"uint64"}],"name":"setMaxMintPerWlAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_maxSupply","type":"uint128"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ogCost","type":"uint256"}],"name":"setOgCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_ogMerkleRoot","type":"bytes32"}],"name":"setOgMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_wlMerkleRoot","type":"bytes32"}],"name":"setWLMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526702c68af0bb140000600a5567030d98d59a960000600b55670214e8348c4f0000600c557803000000000000000300000000000000000000000000001194600d55600e80546001600160501b03191660041790553480156200006557600080fd5b5060405180604001604052806008815260200167574f4c46424f535360c01b81525060405180604001604052806008815260200167574f4c46424f535360c01b815250620000c2620000bc620000fa60201b60201c565b620000fe565b8151620000d79060039060208501906200014e565b508051620000ed9060049060208401906200014e565b5050600180555062000231565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200015c90620001f4565b90600052602060002090601f016020900481019282620001805760008555620001cb565b82601f106200019b57805160ff1916838001178555620001cb565b82800160010185558215620001cb579182015b82811115620001cb578251825591602001919060010190620001ae565b50620001d9929150620001dd565b5090565b5b80821115620001d95760008155600101620001de565b600181811c908216806200020957607f821691505b602082108114156200022b57634e487b7160e01b600052602260045260246000fd5b50919050565b612dd380620002416000396000f3fe6080604052600436106102af5760003560e01c806370a0823111610166578063bc8893b4116100d3578063d8a7ab891161008f578063e985e9c51161006c578063e985e9c514610883578063efbd73f4146108cc578063f12f6d5d146108ec578063f2fde38b1461090c57005b8063d8a7ab891461081c578063dc33e6811461083c578063e636aeb51461085c57005b8063bc8893b41461074d578063c12d92441461076e578063c87b56dd1461078e578063cd11ddc4146107ae578063d5abeb01146107ce578063d70a28d11461080657005b80638dbb7c06116101225780638dbb7c06146106a357806395d89b41146106c3578063a22cb465146106d8578063a2309ff8146106f8578063a679db161461070d578063b88d4fde1461072d57005b806370a08231146105f25780637d44fd11146106125780638a68aab2146106325780638ac068a2146106455780638aca408c146106655780638da5cb5b1461068557005b80633f8121a21161021c57806353135ca0116101d85780636352211e116101b55780636352211e1461059657806369aff65f146105b65780636afcb7b0146105cc5780636b845aa4146105df57005b806353135ca01461053f57806354c06aee1461056057806355f804b31461057657005b80633f8121a21461047c57806342842e0e1461049c57806342966c68146104bc578063438b6300146104dc578063453afb0f146105095780634f558e791461051f57005b80630a3025301161026b5780630a302530146103c65780630b85d4ef146103ea57806318160ddd1461040a57806318a1c1131461042757806323b872dd146104475780633ccfd60b1461046757005b806301ffc9a7146102b857806304b86f06146102ed57806305868aa01461030d57806306fdde031461034c578063081812fc1461036e578063095ea7b3146103a657005b366102b657005b005b3480156102c457600080fd5b506102d86102d33660046128ef565b61092c565b60405190151581526020015b60405180910390f35b3480156102f957600080fd5b506102b66103083660046129e6565b61097e565b34801561031957600080fd5b50600d5461033490600160801b90046001600160401b031681565b6040516001600160401b0390911681526020016102e4565b34801561035857600080fd5b506103616109d9565b6040516102e49190612aed565b34801561037a57600080fd5b5061038e6103893660046128d6565b610a6b565b6040516001600160a01b0390911681526020016102e4565b3480156103b257600080fd5b506102b66103c136600461280e565b610aaf565b3480156103d257600080fd5b506103dc600f5481565b6040519081526020016102e4565b3480156103f657600080fd5b50600e54610334906001600160401b031681565b34801561041657600080fd5b5060025460015403600019016103dc565b34801561043357600080fd5b506102b66104423660046129e6565b610b3d565b34801561045357600080fd5b506102b66104623660046126cd565b610b8a565b34801561047357600080fd5b506102b6610b95565b34801561048857600080fd5b506102b66104973660046128bb565b610e39565b3480156104a857600080fd5b506102b66104b73660046126cd565b610e86565b3480156104c857600080fd5b506102b66104d73660046128d6565b610ea1565b3480156104e857600080fd5b506104fc6104f736600461267f565b610f64565b6040516102e49190612aa9565b34801561051557600080fd5b506103dc600c5481565b34801561052b57600080fd5b506102d861053a3660046128d6565b611061565b34801561054b57600080fd5b50600e546102d890600160401b900460ff1681565b34801561056c57600080fd5b506103dc60105481565b34801561058257600080fd5b506102b6610591366004612929565b61106c565b3480156105a257600080fd5b5061038e6105b13660046128d6565b6110a2565b3480156105c257600080fd5b506103dc600a5481565b6102b66105da3660046129e6565b6110b4565b6102b66105ed366004612838565b611246565b3480156105fe57600080fd5b506103dc61060d36600461267f565b611467565b34801561061e57600080fd5b506102b661062d3660046128d6565b6114b5565b6102b6610640366004612838565b6114e4565b34801561065157600080fd5b506102b661066036600461299a565b611694565b34801561067157600080fd5b506102b66106803660046128bb565b6116e0565b34801561069157600080fd5b506000546001600160a01b031661038e565b3480156106af57600080fd5b506102b66106be3660046128d6565b611745565b3480156106cf57600080fd5b50610361611774565b3480156106e457600080fd5b506102b66106f33660046127e4565b611783565b34801561070457600080fd5b506103dc611819565b34801561071957600080fd5b506102b66107283660046128d6565b61182d565b34801561073957600080fd5b506102b6610748366004612709565b61185c565b34801561075957600080fd5b50600e546102d890600160481b900460ff1681565b34801561077a57600080fd5b506102b66107893660046129e6565b6118ad565b34801561079a57600080fd5b506103616107a93660046128d6565b611904565b3480156107ba57600080fd5b506103346107c936600461267f565b6119cf565b3480156107da57600080fd5b50600d546107ee906001600160801b031681565b6040516001600160801b0390911681526020016102e4565b34801561081257600080fd5b506103dc600b5481565b34801561082857600080fd5b506102b66108373660046128d6565b6119fd565b34801561084857600080fd5b506103dc61085736600461267f565b611a2c565b34801561086857600080fd5b50600d5461033490600160c01b90046001600160401b031681565b34801561088f57600080fd5b506102d861089e36600461269a565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108d857600080fd5b506102b66108e73660046129c3565b611a5a565b3480156108f857600080fd5b506102b66109073660046128d6565b611aec565b34801561091857600080fd5b506102b661092736600461267f565b611b1b565b60006001600160e01b031982166380ac58cd60e01b148061095d57506001600160e01b03198216635b5e139f60e01b145b8061097857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146109b15760405162461bcd60e51b81526004016109a890612b5c565b60405180910390fd5b600d80546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b6060600380546109e890612ca5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1490612ca5565b8015610a615780601f10610a3657610100808354040283529160200191610a61565b820191906000526020600020905b815481529060010190602001808311610a4457829003601f168201915b5050505050905090565b6000610a7682611bb3565b610a93576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610aba826110a2565b9050806001600160a01b0316836001600160a01b03161415610aef5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b0f5750610b0d813361089e565b155b15610b2d576040516367d9dca160e11b815260040160405180910390fd5b610b38838383611bec565b505050565b6000546001600160a01b03163314610b675760405162461bcd60e51b81526004016109a890612b5c565b600e805467ffffffffffffffff19166001600160401b0392909216919091179055565b610b38838383611c48565b6000546001600160a01b03163314610bbf5760405162461bcd60e51b81526004016109a890612b5c565b476000735fca6b3ec00cbf468f37a9bd6a96422c7ea122b56064610be4846001612c43565b610bee9190612c2f565b604051600081818185875af1925050503d8060008114610c2a576040519150601f19603f3d011682016040523d82523d6000602084013e610c2f565b606091505b5050905080610c3d57600080fd5b600073e7d8724498c961c6296c3e0ed6a192f24d23bdea6064610c61856012612c43565b610c6b9190612c2f565b604051600081818185875af1925050503d8060008114610ca7576040519150601f19603f3d011682016040523d82523d6000602084013e610cac565b606091505b5050905080610cba57600080fd5b6000736f74dd347b660f07ccc0749a1f19efaa3244bcee6064610cde866005612c43565b610ce89190612c2f565b604051600081818185875af1925050503d8060008114610d24576040519150601f19603f3d011682016040523d82523d6000602084013e610d29565b606091505b5050905080610d3757600080fd5b6000732b2411c4c28d1028646486c2a6089fe3a3521ef56064610d5b876027612c43565b610d659190612c2f565b604051600081818185875af1925050503d8060008114610da1576040519150601f19603f3d011682016040523d82523d6000602084013e610da6565b606091505b5050905080610db457600080fd5b600073284496e2af8703a39b536361a715f857c7d891f46064610dd8886025612c43565b610de29190612c2f565b604051600081818185875af1925050503d8060008114610e1e576040519150601f19603f3d011682016040523d82523d6000602084013e610e23565b606091505b5050905080610e3157600080fd5b505050505050565b6000546001600160a01b03163314610e635760405162461bcd60e51b81526004016109a890612b5c565b600e8054911515600160401b0268ff000000000000000019909216919091179055565b610b388383836040518060200160405280600081525061185c565b610eaa81611061565b610eed5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016109a8565b610ef6816110a2565b6001600160a01b0316336001600160a01b031614610f565760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686520746f6b656e00000000000060448201526064016109a8565b610f61816000611e21565b50565b60606000610f7183611467565b90506000816001600160401b03811115610f8d57610f8d612d51565b604051908082528060200260200182016040528015610fb6578160200160208202803683370190505b509050600160005b8381108015610fd85750600d546001600160801b03168211155b1561105757610fe682611061565b151560011415611045576000610ffb836110a2565b9050866001600160a01b0316816001600160a01b03161415611043578284838151811061102a5761102a612d3b565b60209081029190910101528161103f81612ce0565b9250505b505b8161104f81612ce0565b925050610fbe565b5090949350505050565b600061097882611bb3565b6000546001600160a01b031633146110965760405162461bcd60e51b81526004016109a890612b5c565b610b38600983836125a3565b60006110ad82611fd5565b5192915050565b806001600160401b0316600081116110de5760405162461bcd60e51b81526004016109a890612b2e565b600d546001600160801b0316816110f3611819565b6110fd9190612bec565b111561111b5760405162461bcd60e51b81526004016109a890612b91565b600e54600160481b900460ff1661116b5760405162461bcd60e51b81526020600482015260146024820152735075626c6963206973206e6f742041637469766560601b60448201526064016109a8565b6000611176336119cf565b600e549091506001600160401b031661118f8483612c04565b6001600160401b031611156111b65760405162461bcd60e51b81526004016109a890612b00565b826001600160401b0316600c546111cd9190612c43565b34146111eb5760405162461bcd60e51b81526004016109a890612bbf565b611233336111f98584612c04565b6001600160a01b038216600090815260066020526040902080546001600160c01b0316600160c01b6001600160401b038416021790555050565b610b3833846001600160401b0316612100565b806001600160401b0316600081116112705760405162461bcd60e51b81526004016109a890612b2e565b600d546001600160801b031681611285611819565b61128f9190612bec565b11156112ad5760405162461bcd60e51b81526004016109a890612b91565b600e54600160401b900460ff166112fe5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742041637469766560581b60448201526064016109a8565b816001600160401b0316600b546113159190612c43565b34146113335760405162461bcd60e51b81526004016109a890612bbf565b600d546001600160401b03600160c01b909104811690831661135433611a2c565b61135e9190612bec565b111561137c5760405162461bcd60e51b81526004016109a890612b00565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506113f685858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601054915084905061211a565b61144d5760405162461bcd60e51b815260206004820152602260248201527f4e6f742070617274206f66207468652050726573616c652077686974656c69736044820152613a1760f11b60648201526084016109a8565b61146033846001600160401b0316612100565b5050505050565b60006001600160a01b038216611490576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b031633146114df5760405162461bcd60e51b81526004016109a890612b5c565b601055565b806001600160401b03166000811161150e5760405162461bcd60e51b81526004016109a890612b2e565b600d546001600160801b031681611523611819565b61152d9190612bec565b111561154b5760405162461bcd60e51b81526004016109a890612b91565b600e54600160401b900460ff1661159c5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742041637469766560581b60448201526064016109a8565b816001600160401b0316600a546115b39190612c43565b34146115d15760405162461bcd60e51b81526004016109a890612bbf565b600d546001600160401b03600160801b90910481169083166115f233611a2c565b6115fc9190612bec565b111561161a5760405162461bcd60e51b81526004016109a890612b00565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506113f685858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f54915084905061211a565b6000546001600160a01b031633146116be5760405162461bcd60e51b81526004016109a890612b5c565b600d80546001600160801b0319166001600160801b0392909216919091179055565b6000546001600160a01b0316331461170a5760405162461bcd60e51b81526004016109a890612b5c565b600e54600160401b900460ff161561172157600080fd5b600e8054911515600160481b0269ff00000000000000000019909216919091179055565b6000546001600160a01b0316331461176f5760405162461bcd60e51b81526004016109a890612b5c565b600c55565b6060600480546109e890612ca5565b6001600160a01b0382163314156117ad5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006118286001546000190190565b905090565b6000546001600160a01b031633146118575760405162461bcd60e51b81526004016109a890612b5c565b600a55565b611867848484611c48565b6001600160a01b0383163b15158015611889575061188784848484612130565b155b156118a7576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146118d75760405162461bcd60e51b81526004016109a890612b5c565b600d80546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b606061190f82611bb3565b6119735760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a8565b600061197d612228565b9050600081511161199d57604051806020016040528060008152506119c8565b806119a784612237565b6040516020016119b8929190612a2d565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260066020526040812054600160c01b90046001600160401b0316610978565b6000546001600160a01b03163314611a275760405162461bcd60e51b81526004016109a890612b5c565b600f55565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b0316610978565b8160008111611a7b5760405162461bcd60e51b81526004016109a890612b2e565b600d546001600160801b031681611a90611819565b611a9a9190612bec565b1115611ab85760405162461bcd60e51b81526004016109a890612b91565b6000546001600160a01b03163314611ae25760405162461bcd60e51b81526004016109a890612b5c565b610b388284612100565b6000546001600160a01b03163314611b165760405162461bcd60e51b81526004016109a890612b5c565b600b55565b6000546001600160a01b03163314611b455760405162461bcd60e51b81526004016109a890612b5c565b6001600160a01b038116611baa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a8565b610f6181612334565b600081600111158015611bc7575060015482105b8015610978575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611c5382611fd5565b9050836001600160a01b031681600001516001600160a01b031614611c8a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611ca85750611ca8853361089e565b80611cc3575033611cb884610a6b565b6001600160a01b0316145b905080611ce357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611d0a57604051633a954ecd60e21b815260040160405180910390fd5b611d1660008487611bec565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611dea576001548214611dea57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020612d7e83398151915260405160405180910390a4611460565b6000611e2c83611fd5565b80519091508215611e92576000336001600160a01b0383161480611e555750611e55823361089e565b80611e70575033611e6586610a6b565b6001600160a01b0316145b905080611e9057604051632ce44b5f60e11b815260040160405180910390fd5b505b611e9e60008583611bec565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611f9c576001548214611f9c57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612d7e833981519152908390a450506002805460010190555050565b60408051606081018252600080825260208201819052918101919091528180600111158015612005575060015481105b156120e357600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906120e15780516001600160a01b031615612078579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156120dc579392505050565b612078565b505b604051636f96cda160e11b815260040160405180910390fd5b5050565b6120fc828260405180602001604052806000815250612384565b6000826121278584612391565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612165903390899088908890600401612a6c565b602060405180830381600087803b15801561217f57600080fd5b505af19250505080156121af575060408051601f3d908101601f191682019092526121ac9181019061290c565b60015b61220a573d8080156121dd576040519150601f19603f3d011682016040523d82523d6000602084013e6121e2565b606091505b508051612202576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546109e890612ca5565b60608161225b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612285578061226f81612ce0565b915061227e9050600a83612c2f565b915061225f565b6000816001600160401b0381111561229f5761229f612d51565b6040519080825280601f01601f1916602001820160405280156122c9576020820181803683370190505b5090505b8415612220576122de600183612c62565b91506122eb600a86612cfb565b6122f6906030612bec565b60f81b81838151811061230b5761230b612d3b565b60200101906001600160f81b031916908160001a90535061232d600a86612c2f565b94506122cd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610b388383836001612405565b600081815b84518110156123fd5760008582815181106123b3576123b3612d3b565b602002602001015190508083116123d957600083815260208290526040902092506123ea565b600081815260208490526040902092505b50806123f581612ce0565b915050612396565b509392505050565b6001546001600160a01b03851661242e57604051622e076360e81b815260040160405180910390fd5b8361244c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156124ef57506001600160a01b0387163b15155b15612566575b60405182906001600160a01b03891690600090600080516020612d7e833981519152908290a461252e6000888480600101955088612130565b61254b576040516368d2bf6b60e11b815260040160405180910390fd5b808214156124f557826001541461256157600080fd5b61259a565b5b6040516001830192906001600160a01b03891690600090600080516020612d7e833981519152908290a480821415612567575b50600155611460565b8280546125af90612ca5565b90600052602060002090601f0160209004810192826125d15760008555612617565b82601f106125ea5782800160ff19823516178555612617565b82800160010185558215612617579182015b828111156126175782358255916020019190600101906125fc565b50612623929150612627565b5090565b5b808211156126235760008155600101612628565b80356001600160a01b038116811461265357600080fd5b919050565b8035801515811461265357600080fd5b80356001600160401b038116811461265357600080fd5b60006020828403121561269157600080fd5b6119c88261263c565b600080604083850312156126ad57600080fd5b6126b68361263c565b91506126c46020840161263c565b90509250929050565b6000806000606084860312156126e257600080fd5b6126eb8461263c565b92506126f96020850161263c565b9150604084013590509250925092565b6000806000806080858703121561271f57600080fd5b6127288561263c565b93506127366020860161263c565b92506040850135915060608501356001600160401b038082111561275957600080fd5b818701915087601f83011261276d57600080fd5b81358181111561277f5761277f612d51565b604051601f8201601f19908116603f011681019083821181831017156127a7576127a7612d51565b816040528281528a60208487010111156127c057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156127f757600080fd5b6128008361263c565b91506126c460208401612658565b6000806040838503121561282157600080fd5b61282a8361263c565b946020939093013593505050565b60008060006040848603121561284d57600080fd5b83356001600160401b038082111561286457600080fd5b818601915086601f83011261287857600080fd5b81358181111561288757600080fd5b8760208260051b850101111561289c57600080fd5b6020928301955093506128b29186019050612668565b90509250925092565b6000602082840312156128cd57600080fd5b6119c882612658565b6000602082840312156128e857600080fd5b5035919050565b60006020828403121561290157600080fd5b81356119c881612d67565b60006020828403121561291e57600080fd5b81516119c881612d67565b6000806020838503121561293c57600080fd5b82356001600160401b038082111561295357600080fd5b818501915085601f83011261296757600080fd5b81358181111561297657600080fd5b86602082850101111561298857600080fd5b60209290920196919550909350505050565b6000602082840312156129ac57600080fd5b81356001600160801b03811681146119c857600080fd5b600080604083850312156129d657600080fd5b823591506126c46020840161263c565b6000602082840312156129f857600080fd5b6119c882612668565b60008151808452612a19816020860160208601612c79565b601f01601f19169290920160200192915050565b60008351612a3f818460208801612c79565b835190830190612a53818360208801612c79565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a9f90830184612a01565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ae157835183529284019291840191600101612ac5565b50909695505050505050565b6020815260006119c86020830184612a01565b60208082526014908201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b604082015260600190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b60008219821115612bff57612bff612d0f565b500190565b60006001600160401b03808316818516808303821115612c2657612c26612d0f565b01949350505050565b600082612c3e57612c3e612d25565b500490565b6000816000190483118215151615612c5d57612c5d612d0f565b500290565b600082821015612c7457612c74612d0f565b500390565b60005b83811015612c94578181015183820152602001612c7c565b838111156118a75750506000910152565b600181811c90821680612cb957607f821691505b60208210811415612cda57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cf457612cf4612d0f565b5060010190565b600082612d0a57612d0a612d25565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f6157600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212203dcc67a312ee567c5696e59bd9ff61040424a6f74d8076b63487598f9089a4e464736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102af5760003560e01c806370a0823111610166578063bc8893b4116100d3578063d8a7ab891161008f578063e985e9c51161006c578063e985e9c514610883578063efbd73f4146108cc578063f12f6d5d146108ec578063f2fde38b1461090c57005b8063d8a7ab891461081c578063dc33e6811461083c578063e636aeb51461085c57005b8063bc8893b41461074d578063c12d92441461076e578063c87b56dd1461078e578063cd11ddc4146107ae578063d5abeb01146107ce578063d70a28d11461080657005b80638dbb7c06116101225780638dbb7c06146106a357806395d89b41146106c3578063a22cb465146106d8578063a2309ff8146106f8578063a679db161461070d578063b88d4fde1461072d57005b806370a08231146105f25780637d44fd11146106125780638a68aab2146106325780638ac068a2146106455780638aca408c146106655780638da5cb5b1461068557005b80633f8121a21161021c57806353135ca0116101d85780636352211e116101b55780636352211e1461059657806369aff65f146105b65780636afcb7b0146105cc5780636b845aa4146105df57005b806353135ca01461053f57806354c06aee1461056057806355f804b31461057657005b80633f8121a21461047c57806342842e0e1461049c57806342966c68146104bc578063438b6300146104dc578063453afb0f146105095780634f558e791461051f57005b80630a3025301161026b5780630a302530146103c65780630b85d4ef146103ea57806318160ddd1461040a57806318a1c1131461042757806323b872dd146104475780633ccfd60b1461046757005b806301ffc9a7146102b857806304b86f06146102ed57806305868aa01461030d57806306fdde031461034c578063081812fc1461036e578063095ea7b3146103a657005b366102b657005b005b3480156102c457600080fd5b506102d86102d33660046128ef565b61092c565b60405190151581526020015b60405180910390f35b3480156102f957600080fd5b506102b66103083660046129e6565b61097e565b34801561031957600080fd5b50600d5461033490600160801b90046001600160401b031681565b6040516001600160401b0390911681526020016102e4565b34801561035857600080fd5b506103616109d9565b6040516102e49190612aed565b34801561037a57600080fd5b5061038e6103893660046128d6565b610a6b565b6040516001600160a01b0390911681526020016102e4565b3480156103b257600080fd5b506102b66103c136600461280e565b610aaf565b3480156103d257600080fd5b506103dc600f5481565b6040519081526020016102e4565b3480156103f657600080fd5b50600e54610334906001600160401b031681565b34801561041657600080fd5b5060025460015403600019016103dc565b34801561043357600080fd5b506102b66104423660046129e6565b610b3d565b34801561045357600080fd5b506102b66104623660046126cd565b610b8a565b34801561047357600080fd5b506102b6610b95565b34801561048857600080fd5b506102b66104973660046128bb565b610e39565b3480156104a857600080fd5b506102b66104b73660046126cd565b610e86565b3480156104c857600080fd5b506102b66104d73660046128d6565b610ea1565b3480156104e857600080fd5b506104fc6104f736600461267f565b610f64565b6040516102e49190612aa9565b34801561051557600080fd5b506103dc600c5481565b34801561052b57600080fd5b506102d861053a3660046128d6565b611061565b34801561054b57600080fd5b50600e546102d890600160401b900460ff1681565b34801561056c57600080fd5b506103dc60105481565b34801561058257600080fd5b506102b6610591366004612929565b61106c565b3480156105a257600080fd5b5061038e6105b13660046128d6565b6110a2565b3480156105c257600080fd5b506103dc600a5481565b6102b66105da3660046129e6565b6110b4565b6102b66105ed366004612838565b611246565b3480156105fe57600080fd5b506103dc61060d36600461267f565b611467565b34801561061e57600080fd5b506102b661062d3660046128d6565b6114b5565b6102b6610640366004612838565b6114e4565b34801561065157600080fd5b506102b661066036600461299a565b611694565b34801561067157600080fd5b506102b66106803660046128bb565b6116e0565b34801561069157600080fd5b506000546001600160a01b031661038e565b3480156106af57600080fd5b506102b66106be3660046128d6565b611745565b3480156106cf57600080fd5b50610361611774565b3480156106e457600080fd5b506102b66106f33660046127e4565b611783565b34801561070457600080fd5b506103dc611819565b34801561071957600080fd5b506102b66107283660046128d6565b61182d565b34801561073957600080fd5b506102b6610748366004612709565b61185c565b34801561075957600080fd5b50600e546102d890600160481b900460ff1681565b34801561077a57600080fd5b506102b66107893660046129e6565b6118ad565b34801561079a57600080fd5b506103616107a93660046128d6565b611904565b3480156107ba57600080fd5b506103346107c936600461267f565b6119cf565b3480156107da57600080fd5b50600d546107ee906001600160801b031681565b6040516001600160801b0390911681526020016102e4565b34801561081257600080fd5b506103dc600b5481565b34801561082857600080fd5b506102b66108373660046128d6565b6119fd565b34801561084857600080fd5b506103dc61085736600461267f565b611a2c565b34801561086857600080fd5b50600d5461033490600160c01b90046001600160401b031681565b34801561088f57600080fd5b506102d861089e36600461269a565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108d857600080fd5b506102b66108e73660046129c3565b611a5a565b3480156108f857600080fd5b506102b66109073660046128d6565b611aec565b34801561091857600080fd5b506102b661092736600461267f565b611b1b565b60006001600160e01b031982166380ac58cd60e01b148061095d57506001600160e01b03198216635b5e139f60e01b145b8061097857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146109b15760405162461bcd60e51b81526004016109a890612b5c565b60405180910390fd5b600d80546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b6060600380546109e890612ca5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1490612ca5565b8015610a615780601f10610a3657610100808354040283529160200191610a61565b820191906000526020600020905b815481529060010190602001808311610a4457829003601f168201915b5050505050905090565b6000610a7682611bb3565b610a93576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610aba826110a2565b9050806001600160a01b0316836001600160a01b03161415610aef5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b0f5750610b0d813361089e565b155b15610b2d576040516367d9dca160e11b815260040160405180910390fd5b610b38838383611bec565b505050565b6000546001600160a01b03163314610b675760405162461bcd60e51b81526004016109a890612b5c565b600e805467ffffffffffffffff19166001600160401b0392909216919091179055565b610b38838383611c48565b6000546001600160a01b03163314610bbf5760405162461bcd60e51b81526004016109a890612b5c565b476000735fca6b3ec00cbf468f37a9bd6a96422c7ea122b56064610be4846001612c43565b610bee9190612c2f565b604051600081818185875af1925050503d8060008114610c2a576040519150601f19603f3d011682016040523d82523d6000602084013e610c2f565b606091505b5050905080610c3d57600080fd5b600073e7d8724498c961c6296c3e0ed6a192f24d23bdea6064610c61856012612c43565b610c6b9190612c2f565b604051600081818185875af1925050503d8060008114610ca7576040519150601f19603f3d011682016040523d82523d6000602084013e610cac565b606091505b5050905080610cba57600080fd5b6000736f74dd347b660f07ccc0749a1f19efaa3244bcee6064610cde866005612c43565b610ce89190612c2f565b604051600081818185875af1925050503d8060008114610d24576040519150601f19603f3d011682016040523d82523d6000602084013e610d29565b606091505b5050905080610d3757600080fd5b6000732b2411c4c28d1028646486c2a6089fe3a3521ef56064610d5b876027612c43565b610d659190612c2f565b604051600081818185875af1925050503d8060008114610da1576040519150601f19603f3d011682016040523d82523d6000602084013e610da6565b606091505b5050905080610db457600080fd5b600073284496e2af8703a39b536361a715f857c7d891f46064610dd8886025612c43565b610de29190612c2f565b604051600081818185875af1925050503d8060008114610e1e576040519150601f19603f3d011682016040523d82523d6000602084013e610e23565b606091505b5050905080610e3157600080fd5b505050505050565b6000546001600160a01b03163314610e635760405162461bcd60e51b81526004016109a890612b5c565b600e8054911515600160401b0268ff000000000000000019909216919091179055565b610b388383836040518060200160405280600081525061185c565b610eaa81611061565b610eed5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016109a8565b610ef6816110a2565b6001600160a01b0316336001600160a01b031614610f565760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686520746f6b656e00000000000060448201526064016109a8565b610f61816000611e21565b50565b60606000610f7183611467565b90506000816001600160401b03811115610f8d57610f8d612d51565b604051908082528060200260200182016040528015610fb6578160200160208202803683370190505b509050600160005b8381108015610fd85750600d546001600160801b03168211155b1561105757610fe682611061565b151560011415611045576000610ffb836110a2565b9050866001600160a01b0316816001600160a01b03161415611043578284838151811061102a5761102a612d3b565b60209081029190910101528161103f81612ce0565b9250505b505b8161104f81612ce0565b925050610fbe565b5090949350505050565b600061097882611bb3565b6000546001600160a01b031633146110965760405162461bcd60e51b81526004016109a890612b5c565b610b38600983836125a3565b60006110ad82611fd5565b5192915050565b806001600160401b0316600081116110de5760405162461bcd60e51b81526004016109a890612b2e565b600d546001600160801b0316816110f3611819565b6110fd9190612bec565b111561111b5760405162461bcd60e51b81526004016109a890612b91565b600e54600160481b900460ff1661116b5760405162461bcd60e51b81526020600482015260146024820152735075626c6963206973206e6f742041637469766560601b60448201526064016109a8565b6000611176336119cf565b600e549091506001600160401b031661118f8483612c04565b6001600160401b031611156111b65760405162461bcd60e51b81526004016109a890612b00565b826001600160401b0316600c546111cd9190612c43565b34146111eb5760405162461bcd60e51b81526004016109a890612bbf565b611233336111f98584612c04565b6001600160a01b038216600090815260066020526040902080546001600160c01b0316600160c01b6001600160401b038416021790555050565b610b3833846001600160401b0316612100565b806001600160401b0316600081116112705760405162461bcd60e51b81526004016109a890612b2e565b600d546001600160801b031681611285611819565b61128f9190612bec565b11156112ad5760405162461bcd60e51b81526004016109a890612b91565b600e54600160401b900460ff166112fe5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742041637469766560581b60448201526064016109a8565b816001600160401b0316600b546113159190612c43565b34146113335760405162461bcd60e51b81526004016109a890612bbf565b600d546001600160401b03600160c01b909104811690831661135433611a2c565b61135e9190612bec565b111561137c5760405162461bcd60e51b81526004016109a890612b00565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506113f685858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601054915084905061211a565b61144d5760405162461bcd60e51b815260206004820152602260248201527f4e6f742070617274206f66207468652050726573616c652077686974656c69736044820152613a1760f11b60648201526084016109a8565b61146033846001600160401b0316612100565b5050505050565b60006001600160a01b038216611490576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b031633146114df5760405162461bcd60e51b81526004016109a890612b5c565b601055565b806001600160401b03166000811161150e5760405162461bcd60e51b81526004016109a890612b2e565b600d546001600160801b031681611523611819565b61152d9190612bec565b111561154b5760405162461bcd60e51b81526004016109a890612b91565b600e54600160401b900460ff1661159c5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742041637469766560581b60448201526064016109a8565b816001600160401b0316600a546115b39190612c43565b34146115d15760405162461bcd60e51b81526004016109a890612bbf565b600d546001600160401b03600160801b90910481169083166115f233611a2c565b6115fc9190612bec565b111561161a5760405162461bcd60e51b81526004016109a890612b00565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506113f685858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f54915084905061211a565b6000546001600160a01b031633146116be5760405162461bcd60e51b81526004016109a890612b5c565b600d80546001600160801b0319166001600160801b0392909216919091179055565b6000546001600160a01b0316331461170a5760405162461bcd60e51b81526004016109a890612b5c565b600e54600160401b900460ff161561172157600080fd5b600e8054911515600160481b0269ff00000000000000000019909216919091179055565b6000546001600160a01b0316331461176f5760405162461bcd60e51b81526004016109a890612b5c565b600c55565b6060600480546109e890612ca5565b6001600160a01b0382163314156117ad5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006118286001546000190190565b905090565b6000546001600160a01b031633146118575760405162461bcd60e51b81526004016109a890612b5c565b600a55565b611867848484611c48565b6001600160a01b0383163b15158015611889575061188784848484612130565b155b156118a7576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146118d75760405162461bcd60e51b81526004016109a890612b5c565b600d80546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b606061190f82611bb3565b6119735760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a8565b600061197d612228565b9050600081511161199d57604051806020016040528060008152506119c8565b806119a784612237565b6040516020016119b8929190612a2d565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260066020526040812054600160c01b90046001600160401b0316610978565b6000546001600160a01b03163314611a275760405162461bcd60e51b81526004016109a890612b5c565b600f55565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b0316610978565b8160008111611a7b5760405162461bcd60e51b81526004016109a890612b2e565b600d546001600160801b031681611a90611819565b611a9a9190612bec565b1115611ab85760405162461bcd60e51b81526004016109a890612b91565b6000546001600160a01b03163314611ae25760405162461bcd60e51b81526004016109a890612b5c565b610b388284612100565b6000546001600160a01b03163314611b165760405162461bcd60e51b81526004016109a890612b5c565b600b55565b6000546001600160a01b03163314611b455760405162461bcd60e51b81526004016109a890612b5c565b6001600160a01b038116611baa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a8565b610f6181612334565b600081600111158015611bc7575060015482105b8015610978575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611c5382611fd5565b9050836001600160a01b031681600001516001600160a01b031614611c8a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611ca85750611ca8853361089e565b80611cc3575033611cb884610a6b565b6001600160a01b0316145b905080611ce357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611d0a57604051633a954ecd60e21b815260040160405180910390fd5b611d1660008487611bec565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611dea576001548214611dea57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020612d7e83398151915260405160405180910390a4611460565b6000611e2c83611fd5565b80519091508215611e92576000336001600160a01b0383161480611e555750611e55823361089e565b80611e70575033611e6586610a6b565b6001600160a01b0316145b905080611e9057604051632ce44b5f60e11b815260040160405180910390fd5b505b611e9e60008583611bec565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611f9c576001548214611f9c57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612d7e833981519152908390a450506002805460010190555050565b60408051606081018252600080825260208201819052918101919091528180600111158015612005575060015481105b156120e357600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906120e15780516001600160a01b031615612078579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156120dc579392505050565b612078565b505b604051636f96cda160e11b815260040160405180910390fd5b5050565b6120fc828260405180602001604052806000815250612384565b6000826121278584612391565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612165903390899088908890600401612a6c565b602060405180830381600087803b15801561217f57600080fd5b505af19250505080156121af575060408051601f3d908101601f191682019092526121ac9181019061290c565b60015b61220a573d8080156121dd576040519150601f19603f3d011682016040523d82523d6000602084013e6121e2565b606091505b508051612202576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546109e890612ca5565b60608161225b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612285578061226f81612ce0565b915061227e9050600a83612c2f565b915061225f565b6000816001600160401b0381111561229f5761229f612d51565b6040519080825280601f01601f1916602001820160405280156122c9576020820181803683370190505b5090505b8415612220576122de600183612c62565b91506122eb600a86612cfb565b6122f6906030612bec565b60f81b81838151811061230b5761230b612d3b565b60200101906001600160f81b031916908160001a90535061232d600a86612c2f565b94506122cd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610b388383836001612405565b600081815b84518110156123fd5760008582815181106123b3576123b3612d3b565b602002602001015190508083116123d957600083815260208290526040902092506123ea565b600081815260208490526040902092505b50806123f581612ce0565b915050612396565b509392505050565b6001546001600160a01b03851661242e57604051622e076360e81b815260040160405180910390fd5b8361244c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156124ef57506001600160a01b0387163b15155b15612566575b60405182906001600160a01b03891690600090600080516020612d7e833981519152908290a461252e6000888480600101955088612130565b61254b576040516368d2bf6b60e11b815260040160405180910390fd5b808214156124f557826001541461256157600080fd5b61259a565b5b6040516001830192906001600160a01b03891690600090600080516020612d7e833981519152908290a480821415612567575b50600155611460565b8280546125af90612ca5565b90600052602060002090601f0160209004810192826125d15760008555612617565b82601f106125ea5782800160ff19823516178555612617565b82800160010185558215612617579182015b828111156126175782358255916020019190600101906125fc565b50612623929150612627565b5090565b5b808211156126235760008155600101612628565b80356001600160a01b038116811461265357600080fd5b919050565b8035801515811461265357600080fd5b80356001600160401b038116811461265357600080fd5b60006020828403121561269157600080fd5b6119c88261263c565b600080604083850312156126ad57600080fd5b6126b68361263c565b91506126c46020840161263c565b90509250929050565b6000806000606084860312156126e257600080fd5b6126eb8461263c565b92506126f96020850161263c565b9150604084013590509250925092565b6000806000806080858703121561271f57600080fd5b6127288561263c565b93506127366020860161263c565b92506040850135915060608501356001600160401b038082111561275957600080fd5b818701915087601f83011261276d57600080fd5b81358181111561277f5761277f612d51565b604051601f8201601f19908116603f011681019083821181831017156127a7576127a7612d51565b816040528281528a60208487010111156127c057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156127f757600080fd5b6128008361263c565b91506126c460208401612658565b6000806040838503121561282157600080fd5b61282a8361263c565b946020939093013593505050565b60008060006040848603121561284d57600080fd5b83356001600160401b038082111561286457600080fd5b818601915086601f83011261287857600080fd5b81358181111561288757600080fd5b8760208260051b850101111561289c57600080fd5b6020928301955093506128b29186019050612668565b90509250925092565b6000602082840312156128cd57600080fd5b6119c882612658565b6000602082840312156128e857600080fd5b5035919050565b60006020828403121561290157600080fd5b81356119c881612d67565b60006020828403121561291e57600080fd5b81516119c881612d67565b6000806020838503121561293c57600080fd5b82356001600160401b038082111561295357600080fd5b818501915085601f83011261296757600080fd5b81358181111561297657600080fd5b86602082850101111561298857600080fd5b60209290920196919550909350505050565b6000602082840312156129ac57600080fd5b81356001600160801b03811681146119c857600080fd5b600080604083850312156129d657600080fd5b823591506126c46020840161263c565b6000602082840312156129f857600080fd5b6119c882612668565b60008151808452612a19816020860160208601612c79565b601f01601f19169290920160200192915050565b60008351612a3f818460208801612c79565b835190830190612a53818360208801612c79565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a9f90830184612a01565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ae157835183529284019291840191600101612ac5565b50909695505050505050565b6020815260006119c86020830184612a01565b60208082526014908201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b604082015260600190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b60008219821115612bff57612bff612d0f565b500190565b60006001600160401b03808316818516808303821115612c2657612c26612d0f565b01949350505050565b600082612c3e57612c3e612d25565b500490565b6000816000190483118215151615612c5d57612c5d612d0f565b500290565b600082821015612c7457612c74612d0f565b500390565b60005b83811015612c94578181015183820152602001612c7c565b838111156118a75750506000910152565b600181811c90821680612cb957607f821691505b60208210811415612cda57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cf457612cf4612d0f565b5060010190565b600082612d0a57612d0a612d25565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f6157600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212203dcc67a312ee567c5696e59bd9ff61040424a6f74d8076b63487598f9089a4e464736f6c63430008070033
Deployed Bytecode Sourcemap
48341:8460:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27447:315;;;;;;;;;;-1:-1:-1;27447:315:0;;;;;:::i;:::-;;:::i;:::-;;;8942:14:1;;8935:22;8917:41;;8905:2;8890:18;27447:315:0;;;;;;;;54678:145;;;;;;;;;;-1:-1:-1;54678:145:0;;;;;:::i;:::-;;:::i;48631:43::-;;;;;;;;;;-1:-1:-1;48631:43:0;;;;-1:-1:-1;;;48631:43:0;;-1:-1:-1;;;;;48631:43:0;;;;;;-1:-1:-1;;;;;14327:31:1;;;14309:50;;14297:2;14282:18;48631:43:0;14165:200:1;30730:104:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32327:212::-;;;;;;;;;;-1:-1:-1;32327:212:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7603:32:1;;;7585:51;;7573:2;7558:18;32327:212:0;7439:203:1;31862:389:0;;;;;;;;;;-1:-1:-1;31862:389:0;;;;;:::i;:::-;;:::i;48871:27::-;;;;;;;;;;;;;;;;;;;9115:25:1;;;9103:2;9088:18;48871:27:0;8969:177:1;48731:47:0;;;;;;;;;;-1:-1:-1;48731:47:0;;;;-1:-1:-1;;;;;48731:47:0;;;26652:315;;;;;;;;;;-1:-1:-1;26914:12:0;;26497:1;26898:13;:28;-1:-1:-1;;26898:46:0;26652:315;;54834:173;;;;;;;;;;-1:-1:-1;54834:173:0;;;;;:::i;:::-;;:::i;33244:182::-;;;;;;;;;;-1:-1:-1;33244:182:0;;;;;:::i;:::-;;:::i;55816:887::-;;;;;;;;;;;;;:::i;55019:97::-;;;;;;;;;;-1:-1:-1;55019:97:0;;;;;:::i;:::-;;:::i;33507:197::-;;;;;;;;;;-1:-1:-1;33507:197:0;;;;;:::i;:::-;;:::i;53708:221::-;;;;;;;;;;-1:-1:-1;53708:221:0;;;;;:::i;:::-;;:::i;51596:802::-;;;;;;;;;;-1:-1:-1;51596:802:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48540:42::-;;;;;;;;;;;;;;;;53596:104;;;;;;;;;;-1:-1:-1;53596:104:0;;;;;:::i;:::-;;:::i;48787:33::-;;;;;;;;;;-1:-1:-1;48787:33:0;;;;-1:-1:-1;;;48787:33:0;;;;;;48905:27;;;;;;;;;;;;;;;;54098:99;;;;;;;;;;-1:-1:-1;54098:99:0;;;;;:::i;:::-;;:::i;30524:129::-;;;;;;;;;;-1:-1:-1;30524:129:0;;;;;:::i;:::-;;:::i;48459:33::-;;;;;;;;;;;;;;;;50730:553;;;;;;:::i;:::-;;:::i;50005:653::-;;;;;;:::i;:::-;;:::i;27836:212::-;;;;;;;;;;-1:-1:-1;27836:212:0;;;;;:::i;:::-;;:::i;55545:112::-;;;;;;;;;;-1:-1:-1;55545:112:0;;;;;:::i;:::-;;:::i;49279:653::-;;;;;;:::i;:::-;;:::i;55665:100::-;;;;;;;;;;-1:-1:-1;55665:100:0;;;;;:::i;:::-;;:::i;55124:141::-;;;;;;;;;;-1:-1:-1;55124:141:0;;;;;:::i;:::-;;:::i;47261:87::-;;;;;;;;;;-1:-1:-1;47307:7:0;47334:6;-1:-1:-1;;;;;47334:6:0;47261:87;;54205:120;;;;;;;;;;-1:-1:-1;54205:120:0;;;;;:::i;:::-;;:::i;30913:108::-;;;;;;;;;;;;;:::i;32621:297::-;;;;;;;;;;-1:-1:-1;32621:297:0;;;;;:::i;:::-;;:::i;53495:93::-;;;;;;;;;;;;;:::i;54333:88::-;;;;;;;;;;-1:-1:-1;54333:88:0;;;;;:::i;:::-;;:::i;33785:389::-;;;;;;;;;;-1:-1:-1;33785:389:0;;;;;:::i;:::-;;:::i;48827:35::-;;;;;;;;;;-1:-1:-1;48827:35:0;;;;-1:-1:-1;;;48827:35:0;;;;;;54525:145;;;;;;;;;;-1:-1:-1;54525:145:0;;;;;:::i;:::-;;:::i;52454:484::-;;;;;;;;;;-1:-1:-1;52454:484:0;;;;;:::i;:::-;;:::i;53013:117::-;;;;;;;;;;-1:-1:-1;53013:117:0;;;;;:::i;:::-;;:::i;48591:31::-;;;;;;;;;;-1:-1:-1;48591:31:0;;;;-1:-1:-1;;;;;48591:31:0;;;;;;-1:-1:-1;;;;;13924:47:1;;;13906:66;;13894:2;13879:18;48591:31:0;13760:218:1;48499:34:0;;;;;;;;;;;;;;;;55349:112;;;;;;;;;;-1:-1:-1;55349:112:0;;;;;:::i;:::-;;:::i;53316:115::-;;;;;;;;;;-1:-1:-1;53316:115:0;;;;;:::i;:::-;;:::i;48681:43::-;;;;;;;;;;-1:-1:-1;48681:43:0;;;;-1:-1:-1;;;48681:43:0;;-1:-1:-1;;;;;48681:43:0;;;32999:168;;;;;;;;;;-1:-1:-1;32999:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;33122:25:0;;;33096:4;33122:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32999:168;51364:161;;;;;;;;;;-1:-1:-1;51364:161:0;;;;;:::i;:::-;;:::i;54429:88::-;;;;;;;;;;-1:-1:-1;54429:88:0;;;;;:::i;:::-;;:::i;47716:201::-;;;;;;;;;;-1:-1:-1;47716:201:0;;;;;:::i;:::-;;:::i;27447:315::-;27549:4;-1:-1:-1;;;;;;27590:40:0;;-1:-1:-1;;;27590:40:0;;:107;;-1:-1:-1;;;;;;;27649:48:0;;-1:-1:-1;;;27649:48:0;27590:107;:162;;;-1:-1:-1;;;;;;;;;;16322:40:0;;;27716:36;27568:184;27447:315;-1:-1:-1;;27447:315:0:o;54678:145::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;;;;;;;;;54767:25:::1;:48:::0;;-1:-1:-1;;;;;54767:48:0;;::::1;-1:-1:-1::0;;;54767:48:0::1;-1:-1:-1::0;;;;;54767:48:0;;::::1;::::0;;;::::1;::::0;;54678:145::o;30730:104::-;30784:13;30819:5;30812:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30730:104;:::o;32327:212::-;32395:7;32422:16;32430:7;32422;:16::i;:::-;32417:64;;32447:34;;-1:-1:-1;;;32447:34:0;;;;;;;;;;;32417:64;-1:-1:-1;32505:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32505:24:0;;32327:212::o;31862:389::-;31937:13;31953:24;31969:7;31953:15;:24::i;:::-;31937:40;;32000:5;-1:-1:-1;;;;;31994:11:0;:2;-1:-1:-1;;;;;31994:11:0;;31990:48;;;32014:24;;-1:-1:-1;;;32014:24:0;;;;;;;;;;;31990:48;22811:10;-1:-1:-1;;;;;32059:21:0;;;;;;:63;;-1:-1:-1;32085:37:0;32102:5;22811:10;32999:168;:::i;32085:37::-;32084:38;32059:63;32055:142;;;32148:35;;-1:-1:-1;;;32148:35:0;;;;;;;;;;;32055:142;32213:28;32222:2;32226:7;32235:5;32213:8;:28::i;:::-;31924:327;31862:389;;:::o;54834:173::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;54937:29:::1;:62:::0;;-1:-1:-1;;54937:62:0::1;-1:-1:-1::0;;;;;54937:62:0;;;::::1;::::0;;;::::1;::::0;;54834:173::o;33244:182::-;33388:28;33398:4;33404:2;33408:7;33388:9;:28::i;55816:887::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;55945:21:::1;55920:22;56001:42;56078:3;56057:18;55945:21:::0;56074:1:::1;56057:18;:::i;:::-;:24;;;;:::i;:::-;55993:93;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55979:107;;;56105:2;56097:11;;;::::0;::::1;;56130:7;56151:42;56229:3;56207:19;:14:::0;56224:2:::1;56207:19;:::i;:::-;:25;;;;:::i;:::-;56143:94;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56129:108;;;56256:2;56248:11;;;::::0;::::1;;56273:7;56294:42;56371:3;56350:18;:14:::0;56367:1:::1;56350:18;:::i;:::-;:24;;;;:::i;:::-;56286:93;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56272:107;;;56398:2;56390:11;;;::::0;::::1;;56423:7;56444:42;56522:3;56500:19;:14:::0;56517:2:::1;56500:19;:::i;:::-;:25;;;;:::i;:::-;56436:94;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56422:108;;;56549:2;56541:11;;;::::0;::::1;;56566:7;56587:42;56665:3;56643:19;:14:::0;56660:2:::1;56643:19;:::i;:::-;:25;;;;:::i;:::-;56579:94;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56565:108;;;56692:2;56684:11;;;::::0;::::1;;55853:850;;;;;;55816:887::o:0;55019:97::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;55086:13:::1;:22:::0;;;::::1;;-1:-1:-1::0;;;55086:22:0::1;-1:-1:-1::0;;55086:22:0;;::::1;::::0;;;::::1;::::0;;55019:97::o;33507:197::-;33655:39;33672:4;33678:2;33682:7;33655:39;;;;;;;;;;;;:16;:39::i;53708:221::-;53766:16;53773:8;53766:6;:16::i;:::-;53758:49;;;;-1:-1:-1;;;53758:49:0;;11032:2:1;53758:49:0;;;11014:21:1;11071:2;11051:18;;;11044:30;-1:-1:-1;;;11090:18:1;;;11083:50;11150:18;;53758:49:0;10830:344:1;53758:49:0;53840:17;53848:8;53840:7;:17::i;:::-;-1:-1:-1;;;;;53826:31:0;:10;-1:-1:-1;;;;;53826:31:0;;53818:70;;;;-1:-1:-1;;;53818:70:0;;13259:2:1;53818:70:0;;;13241:21:1;13298:2;13278:18;;;13271:30;13337:28;13317:18;;;13310:56;13383:18;;53818:70:0;13057:350:1;53818:70:0;53899:22;53905:8;53915:5;53899;:22::i;:::-;53708:221;:::o;51596:802::-;51685:16;51719:23;51745:17;51755:6;51745:9;:17::i;:::-;51719:43;;51773:30;51820:15;-1:-1:-1;;;;;51806:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51806:30:0;-1:-1:-1;51773:63:0;-1:-1:-1;51872:1:0;51847:22;51924:434;51949:15;51931;:33;:64;;;;-1:-1:-1;51986:9:0;;-1:-1:-1;;;;;51986:9:0;51968:27;;;51931:64;51924:434;;;52015:22;52022:14;52015:6;:22::i;:::-;:30;;52041:4;52015:30;52012:304;;;52066:25;52094:23;52102:14;52094:7;:23::i;:::-;52066:51;;52163:6;-1:-1:-1;;;;;52142:27:0;:17;-1:-1:-1;;;;;52142:27:0;;52138:163;;;52227:14;52194:13;52208:15;52194:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;52264:17;;;;:::i;:::-;;;;52138:163;52047:269;52012:304;52330:16;;;;:::i;:::-;;;;51924:434;;;-1:-1:-1;52377:13:0;;51596:802;-1:-1:-1;;;;51596:802:0:o;53596:104::-;53651:4;53675:17;53683:8;53675:7;:17::i;54098:99::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;54170:19:::1;:12;54185:4:::0;;54170:19:::1;:::i;30524:129::-:0;30588:7;30617:21;30630:7;30617:12;:21::i;:::-;:26;;30524:129;-1:-1:-1;;30524:129:0:o;50730:553::-;50800:11;-1:-1:-1;;;;;48999:209:0;49077:1;49063:11;:15;49055:49;;;;-1:-1:-1;;;49055:49:0;;;;;;;:::i;:::-;49154:9;;-1:-1:-1;;;;;49154:9:0;49139:11;49123:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49115:73;;;;-1:-1:-1;;;49115:73:0;;;;;;;:::i;:::-;50832:16:::1;::::0;-1:-1:-1;;;50832:16:0;::::1;;;50824:49;;;::::0;-1:-1:-1;;;50824:49:0;;11784:2:1;50824:49:0::1;::::0;::::1;11766:21:1::0;11823:2;11803:18;;;11796:30;-1:-1:-1;;;11842:18:1;;;11835:50;11902:18;;50824:49:0::1;11582:344:1::0;50824:49:0::1;50886:25;50914:33;50936:10;50914:21;:33::i;:::-;51002:29;::::0;50886:61;;-1:-1:-1;;;;;;51002:29:0::1;50966:32;50987:11:::0;50886:61;50966:32:::1;:::i;:::-;-1:-1:-1::0;;;;;50966:65:0::1;;;50958:99;;;;-1:-1:-1::0;;;50958:99:0::1;;;;;;;:::i;:::-;51106:11;-1:-1:-1::0;;;;;51089:28:0::1;:14;;:28;;;;:::i;:::-;51076:9;:41;51068:73;;;;-1:-1:-1::0;;;51068:73:0::1;;;;;;;:::i;:::-;51154:66;51176:10;51187:32;51208:11:::0;51187:18;:32:::1;:::i;:::-;-1:-1:-1::0;;;;;29040:19:0;;;;;;:12;:19;;;;;:29;;-1:-1:-1;;;;;29040:29:0;-1:-1:-1;;;;;;;;29040:29:0;;;;;;53138:109;;;51154:66:::1;51241:34;51251:10;51263:11;-1:-1:-1::0;;;;;51241:34:0::1;:9;:34::i;50005:653::-:0;50104:11;-1:-1:-1;;;;;48999:209:0;49077:1;49063:11;:15;49055:49;;;;-1:-1:-1;;;49055:49:0;;;;;;;:::i;:::-;49154:9;;-1:-1:-1;;;;;49154:9:0;49139:11;49123:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49115:73;;;;-1:-1:-1;;;49115:73:0;;;;;;;:::i;:::-;50136:13:::1;::::0;-1:-1:-1;;;50136:13:0;::::1;;;50128:47;;;::::0;-1:-1:-1;;;50128:47:0;;9577:2:1;50128:47:0::1;::::0;::::1;9559:21:1::0;9616:2;9596:18;;;9589:30;-1:-1:-1;;;9635:18:1;;;9628:51;9696:18;;50128:47:0::1;9375:345:1::0;50128:47:0::1;50218:11;-1:-1:-1::0;;;;;50209:20:0::1;:6;;:20;;;;:::i;:::-;50196:9;:33;50188:65;;;;-1:-1:-1::0;;;50188:65:0::1;;;;;;;:::i;:::-;50314:25;::::0;-1:-1:-1;;;;;;;;50314:25:0;;::::1;::::0;::::1;::::0;50272:38;::::1;:24;50285:10;50272:12;:24::i;:::-;:38;;;;:::i;:::-;:67;;50264:101;;;;-1:-1:-1::0;;;50264:101:0::1;;;;;;;:::i;:::-;50456:28;::::0;-1:-1:-1;;50473:10:0::1;6502:2:1::0;6498:15;6494:53;50456:28:0::1;::::0;::::1;6482:66:1::0;50431:12:0::1;::::0;6564::1;;50456:28:0::1;;;;;;;;;;;;50446:39;;;;;;50431:54;;50504:52;50523:12;;50504:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;50537:12:0::1;::::0;;-1:-1:-1;50551:4:0;;-1:-1:-1;50504:18:0::1;:52::i;:::-;50496:99;;;::::0;-1:-1:-1;;;50496:99:0;;11381:2:1;50496:99:0::1;::::0;::::1;11363:21:1::0;11420:2;11400:18;;;11393:30;11459:34;11439:18;;;11432:62;-1:-1:-1;;;11510:18:1;;;11503:32;11552:19;;50496:99:0::1;11179:398:1::0;50496:99:0::1;50616:34;50626:10;50638:11;-1:-1:-1::0;;;;;50616:34:0::1;:9;:34::i;:::-;50117:541;50005:653:::0;;;;:::o;27836:212::-;27900:7;-1:-1:-1;;;;;27926:19:0;;27922:60;;27954:28;;-1:-1:-1;;;27954:28:0;;;;;;;;;;;27922:60;-1:-1:-1;;;;;;28010:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28010:27:0;;27836:212::o;55545:112::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;55621:12:::1;:28:::0;55545:112::o;49279:653::-;49378:11;-1:-1:-1;;;;;48999:209:0;49077:1;49063:11;:15;49055:49;;;;-1:-1:-1;;;49055:49:0;;;;;;;:::i;:::-;49154:9;;-1:-1:-1;;;;;49154:9:0;49139:11;49123:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49115:73;;;;-1:-1:-1;;;49115:73:0;;;;;;;:::i;:::-;49410:13:::1;::::0;-1:-1:-1;;;49410:13:0;::::1;;;49402:47;;;::::0;-1:-1:-1;;;49402:47:0;;9577:2:1;49402:47:0::1;::::0;::::1;9559:21:1::0;9616:2;9596:18;;;9589:30;-1:-1:-1;;;9635:18:1;;;9628:51;9696:18;;49402:47:0::1;9375:345:1::0;49402:47:0::1;49492:11;-1:-1:-1::0;;;;;49483:20:0::1;:6;;:20;;;;:::i;:::-;49470:9;:33;49462:65;;;;-1:-1:-1::0;;;49462:65:0::1;;;;;;;:::i;:::-;49588:25;::::0;-1:-1:-1;;;;;;;;49588:25:0;;::::1;::::0;::::1;::::0;49546:38;::::1;:24;49559:10;49546:12;:24::i;:::-;:38;;;;:::i;:::-;:67;;49538:101;;;;-1:-1:-1::0;;;49538:101:0::1;;;;;;;:::i;:::-;49730:28;::::0;-1:-1:-1;;49747:10:0::1;6502:2:1::0;6498:15;6494:53;49730:28:0::1;::::0;::::1;6482:66:1::0;49705:12:0::1;::::0;6564::1;;49730:28:0::1;;;;;;;;;;;;49720:39;;;;;;49705:54;;49778:52;49797:12;;49778:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;49811:12:0::1;::::0;;-1:-1:-1;49825:4:0;;-1:-1:-1;49778:18:0::1;:52::i;55665:100::-:0;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;55735:9:::1;:22:::0;;-1:-1:-1;;;;;;55735:22:0::1;-1:-1:-1::0;;;;;55735:22:0;;;::::1;::::0;;;::::1;::::0;;55665:100::o;55124:141::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;55198:13:::1;::::0;-1:-1:-1;;;55198:13:0;::::1;;;:22;55190:31;;;::::0;::::1;;55232:16;:25:::0;;;::::1;;-1:-1:-1::0;;;55232:25:0::1;-1:-1:-1::0;;55232:25:0;;::::1;::::0;;;::::1;::::0;;55124:141::o;54205:120::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;54285:14:::1;:32:::0;54205:120::o;30913:108::-;30969:13;31004:7;30997:14;;;;;:::i;32621:297::-;-1:-1:-1;;;;;32722:24:0;;22811:10;32722:24;32718:54;;;32755:17;;-1:-1:-1;;;32755:17:0;;;;;;;;;;;32718:54;22811:10;32789:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32789:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32789:53:0;;;;;;;;;;32860:48;;8917:41:1;;;32789:42:0;;22811:10;32860:48;;8890:18:1;32860:48:0;;;;;;;32621:297;;:::o;53495:93::-;53539:7;53566:14;26497:1;27311:13;-1:-1:-1;;27311:31:0;;27070:295;53566:14;53559:21;;53495:93;:::o;54333:88::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;54397:6:::1;:16:::0;54333:88::o;33785:389::-;33964:28;33974:4;33980:2;33984:7;33964:9;:28::i;:::-;-1:-1:-1;;;;;34009:13:0;;6425:19;:23;;34009:76;;;;;34029:56;34060:4;34066:2;34070:7;34079:5;34029:30;:56::i;:::-;34028:57;34009:76;34005:160;;;34111:40;;-1:-1:-1;;;34111:40:0;;;;;;;;;;;34005:160;33785:389;;;;:::o;54525:145::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;54614:25:::1;:48:::0;;-1:-1:-1;;;;;54614:48:0;;::::1;-1:-1:-1::0;;;54614:48:0::1;-1:-1:-1::0;;;;54614:48:0;;::::1;::::0;;;::::1;::::0;;54525:145::o;52454:484::-;52575:13;52628:17;52636:8;52628:7;:17::i;:::-;52610:106;;;;-1:-1:-1;;;52610:106:0;;12494:2:1;52610:106:0;;;12476:21:1;12533:2;12513:18;;;12506:30;12572:34;12552:18;;;12545:62;-1:-1:-1;;;12623:18:1;;;12616:45;12678:19;;52610:106:0;12292:411:1;52610:106:0;52729:28;52760:10;:8;:10::i;:::-;52729:41;;52821:1;52796:14;52790:28;:32;:140;;;;;;;;;;;;;;;;;52864:14;52880:19;:8;:17;:19::i;:::-;52847:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52790:140;52783:147;52454:484;-1:-1:-1;;;52454:484:0:o;53013:117::-;-1:-1:-1;;;;;28741:19:0;;53081:6;28741:19;;;:12;:19;;;;;:23;-1:-1:-1;;;28741:23:0;;-1:-1:-1;;;;;28741:23:0;53107:15;28658:116;55349:112;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;55425:12:::1;:28:::0;55349:112::o;53316:115::-;-1:-1:-1;;;;;28238:19:0;;53375:7;28238:19;;;:12;:19;;;;;:32;-1:-1:-1;;;28238:32:0;;-1:-1:-1;;;;;28238:32:0;53402:21;28140:141;51364:161;51450:11;49077:1;49063:11;:15;49055:49;;;;-1:-1:-1;;;49055:49:0;;;;;;;:::i;:::-;49154:9;;-1:-1:-1;;;;;49154:9:0;49139:11;49123:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49115:73;;;;-1:-1:-1;;;49115:73:0;;;;;;;:::i;:::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23:::1;47473:68;;;;-1:-1:-1::0;;;47473:68:0::1;;;;;;;:::i;:::-;51484:33:::2;51494:9;51505:11;51484:9;:33::i;54429:88::-:0;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;54493:6:::1;:16:::0;54429:88::o;47716:201::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47805:22:0;::::1;47797:73;;;::::0;-1:-1:-1;;;47797:73:0;;10276:2:1;47797:73:0::1;::::0;::::1;10258:21:1::0;10315:2;10295:18;;;10288:30;10354:34;10334:18;;;10327:62;-1:-1:-1;;;10405:18:1;;;10398:36;10451:19;;47797:73:0::1;10074:402:1::0;47797:73:0::1;47881:28;47900:8;47881:18;:28::i;34447:193::-:0;34504:4;34549:7;26497:1;34530:26;;:53;;;;;34570:13;;34560:7;:23;34530:53;:100;;;;-1:-1:-1;;34603:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34603:27:0;;;;34602:28;;34447:193::o;43053:210::-;43178:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43178:29:0;-1:-1:-1;;;;;43178:29:0;;;;;;;;;43225:28;;43178:24;;43225:28;;;;;;;43053:210;;;:::o;37742:2226::-;37867:35;37905:21;37918:7;37905:12;:21::i;:::-;37867:59;;37969:4;-1:-1:-1;;;;;37947:26:0;:13;:18;;;-1:-1:-1;;;;;37947:26:0;;37943:67;;37982:28;;-1:-1:-1;;;37982:28:0;;;;;;;;;;;37943:67;38027:22;22811:10;-1:-1:-1;;;;;38053:20:0;;;;:75;;-1:-1:-1;38092:36:0;38109:4;22811:10;32999:168;:::i;38092:36::-;38053:130;;;-1:-1:-1;22811:10:0;38147:20;38159:7;38147:11;:20::i;:::-;-1:-1:-1;;;;;38147:36:0;;38053:130;38027:157;;38206:17;38201:66;;38232:35;;-1:-1:-1;;;38232:35:0;;;;;;;;;;;38201:66;-1:-1:-1;;;;;38284:16:0;;38280:52;;38309:23;;-1:-1:-1;;;38309:23:0;;;;;;;;;;;38280:52;38463:35;38480:1;38484:7;38493:4;38463:8;:35::i;:::-;-1:-1:-1;;;;;38806:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38806:31:0;;;-1:-1:-1;;;;;38806:31:0;;;-1:-1:-1;;38806:31:0;;;;;;;38854:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38854:29:0;;;;;;;;;;;38938:20;;;:11;:20;;;;;;38975:18;;-1:-1:-1;;;;;;39010:49:0;;;;-1:-1:-1;;;39043:15:0;39010:49;;;;;;;;;;39341:11;;39403:24;;;;;39448:13;;38938:20;;39403:24;;39448:13;39444:398;;39664:13;;39649:11;:28;39645:180;;39704:20;;39775:28;;;;-1:-1:-1;;;;;39749:54:0;-1:-1:-1;;;39749:54:0;-1:-1:-1;;;;;;39749:54:0;;;-1:-1:-1;;;;;39704:20:0;;39749:54;;;;39645:180;38779:1076;;;39895:7;39891:2;-1:-1:-1;;;;;39876:27:0;39885:4;-1:-1:-1;;;;;39876:27:0;-1:-1:-1;;;;;;;;;;;39876:27:0;;;;;;;;;39916:42;33785:389;40407:2514;40489:35;40527:21;40540:7;40527:12;:21::i;:::-;40580:18;;40489:59;;-1:-1:-1;40615:302:0;;;;40651:22;22811:10;-1:-1:-1;;;;;40677:20:0;;;;:79;;-1:-1:-1;40720:36:0;40737:4;22811:10;32999:168;:::i;40720:36::-;40677:138;;;-1:-1:-1;22811:10:0;40779:20;40791:7;40779:11;:20::i;:::-;-1:-1:-1;;;;;40779:36:0;;40677:138;40651:165;;40842:17;40837:66;;40868:35;;-1:-1:-1;;;40868:35:0;;;;;;;;;;;40837:66;40634:283;40615:302;41055:35;41072:1;41076:7;41085:4;41055:8;:35::i;:::-;-1:-1:-1;;;;;41432:18:0;;;41398:31;41432:18;;;:12;:18;;;;;;;;41467:24;;-1:-1:-1;;;;;;;;;;41467:24:0;;;;;;;;;-1:-1:-1;;41467:24:0;;;;41508:29;;;;;41490:1;41508:29;;;;;;;;-1:-1:-1;;41508:29:0;;;;;;;;;;41676:20;;;:11;:20;;;;;;41713;;-1:-1:-1;;;;41783:15:0;41750:49;;;-1:-1:-1;;;41750:49:0;-1:-1:-1;;;;;;41750:49:0;;;;;;;;;;41816:22;-1:-1:-1;;;41816:22:0;;;42116:11;;;42178:24;;;;;42223:13;;41432:18;;42178:24;;42223:13;42219:398;;42439:13;;42424:11;:28;42420:180;;42479:20;;42550:28;;;;-1:-1:-1;;;;;42524:54:0;-1:-1:-1;;;42524:54:0;-1:-1:-1;;;;;;42524:54:0;;;-1:-1:-1;;;;;42479:20:0;;42524:54;;;;42420:180;-1:-1:-1;;42651:35:0;;42678:7;;-1:-1:-1;42674:1:0;;-1:-1:-1;;;;;;42651:35:0;;;-1:-1:-1;;;;;;;;;;;42651:35:0;42674:1;;42651:35;-1:-1:-1;;42884:12:0;:14;;;;;;-1:-1:-1;;40407:2514:0:o;29293:1159::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29406:7:0;;26497:1;29461:23;;:47;;;;;29495:13;;29488:4;:20;29461:47;29457:922;;;29531:31;29565:17;;;:11;:17;;;;;;;;;29531:51;;;;;;;;;-1:-1:-1;;;;;29531:51:0;;;;-1:-1:-1;;;29531:51:0;;-1:-1:-1;;;;;29531:51:0;;;;;;;;-1:-1:-1;;;29531:51:0;;;;;;;;;;;;;;29603:759;;29655:14;;-1:-1:-1;;;;;29655:28:0;;29651:105;;29721:9;29293:1159;-1:-1:-1;;;29293:1159:0:o;29651:105::-;-1:-1:-1;;;30110:6:0;30157:17;;;;:11;:17;;;;;;;;;30145:29;;;;;;;;;-1:-1:-1;;;;;30145:29:0;;;;;-1:-1:-1;;;30145:29:0;;-1:-1:-1;;;;;30145:29:0;;;;;;;;-1:-1:-1;;;30145:29:0;;;;;;;;;;;;;30207:28;30203:113;;30277:9;29293:1159;-1:-1:-1;;;29293:1159:0:o;30203:113::-;30068:273;;;29510:869;29457:922;30411:31;;-1:-1:-1;;;30411:31:0;;;;;;;;;;;53218:21;53138:109;;:::o;34652:108::-;34723:27;34733:2;34737:8;34723:27;;;;;;;;;;;;:9;:27::i;1308:190::-;1433:4;1486;1457:25;1470:5;1477:4;1457:12;:25::i;:::-;:33;;1308:190;-1:-1:-1;;;;1308:190:0:o;43777:701::-;43973:72;;-1:-1:-1;;;43973:72:0;;43950:4;;-1:-1:-1;;;;;43973:36:0;;;;;:72;;22811:10;;44024:4;;44030:7;;44039:5;;43973:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43973:72:0;;;;;;;;-1:-1:-1;;43973:72:0;;;;;;;;;;;;:::i;:::-;;;43969:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44213:13:0;;44209:247;;44261:40;;-1:-1:-1;;;44261:40:0;;;;;;;;;;;44209:247;44410:6;44404:13;44395:6;44391:2;44387:15;44380:38;43969:500;-1:-1:-1;;;;;;44094:55:0;-1:-1:-1;;;44094:55:0;;-1:-1:-1;43969:500:0;43777:701;;;;;;:::o;53977:113::-;54037:13;54070:12;54063:19;;;;;:::i;3138:723::-;3194:13;3415:10;3411:53;;-1:-1:-1;;3442:10:0;;;;;;;;;;;;-1:-1:-1;;;3442:10:0;;;;;3138:723::o;3411:53::-;3489:5;3474:12;3530:78;3537:9;;3530:78;;3563:8;;;;:::i;:::-;;-1:-1:-1;3586:10:0;;-1:-1:-1;3594:2:0;3586:10;;:::i;:::-;;;3530:78;;;3618:19;3650:6;-1:-1:-1;;;;;3640:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3640:17:0;;3618:39;;3668:154;3675:10;;3668:154;;3702:11;3712:1;3702:11;;:::i;:::-;;-1:-1:-1;3771:10:0;3779:2;3771:5;:10;:::i;:::-;3758:24;;:2;:24;:::i;:::-;3745:39;;3728:6;3735;3728:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3728:56:0;;;;;;;;-1:-1:-1;3799:11:0;3808:2;3799:11;;:::i;:::-;;;3668:154;;48077:191;48151:16;48170:6;;-1:-1:-1;;;;;48187:17:0;;;-1:-1:-1;;;;;;48187:17:0;;;;;;48220:40;;48170:6;;;;;;;48220:40;;48151:16;48220:40;48140:128;48077:191;:::o;35147:175::-;35280:32;35286:2;35290:8;35300:5;35307:4;35280:5;:32::i;1859:675::-;1942:7;1985:4;1942:7;2000:497;2024:5;:12;2020:1;:16;2000:497;;;2058:20;2081:5;2087:1;2081:8;;;;;;;;:::i;:::-;;;;;;;2058:31;;2124:12;2108;:28;2104:382;;2610:13;2660:15;;;2696:4;2689:15;;;2743:4;2727:21;;2236:57;;2104:382;;;2610:13;2660:15;;;2696:4;2689:15;;;2743:4;2727:21;;2413:57;;2104:382;-1:-1:-1;2038:3:0;;;;:::i;:::-;;;;2000:497;;;-1:-1:-1;2514:12:0;1859:675;-1:-1:-1;;;1859:675:0:o;35605:1859::-;35779:13;;-1:-1:-1;;;;;35809:16:0;;35805:48;;35834:19;;-1:-1:-1;;;35834:19:0;;;;;;;;;;;35805:48;35870:13;35866:44;;35892:18;;-1:-1:-1;;;35892:18:0;;;;;;;;;;;35866:44;-1:-1:-1;;;;;36277:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;36338:49:0;;-1:-1:-1;;;;;36277:44:0;;;;;;;36338:49;;;-1:-1:-1;;;;;36277:44:0;;;;;;36338:49;;;;;;;;;;;;;;;;36408:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36460:66:0;;;;-1:-1:-1;;;36510:15:0;36460:66;;;;;;;;;;36408:25;36613:23;;;36661:4;:23;;;;-1:-1:-1;;;;;;36669:13:0;;6425:19;:23;;36669:15;36657:667;;;36707:324;36740:38;;36765:12;;-1:-1:-1;;;;;36740:38:0;;;36757:1;;-1:-1:-1;;;;;;;;;;;36740:38:0;36757:1;;36740:38;36808:69;36847:1;36851:2;36855:14;;;;;;36871:5;36808:30;:69::i;:::-;36803:178;;36915:40;;-1:-1:-1;;;36915:40:0;;;;;;;;;;;36803:178;37026:3;37010:12;:19;;36707:324;;37116:12;37099:13;;:29;37095:43;;37130:8;;;37095:43;36657:667;;;37183:124;37216:40;;37241:14;;;;;-1:-1:-1;;;;;37216:40:0;;;37233:1;;-1:-1:-1;;;;;;;;;;;37216:40:0;37233:1;;37216:40;37302:3;37286:12;:19;;37183:124;;36657:667;-1:-1:-1;37340:13:0;:28;37394:60;33785:389;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:171;424:20;;-1:-1:-1;;;;;473:30:1;;463:41;;453:69;;518:1;515;508:12;533:186;592:6;645:2;633:9;624:7;620:23;616:32;613:52;;;661:1;658;651:12;613:52;684:29;703:9;684:29;:::i;724:260::-;792:6;800;853:2;841:9;832:7;828:23;824:32;821:52;;;869:1;866;859:12;821:52;892:29;911:9;892:29;:::i;:::-;882:39;;940:38;974:2;963:9;959:18;940:38;:::i;:::-;930:48;;724:260;;;;;:::o;989:328::-;1066:6;1074;1082;1135:2;1123:9;1114:7;1110:23;1106:32;1103:52;;;1151:1;1148;1141:12;1103:52;1174:29;1193:9;1174:29;:::i;:::-;1164:39;;1222:38;1256:2;1245:9;1241:18;1222:38;:::i;:::-;1212:48;;1307:2;1296:9;1292:18;1279:32;1269:42;;989:328;;;;;:::o;1322:1138::-;1417:6;1425;1433;1441;1494:3;1482:9;1473:7;1469:23;1465:33;1462:53;;;1511:1;1508;1501:12;1462:53;1534:29;1553:9;1534:29;:::i;:::-;1524:39;;1582:38;1616:2;1605:9;1601:18;1582:38;:::i;:::-;1572:48;;1667:2;1656:9;1652:18;1639:32;1629:42;;1722:2;1711:9;1707:18;1694:32;-1:-1:-1;;;;;1786:2:1;1778:6;1775:14;1772:34;;;1802:1;1799;1792:12;1772:34;1840:6;1829:9;1825:22;1815:32;;1885:7;1878:4;1874:2;1870:13;1866:27;1856:55;;1907:1;1904;1897:12;1856:55;1943:2;1930:16;1965:2;1961;1958:10;1955:36;;;1971:18;;:::i;:::-;2046:2;2040:9;2014:2;2100:13;;-1:-1:-1;;2096:22:1;;;2120:2;2092:31;2088:40;2076:53;;;2144:18;;;2164:22;;;2141:46;2138:72;;;2190:18;;:::i;:::-;2230:10;2226:2;2219:22;2265:2;2257:6;2250:18;2305:7;2300:2;2295;2291;2287:11;2283:20;2280:33;2277:53;;;2326:1;2323;2316:12;2277:53;2382:2;2377;2373;2369:11;2364:2;2356:6;2352:15;2339:46;2427:1;2422:2;2417;2409:6;2405:15;2401:24;2394:35;2448:6;2438:16;;;;;;;1322:1138;;;;;;;:::o;2465:254::-;2530:6;2538;2591:2;2579:9;2570:7;2566:23;2562:32;2559:52;;;2607:1;2604;2597:12;2559:52;2630:29;2649:9;2630:29;:::i;:::-;2620:39;;2678:35;2709:2;2698:9;2694:18;2678:35;:::i;2724:254::-;2792:6;2800;2853:2;2841:9;2832:7;2828:23;2824:32;2821:52;;;2869:1;2866;2859:12;2821:52;2892:29;2911:9;2892:29;:::i;:::-;2882:39;2968:2;2953:18;;;;2940:32;;-1:-1:-1;;;2724:254:1:o;2983:693::-;3077:6;3085;3093;3146:2;3134:9;3125:7;3121:23;3117:32;3114:52;;;3162:1;3159;3152:12;3114:52;3202:9;3189:23;-1:-1:-1;;;;;3272:2:1;3264:6;3261:14;3258:34;;;3288:1;3285;3278:12;3258:34;3326:6;3315:9;3311:22;3301:32;;3371:7;3364:4;3360:2;3356:13;3352:27;3342:55;;3393:1;3390;3383:12;3342:55;3433:2;3420:16;3459:2;3451:6;3448:14;3445:34;;;3475:1;3472;3465:12;3445:34;3530:7;3523:4;3513:6;3510:1;3506:14;3502:2;3498:23;3494:34;3491:47;3488:67;;;3551:1;3548;3541:12;3488:67;3582:4;3574:13;;;;-1:-1:-1;3606:6:1;-1:-1:-1;3631:39:1;;3649:20;;;-1:-1:-1;3631:39:1;:::i;:::-;3621:49;;2983:693;;;;;:::o;3681:180::-;3737:6;3790:2;3778:9;3769:7;3765:23;3761:32;3758:52;;;3806:1;3803;3796:12;3758:52;3829:26;3845:9;3829:26;:::i;3866:180::-;3925:6;3978:2;3966:9;3957:7;3953:23;3949:32;3946:52;;;3994:1;3991;3984:12;3946:52;-1:-1:-1;4017:23:1;;3866:180;-1:-1:-1;3866:180:1:o;4051:245::-;4109:6;4162:2;4150:9;4141:7;4137:23;4133:32;4130:52;;;4178:1;4175;4168:12;4130:52;4217:9;4204:23;4236:30;4260:5;4236:30;:::i;4301:249::-;4370:6;4423:2;4411:9;4402:7;4398:23;4394:32;4391:52;;;4439:1;4436;4429:12;4391:52;4471:9;4465:16;4490:30;4514:5;4490:30;:::i;4555:592::-;4626:6;4634;4687:2;4675:9;4666:7;4662:23;4658:32;4655:52;;;4703:1;4700;4693:12;4655:52;4743:9;4730:23;-1:-1:-1;;;;;4813:2:1;4805:6;4802:14;4799:34;;;4829:1;4826;4819:12;4799:34;4867:6;4856:9;4852:22;4842:32;;4912:7;4905:4;4901:2;4897:13;4893:27;4883:55;;4934:1;4931;4924:12;4883:55;4974:2;4961:16;5000:2;4992:6;4989:14;4986:34;;;5016:1;5013;5006:12;4986:34;5061:7;5056:2;5047:6;5043:2;5039:15;5035:24;5032:37;5029:57;;;5082:1;5079;5072:12;5029:57;5113:2;5105:11;;;;;5135:6;;-1:-1:-1;4555:592:1;;-1:-1:-1;;;;4555:592:1:o;5152:301::-;5211:6;5264:2;5252:9;5243:7;5239:23;5235:32;5232:52;;;5280:1;5277;5270:12;5232:52;5319:9;5306:23;-1:-1:-1;;;;;5362:5:1;5358:46;5351:5;5348:57;5338:85;;5419:1;5416;5409:12;5643:254;5711:6;5719;5772:2;5760:9;5751:7;5747:23;5743:32;5740:52;;;5788:1;5785;5778:12;5740:52;5824:9;5811:23;5801:33;;5853:38;5887:2;5876:9;5872:18;5853:38;:::i;5902:184::-;5960:6;6013:2;6001:9;5992:7;5988:23;5984:32;5981:52;;;6029:1;6026;6019:12;5981:52;6052:28;6070:9;6052:28;:::i;6091:257::-;6132:3;6170:5;6164:12;6197:6;6192:3;6185:19;6213:63;6269:6;6262:4;6257:3;6253:14;6246:4;6239:5;6235:16;6213:63;:::i;:::-;6330:2;6309:15;-1:-1:-1;;6305:29:1;6296:39;;;;6337:4;6292:50;;6091:257;-1:-1:-1;;6091:257:1:o;6587:637::-;6867:3;6905:6;6899:13;6921:53;6967:6;6962:3;6955:4;6947:6;6943:17;6921:53;:::i;:::-;7037:13;;6996:16;;;;7059:57;7037:13;6996:16;7093:4;7081:17;;7059:57;:::i;:::-;-1:-1:-1;;;7138:20:1;;7167:22;;;7216:1;7205:13;;6587:637;-1:-1:-1;;;;6587:637:1:o;7647:488::-;-1:-1:-1;;;;;7916:15:1;;;7898:34;;7968:15;;7963:2;7948:18;;7941:43;8015:2;8000:18;;7993:34;;;8063:3;8058:2;8043:18;;8036:31;;;7841:4;;8084:45;;8109:19;;8101:6;8084:45;:::i;:::-;8076:53;7647:488;-1:-1:-1;;;;;;7647:488:1:o;8140:632::-;8311:2;8363:21;;;8433:13;;8336:18;;;8455:22;;;8282:4;;8311:2;8534:15;;;;8508:2;8493:18;;;8282:4;8577:169;8591:6;8588:1;8585:13;8577:169;;;8652:13;;8640:26;;8721:15;;;;8686:12;;;;8613:1;8606:9;8577:169;;;-1:-1:-1;8763:3:1;;8140:632;-1:-1:-1;;;;;;8140:632:1:o;9151:219::-;9300:2;9289:9;9282:21;9263:4;9320:44;9360:2;9349:9;9345:18;9337:6;9320:44;:::i;9725:344::-;9927:2;9909:21;;;9966:2;9946:18;;;9939:30;-1:-1:-1;;;10000:2:1;9985:18;;9978:50;10060:2;10045:18;;9725:344::o;10481:::-;10683:2;10665:21;;;10722:2;10702:18;;;10695:30;-1:-1:-1;;;10756:2:1;10741:18;;10734:50;10816:2;10801:18;;10481:344::o;11931:356::-;12133:2;12115:21;;;12152:18;;;12145:30;12211:34;12206:2;12191:18;;12184:62;12278:2;12263:18;;11931:356::o;12708:344::-;12910:2;12892:21;;;12949:2;12929:18;;;12922:30;-1:-1:-1;;;12983:2:1;12968:18;;12961:50;13043:2;13028:18;;12708:344::o;13412:343::-;13614:2;13596:21;;;13653:2;13633:18;;;13626:30;-1:-1:-1;;;13687:2:1;13672:18;;13665:49;13746:2;13731:18;;13412:343::o;14370:128::-;14410:3;14441:1;14437:6;14434:1;14431:13;14428:39;;;14447:18;;:::i;:::-;-1:-1:-1;14483:9:1;;14370:128::o;14503:236::-;14542:3;-1:-1:-1;;;;;14615:2:1;14612:1;14608:10;14645:2;14642:1;14638:10;14676:3;14672:2;14668:12;14663:3;14660:21;14657:47;;;14684:18;;:::i;:::-;14720:13;;14503:236;-1:-1:-1;;;;14503:236:1:o;14744:120::-;14784:1;14810;14800:35;;14815:18;;:::i;:::-;-1:-1:-1;14849:9:1;;14744:120::o;14869:168::-;14909:7;14975:1;14971;14967:6;14963:14;14960:1;14957:21;14952:1;14945:9;14938:17;14934:45;14931:71;;;14982:18;;:::i;:::-;-1:-1:-1;15022:9:1;;14869:168::o;15042:125::-;15082:4;15110:1;15107;15104:8;15101:34;;;15115:18;;:::i;:::-;-1:-1:-1;15152:9:1;;15042:125::o;15172:258::-;15244:1;15254:113;15268:6;15265:1;15262:13;15254:113;;;15344:11;;;15338:18;15325:11;;;15318:39;15290:2;15283:10;15254:113;;;15385:6;15382:1;15379:13;15376:48;;;-1:-1:-1;;15420:1:1;15402:16;;15395:27;15172:258::o;15435:380::-;15514:1;15510:12;;;;15557;;;15578:61;;15632:4;15624:6;15620:17;15610:27;;15578:61;15685:2;15677:6;15674:14;15654:18;15651:38;15648:161;;;15731:10;15726:3;15722:20;15719:1;15712:31;15766:4;15763:1;15756:15;15794:4;15791:1;15784:15;15648:161;;15435:380;;;:::o;15820:135::-;15859:3;-1:-1:-1;;15880:17:1;;15877:43;;;15900:18;;:::i;:::-;-1:-1:-1;15947:1:1;15936:13;;15820:135::o;15960:112::-;15992:1;16018;16008:35;;16023:18;;:::i;:::-;-1:-1:-1;16057:9:1;;15960:112::o;16077:127::-;16138:10;16133:3;16129:20;16126:1;16119:31;16169:4;16166:1;16159:15;16193:4;16190:1;16183:15;16209:127;16270:10;16265:3;16261:20;16258:1;16251:31;16301:4;16298:1;16291:15;16325:4;16322:1;16315:15;16341:127;16402:10;16397:3;16393:20;16390:1;16383:31;16433:4;16430:1;16423:15;16457:4;16454:1;16447:15;16473:127;16534:10;16529:3;16525:20;16522:1;16515:31;16565:4;16562:1;16555:15;16589:4;16586:1;16579:15;16605:131;-1:-1:-1;;;;;;16679:32:1;;16669:43;;16659:71;;16726:1;16723;16716:12
Swarm Source
ipfs://3dcc67a312ee567c5696e59bd9ff61040424a6f74d8076b63487598f9089a4e4
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.