Overview
TokenID
23
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PrimalBeasts
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-12 */ // File: @openzeppelin/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. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // 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/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // 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/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/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 pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal collectionSize; uint256 internal maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } function changeCollectionSize(uint256 newCollectionSize) public{ collectionSize = newCollectionSize; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _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); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` 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 Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/PrimalBeasts.sol pragma solidity ^0.8.0; interface MAMMOTH { function burn(address _from, uint256 _amount) external; function mintMammoth(address _to, uint256 _amount) external; } contract PrimalBeasts is Ownable, ERC721A, ReentrancyGuard { constructor( uint256 maxBatchSize_, uint256 collectionSize_, uint256 amountForAuctionAndDev_, uint256 amountForDevs_ ) ERC721A("PrimalBeasts", "PB", maxBatchSize_, collectionSize_) { require(amountForAuctionAndDev_ <= collectionSize_, "larger collection size needed" ); } ///////////// MINT SECTION ///////////// uint256 public pricePer = 0.0777 ether; mapping(address => bool) public minted; uint256 maxSupplyGenesis = 1000; bool public saleStart = false; bool public publicSaleStart = false; bytes32 public MerkleRoot; mapping(address => uint256) public balanceGenesis; function emergencyBalanceGenesis(address to, uint256 balance) public onlyOwner{ balanceGenesis[to] = balance; } modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) { require( MerkleProof.verify( merkleProof, root, keccak256(abi.encodePacked(msg.sender)) ), "Address does not exist in list" ); _; } function setMerkle (bytes32 merkleRoot) public onlyOwner{ MerkleRoot = merkleRoot; } function setPublicSale(bool start) public onlyOwner{ publicSaleStart = start; } function setWLSale(bool start) public onlyOwner{ saleStart = start; } function setPrice(uint256 price) public onlyOwner{ pricePer = price; } function setGenSupply(uint256 newMax) public onlyOwner{ maxSupplyGenesis = newMax; } function mintMarketing(address to, uint256 quantity) external onlyOwner { require(totalSupply() + quantity <= maxTotalSupply, "Sold out"); if (totalSupply() < maxSupplyGenesis){ balanceGenesis[to]++; lastClaimed[to] = block.timestamp; } _safeMint(to, quantity); } function mint(uint256 quantity) external payable{ balanceGenesis[msg.sender]++; lastClaimed[msg.sender] = block.timestamp; require(publicSaleStart, "Sale not started"); require(quantity == 1, "Cant mint more than 1 at once"); require(totalSupply() + quantity <= maxSupplyGenesis, "Sold out"); require(msg.value >= pricePer * quantity, "Not enough Eth"); _safeMint(msg.sender, quantity); } function mintWL(bytes32[] calldata merkleProof) external payable isValidMerkleProof(merkleProof, MerkleRoot){ require(saleStart, "Sale not started"); balanceGenesis[msg.sender]++; require(minted[msg.sender] == false, "Cant mint more than 1"); require(totalSupply() + 1 <= maxSupplyGenesis, "Sold out"); require(msg.value >= pricePer, "Not enough Eth"); minted[msg.sender] = true; lastClaimed[msg.sender] = block.timestamp; _safeMint(msg.sender, 1); } ///////////// MAMMOTH SECTION ///////////// MAMMOTH public MammothContract; mapping(address => uint256) public claimableReward; mapping(address => uint256) public lastClaimed; uint256 public dailyMammoth = 5 ether; bool public mammothEnabled = true; mapping(address => bool) approvedAddress; function addController(address owner, bool access) external onlyOwner { approvedAddress[owner] = access; } function activateMammoth(bool mammothGo) external onlyOwner{ mammothEnabled = mammothGo; } function setMammoth(address mammothAddy) external onlyOwner{ MammothContract = MAMMOTH(mammothAddy); } function calcNewReward(address from) public view returns(uint256){ return (balanceGenesis[from] * (block.timestamp - lastClaimed[from]) * dailyMammoth / 86400); } function setReward(address ownerAddress, uint256 newReward) public { require(approvedAddress[msg.sender], "Only controllers can set reward"); claimableReward[ownerAddress] = newReward; } function claimRewards(address claimer) public nonReentrant{ require(mammothEnabled, "Mammoth is paused."); require(claimer == msg.sender, "Can't claim for others"); claimableReward[claimer] += calcNewReward(claimer); lastClaimed[claimer] = block.timestamp; if (claimableReward[claimer] > 0) { MammothContract.mintMammoth(claimer, claimableReward[claimer]); } claimableReward[claimer] = 0; } ///////////// BABY SECTION ///////////// event babyMade(uint256 mom, uint256 dad, uint256 tokenIDBaby); uint256 maxTotalSupply = 3000; function setTotalSupply(uint256 newMax) public onlyOwner{ maxTotalSupply = newMax; } uint256 babyCost = 600 ether; function babyCostChange(uint256 newCost) public onlyOwner{ babyCost = newCost; } bool public babyTime = false; bool public migrateCurrency = false; function setbabyTime(bool breedingReady) public onlyOwner{ babyTime = breedingReady; } function setmigrateCurrency(bool abandonShip) public onlyOwner{ migrateCurrency = abandonShip; } function breed(uint256 dad, uint256 mom) external { require(babyTime, "Babies not ready!"); require(ownerOf(dad) == msg.sender && ownerOf(mom) == msg.sender, "Must own parents" ); require(totalSupply() + 1 < maxTotalSupply, "Max Supply Reached"); require(dad < maxSupplyGenesis && mom < maxSupplyGenesis, "Baby Beast can't breed."); require(dad != mom, "Parents are the same"); claimableReward[msg.sender] += calcNewReward(msg.sender); lastClaimed[msg.sender] = block.timestamp; if (claimableReward[msg.sender] < babyCost || migrateCurrency){ MammothContract.burn(msg.sender, babyCost); } else{ claimableReward[msg.sender] -= babyCost; } _safeMint(msg.sender, 1); emit babyMade(mom, dad, totalSupply()); } function transferFrom(address from, address to, uint256 tokenId) public override { if (tokenId < maxSupplyGenesis) { claimableReward[to] += calcNewReward(to); lastClaimed[to] = block.timestamp; claimableReward[from] += calcNewReward(from); lastClaimed[from] = block.timestamp; balanceGenesis[from]--; balanceGenesis[to]++; } ERC721A.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override { if (tokenId < maxSupplyGenesis) { claimableReward[to] += calcNewReward(to); lastClaimed[to] = block.timestamp; claimableReward[from] += calcNewReward(from); lastClaimed[from] = block.timestamp; balanceGenesis[from]--; balanceGenesis[to]++; } ERC721A.safeTransferFrom(from, to, tokenId, data); } // // metadata URI string private _baseTokenURI = "ipfs://QmQ1J49dpXCA2xudbjfCFbmz89wvoK7fCFFb3fpYR3RSpb/"; string private unrevealedURI = "ipfs://QmW7WDfsYmtLyPnyDq7nGY38RUMB5ZCcLE1PrHMwuLSz7j"; function setUnrevealedURI(string memory unrevealedURI_) public onlyOwner{ unrevealedURI = unrevealedURI_; } function order66() public onlyOwner{ delete unrevealedURI; } function tokenURI(uint256 tokenId_) public view override returns (string memory) { if ((bytes(unrevealedURI).length > 0) && tokenId_ > 4) return unrevealedURI; return string(abi.encodePacked(_baseTokenURI, Strings.toString(tokenId_))); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForAuctionAndDev_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"mom","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"dad","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenIDBaby","type":"uint256"}],"name":"babyMade","type":"event"},{"inputs":[],"name":"MammothContract","outputs":[{"internalType":"contract MAMMOTH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"mammothGo","type":"bool"}],"name":"activateMammoth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"bool","name":"access","type":"bool"}],"name":"addController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCost","type":"uint256"}],"name":"babyCostChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"babyTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dad","type":"uint256"},{"internalType":"uint256","name":"mom","type":"uint256"}],"name":"breed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"calcNewReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCollectionSize","type":"uint256"}],"name":"changeCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"claimer","type":"address"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimableReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dailyMammoth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"emergencyBalanceGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"lastClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mammothEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"migrateCurrency","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"order66","outputs":[],"stateMutability":"nonpayable","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":"pricePer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setGenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"mammothAddy","type":"address"}],"name":"setMammoth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"start","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ownerAddress","type":"address"},{"internalType":"uint256","name":"newReward","type":"uint256"}],"name":"setReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealedURI_","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"start","type":"bool"}],"name":"setWLSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"breedingReady","type":"bool"}],"name":"setbabyTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"abandonShip","type":"bool"}],"name":"setmigrateCurrency","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60006001818155600a919091556701140bbd030c4000600c556103e8600e55600f805461ffff19908116909155674563918244f400006015556016805460ff1916909217909155610bb8601855682086ac351052600000601955601a8054909116905560e0604052603660808181529062003f3760a03980516200008c91601b9160209091019062000305565b5060405180606001604052806035815260200162003f6d603591398051620000bd91601c9160209091019062000305565b50348015620000cb57600080fd5b5060405162003fa238038062003fa2833981016040819052620000ee91620003ab565b6040518060400160405280600c81526020016b5072696d616c42656173747360a01b81525060405180604001604052806002815260200161282160f11b81525085856200014a62000144620002b160201b60201c565b620002b5565b60008111620001b75760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620002195760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620001ae565b83516200022e90600490602087019062000305565b5082516200024490600590602086019062000305565b5060039190915560025550506001600b5582821115620002a75760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e65656465640000006044820152606401620001ae565b505050506200041f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200031390620003e2565b90600052602060002090601f01602090048101928262000337576000855562000382565b82601f106200035257805160ff191683800117855562000382565b8280016001018555821562000382579182015b828111156200038257825182559160200191906001019062000365565b506200039092915062000394565b5090565b5b8082111562000390576000815560010162000395565b60008060008060808587031215620003c257600080fd5b505082516020840151604085015160609095015191969095509092509050565b600181811c90821680620003f757607f821691505b602082108114156200041957634e487b7160e01b600052602260045260246000fd5b50919050565b613b08806200042f6000396000f3fe6080604052600436106103a25760003560e01c8063763f4011116101e7578063b35086541161010d578063e3305bcc116100a0578063ef5cfb8c1161006f578063ef5cfb8c14610b04578063f2fde38b14610b24578063f7ea7a3d14610b44578063fe2c7fee14610b6457600080fd5b8063e3305bcc14610a4e578063e950342514610a6e578063e985e9c514610a9b578063eacccaf014610ae457600080fd5b8063d9ecad7b116100dc578063d9ecad7b146109c1578063dc33e681146109e1578063df82835014610a01578063e2b26b1514610a2157600080fd5b8063b35086541461094b578063b88d4fde1461096b578063c87b56dd1461098b578063d7224ba0146109ab57600080fd5b806395d89b4111610185578063a0712d6811610154578063a0712d68146108e9578063a22cb465146108fc578063ab0bcc411461091c578063ac4460021461093657600080fd5b806395d89b41146108745780639801b11c14610889578063984fe8c4146108a95780639b740f4d146108c957600080fd5b806391b7f5ed116101c157806391b7f5ed146107c75780639231ab2a146107e75780639470199c146108345780639487a03f1461085457600080fd5b8063763f401114610773578063843d9c63146107935780638da5cb5b146107a957600080fd5b80632d20fb60116102cc57806355f804b31161026a57806367ba96e01161023957806367ba96e01461070457806368a81f7d1461071e57806370a082311461073e578063715018a61461075e57600080fd5b806355f804b31461068457806357ff9622146106a45780635aca1bb6146106c45780636352211e146106e457600080fd5b80633cb1474a116102a65780633cb1474a1461060f57806341b3ba3d1461062457806342842e0e146106445780634f6ccce71461066457600080fd5b80632d20fb60146105b05780632f745c59146105d05780633360caa0146105f057600080fd5b80630995315e116103445780631e60a9fa116103135780631e60a9fa146105265780631e7269c51461054057806323b872dd146105705780632a591fa41461059057600080fd5b80630995315e146104bc57806311171b53146104dc578063132d3f6a146104fb57806318160ddd1461051157600080fd5b806306fdde031161038057806306fdde031461042c578063070a8a851461044e578063081812fc14610464578063095ea7b31461049c57600080fd5b8063013eba92146103a757806301ffc9a7146103e75780630578f97d14610417575b600080fd5b3480156103b357600080fd5b506103d46103c23660046133d7565b60146020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156103f357600080fd5b506104076104023660046135df565b610b84565b60405190151581526020016103de565b61042a610425366004613537565b610bf1565b005b34801561043857600080fd5b50610441610e24565b6040516103de919061380e565b34801561045a57600080fd5b506103d4600c5481565b34801561047057600080fd5b5061048461047f3660046135c6565b610eb6565b6040516001600160a01b0390911681526020016103de565b3480156104a857600080fd5b5061042a6104b736600461350d565b610f41565b3480156104c857600080fd5b506103d46104d73660046133d7565b611059565b3480156104e857600080fd5b50601a5461040790610100900460ff1681565b34801561050757600080fd5b506103d460105481565b34801561051d57600080fd5b506001546103d4565b34801561053257600080fd5b506016546104079060ff1681565b34801561054c57600080fd5b5061040761055b3660046133d7565b600d6020526000908152604090205460ff1681565b34801561057c57600080fd5b5061042a61058b36600461342c565b6110bd565b34801561059c57600080fd5b5061042a6105ab3660046133d7565b6111b9565b3480156105bc57600080fd5b5061042a6105cb3660046135c6565b611205565b3480156105dc57600080fd5b506103d46105eb36600461350d565b611268565b3480156105fc57600080fd5b50600f5461040790610100900460ff1681565b34801561061b57600080fd5b5061042a6113e0565b34801561063057600080fd5b5061042a61063f3660046135c6565b611418565b34801561065057600080fd5b5061042a61065f36600461342c565b611447565b34801561067057600080fd5b506103d461067f3660046135c6565b611462565b34801561069057600080fd5b5061042a61069f366004613619565b6114cb565b3480156106b057600080fd5b5061042a6106bf3660046135ab565b611501565b3480156106d057600080fd5b5061042a6106df3660046135ab565b61153e565b3480156106f057600080fd5b506104846106ff3660046135c6565b611582565b34801561071057600080fd5b50601a546104079060ff1681565b34801561072a57600080fd5b5061042a6107393660046135c6565b611594565b34801561074a57600080fd5b506103d46107593660046133d7565b6115c3565b34801561076a57600080fd5b5061042a611654565b34801561077f57600080fd5b5061042a61078e36600461350d565b611688565b34801561079f57600080fd5b506103d460155481565b3480156107b557600080fd5b506000546001600160a01b0316610484565b3480156107d357600080fd5b5061042a6107e23660046135c6565b611746565b3480156107f357600080fd5b506108076108023660046135c6565b611775565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103de565b34801561084057600080fd5b50601254610484906001600160a01b031681565b34801561086057600080fd5b5061042a61086f3660046135ab565b611792565b34801561088057600080fd5b506104416117cf565b34801561089557600080fd5b5061042a6108a43660046135c6565b600255565b3480156108b557600080fd5b5061042a6108c436600461350d565b6117de565b3480156108d557600080fd5b5061042a6108e43660046135ab565b611824565b61042a6108f73660046135c6565b611861565b34801561090857600080fd5b5061042a6109173660046134e3565b6119bd565b34801561092857600080fd5b50600f546104079060ff1681565b34801561094257600080fd5b5061042a611a82565b34801561095757600080fd5b5061042a6109663660046134e3565b611b5f565b34801561097757600080fd5b5061042a610986366004613468565b611bb4565b34801561099757600080fd5b506104416109a63660046135c6565b611cb7565b3480156109b757600080fd5b506103d4600a5481565b3480156109cd57600080fd5b5061042a6109dc3660046136c0565b611da0565b3480156109ed57600080fd5b506103d46109fc3660046133d7565b6120a1565b348015610a0d57600080fd5b5061042a610a1c3660046135ab565b6120ac565b348015610a2d57600080fd5b506103d4610a3c3660046133d7565b60116020526000908152604090205481565b348015610a5a57600080fd5b5061042a610a693660046135c6565b6120f0565b348015610a7a57600080fd5b506103d4610a893660046133d7565b60136020526000908152604090205481565b348015610aa757600080fd5b50610407610ab63660046133f9565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610af057600080fd5b5061042a610aff36600461350d565b61211f565b348015610b1057600080fd5b5061042a610b1f3660046133d7565b61219a565b348015610b3057600080fd5b5061042a610b3f3660046133d7565b612350565b348015610b5057600080fd5b5061042a610b5f3660046135c6565b6123e8565b348015610b7057600080fd5b5061042a610b7f366004613678565b612417565b60006001600160e01b031982166380ac58cd60e01b1480610bb557506001600160e01b03198216635b5e139f60e01b145b80610bd057506001600160e01b0319821663780e9d6360e01b145b80610beb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b8181601054610c68838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120612454565b610cb95760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c697374000060448201526064015b60405180910390fd5b600f5460ff16610cfe5760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd081cdd185c9d195960821b6044820152606401610cb0565b336000908152601160205260408120805491610d1983613a35565b9091555050336000908152600d602052604090205460ff1615610d765760405162461bcd60e51b815260206004820152601560248201527443616e74206d696e74206d6f7265207468616e203160581b6044820152606401610cb0565b600e54600154610d8790600161392d565b1115610da55760405162461bcd60e51b8152600401610cb090613856565b600c54341015610de85760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408ae8d60931b6044820152606401610cb0565b336000818152600d60209081526040808320805460ff191660019081179091556014909252909120429055610e1d919061246a565b5050505050565b606060048054610e33906139fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5f906139fa565b8015610eac5780601f10610e8157610100808354040283529160200191610eac565b820191906000526020600020905b815481529060010190602001808311610e8f57829003601f168201915b5050505050905090565b6000610ec3826001541190565b610f255760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610cb0565b506000908152600860205260409020546001600160a01b031690565b6000610f4c82611582565b9050806001600160a01b0316836001600160a01b03161415610fbb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610cb0565b336001600160a01b0382161480610fd75750610fd78133610ab6565b6110495760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610cb0565b611054838383612484565b505050565b6015546001600160a01b0382166000908152601460205260408120549091620151809161108690426139a0565b6001600160a01b0385166000908152601160205260409020546110a99190613959565b6110b39190613959565b610beb9190613945565b600e548110156111ae576110d082611059565b6001600160a01b038316600090815260136020526040812080549091906110f890849061392d565b90915550506001600160a01b038216600090815260146020526040902042905561112183611059565b6001600160a01b0384166000908152601360205260408120805490919061114990849061392d565b90915550506001600160a01b03831660009081526014602090815260408083204290556011909152812080549161117f836139e3565b90915550506001600160a01b03821660009081526011602052604081208054916111a883613a35565b91905055505b6110548383836124e0565b6000546001600160a01b031633146111e35760405162461bcd60e51b8152600401610cb090613821565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461122f5760405162461bcd60e51b8152600401610cb090613821565b6002600b5414156112525760405162461bcd60e51b8152600401610cb0906138cb565b6002600b55611260816124eb565b506001600b55565b6000611273836115c3565b82106112cc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610cb0565b60006112d760015490565b905060008060005b83811015611380576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561133157805192505b876001600160a01b0316836001600160a01b0316141561136d578684141561135f57509350610beb92505050565b8361136981613a35565b9450505b508061137881613a35565b9150506112df565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610cb0565b6000546001600160a01b0316331461140a5760405162461bcd60e51b8152600401610cb090613821565b611416601c60006131f3565b565b6000546001600160a01b031633146114425760405162461bcd60e51b8152600401610cb090613821565b601055565b61105483838360405180602001604052806000815250611bb4565b600061146d60015490565b82106114c75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610cb0565b5090565b6000546001600160a01b031633146114f55760405162461bcd60e51b8152600401610cb090613821565b611054601b838361322d565b6000546001600160a01b0316331461152b5760405162461bcd60e51b8152600401610cb090613821565b600f805460ff1916911515919091179055565b6000546001600160a01b031633146115685760405162461bcd60e51b8152600401610cb090613821565b600f80549115156101000261ff0019909216919091179055565b600061158d8261269c565b5192915050565b6000546001600160a01b031633146115be5760405162461bcd60e51b8152600401610cb090613821565b601955565b60006001600160a01b03821661162f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610cb0565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b0316331461167e5760405162461bcd60e51b8152600401610cb090613821565b611416600061280a565b6000546001600160a01b031633146116b25760405162461bcd60e51b8152600401610cb090613821565b601854816116bf60015490565b6116c9919061392d565b11156116e75760405162461bcd60e51b8152600401610cb090613856565b600e546001541015611738576001600160a01b038216600090815260116020526040812080549161171783613a35565b90915550506001600160a01b03821660009081526014602052604090204290555b611742828261246a565b5050565b6000546001600160a01b031633146117705760405162461bcd60e51b8152600401610cb090613821565b600c55565b6040805180820190915260008082526020820152610beb8261269c565b6000546001600160a01b031633146117bc5760405162461bcd60e51b8152600401610cb090613821565b601a805460ff1916911515919091179055565b606060058054610e33906139fa565b6000546001600160a01b031633146118085760405162461bcd60e51b8152600401610cb090613821565b6001600160a01b03909116600090815260116020526040902055565b6000546001600160a01b0316331461184e5760405162461bcd60e51b8152600401610cb090613821565b6016805460ff1916911515919091179055565b33600090815260116020526040812080549161187c83613a35565b9091555050336000908152601460205260409020429055600f54610100900460ff166118dd5760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd081cdd185c9d195960821b6044820152606401610cb0565b8060011461192d5760405162461bcd60e51b815260206004820152601d60248201527f43616e74206d696e74206d6f7265207468616e2031206174206f6e63650000006044820152606401610cb0565b600e548161193a60015490565b611944919061392d565b11156119625760405162461bcd60e51b8152600401610cb090613856565b80600c546119709190613959565b3410156119b05760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408ae8d60931b6044820152606401610cb0565b6119ba338261246a565b50565b6001600160a01b038216331415611a165760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610cb0565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611aac5760405162461bcd60e51b8152600401610cb090613821565b6002600b541415611acf5760405162461bcd60e51b8152600401610cb0906138cb565b6002600b55604051600090339047908381818185875af1925050503d8060008114611b16576040519150601f19603f3d011682016040523d82523d6000602084013e611b1b565b606091505b50509050806112605760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610cb0565b6000546001600160a01b03163314611b895760405162461bcd60e51b8152600401610cb090613821565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b600e54821015611ca557611bc783611059565b6001600160a01b03841660009081526013602052604081208054909190611bef90849061392d565b90915550506001600160a01b0383166000908152601460205260409020429055611c1884611059565b6001600160a01b03851660009081526013602052604081208054909190611c4090849061392d565b90915550506001600160a01b038416600090815260146020908152604080832042905560119091528120805491611c76836139e3565b90915550506001600160a01b0383166000908152601160205260408120805491611c9f83613a35565b91905055505b611cb18484848461285a565b50505050565b60606000601c8054611cc8906139fa565b9050118015611cd75750600482115b15611d6e57601c8054611ce9906139fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611d15906139fa565b8015611d625780601f10611d3757610100808354040283529160200191611d62565b820191906000526020600020905b815481529060010190602001808311611d4557829003601f168201915b50505050509050919050565b601b611d798361288d565b604051602001611d8a92919061372a565b6040516020818303038152906040529050919050565b601a5460ff16611de65760405162461bcd60e51b8152602060048201526011602482015270426162696573206e6f742072656164792160781b6044820152606401610cb0565b33611df083611582565b6001600160a01b0316148015611e16575033611e0b82611582565b6001600160a01b0316145b611e555760405162461bcd60e51b815260206004820152601060248201526f4d757374206f776e20706172656e747360801b6044820152606401610cb0565b601854600154611e6690600161392d565b10611ea85760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b6044820152606401610cb0565b600e5482108015611eba5750600e5481105b611f065760405162461bcd60e51b815260206004820152601760248201527f426162792042656173742063616e27742062726565642e0000000000000000006044820152606401610cb0565b80821415611f4d5760405162461bcd60e51b8152602060048201526014602482015273506172656e747320617265207468652073616d6560601b6044820152606401610cb0565b611f5633611059565b3360009081526013602052604081208054909190611f7590849061392d565b90915550503360009081526014602090815260408083204290556019546013909252909120541080611fae5750601a54610100900460ff165b1561202057601254601954604051632770a7eb60e21b815233600482015260248101919091526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b15801561200357600080fd5b505af1158015612017573d6000803e3d6000fd5b50505050612048565b60195433600090815260136020526040812080549091906120429084906139a0565b90915550505b61205333600161246a565b7f999ca196679cfea9e4aefdf0a0b3b2f2ac428033d39f49adb3664ec91d685f01818361207f60015490565b6040805193845260208401929092529082015260600160405180910390a15050565b6000610beb82612992565b6000546001600160a01b031633146120d65760405162461bcd60e51b8152600401610cb090613821565b601a80549115156101000261ff0019909216919091179055565b6000546001600160a01b0316331461211a5760405162461bcd60e51b8152600401610cb090613821565b600e55565b3360009081526017602052604090205460ff1661217e5760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920636f6e74726f6c6c6572732063616e2073657420726577617264006044820152606401610cb0565b6001600160a01b03909116600090815260136020526040902055565b6002600b5414156121bd5760405162461bcd60e51b8152600401610cb0906138cb565b6002600b5560165460ff166122095760405162461bcd60e51b815260206004820152601260248201527126b0b6b6b7ba341034b9903830bab9b2b21760711b6044820152606401610cb0565b6001600160a01b038116331461225a5760405162461bcd60e51b815260206004820152601660248201527543616e277420636c61696d20666f72206f746865727360501b6044820152606401610cb0565b61226381611059565b6001600160a01b0382166000908152601360205260408120805490919061228b90849061392d565b90915550506001600160a01b0381166000908152601460209081526040808320429055601390915290205415612331576012546001600160a01b038281166000818152601360205260409081902054905162b24f6960e31b8152600481019290925260248201529116906305927b4890604401600060405180830381600087803b15801561231857600080fd5b505af115801561232c573d6000803e3d6000fd5b505050505b6001600160a01b03166000908152601360205260408120556001600b55565b6000546001600160a01b0316331461237a5760405162461bcd60e51b8152600401610cb090613821565b6001600160a01b0381166123df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cb0565b6119ba8161280a565b6000546001600160a01b031633146124125760405162461bcd60e51b8152600401610cb090613821565b601855565b6000546001600160a01b031633146124415760405162461bcd60e51b8152600401610cb090613821565b805161174290601c9060208401906132ad565b6000826124618584612a30565b14949350505050565b611742828260405180602001604052806000815250612aa4565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611054838383612d64565b600a548161253b5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610cb0565b60006001612549848461392d565b61255391906139a0565b9050600160025461256491906139a0565b81111561257d57600160025461257a91906139a0565b90505b612588816001541190565b6125e35760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610cb0565b815b818111612688576000818152600660205260409020546001600160a01b03166126765760006126138261269c565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600690965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061268081613a35565b9150506125e5565b5061269481600161392d565b600a55505050565b60408051808201909152600080825260208201526126bb826001541190565b61271a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610cb0565b600060035483106127405760035461273290846139a0565b61273d90600161392d565b90505b825b8181106127a9576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561279657949350505050565b50806127a1816139e3565b915050612742565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610cb0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612865848484612d64565b612871848484846130e6565b611cb15760405162461bcd60e51b8152600401610cb090613878565b6060816128b15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128db57806128c581613a35565b91506128d49050600a83613945565b91506128b5565b6000816001600160401b038111156128f5576128f5613aa6565b6040519080825280601f01601f19166020018201604052801561291f576020820181803683370190505b5090505b841561298a576129346001836139a0565b9150612941600a86613a50565b61294c90603061392d565b60f81b81838151811061296157612961613a90565b60200101906001600160f81b031916908160001a905350612983600a86613945565b9450612923565b949350505050565b60006001600160a01b038216612a045760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610cb0565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b600081815b8451811015612a9c576000858281518110612a5257612a52613a90565b60200260200101519050808311612a785760008381526020829052604090209250612a89565b600081815260208490526040902092505b5080612a9481613a35565b915050612a35565b509392505050565b6001546001600160a01b038416612b075760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610cb0565b612b12816001541190565b15612b5f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610cb0565b600354831115612bbc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610cb0565b6001600160a01b0384166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612c18908790613902565b6001600160801b03168152602001858360200151612c369190613902565b6001600160801b039081169091526001600160a01b0380881660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612d555760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612d1960008884886130e6565b612d355760405162461bcd60e51b8152600401610cb090613878565b81612d3f81613a35565b9250508080612d4d90613a35565b915050612ccc565b5060018190555b505050505050565b6000612d6f8261269c565b80519091506000906001600160a01b0316336001600160a01b03161480612da6575033612d9b84610eb6565b6001600160a01b0316145b80612db857508151612db89033610ab6565b905080612e225760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610cb0565b846001600160a01b031682600001516001600160a01b031614612e965760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610cb0565b6001600160a01b038416612efa5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610cb0565b612f0a6000848460000151612484565b6001600160a01b0385166000908152600760205260408120805460019290612f3c9084906001600160801b0316613978565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526007602052604081208054600194509092612f8891859116613902565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561300f84600161392d565b6000818152600660205260409020549091506001600160a01b03166130a057613039816001541190565b156130a05760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d5c565b60006001600160a01b0384163b156131e857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061312a9033908990889088906004016137d1565b602060405180830381600087803b15801561314457600080fd5b505af1925050508015613174575060408051601f3d908101601f19168201909252613171918101906135fc565b60015b6131ce573d8080156131a2576040519150601f19603f3d011682016040523d82523d6000602084013e6131a7565b606091505b5080516131c65760405162461bcd60e51b8152600401610cb090613878565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061298a565b506001949350505050565b5080546131ff906139fa565b6000825580601f1061320f575050565b601f0160209004906000526020600020908101906119ba9190613321565b828054613239906139fa565b90600052602060002090601f01602090048101928261325b57600085556132a1565b82601f106132745782800160ff198235161785556132a1565b828001600101855582156132a1579182015b828111156132a1578235825591602001919060010190613286565b506114c7929150613321565b8280546132b9906139fa565b90600052602060002090601f0160209004810192826132db57600085556132a1565b82601f106132f457805160ff19168380011785556132a1565b828001600101855582156132a1579182015b828111156132a1578251825591602001919060010190613306565b5b808211156114c75760008155600101613322565b60006001600160401b038084111561335057613350613aa6565b604051601f8501601f19908116603f0116810190828211818310171561337857613378613aa6565b8160405280935085815286868601111561339157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146133c257600080fd5b919050565b803580151581146133c257600080fd5b6000602082840312156133e957600080fd5b6133f2826133ab565b9392505050565b6000806040838503121561340c57600080fd5b613415836133ab565b9150613423602084016133ab565b90509250929050565b60008060006060848603121561344157600080fd5b61344a846133ab565b9250613458602085016133ab565b9150604084013590509250925092565b6000806000806080858703121561347e57600080fd5b613487856133ab565b9350613495602086016133ab565b92506040850135915060608501356001600160401b038111156134b757600080fd5b8501601f810187136134c857600080fd5b6134d787823560208401613336565b91505092959194509250565b600080604083850312156134f657600080fd5b6134ff836133ab565b9150613423602084016133c7565b6000806040838503121561352057600080fd5b613529836133ab565b946020939093013593505050565b6000806020838503121561354a57600080fd5b82356001600160401b038082111561356157600080fd5b818501915085601f83011261357557600080fd5b81358181111561358457600080fd5b8660208260051b850101111561359957600080fd5b60209290920196919550909350505050565b6000602082840312156135bd57600080fd5b6133f2826133c7565b6000602082840312156135d857600080fd5b5035919050565b6000602082840312156135f157600080fd5b81356133f281613abc565b60006020828403121561360e57600080fd5b81516133f281613abc565b6000806020838503121561362c57600080fd5b82356001600160401b038082111561364357600080fd5b818501915085601f83011261365757600080fd5b81358181111561366657600080fd5b86602082850101111561359957600080fd5b60006020828403121561368a57600080fd5b81356001600160401b038111156136a057600080fd5b8201601f810184136136b157600080fd5b61298a84823560208401613336565b600080604083850312156136d357600080fd5b50508035926020909101359150565b600081518084526136fa8160208601602086016139b7565b601f01601f19169290920160200192915050565b600081516137208185602086016139b7565b9290920192915050565b600080845481600182811c91508083168061374657607f831692505b602080841082141561376657634e487b7160e01b86526022600452602486fd5b81801561377a576001811461378b576137b8565b60ff198616895284890196506137b8565b60008b81526020902060005b868110156137b05781548b820152908501908301613797565b505084890196505b5050505050506137c8818561370e565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613804908301846136e2565b9695505050505050565b6020815260006133f260208301846136e2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526008908201526714dbdb19081bdd5d60c21b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006001600160801b0380831681851680830382111561392457613924613a64565b01949350505050565b6000821982111561394057613940613a64565b500190565b60008261395457613954613a7a565b500490565b600081600019048311821515161561397357613973613a64565b500290565b60006001600160801b038381169083168181101561399857613998613a64565b039392505050565b6000828210156139b2576139b2613a64565b500390565b60005b838110156139d25781810151838201526020016139ba565b83811115611cb15750506000910152565b6000816139f2576139f2613a64565b506000190190565b600181811c90821680613a0e57607f821691505b60208210811415613a2f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613a4957613a49613a64565b5060010190565b600082613a5f57613a5f613a7a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119ba57600080fdfea2646970667358221220021bcff9321e0a1672d4289a894bbc1c3ca48935ed6e10b02c3ce4b0dc50a1bc64736f6c63430008070033697066733a2f2f516d51314a3439647058434132787564626a664346626d7a383977766f4b376643464662336670595233525370622f697066733a2f2f516d573757446673596d744c79506e794471376e4759333852554d42355a43634c45315072484d77754c537a376a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000119400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103a25760003560e01c8063763f4011116101e7578063b35086541161010d578063e3305bcc116100a0578063ef5cfb8c1161006f578063ef5cfb8c14610b04578063f2fde38b14610b24578063f7ea7a3d14610b44578063fe2c7fee14610b6457600080fd5b8063e3305bcc14610a4e578063e950342514610a6e578063e985e9c514610a9b578063eacccaf014610ae457600080fd5b8063d9ecad7b116100dc578063d9ecad7b146109c1578063dc33e681146109e1578063df82835014610a01578063e2b26b1514610a2157600080fd5b8063b35086541461094b578063b88d4fde1461096b578063c87b56dd1461098b578063d7224ba0146109ab57600080fd5b806395d89b4111610185578063a0712d6811610154578063a0712d68146108e9578063a22cb465146108fc578063ab0bcc411461091c578063ac4460021461093657600080fd5b806395d89b41146108745780639801b11c14610889578063984fe8c4146108a95780639b740f4d146108c957600080fd5b806391b7f5ed116101c157806391b7f5ed146107c75780639231ab2a146107e75780639470199c146108345780639487a03f1461085457600080fd5b8063763f401114610773578063843d9c63146107935780638da5cb5b146107a957600080fd5b80632d20fb60116102cc57806355f804b31161026a57806367ba96e01161023957806367ba96e01461070457806368a81f7d1461071e57806370a082311461073e578063715018a61461075e57600080fd5b806355f804b31461068457806357ff9622146106a45780635aca1bb6146106c45780636352211e146106e457600080fd5b80633cb1474a116102a65780633cb1474a1461060f57806341b3ba3d1461062457806342842e0e146106445780634f6ccce71461066457600080fd5b80632d20fb60146105b05780632f745c59146105d05780633360caa0146105f057600080fd5b80630995315e116103445780631e60a9fa116103135780631e60a9fa146105265780631e7269c51461054057806323b872dd146105705780632a591fa41461059057600080fd5b80630995315e146104bc57806311171b53146104dc578063132d3f6a146104fb57806318160ddd1461051157600080fd5b806306fdde031161038057806306fdde031461042c578063070a8a851461044e578063081812fc14610464578063095ea7b31461049c57600080fd5b8063013eba92146103a757806301ffc9a7146103e75780630578f97d14610417575b600080fd5b3480156103b357600080fd5b506103d46103c23660046133d7565b60146020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156103f357600080fd5b506104076104023660046135df565b610b84565b60405190151581526020016103de565b61042a610425366004613537565b610bf1565b005b34801561043857600080fd5b50610441610e24565b6040516103de919061380e565b34801561045a57600080fd5b506103d4600c5481565b34801561047057600080fd5b5061048461047f3660046135c6565b610eb6565b6040516001600160a01b0390911681526020016103de565b3480156104a857600080fd5b5061042a6104b736600461350d565b610f41565b3480156104c857600080fd5b506103d46104d73660046133d7565b611059565b3480156104e857600080fd5b50601a5461040790610100900460ff1681565b34801561050757600080fd5b506103d460105481565b34801561051d57600080fd5b506001546103d4565b34801561053257600080fd5b506016546104079060ff1681565b34801561054c57600080fd5b5061040761055b3660046133d7565b600d6020526000908152604090205460ff1681565b34801561057c57600080fd5b5061042a61058b36600461342c565b6110bd565b34801561059c57600080fd5b5061042a6105ab3660046133d7565b6111b9565b3480156105bc57600080fd5b5061042a6105cb3660046135c6565b611205565b3480156105dc57600080fd5b506103d46105eb36600461350d565b611268565b3480156105fc57600080fd5b50600f5461040790610100900460ff1681565b34801561061b57600080fd5b5061042a6113e0565b34801561063057600080fd5b5061042a61063f3660046135c6565b611418565b34801561065057600080fd5b5061042a61065f36600461342c565b611447565b34801561067057600080fd5b506103d461067f3660046135c6565b611462565b34801561069057600080fd5b5061042a61069f366004613619565b6114cb565b3480156106b057600080fd5b5061042a6106bf3660046135ab565b611501565b3480156106d057600080fd5b5061042a6106df3660046135ab565b61153e565b3480156106f057600080fd5b506104846106ff3660046135c6565b611582565b34801561071057600080fd5b50601a546104079060ff1681565b34801561072a57600080fd5b5061042a6107393660046135c6565b611594565b34801561074a57600080fd5b506103d46107593660046133d7565b6115c3565b34801561076a57600080fd5b5061042a611654565b34801561077f57600080fd5b5061042a61078e36600461350d565b611688565b34801561079f57600080fd5b506103d460155481565b3480156107b557600080fd5b506000546001600160a01b0316610484565b3480156107d357600080fd5b5061042a6107e23660046135c6565b611746565b3480156107f357600080fd5b506108076108023660046135c6565b611775565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103de565b34801561084057600080fd5b50601254610484906001600160a01b031681565b34801561086057600080fd5b5061042a61086f3660046135ab565b611792565b34801561088057600080fd5b506104416117cf565b34801561089557600080fd5b5061042a6108a43660046135c6565b600255565b3480156108b557600080fd5b5061042a6108c436600461350d565b6117de565b3480156108d557600080fd5b5061042a6108e43660046135ab565b611824565b61042a6108f73660046135c6565b611861565b34801561090857600080fd5b5061042a6109173660046134e3565b6119bd565b34801561092857600080fd5b50600f546104079060ff1681565b34801561094257600080fd5b5061042a611a82565b34801561095757600080fd5b5061042a6109663660046134e3565b611b5f565b34801561097757600080fd5b5061042a610986366004613468565b611bb4565b34801561099757600080fd5b506104416109a63660046135c6565b611cb7565b3480156109b757600080fd5b506103d4600a5481565b3480156109cd57600080fd5b5061042a6109dc3660046136c0565b611da0565b3480156109ed57600080fd5b506103d46109fc3660046133d7565b6120a1565b348015610a0d57600080fd5b5061042a610a1c3660046135ab565b6120ac565b348015610a2d57600080fd5b506103d4610a3c3660046133d7565b60116020526000908152604090205481565b348015610a5a57600080fd5b5061042a610a693660046135c6565b6120f0565b348015610a7a57600080fd5b506103d4610a893660046133d7565b60136020526000908152604090205481565b348015610aa757600080fd5b50610407610ab63660046133f9565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610af057600080fd5b5061042a610aff36600461350d565b61211f565b348015610b1057600080fd5b5061042a610b1f3660046133d7565b61219a565b348015610b3057600080fd5b5061042a610b3f3660046133d7565b612350565b348015610b5057600080fd5b5061042a610b5f3660046135c6565b6123e8565b348015610b7057600080fd5b5061042a610b7f366004613678565b612417565b60006001600160e01b031982166380ac58cd60e01b1480610bb557506001600160e01b03198216635b5e139f60e01b145b80610bd057506001600160e01b0319821663780e9d6360e01b145b80610beb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b8181601054610c68838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120612454565b610cb95760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c697374000060448201526064015b60405180910390fd5b600f5460ff16610cfe5760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd081cdd185c9d195960821b6044820152606401610cb0565b336000908152601160205260408120805491610d1983613a35565b9091555050336000908152600d602052604090205460ff1615610d765760405162461bcd60e51b815260206004820152601560248201527443616e74206d696e74206d6f7265207468616e203160581b6044820152606401610cb0565b600e54600154610d8790600161392d565b1115610da55760405162461bcd60e51b8152600401610cb090613856565b600c54341015610de85760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408ae8d60931b6044820152606401610cb0565b336000818152600d60209081526040808320805460ff191660019081179091556014909252909120429055610e1d919061246a565b5050505050565b606060048054610e33906139fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5f906139fa565b8015610eac5780601f10610e8157610100808354040283529160200191610eac565b820191906000526020600020905b815481529060010190602001808311610e8f57829003601f168201915b5050505050905090565b6000610ec3826001541190565b610f255760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610cb0565b506000908152600860205260409020546001600160a01b031690565b6000610f4c82611582565b9050806001600160a01b0316836001600160a01b03161415610fbb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610cb0565b336001600160a01b0382161480610fd75750610fd78133610ab6565b6110495760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610cb0565b611054838383612484565b505050565b6015546001600160a01b0382166000908152601460205260408120549091620151809161108690426139a0565b6001600160a01b0385166000908152601160205260409020546110a99190613959565b6110b39190613959565b610beb9190613945565b600e548110156111ae576110d082611059565b6001600160a01b038316600090815260136020526040812080549091906110f890849061392d565b90915550506001600160a01b038216600090815260146020526040902042905561112183611059565b6001600160a01b0384166000908152601360205260408120805490919061114990849061392d565b90915550506001600160a01b03831660009081526014602090815260408083204290556011909152812080549161117f836139e3565b90915550506001600160a01b03821660009081526011602052604081208054916111a883613a35565b91905055505b6110548383836124e0565b6000546001600160a01b031633146111e35760405162461bcd60e51b8152600401610cb090613821565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461122f5760405162461bcd60e51b8152600401610cb090613821565b6002600b5414156112525760405162461bcd60e51b8152600401610cb0906138cb565b6002600b55611260816124eb565b506001600b55565b6000611273836115c3565b82106112cc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610cb0565b60006112d760015490565b905060008060005b83811015611380576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561133157805192505b876001600160a01b0316836001600160a01b0316141561136d578684141561135f57509350610beb92505050565b8361136981613a35565b9450505b508061137881613a35565b9150506112df565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610cb0565b6000546001600160a01b0316331461140a5760405162461bcd60e51b8152600401610cb090613821565b611416601c60006131f3565b565b6000546001600160a01b031633146114425760405162461bcd60e51b8152600401610cb090613821565b601055565b61105483838360405180602001604052806000815250611bb4565b600061146d60015490565b82106114c75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610cb0565b5090565b6000546001600160a01b031633146114f55760405162461bcd60e51b8152600401610cb090613821565b611054601b838361322d565b6000546001600160a01b0316331461152b5760405162461bcd60e51b8152600401610cb090613821565b600f805460ff1916911515919091179055565b6000546001600160a01b031633146115685760405162461bcd60e51b8152600401610cb090613821565b600f80549115156101000261ff0019909216919091179055565b600061158d8261269c565b5192915050565b6000546001600160a01b031633146115be5760405162461bcd60e51b8152600401610cb090613821565b601955565b60006001600160a01b03821661162f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610cb0565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b0316331461167e5760405162461bcd60e51b8152600401610cb090613821565b611416600061280a565b6000546001600160a01b031633146116b25760405162461bcd60e51b8152600401610cb090613821565b601854816116bf60015490565b6116c9919061392d565b11156116e75760405162461bcd60e51b8152600401610cb090613856565b600e546001541015611738576001600160a01b038216600090815260116020526040812080549161171783613a35565b90915550506001600160a01b03821660009081526014602052604090204290555b611742828261246a565b5050565b6000546001600160a01b031633146117705760405162461bcd60e51b8152600401610cb090613821565b600c55565b6040805180820190915260008082526020820152610beb8261269c565b6000546001600160a01b031633146117bc5760405162461bcd60e51b8152600401610cb090613821565b601a805460ff1916911515919091179055565b606060058054610e33906139fa565b6000546001600160a01b031633146118085760405162461bcd60e51b8152600401610cb090613821565b6001600160a01b03909116600090815260116020526040902055565b6000546001600160a01b0316331461184e5760405162461bcd60e51b8152600401610cb090613821565b6016805460ff1916911515919091179055565b33600090815260116020526040812080549161187c83613a35565b9091555050336000908152601460205260409020429055600f54610100900460ff166118dd5760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd081cdd185c9d195960821b6044820152606401610cb0565b8060011461192d5760405162461bcd60e51b815260206004820152601d60248201527f43616e74206d696e74206d6f7265207468616e2031206174206f6e63650000006044820152606401610cb0565b600e548161193a60015490565b611944919061392d565b11156119625760405162461bcd60e51b8152600401610cb090613856565b80600c546119709190613959565b3410156119b05760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408ae8d60931b6044820152606401610cb0565b6119ba338261246a565b50565b6001600160a01b038216331415611a165760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610cb0565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611aac5760405162461bcd60e51b8152600401610cb090613821565b6002600b541415611acf5760405162461bcd60e51b8152600401610cb0906138cb565b6002600b55604051600090339047908381818185875af1925050503d8060008114611b16576040519150601f19603f3d011682016040523d82523d6000602084013e611b1b565b606091505b50509050806112605760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610cb0565b6000546001600160a01b03163314611b895760405162461bcd60e51b8152600401610cb090613821565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b600e54821015611ca557611bc783611059565b6001600160a01b03841660009081526013602052604081208054909190611bef90849061392d565b90915550506001600160a01b0383166000908152601460205260409020429055611c1884611059565b6001600160a01b03851660009081526013602052604081208054909190611c4090849061392d565b90915550506001600160a01b038416600090815260146020908152604080832042905560119091528120805491611c76836139e3565b90915550506001600160a01b0383166000908152601160205260408120805491611c9f83613a35565b91905055505b611cb18484848461285a565b50505050565b60606000601c8054611cc8906139fa565b9050118015611cd75750600482115b15611d6e57601c8054611ce9906139fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611d15906139fa565b8015611d625780601f10611d3757610100808354040283529160200191611d62565b820191906000526020600020905b815481529060010190602001808311611d4557829003601f168201915b50505050509050919050565b601b611d798361288d565b604051602001611d8a92919061372a565b6040516020818303038152906040529050919050565b601a5460ff16611de65760405162461bcd60e51b8152602060048201526011602482015270426162696573206e6f742072656164792160781b6044820152606401610cb0565b33611df083611582565b6001600160a01b0316148015611e16575033611e0b82611582565b6001600160a01b0316145b611e555760405162461bcd60e51b815260206004820152601060248201526f4d757374206f776e20706172656e747360801b6044820152606401610cb0565b601854600154611e6690600161392d565b10611ea85760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b6044820152606401610cb0565b600e5482108015611eba5750600e5481105b611f065760405162461bcd60e51b815260206004820152601760248201527f426162792042656173742063616e27742062726565642e0000000000000000006044820152606401610cb0565b80821415611f4d5760405162461bcd60e51b8152602060048201526014602482015273506172656e747320617265207468652073616d6560601b6044820152606401610cb0565b611f5633611059565b3360009081526013602052604081208054909190611f7590849061392d565b90915550503360009081526014602090815260408083204290556019546013909252909120541080611fae5750601a54610100900460ff165b1561202057601254601954604051632770a7eb60e21b815233600482015260248101919091526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b15801561200357600080fd5b505af1158015612017573d6000803e3d6000fd5b50505050612048565b60195433600090815260136020526040812080549091906120429084906139a0565b90915550505b61205333600161246a565b7f999ca196679cfea9e4aefdf0a0b3b2f2ac428033d39f49adb3664ec91d685f01818361207f60015490565b6040805193845260208401929092529082015260600160405180910390a15050565b6000610beb82612992565b6000546001600160a01b031633146120d65760405162461bcd60e51b8152600401610cb090613821565b601a80549115156101000261ff0019909216919091179055565b6000546001600160a01b0316331461211a5760405162461bcd60e51b8152600401610cb090613821565b600e55565b3360009081526017602052604090205460ff1661217e5760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920636f6e74726f6c6c6572732063616e2073657420726577617264006044820152606401610cb0565b6001600160a01b03909116600090815260136020526040902055565b6002600b5414156121bd5760405162461bcd60e51b8152600401610cb0906138cb565b6002600b5560165460ff166122095760405162461bcd60e51b815260206004820152601260248201527126b0b6b6b7ba341034b9903830bab9b2b21760711b6044820152606401610cb0565b6001600160a01b038116331461225a5760405162461bcd60e51b815260206004820152601660248201527543616e277420636c61696d20666f72206f746865727360501b6044820152606401610cb0565b61226381611059565b6001600160a01b0382166000908152601360205260408120805490919061228b90849061392d565b90915550506001600160a01b0381166000908152601460209081526040808320429055601390915290205415612331576012546001600160a01b038281166000818152601360205260409081902054905162b24f6960e31b8152600481019290925260248201529116906305927b4890604401600060405180830381600087803b15801561231857600080fd5b505af115801561232c573d6000803e3d6000fd5b505050505b6001600160a01b03166000908152601360205260408120556001600b55565b6000546001600160a01b0316331461237a5760405162461bcd60e51b8152600401610cb090613821565b6001600160a01b0381166123df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cb0565b6119ba8161280a565b6000546001600160a01b031633146124125760405162461bcd60e51b8152600401610cb090613821565b601855565b6000546001600160a01b031633146124415760405162461bcd60e51b8152600401610cb090613821565b805161174290601c9060208401906132ad565b6000826124618584612a30565b14949350505050565b611742828260405180602001604052806000815250612aa4565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611054838383612d64565b600a548161253b5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610cb0565b60006001612549848461392d565b61255391906139a0565b9050600160025461256491906139a0565b81111561257d57600160025461257a91906139a0565b90505b612588816001541190565b6125e35760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610cb0565b815b818111612688576000818152600660205260409020546001600160a01b03166126765760006126138261269c565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600690965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061268081613a35565b9150506125e5565b5061269481600161392d565b600a55505050565b60408051808201909152600080825260208201526126bb826001541190565b61271a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610cb0565b600060035483106127405760035461273290846139a0565b61273d90600161392d565b90505b825b8181106127a9576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561279657949350505050565b50806127a1816139e3565b915050612742565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610cb0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612865848484612d64565b612871848484846130e6565b611cb15760405162461bcd60e51b8152600401610cb090613878565b6060816128b15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128db57806128c581613a35565b91506128d49050600a83613945565b91506128b5565b6000816001600160401b038111156128f5576128f5613aa6565b6040519080825280601f01601f19166020018201604052801561291f576020820181803683370190505b5090505b841561298a576129346001836139a0565b9150612941600a86613a50565b61294c90603061392d565b60f81b81838151811061296157612961613a90565b60200101906001600160f81b031916908160001a905350612983600a86613945565b9450612923565b949350505050565b60006001600160a01b038216612a045760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610cb0565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b600081815b8451811015612a9c576000858281518110612a5257612a52613a90565b60200260200101519050808311612a785760008381526020829052604090209250612a89565b600081815260208490526040902092505b5080612a9481613a35565b915050612a35565b509392505050565b6001546001600160a01b038416612b075760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610cb0565b612b12816001541190565b15612b5f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610cb0565b600354831115612bbc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610cb0565b6001600160a01b0384166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612c18908790613902565b6001600160801b03168152602001858360200151612c369190613902565b6001600160801b039081169091526001600160a01b0380881660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612d555760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612d1960008884886130e6565b612d355760405162461bcd60e51b8152600401610cb090613878565b81612d3f81613a35565b9250508080612d4d90613a35565b915050612ccc565b5060018190555b505050505050565b6000612d6f8261269c565b80519091506000906001600160a01b0316336001600160a01b03161480612da6575033612d9b84610eb6565b6001600160a01b0316145b80612db857508151612db89033610ab6565b905080612e225760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610cb0565b846001600160a01b031682600001516001600160a01b031614612e965760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610cb0565b6001600160a01b038416612efa5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610cb0565b612f0a6000848460000151612484565b6001600160a01b0385166000908152600760205260408120805460019290612f3c9084906001600160801b0316613978565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526007602052604081208054600194509092612f8891859116613902565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561300f84600161392d565b6000818152600660205260409020549091506001600160a01b03166130a057613039816001541190565b156130a05760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d5c565b60006001600160a01b0384163b156131e857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061312a9033908990889088906004016137d1565b602060405180830381600087803b15801561314457600080fd5b505af1925050508015613174575060408051601f3d908101601f19168201909252613171918101906135fc565b60015b6131ce573d8080156131a2576040519150601f19603f3d011682016040523d82523d6000602084013e6131a7565b606091505b5080516131c65760405162461bcd60e51b8152600401610cb090613878565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061298a565b506001949350505050565b5080546131ff906139fa565b6000825580601f1061320f575050565b601f0160209004906000526020600020908101906119ba9190613321565b828054613239906139fa565b90600052602060002090601f01602090048101928261325b57600085556132a1565b82601f106132745782800160ff198235161785556132a1565b828001600101855582156132a1579182015b828111156132a1578235825591602001919060010190613286565b506114c7929150613321565b8280546132b9906139fa565b90600052602060002090601f0160209004810192826132db57600085556132a1565b82601f106132f457805160ff19168380011785556132a1565b828001600101855582156132a1579182015b828111156132a1578251825591602001919060010190613306565b5b808211156114c75760008155600101613322565b60006001600160401b038084111561335057613350613aa6565b604051601f8501601f19908116603f0116810190828211818310171561337857613378613aa6565b8160405280935085815286868601111561339157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146133c257600080fd5b919050565b803580151581146133c257600080fd5b6000602082840312156133e957600080fd5b6133f2826133ab565b9392505050565b6000806040838503121561340c57600080fd5b613415836133ab565b9150613423602084016133ab565b90509250929050565b60008060006060848603121561344157600080fd5b61344a846133ab565b9250613458602085016133ab565b9150604084013590509250925092565b6000806000806080858703121561347e57600080fd5b613487856133ab565b9350613495602086016133ab565b92506040850135915060608501356001600160401b038111156134b757600080fd5b8501601f810187136134c857600080fd5b6134d787823560208401613336565b91505092959194509250565b600080604083850312156134f657600080fd5b6134ff836133ab565b9150613423602084016133c7565b6000806040838503121561352057600080fd5b613529836133ab565b946020939093013593505050565b6000806020838503121561354a57600080fd5b82356001600160401b038082111561356157600080fd5b818501915085601f83011261357557600080fd5b81358181111561358457600080fd5b8660208260051b850101111561359957600080fd5b60209290920196919550909350505050565b6000602082840312156135bd57600080fd5b6133f2826133c7565b6000602082840312156135d857600080fd5b5035919050565b6000602082840312156135f157600080fd5b81356133f281613abc565b60006020828403121561360e57600080fd5b81516133f281613abc565b6000806020838503121561362c57600080fd5b82356001600160401b038082111561364357600080fd5b818501915085601f83011261365757600080fd5b81358181111561366657600080fd5b86602082850101111561359957600080fd5b60006020828403121561368a57600080fd5b81356001600160401b038111156136a057600080fd5b8201601f810184136136b157600080fd5b61298a84823560208401613336565b600080604083850312156136d357600080fd5b50508035926020909101359150565b600081518084526136fa8160208601602086016139b7565b601f01601f19169290920160200192915050565b600081516137208185602086016139b7565b9290920192915050565b600080845481600182811c91508083168061374657607f831692505b602080841082141561376657634e487b7160e01b86526022600452602486fd5b81801561377a576001811461378b576137b8565b60ff198616895284890196506137b8565b60008b81526020902060005b868110156137b05781548b820152908501908301613797565b505084890196505b5050505050506137c8818561370e565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613804908301846136e2565b9695505050505050565b6020815260006133f260208301846136e2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526008908201526714dbdb19081bdd5d60c21b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006001600160801b0380831681851680830382111561392457613924613a64565b01949350505050565b6000821982111561394057613940613a64565b500190565b60008261395457613954613a7a565b500490565b600081600019048311821515161561397357613973613a64565b500290565b60006001600160801b038381169083168181101561399857613998613a64565b039392505050565b6000828210156139b2576139b2613a64565b500390565b60005b838110156139d25781810151838201526020016139ba565b83811115611cb15750506000910152565b6000816139f2576139f2613a64565b506000190190565b600181811c90821680613a0e57607f821691505b60208210811415613a2f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613a4957613a49613a64565b5060010190565b600082613a5f57613a5f613a7a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119ba57600080fdfea2646970667358221220021bcff9321e0a1672d4289a894bbc1c3ca48935ed6e10b02c3ce4b0dc50a1bc64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000119400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 2
Arg [1] : collectionSize_ (uint256): 4500
Arg [2] : amountForAuctionAndDev_ (uint256): 0
Arg [3] : amountForDevs_ (uint256): 0
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001194
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
45342:8502:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48425:46;;;;;;;;;;-1:-1:-1;48425:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;9348:25:1;;;9336:2;9321:18;48425:46:0;;;;;;;;30249:370;;;;;;;;;;-1:-1:-1;30249:370:0;;;;;:::i;:::-;;:::i;:::-;;;9175:14:1;;9168:22;9150:41;;9138:2;9123:18;30249:370:0;9010:187:1;47760:512:0;;;;;;:::i;:::-;;:::i;:::-;;31975:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45766:38::-;;;;;;;;;;;;;;;;33500:204;;;;;;;;;;-1:-1:-1;33500:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8194:32:1;;;8176:51;;8164:2;8149:18;33500:204:0;8030:203:1;33063:379:0;;;;;;;;;;-1:-1:-1;33063:379:0;;;;;:::i;:::-;;:::i;48969:174::-;;;;;;;;;;-1:-1:-1;48969:174:0;;;;;:::i;:::-;;:::i;50260:35::-;;;;;;;;;;-1:-1:-1;50260:35:0;;;;;;;;;;;45973:25;;;;;;;;;;;;;;;;28810:94;;;;;;;;;;-1:-1:-1;28886:12:0;;28810:94;;48522:33;;;;;;;;;;-1:-1:-1;48522:33:0;;;;;;;;45811:38;;;;;;;;;;-1:-1:-1;45811:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;51379:465;;;;;;;;;;-1:-1:-1;51379:465:0;;;;;:::i;:::-;;:::i;48845:116::-;;;;;;;;;;-1:-1:-1;48845:116:0;;;;;:::i;:::-;;:::i;53457:118::-;;;;;;;;;;-1:-1:-1;53457:118:0;;;;;:::i;:::-;;:::i;29441:744::-;;;;;;;;;;-1:-1:-1;29441:744:0;;;;;:::i;:::-;;:::i;45931:35::-;;;;;;;;;;-1:-1:-1;45931:35:0;;;;;;;;;;;52690:68;;;;;;;;;;;;;:::i;46495:97::-;;;;;;;;;;-1:-1:-1;46495:97:0;;;;;:::i;:::-;;:::i;34563:165::-;;;;;;;;;;-1:-1:-1;34563:165:0;;;;;:::i;:::-;;:::i;28973:177::-;;;;;;;;;;-1:-1:-1;28973:177:0;;;;;:::i;:::-;;:::i;53164:100::-;;;;;;;;;;-1:-1:-1;53164:100:0;;;;;:::i;:::-;;:::i;46699:81::-;;;;;;;;;;-1:-1:-1;46699:81:0;;;;;:::i;:::-;;:::i;46600:91::-;;;;;;;;;;-1:-1:-1;46600:91:0;;;;;:::i;:::-;;:::i;31798:118::-;;;;;;;;;;-1:-1:-1;31798:118:0;;;;;:::i;:::-;;:::i;50225:28::-;;;;;;;;;;-1:-1:-1;50225:28:0;;;;;;;;50127:92;;;;;;;;;;-1:-1:-1;50127:92:0;;;;;:::i;:::-;;:::i;30675:211::-;;;;;;;;;;-1:-1:-1;30675:211:0;;;;;:::i;:::-;;:::i;44288:103::-;;;;;;;;;;;;;:::i;46984:315::-;;;;;;;;;;-1:-1:-1;46984:315:0;;;;;:::i;:::-;;:::i;48478:37::-;;;;;;;;;;;;;;;;43637:87;;;;;;;;;;-1:-1:-1;43683:7:0;43710:6;-1:-1:-1;;;;;43710:6:0;43637:87;;46790:82;;;;;;;;;;-1:-1:-1;46790:82:0;;;;;:::i;:::-;;:::i;53694:147::-;;;;;;;;;;-1:-1:-1;53694:147:0;;;;;:::i;:::-;;:::i;:::-;;;;24475:13:1;;-1:-1:-1;;;;;24471:39:1;24453:58;;24571:4;24559:17;;;24553:24;-1:-1:-1;;;;;24549:49:1;24527:20;;;24520:79;;;;24426:18;53694:147:0;24245:360:1;48331:30:0;;;;;;;;;;-1:-1:-1;48331:30:0;;;;-1:-1:-1;;;;;48331:30:0;;;50302:98;;;;;;;;;;-1:-1:-1;50302:98:0;;;;;:::i;:::-;;:::i;32130:::-;;;;;;;;;;;;;:::i;28632:110::-;;;;;;;;;;-1:-1:-1;28632:110:0;;;;;:::i;:::-;28702:14;:34;28632:110;46063:123;;;;;;;;;;-1:-1:-1;46063:123:0;;;;;:::i;:::-;;:::i;48733:104::-;;;;;;;;;;-1:-1:-1;48733:104:0;;;;;:::i;:::-;;:::i;47307:445::-;;;;;;:::i;:::-;;:::i;33768:274::-;;;;;;;;;;-1:-1:-1;33768:274:0;;;;;:::i;:::-;;:::i;45894:29::-;;;;;;;;;;-1:-1:-1;45894:29:0;;;;;;;;53270:181;;;;;;;;;;;;;:::i;48611:114::-;;;;;;;;;;-1:-1:-1;48611:114:0;;;;;:::i;:::-;;:::i;51852:498::-;;;;;;;;;;-1:-1:-1;51852:498:0;;;;;:::i;:::-;;:::i;52764:280::-;;;;;;;;;;-1:-1:-1;52764:280:0;;;;;:::i;:::-;;:::i;39214:43::-;;;;;;;;;;;;;;;;50520:849;;;;;;;;;;-1:-1:-1;50520:849:0;;;;;:::i;:::-;;:::i;53581:107::-;;;;;;;;;;-1:-1:-1;53581:107:0;;;;;:::i;:::-;;:::i;50406:108::-;;;;;;;;;;-1:-1:-1;50406:108:0;;;;;:::i;:::-;;:::i;46005:49::-;;;;;;;;;;-1:-1:-1;46005:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;46880:96;;;;;;;;;;-1:-1:-1;46880:96:0;;;;;:::i;:::-;;:::i;48368:50::-;;;;;;;;;;-1:-1:-1;48368:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;34105:186;;;;;;;;;;-1:-1:-1;34105:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;34250:25:0;;;34227:4;34250:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34105:186;49151:205;;;;;;;;;;-1:-1:-1;49151:205:0;;;;;:::i;:::-;;:::i;49364:471::-;;;;;;;;;;-1:-1:-1;49364:471:0;;;;;:::i;:::-;;:::i;44546:201::-;;;;;;;;;;-1:-1:-1;44546:201:0;;;;;:::i;:::-;;:::i;49989:96::-;;;;;;;;;;-1:-1:-1;49989:96:0;;;;;:::i;:::-;;:::i;52569:115::-;;;;;;;;;;-1:-1:-1;52569:115:0;;;;;:::i;:::-;;:::i;30249:370::-;30376:4;-1:-1:-1;;;;;;30406:40:0;;-1:-1:-1;;;30406:40:0;;:99;;-1:-1:-1;;;;;;;30457:48:0;;-1:-1:-1;;;30457:48:0;30406:99;:160;;;-1:-1:-1;;;;;;;30516:50:0;;-1:-1:-1;;;30516:50:0;30406:160;:207;;;-1:-1:-1;;;;;;;;;;15938:40:0;;;30577:36;30392:221;30249:370;-1:-1:-1;;30249:370:0:o;47760:512::-;47844:11;;47857:10;;46295:124;46326:11;;46295:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46377:28:0;;-1:-1:-1;;46394:10:0;6556:2:1;6552:15;6548:53;46377:28:0;;;6536:66:1;46350:4:0;;-1:-1:-1;6618:12:1;;;-1:-1:-1;46377:28:0;;;;;;;;;;;;46367:39;;;;;;46295:18;:124::i;:::-;46277:194;;;;-1:-1:-1;;;46277:194:0;;12843:2:1;46277:194:0;;;12825:21:1;12882:2;12862:18;;;12855:30;12921:32;12901:18;;;12894:60;12971:18;;46277:194:0;;;;;;;;;47885:9:::1;::::0;::::1;;47877:38;;;::::0;-1:-1:-1;;;47877:38:0;;13554:2:1;47877:38:0::1;::::0;::::1;13536:21:1::0;13593:2;13573:18;;;13566:30;-1:-1:-1;;;13612:18:1;;;13605:46;13668:18;;47877:38:0::1;13352:340:1::0;47877:38:0::1;47939:10;47924:26;::::0;;;:14:::1;:26;::::0;;;;:28;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;47976:10:0::1;47969:18;::::0;;;:6:::1;:18;::::0;;;;;::::1;;:27;47961:61;;;::::0;-1:-1:-1;;;47961:61:0;;17675:2:1;47961:61:0::1;::::0;::::1;17657:21:1::0;17714:2;17694:18;;;17687:30;-1:-1:-1;;;17733:18:1;;;17726:51;17794:18;;47961:61:0::1;17473:345:1::0;47961:61:0::1;48060:16;::::0;28886:12;;48039:17:::1;::::0;48055:1:::1;48039:17;:::i;:::-;:37;;48031:58;;;;-1:-1:-1::0;;;48031:58:0::1;;;;;;;:::i;:::-;48119:8;;48106:9;:21;;48098:48;;;::::0;-1:-1:-1;;;48098:48:0;;20636:2:1;48098:48:0::1;::::0;::::1;20618:21:1::0;20675:2;20655:18;;;20648:30;-1:-1:-1;;;20694:18:1;;;20687:44;20748:18;;48098:48:0::1;20434:338:1::0;48098:48:0::1;48162:10;48155:18;::::0;;;:6:::1;:18;::::0;;;;;;;:25;;-1:-1:-1;;48155:25:0::1;48176:4;48155:25:::0;;::::1;::::0;;;48189:11:::1;:23:::0;;;;;;48215:15:::1;48189:41:::0;;48240:24:::1;::::0;48162:10;48240:9:::1;:24::i;:::-;47760:512:::0;;;;;:::o;31975:94::-;32029:13;32058:5;32051:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31975:94;:::o;33500:204::-;33568:7;33592:16;33600:7;35436:12;;-1:-1:-1;35426:22:0;35349:105;33592:16;33584:74;;;;-1:-1:-1;;;33584:74:0;;23272:2:1;33584:74:0;;;23254:21:1;23311:2;23291:18;;;23284:30;23350:34;23330:18;;;23323:62;-1:-1:-1;;;23401:18:1;;;23394:43;23454:19;;33584:74:0;23070:409:1;33584:74:0;-1:-1:-1;33674:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33674:24:0;;33500:204::o;33063:379::-;33132:13;33148:24;33164:7;33148:15;:24::i;:::-;33132:40;;33193:5;-1:-1:-1;;;;;33187:11:0;:2;-1:-1:-1;;;;;33187:11:0;;;33179:58;;;;-1:-1:-1;;;33179:58:0;;18025:2:1;33179:58:0;;;18007:21:1;18064:2;18044:18;;;18037:30;18103:34;18083:18;;;18076:62;-1:-1:-1;;;18154:18:1;;;18147:32;18196:19;;33179:58:0;17823:398:1;33179:58:0;26266:10;-1:-1:-1;;;;;33262:21:0;;;;:62;;-1:-1:-1;33287:37:0;33304:5;26266:10;34105:186;:::i;33287:37::-;33246:153;;;;-1:-1:-1;;;33246:153:0;;13899:2:1;33246:153:0;;;13881:21:1;13938:2;13918:18;;;13911:30;13977:34;13957:18;;;13950:62;14048:27;14028:18;;;14021:55;14093:19;;33246:153:0;13697:421:1;33246:153:0;33408:28;33417:2;33421:7;33430:5;33408:8;:28::i;:::-;33125:317;33063:379;;:::o;48969:174::-;49114:12;;-1:-1:-1;;;;;49093:17:0;;49026:7;49093:17;;;:11;:17;;;;;;49026:7;;49129:5;;49075:35;;:15;:35;:::i;:::-;-1:-1:-1;;;;;49051:20:0;;;;;;:14;:20;;;;;;:60;;;;:::i;:::-;:75;;;;:::i;:::-;:83;;;;:::i;51379:465::-;51485:16;;51475:7;:26;51471:316;;;51539:17;51553:2;51539:13;:17::i;:::-;-1:-1:-1;;;;;51516:19:0;;;;;;:15;:19;;;;;:40;;:19;;;:40;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;51569:15:0;;;;;;:11;:15;;;;;51587;51569:33;;51640:19;51654:4;51640:13;:19::i;:::-;-1:-1:-1;;;;;51615:21:0;;;;;;:15;:21;;;;;:44;;:21;;;:44;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;51672:17:0;;;;;;:11;:17;;;;;;;;51692:15;51672:35;;51720:14;:20;;;;;:22;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;51755:18:0;;;;;;:14;:18;;;;;:20;;;;;;:::i;:::-;;;;;;51471:316;51797:39;51818:4;51824:2;51828:7;51797:20;:39::i;48845:116::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;48915:15:::1;:38:::0;;-1:-1:-1;;;;;;48915:38:0::1;-1:-1:-1::0;;;;;48915:38:0;;;::::1;::::0;;;::::1;::::0;;48845:116::o;53457:118::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;24560:1:::1;25158:7;;:19;;25150:63;;;;-1:-1:-1::0;;;25150:63:0::1;;;;;;;:::i;:::-;24560:1;25291:7;:18:::0;53541:28:::2;53560:8:::0;53541:18:::2;:28::i;:::-;-1:-1:-1::0;24516:1:0::1;25470:7;:22:::0;53457:118::o;29441:744::-;29550:7;29585:16;29595:5;29585:9;:16::i;:::-;29577:5;:24;29569:71;;;;-1:-1:-1;;;29569:71:0;;10034:2:1;29569:71:0;;;10016:21:1;10073:2;10053:18;;;10046:30;10112:34;10092:18;;;10085:62;-1:-1:-1;;;10163:18:1;;;10156:32;10205:19;;29569:71:0;9832:398:1;29569:71:0;29647:22;29672:13;28886:12;;;28810:94;29672:13;29647:38;;29692:19;29722:25;29772:9;29767:350;29791:14;29787:1;:18;29767:350;;;29821:31;29855:14;;;:11;:14;;;;;;;;;29821:48;;;;;;;;;-1:-1:-1;;;;;29821:48:0;;;;;-1:-1:-1;;;29821:48:0;;;-1:-1:-1;;;;;29821:48:0;;;;;;;;29882:28;29878:89;;29943:14;;;-1:-1:-1;29878:89:0;30000:5;-1:-1:-1;;;;;29979:26:0;:17;-1:-1:-1;;;;;29979:26:0;;29975:135;;;30037:5;30022:11;:20;30018:59;;;-1:-1:-1;30064:1:0;-1:-1:-1;30057:8:0;;-1:-1:-1;;;30057:8:0;30018:59;30087:13;;;;:::i;:::-;;;;29975:135;-1:-1:-1;29807:3:0;;;;:::i;:::-;;;;29767:350;;;-1:-1:-1;30123:56:0;;-1:-1:-1;;;30123:56:0;;21325:2:1;30123:56:0;;;21307:21:1;21364:2;21344:18;;;21337:30;21403:34;21383:18;;;21376:62;-1:-1:-1;;;21454:18:1;;;21447:44;21508:19;;30123:56:0;21123:410:1;52690:68:0;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;52732:20:::1;52739:13;;52732:20;:::i;:::-;52690:68::o:0;46495:97::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;46561:10:::1;:23:::0;46495:97::o;34563:165::-;34683:39;34700:4;34706:2;34710:7;34683:39;;;;;;;;;;;;:16;:39::i;28973:177::-;29040:7;29072:13;28886:12;;;28810:94;29072:13;29064:5;:21;29056:69;;;;-1:-1:-1;;;29056:69:0;;11615:2:1;29056:69:0;;;11597:21:1;11654:2;11634:18;;;11627:30;11693:34;11673:18;;;11666:62;-1:-1:-1;;;11744:18:1;;;11737:33;11787:19;;29056:69:0;11413:399:1;29056:69:0;-1:-1:-1;29139:5:0;28973:177::o;53164:100::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;53235:23:::1;:13;53251:7:::0;;53235:23:::1;:::i;46699:81::-:0;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;46755:9:::1;:17:::0;;-1:-1:-1;;46755:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46699:81::o;46600:91::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;46660:15:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;46660:23:0;;::::1;::::0;;;::::1;::::0;;46600:91::o;31798:118::-;31862:7;31885:20;31897:7;31885:11;:20::i;:::-;:25;;31798:118;-1:-1:-1;;31798:118:0:o;50127:92::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;50193:8:::1;:18:::0;50127:92::o;30675:211::-;30739:7;-1:-1:-1;;;;;30763:19:0;;30755:75;;;;-1:-1:-1;;;30755:75:0;;15029:2:1;30755:75:0;;;15011:21:1;15068:2;15048:18;;;15041:30;15107:34;15087:18;;;15080:62;-1:-1:-1;;;15158:18:1;;;15151:41;15209:19;;30755:75:0;14827:407:1;30755:75:0;-1:-1:-1;;;;;;30852:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30852:27:0;;30675:211::o;44288:103::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;44353:30:::1;44380:1;44353:18;:30::i;46984:315::-:0;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;47101:14:::1;;47089:8;47073:13;28886:12:::0;;;28810:94;47073:13:::1;:24;;;;:::i;:::-;:42;;47065:63;;;;-1:-1:-1::0;;;47065:63:0::1;;;;;;;:::i;:::-;47157:16;::::0;28886:12;;47141:32:::1;47137:123;;;-1:-1:-1::0;;;;;47185:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;:20;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;47216:15:0;::::1;;::::0;;;:11:::1;:15;::::0;;;;47234::::1;47216:33:::0;;47137:123:::1;47268:23;47278:2;47282:8;47268:9;:23::i;:::-;46984:315:::0;;:::o;46790:82::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;46848:8:::1;:16:::0;46790:82::o;53694:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;53815:20:0;53827:7;53815:11;:20::i;50302:98::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;50368:8:::1;:24:::0;;-1:-1:-1;;50368:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50302:98::o;32130:::-;32186:13;32215:7;32208:14;;;;;:::i;46063:123::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46150:18:0;;::::1;;::::0;;;:14:::1;:18;::::0;;;;:28;46063:123::o;48733:104::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;48803:14:::1;:26:::0;;-1:-1:-1;;48803:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48733:104::o;47307:445::-;47379:10;47364:26;;;;:14;:26;;;;;:28;;;;;;:::i;:::-;;;;-1:-1:-1;;47413:10:0;47401:23;;;;:11;:23;;;;;47427:15;47401:41;;47462:15;;;;;;;47454:44;;;;-1:-1:-1;;;47454:44:0;;13554:2:1;47454:44:0;;;13536:21:1;13593:2;13573:18;;;13566:30;-1:-1:-1;;;13612:18:1;;;13605:46;13668:18;;47454:44:0;13352:340:1;47454:44:0;47515:8;47527:1;47515:13;47507:55;;;;-1:-1:-1;;;47507:55:0;;23686:2:1;47507:55:0;;;23668:21:1;23725:2;23705:18;;;23698:30;23764:31;23744:18;;;23737:59;23813:18;;47507:55:0;23484:353:1;47507:55:0;47607:16;;47595:8;47579:13;28886:12;;;28810:94;47579:13;:24;;;;:::i;:::-;:44;;47571:65;;;;-1:-1:-1;;;47571:65:0;;;;;;;:::i;:::-;47677:8;47666;;:19;;;;:::i;:::-;47653:9;:32;;47645:59;;;;-1:-1:-1;;;47645:59:0;;20636:2:1;47645:59:0;;;20618:21:1;20675:2;20655:18;;;20648:30;-1:-1:-1;;;20694:18:1;;;20687:44;20748:18;;47645:59:0;20434:338:1;47645:59:0;47713:31;47723:10;47735:8;47713:9;:31::i;:::-;47307:445;:::o;33768:274::-;-1:-1:-1;;;;;33859:24:0;;26266:10;33859:24;;33851:63;;;;-1:-1:-1;;;33851:63:0;;16556:2:1;33851:63:0;;;16538:21:1;16595:2;16575:18;;;16568:30;16634:28;16614:18;;;16607:56;16680:18;;33851:63:0;16354:350:1;33851:63:0;26266:10;33923:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33923:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33923:53:0;;;;;;;;;;33988:48;;9150:41:1;;;33923:42:0;;26266:10;33988:48;;9123:18:1;33988:48:0;;;;;;;33768:274;;:::o;53270:181::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;24560:1:::1;25158:7;;:19;;25150:63;;;;-1:-1:-1::0;;;25150:63:0::1;;;;;;;:::i;:::-;24560:1;25291:7;:18:::0;53353:49:::2;::::0;53335:12:::2;::::0;53353:10:::2;::::0;53376:21:::2;::::0;53335:12;53353:49;53335:12;53353:49;53376:21;53353:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53334:68;;;53417:7;53409:36;;;::::0;-1:-1:-1;;;53409:36:0;;18428:2:1;53409:36:0::2;::::0;::::2;18410:21:1::0;18467:2;18447:18;;;18440:30;-1:-1:-1;;;18486:18:1;;;18479:46;18542:18;;53409:36:0::2;18226:340:1::0;48611:114:0;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48688:22:0;;;::::1;;::::0;;;:15:::1;:22;::::0;;;;:31;;-1:-1:-1;;48688:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48611:114::o;51852:498::-;51981:16;;51971:7;:26;51967:316;;;52035:17;52049:2;52035:13;:17::i;:::-;-1:-1:-1;;;;;52012:19:0;;;;;;:15;:19;;;;;:40;;:19;;;:40;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;52065:15:0;;;;;;:11;:15;;;;;52083;52065:33;;52136:19;52150:4;52136:13;:19::i;:::-;-1:-1:-1;;;;;52111:21:0;;;;;;:15;:21;;;;;:44;;:21;;;:44;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;52168:17:0;;;;;;:11;:17;;;;;;;;52188:15;52168:35;;52216:14;:20;;;;;:22;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;52251:18:0;;;;;;:14;:18;;;;;:20;;;;;;:::i;:::-;;;;;;51967:316;52293:49;52318:4;52324:2;52328:7;52337:4;52293:24;:49::i;:::-;51852:498;;;;:::o;52764:280::-;52850:13;52910:1;52886:13;52880:27;;;;;:::i;:::-;;;:31;52879:49;;;;;52927:1;52916:8;:12;52879:49;52875:75;;;52937:13;52930:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52764:280;;;:::o;52875:75::-;52995:13;53010:26;53027:8;53010:16;:26::i;:::-;52978:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52957:81;;52764:280;;;:::o;50520:849::-;50589:8;;;;50581:38;;;;-1:-1:-1;;;50581:38:0;;20979:2:1;50581:38:0;;;20961:21:1;21018:2;20998:18;;;20991:30;-1:-1:-1;;;21037:18:1;;;21030:47;21094:18;;50581:38:0;20777:341:1;50581:38:0;50654:10;50638:12;50646:3;50638:7;:12::i;:::-;-1:-1:-1;;;;;50638:26:0;;:56;;;;-1:-1:-1;50684:10:0;50668:12;50676:3;50668:7;:12::i;:::-;-1:-1:-1;;;;;50668:26:0;;50638:56;50630:86;;;;-1:-1:-1;;;50630:86:0;;17330:2:1;50630:86:0;;;17312:21:1;17369:2;17349:18;;;17342:30;-1:-1:-1;;;17388:18:1;;;17381:46;17444:18;;50630:86:0;17128:340:1;50630:86:0;50755:14;;28886:12;;50735:17;;50751:1;50735:17;:::i;:::-;:34;50727:65;;;;-1:-1:-1;;;50727:65:0;;20289:2:1;50727:65:0;;;20271:21:1;20328:2;20308:18;;;20301:30;-1:-1:-1;;;20347:18:1;;;20340:48;20405:18;;50727:65:0;20087:342:1;50727:65:0;50817:16;;50811:3;:22;:48;;;;;50843:16;;50837:3;:22;50811:48;50803:84;;;;-1:-1:-1;;;50803:84:0;;13202:2:1;50803:84:0;;;13184:21:1;13241:2;13221:18;;;13214:30;13280:25;13260:18;;;13253:53;13323:18;;50803:84:0;13000:347:1;50803:84:0;50913:3;50906;:10;;50898:43;;;;-1:-1:-1;;;50898:43:0;;21740:2:1;50898:43:0;;;21722:21:1;21779:2;21759:18;;;21752:30;-1:-1:-1;;;21798:18:1;;;21791:50;21858:18;;50898:43:0;21538:344:1;50898:43:0;50983:25;50997:10;50983:13;:25::i;:::-;50968:10;50952:27;;;;:15;:27;;;;;:56;;:27;;;:56;;;;;:::i;:::-;;;;-1:-1:-1;;51031:10:0;51019:23;;;;:11;:23;;;;;;;;51045:15;51019:41;;51105:8;;51075:15;:27;;;;;;;:38;;:57;;-1:-1:-1;51117:15:0;;;;;;;51075:57;51071:207;;;51146:15;;51179:8;;51146:42;;-1:-1:-1;;;51146:42:0;;51167:10;51146:42;;;8905:51:1;8972:18;;;8965:34;;;;-1:-1:-1;;;;;51146:15:0;;;;:20;;8878:18:1;;51146:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51071:207;;;51258:8;;51243:10;51227:27;;;;:15;:27;;;;;:39;;:27;;;:39;;51258:8;;51227:39;:::i;:::-;;;;-1:-1:-1;;51071:207:0;51288:24;51298:10;51310:1;51288:9;:24::i;:::-;51328:33;51337:3;51342;51347:13;28886:12;;;28810:94;51347:13;51328:33;;;24994:25:1;;;25050:2;25035:18;;25028:34;;;;25078:18;;;25071:34;24982:2;24967:18;51328:33:0;;;;;;;50520:849;;:::o;53581:107::-;53639:7;53662:20;53676:5;53662:13;:20::i;50406:108::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;50477:15:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;50477:29:0;;::::1;::::0;;;::::1;::::0;;50406:108::o;46880:96::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;46943:16:::1;:25:::0;46880:96::o;49151:205::-;49251:10;49235:27;;;;:15;:27;;;;;;;;49227:71;;;;-1:-1:-1;;;49227:71:0;;11255:2:1;49227:71:0;;;11237:21:1;11294:2;11274:18;;;11267:30;11333:33;11313:18;;;11306:61;11384:18;;49227:71:0;11053:355:1;49227:71:0;-1:-1:-1;;;;;49307:29:0;;;;;;;:15;:29;;;;;:41;49151:205::o;49364:471::-;24560:1;25158:7;;:19;;25150:63;;;;-1:-1:-1;;;25150:63:0;;;;;;;:::i;:::-;24560:1;25291:7;:18;49441:14:::1;::::0;::::1;;49433:45;;;::::0;-1:-1:-1;;;49433:45:0;;15441:2:1;49433:45:0::1;::::0;::::1;15423:21:1::0;15480:2;15460:18;;;15453:30;-1:-1:-1;;;15499:18:1;;;15492:48;15557:18;;49433:45:0::1;15239:342:1::0;49433:45:0::1;-1:-1:-1::0;;;;;49497:21:0;::::1;49508:10;49497:21;49489:56;;;::::0;-1:-1:-1;;;49489:56:0;;14678:2:1;49489:56:0::1;::::0;::::1;14660:21:1::0;14717:2;14697:18;;;14690:30;-1:-1:-1;;;14736:18:1;;;14729:52;14798:18;;49489:56:0::1;14476:346:1::0;49489:56:0::1;49584:22;49598:7;49584:13;:22::i;:::-;-1:-1:-1::0;;;;;49556:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;:50;;:24;;;:50:::1;::::0;;;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;49617:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;;49640:15:::1;49617:38:::0;;49670:15:::1;:24:::0;;;;;;:28;49666:123:::1;;49715:15;::::0;-1:-1:-1;;;;;49752:24:0;;::::1;49715:15;49752:24:::0;;;:15:::1;:24;::::0;;;;;;;49715:62;;-1:-1:-1;;;49715:62:0;;::::1;::::0;::::1;8905:51:1::0;;;;8972:18;;;8965:34;49715:15:0;::::1;::::0;:27:::1;::::0;8878:18:1;;49715:62:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49666:123;-1:-1:-1::0;;;;;49799:24:0::1;49826:1;49799:24:::0;;;:15:::1;:24;::::0;;;;:28;24516:1;25470:7;:22;49364:471::o;44546:201::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44635:22:0;::::1;44627:73;;;::::0;-1:-1:-1;;;44627:73:0;;10437:2:1;44627:73:0::1;::::0;::::1;10419:21:1::0;10476:2;10456:18;;;10449:30;10515:34;10495:18;;;10488:62;-1:-1:-1;;;10566:18:1;;;10559:36;10612:19;;44627:73:0::1;10235:402:1::0;44627:73:0::1;44711:28;44730:8;44711:18;:28::i;49989:96::-:0;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;50054:14:::1;:23:::0;49989:96::o;52569:115::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;52648:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;923:190::-:0;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;;923:190;-1:-1:-1;;;;923:190:0:o;35460:98::-;35525:27;35535:2;35539:8;35525:27;;;;;;;;;;;;:9;:27::i;39036:172::-;39133:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39133:29:0;-1:-1:-1;;;;;39133:29:0;;;;;;;;;39174:28;;39133:24;;39174:28;;;;;;;39036:172;;;:::o;34350:150::-;34466:28;34476:4;34482:2;34486:7;34466:9;:28::i;39362:846::-;39452:24;;39491:12;39483:49;;;;-1:-1:-1;;;39483:49:0;;14325:2:1;39483:49:0;;;14307:21:1;14364:2;14344:18;;;14337:30;14403:26;14383:18;;;14376:54;14447:18;;39483:49:0;14123:348:1;39483:49:0;39539:16;39589:1;39558:28;39578:8;39558:17;:28;:::i;:::-;:32;;;;:::i;:::-;39539:51;;39629:1;39612:14;;:18;;;;:::i;:::-;39601:8;:29;39597:81;;;39669:1;39652:14;;:18;;;;:::i;:::-;39641:29;;39597:81;39793:17;39801:8;35436:12;;-1:-1:-1;35426:22:0;35349:105;39793:17;39785:68;;;;-1:-1:-1;;;39785:68:0;;22089:2:1;39785:68:0;;;22071:21:1;22128:2;22108:18;;;22101:30;22167:34;22147:18;;;22140:62;-1:-1:-1;;;22218:18:1;;;22211:36;22264:19;;39785:68:0;21887:402:1;39785:68:0;39877:17;39860:297;39901:8;39896:1;:13;39860:297;;39960:1;39929:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;39929:19:0;39925:225;;39975:31;40009:14;40021:1;40009:11;:14::i;:::-;40051:89;;;;;;;;40078:14;;-1:-1:-1;;;;;40051:89:0;;;;;;40105:24;;;;-1:-1:-1;;;;;40051:89:0;;;;;;;;;-1:-1:-1;40034:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;40034:106:0;-1:-1:-1;;;;;;40034:106:0;;;;;;;;;;;;-1:-1:-1;39925:225:0;39911:3;;;;:::i;:::-;;;;39860:297;;;-1:-1:-1;40190:12:0;:8;40201:1;40190:12;:::i;:::-;40163:24;:39;-1:-1:-1;;;39362:846:0:o;31138:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;31255:16:0;31263:7;35436:12;;-1:-1:-1;35426:22:0;35349:105;31255:16;31247:71;;;;-1:-1:-1;;;31247:71:0;;10844:2:1;31247:71:0;;;10826:21:1;10883:2;10863:18;;;10856:30;10922:34;10902:18;;;10895:62;-1:-1:-1;;;10973:18:1;;;10966:40;11023:19;;31247:71:0;10642:406:1;31247:71:0;31327:26;31375:12;;31364:7;:23;31360:93;;31429:12;;31419:22;;:7;:22;:::i;:::-;:26;;31444:1;31419:26;:::i;:::-;31398:47;;31360:93;31481:7;31461:212;31498:18;31490:4;:26;31461:212;;31535:31;31569:17;;;:11;:17;;;;;;;;;31535:51;;;;;;;;;-1:-1:-1;;;;;31535:51:0;;;;;-1:-1:-1;;;31535:51:0;;;-1:-1:-1;;;;;31535:51:0;;;;;;;;31599:28;31595:71;;31647:9;31138:606;-1:-1:-1;;;;31138:606:0:o;31595:71::-;-1:-1:-1;31518:6:0;;;;:::i;:::-;;;;31461:212;;;-1:-1:-1;31681:57:0;;-1:-1:-1;;;31681:57:0;;22856:2:1;31681:57:0;;;22838:21:1;22895:2;22875:18;;;22868:30;22934:34;22914:18;;;22907:62;-1:-1:-1;;;22985:18:1;;;22978:45;23040:19;;31681:57:0;22654:411:1;44907:191:0;44981:16;45000:6;;-1:-1:-1;;;;;45017:17:0;;;-1:-1:-1;;;;;;45017:17:0;;;;;;45050:40;;45000:6;;;;;;;45050:40;;44981:16;45050:40;44970:128;44907:191;:::o;34791:319::-;34936:28;34946:4;34952:2;34956:7;34936:9;:28::i;:::-;34987:48;35010:4;35016:2;35020:7;35029:5;34987:22;:48::i;:::-;34971:133;;;;-1:-1:-1;;;34971:133:0;;;;;;;:::i;2754:723::-;2810:13;3031:10;3027:53;;-1:-1:-1;;3058:10:0;;;;;;;;;;;;-1:-1:-1;;;3058:10:0;;;;;2754:723::o;3027:53::-;3105:5;3090:12;3146:78;3153:9;;3146:78;;3179:8;;;;:::i;:::-;;-1:-1:-1;3202:10:0;;-1:-1:-1;3210:2:0;3202:10;;:::i;:::-;;;3146:78;;;3234:19;3266:6;-1:-1:-1;;;;;3256:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3256:17:0;;3234:39;;3284:154;3291:10;;3284:154;;3318:11;3328:1;3318:11;;:::i;:::-;;-1:-1:-1;3387:10:0;3395:2;3387:5;:10;:::i;:::-;3374:24;;:2;:24;:::i;:::-;3361:39;;3344:6;3351;3344:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3344:56:0;;;;;;;;-1:-1:-1;3415:11:0;3424:2;3415:11;;:::i;:::-;;;3284:154;;;3462:6;2754:723;-1:-1:-1;;;;2754:723:0:o;30892:240::-;30953:7;-1:-1:-1;;;;;30985:19:0;;30969:102;;;;-1:-1:-1;;;30969:102:0;;12425:2:1;30969:102:0;;;12407:21:1;12464:2;12444:18;;;12437:30;12503:34;12483:18;;;12476:62;-1:-1:-1;;;12554:18:1;;;12547:47;12611:19;;30969:102:0;12223:413:1;30969:102:0;-1:-1:-1;;;;;;31093:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;31093:32:0;;-1:-1:-1;;;;;31093:32:0;;30892:240::o;1475:675::-;1558:7;1601:4;1558:7;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;1852:57;;1720:382;;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;2029:57;;1720:382;-1:-1:-1;1654:3:0;;;;:::i;:::-;;;;1616:497;;;-1:-1:-1;2130:12:0;1475:675;-1:-1:-1;;;1475:675:0:o;35897:1272::-;36025:12;;-1:-1:-1;;;;;36052:16:0;;36044:62;;;;-1:-1:-1;;;36044:62:0;;19887:2:1;36044:62:0;;;19869:21:1;19926:2;19906:18;;;19899:30;19965:34;19945:18;;;19938:62;-1:-1:-1;;;20016:18:1;;;20009:31;20057:19;;36044:62:0;19685:397:1;36044:62:0;36243:21;36251:12;35436;;-1:-1:-1;35426:22:0;35349:105;36243:21;36242:22;36234:64;;;;-1:-1:-1;;;36234:64:0;;19529:2:1;36234:64:0;;;19511:21:1;19568:2;19548:18;;;19541:30;19607:31;19587:18;;;19580:59;19656:18;;36234:64:0;19327:353:1;36234:64:0;36325:12;;36313:8;:24;;36305:71;;;;-1:-1:-1;;;36305:71:0;;24044:2:1;36305:71:0;;;24026:21:1;24083:2;24063:18;;;24056:30;24122:34;24102:18;;;24095:62;-1:-1:-1;;;24173:18:1;;;24166:32;24215:19;;36305:71:0;23842:398:1;36305:71:0;-1:-1:-1;;;;;36488:16:0;;36455:30;36488:16;;;:12;:16;;;;;;;;;36455:49;;;;;;;;;-1:-1:-1;;;;;36455:49:0;;;;;-1:-1:-1;;;36455:49:0;;;;;;;;;;;36530:119;;;;;;;;36550:19;;36455:49;;36530:119;;;36550:39;;36580:8;;36550:39;:::i;:::-;-1:-1:-1;;;;;36530:119:0;;;;;36633:8;36598:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36530:119:0;;;;;;-1:-1:-1;;;;;36511:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36511:138:0;;;;;;;;;;;;36684:43;;;;;;;;;;-1:-1:-1;;;;;36710:15:0;36684:43;;;;;;;;36656:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36656:71:0;-1:-1:-1;;;;;;36656:71:0;;;;;;;;;;;;;;;;;;36668:12;;36780:281;36804:8;36800:1;:12;36780:281;;;36833:38;;36858:12;;-1:-1:-1;;;;;36833:38:0;;;36850:1;;36833:38;;36850:1;;36833:38;36898:59;36929:1;36933:2;36937:12;36951:5;36898:22;:59::i;:::-;36880:150;;;;-1:-1:-1;;;36880:150:0;;;;;;;:::i;:::-;37039:14;;;;:::i;:::-;;;;36814:3;;;;;:::i;:::-;;;;36780:281;;;-1:-1:-1;37069:12:0;:27;;;37103:60;35995:1174;;;35897:1272;;;:::o;37401:1529::-;37498:35;37536:20;37548:7;37536:11;:20::i;:::-;37607:18;;37498:58;;-1:-1:-1;37565:22:0;;-1:-1:-1;;;;;37591:34:0;26266:10;-1:-1:-1;;;;;37591:34:0;;:81;;;-1:-1:-1;26266:10:0;37636:20;37648:7;37636:11;:20::i;:::-;-1:-1:-1;;;;;37636:36:0;;37591:81;:142;;;-1:-1:-1;37700:18:0;;37683:50;;26266:10;34105:186;:::i;37683:50::-;37565:169;;37759:17;37743:101;;;;-1:-1:-1;;;37743:101:0;;16911:2:1;37743:101:0;;;16893:21:1;16950:2;16930:18;;;16923:30;16989:34;16969:18;;;16962:62;-1:-1:-1;;;17040:18:1;;;17033:48;17098:19;;37743:101:0;16709:414:1;37743:101:0;37891:4;-1:-1:-1;;;;;37869:26:0;:13;:18;;;-1:-1:-1;;;;;37869:26:0;;37853:98;;;;-1:-1:-1;;;37853:98:0;;15788:2:1;37853:98:0;;;15770:21:1;15827:2;15807:18;;;15800:30;15866:34;15846:18;;;15839:62;-1:-1:-1;;;15917:18:1;;;15910:36;15963:19;;37853:98:0;15586:402:1;37853:98:0;-1:-1:-1;;;;;37966:16:0;;37958:66;;;;-1:-1:-1;;;37958:66:0;;12019:2:1;37958:66:0;;;12001:21:1;12058:2;12038:18;;;12031:30;12097:34;12077:18;;;12070:62;-1:-1:-1;;;12148:18:1;;;12141:35;12193:19;;37958:66:0;11817:401:1;37958:66:0;38133:49;38150:1;38154:7;38163:13;:18;;;38133:8;:49::i;:::-;-1:-1:-1;;;;;38191:18:0;;;;;;:12;:18;;;;;:31;;38221:1;;38191:18;:31;;38221:1;;-1:-1:-1;;;;;38191:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;38191:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38229:16:0;;-1:-1:-1;38229:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;38229:16:0;;:29;;-1:-1:-1;;38229:29:0;;:::i;:::-;;;-1:-1:-1;;;;;38229:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38288:43:0;;;;;;;;-1:-1:-1;;;;;38288:43:0;;;;;-1:-1:-1;;;;;38314:15:0;38288:43;;;;;;;;;-1:-1:-1;38265:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;38265:66:0;-1:-1:-1;;;;;;38265:66:0;;;;;;;;;;;38581:11;38277:7;-1:-1:-1;38581:11:0;:::i;:::-;38644:1;38603:24;;;:11;:24;;;;;:29;38559:33;;-1:-1:-1;;;;;;38603:29:0;38599:236;;38661:20;38669:11;35436:12;;-1:-1:-1;35426:22:0;35349:105;38661:20;38657:171;;;38721:97;;;;;;;;38748:18;;-1:-1:-1;;;;;38721:97:0;;;;;;38779:28;;;;-1:-1:-1;;;;;38721:97:0;;;;;;;;;-1:-1:-1;38694:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38694:124:0;-1:-1:-1;;;;;;38694:124:0;;;;;;;;;;;;38657:171;38867:7;38863:2;-1:-1:-1;;;;;38848:27:0;38857:4;-1:-1:-1;;;;;38848:27:0;;;;;;;;;;;38882:42;51852:498;40751:690;40888:4;-1:-1:-1;;;;;40905:13:0;;6041:19;:23;40901:535;;40944:72;;-1:-1:-1;;;40944:72:0;;-1:-1:-1;;;;;40944:36:0;;;;;:72;;26266:10;;40995:4;;41001:7;;41010:5;;40944:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40944:72:0;;;;;;;;-1:-1:-1;;40944:72:0;;;;;;;;;;;;:::i;:::-;;;40931:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41175:13:0;;41171:215;;41208:61;;-1:-1:-1;;;41208:61:0;;;;;;;:::i;41171:215::-;41354:6;41348:13;41339:6;41335:2;41331:15;41324:38;40931:464;-1:-1:-1;;;;;;41066:55:0;-1:-1:-1;;;41066:55:0;;-1:-1:-1;41059:62:0;;40901:535;-1:-1:-1;41424:4:0;40751:690;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;:::-;1134:39;993:186;-1:-1:-1;;;993:186:1:o;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;-1:-1:-1;;;;;2201:6:1;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;-1:-1:-1;;;;;3244:2:1;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:180::-;3835:6;3888:2;3876:9;3867:7;3863:23;3859:32;3856:52;;;3904:1;3901;3894:12;3856:52;-1:-1:-1;3927:23:1;;3776:180;-1:-1:-1;3776:180:1:o;3961:245::-;4019:6;4072:2;4060:9;4051:7;4047:23;4043:32;4040:52;;;4088:1;4085;4078:12;4040:52;4127:9;4114:23;4146:30;4170:5;4146:30;:::i;4211:249::-;4280:6;4333:2;4321:9;4312:7;4308:23;4304:32;4301:52;;;4349:1;4346;4339:12;4301:52;4381:9;4375:16;4400:30;4424:5;4400:30;:::i;4465:592::-;4536:6;4544;4597:2;4585:9;4576:7;4572:23;4568:32;4565:52;;;4613:1;4610;4603:12;4565:52;4653:9;4640:23;-1:-1:-1;;;;;4723:2:1;4715:6;4712:14;4709:34;;;4739:1;4736;4729:12;4709:34;4777:6;4766:9;4762:22;4752:32;;4822:7;4815:4;4811:2;4807:13;4803:27;4793:55;;4844:1;4841;4834:12;4793:55;4884:2;4871:16;4910:2;4902:6;4899:14;4896:34;;;4926:1;4923;4916:12;4896:34;4971:7;4966:2;4957:6;4953:2;4949:15;4945:24;4942:37;4939:57;;;4992:1;4989;4982:12;5062:450;5131:6;5184:2;5172:9;5163:7;5159:23;5155:32;5152:52;;;5200:1;5197;5190:12;5152:52;5240:9;5227:23;-1:-1:-1;;;;;5265:6:1;5262:30;5259:50;;;5305:1;5302;5295:12;5259:50;5328:22;;5381:4;5373:13;;5369:27;-1:-1:-1;5359:55:1;;5410:1;5407;5400:12;5359:55;5433:73;5498:7;5493:2;5480:16;5475:2;5471;5467:11;5433:73;:::i;5702:248::-;5770:6;5778;5831:2;5819:9;5810:7;5806:23;5802:32;5799:52;;;5847:1;5844;5837:12;5799:52;-1:-1:-1;;5870:23:1;;;5940:2;5925:18;;;5912:32;;-1:-1:-1;5702:248:1:o;5955:257::-;5996:3;6034:5;6028:12;6061:6;6056:3;6049:19;6077:63;6133:6;6126:4;6121:3;6117:14;6110:4;6103:5;6099:16;6077:63;:::i;:::-;6194:2;6173:15;-1:-1:-1;;6169:29:1;6160:39;;;;6201:4;6156:50;;5955:257;-1:-1:-1;;5955:257:1:o;6217:185::-;6259:3;6297:5;6291:12;6312:52;6357:6;6352:3;6345:4;6338:5;6334:16;6312:52;:::i;:::-;6380:16;;;;;6217:185;-1:-1:-1;;6217:185:1:o;6641:1174::-;6817:3;6846:1;6879:6;6873:13;6909:3;6931:1;6959:9;6955:2;6951:18;6941:28;;7019:2;7008:9;7004:18;7041;7031:61;;7085:4;7077:6;7073:17;7063:27;;7031:61;7111:2;7159;7151:6;7148:14;7128:18;7125:38;7122:165;;;-1:-1:-1;;;7186:33:1;;7242:4;7239:1;7232:15;7272:4;7193:3;7260:17;7122:165;7303:18;7330:104;;;;7448:1;7443:320;;;;7296:467;;7330:104;-1:-1:-1;;7363:24:1;;7351:37;;7408:16;;;;-1:-1:-1;7330:104:1;;7443:320;25189:1;25182:14;;;25226:4;25213:18;;7538:1;7552:165;7566:6;7563:1;7560:13;7552:165;;;7644:14;;7631:11;;;7624:35;7687:16;;;;7581:10;;7552:165;;;7556:3;;7746:6;7741:3;7737:16;7730:23;;7296:467;;;;;;;7779:30;7805:3;7797:6;7779:30;:::i;:::-;7772:37;6641:1174;-1:-1:-1;;;;;6641:1174:1:o;8238:488::-;-1:-1:-1;;;;;8507:15:1;;;8489:34;;8559:15;;8554:2;8539:18;;8532:43;8606:2;8591:18;;8584:34;;;8654:3;8649:2;8634:18;;8627:31;;;8432:4;;8675:45;;8700:19;;8692:6;8675:45;:::i;:::-;8667:53;8238:488;-1:-1:-1;;;;;;8238:488:1:o;9608:219::-;9757:2;9746:9;9739:21;9720:4;9777:44;9817:2;9806:9;9802:18;9794:6;9777:44;:::i;15993:356::-;16195:2;16177:21;;;16214:18;;;16207:30;16273:34;16268:2;16253:18;;16246:62;16340:2;16325:18;;15993:356::o;18571:331::-;18773:2;18755:21;;;18812:1;18792:18;;;18785:29;-1:-1:-1;;;18845:2:1;18830:18;;18823:38;18893:2;18878:18;;18571:331::o;18907:415::-;19109:2;19091:21;;;19148:2;19128:18;;;19121:30;19187:34;19182:2;19167:18;;19160:62;-1:-1:-1;;;19253:2:1;19238:18;;19231:49;19312:3;19297:19;;18907:415::o;22294:355::-;22496:2;22478:21;;;22535:2;22515:18;;;22508:30;22574:33;22569:2;22554:18;;22547:61;22640:2;22625:18;;22294:355::o;25242:253::-;25282:3;-1:-1:-1;;;;;25371:2:1;25368:1;25364:10;25401:2;25398:1;25394:10;25432:3;25428:2;25424:12;25419:3;25416:21;25413:47;;;25440:18;;:::i;:::-;25476:13;;25242:253;-1:-1:-1;;;;25242:253:1:o;25500:128::-;25540:3;25571:1;25567:6;25564:1;25561:13;25558:39;;;25577:18;;:::i;:::-;-1:-1:-1;25613:9:1;;25500:128::o;25633:120::-;25673:1;25699;25689:35;;25704:18;;:::i;:::-;-1:-1:-1;25738:9:1;;25633:120::o;25758:168::-;25798:7;25864:1;25860;25856:6;25852:14;25849:1;25846:21;25841:1;25834:9;25827:17;25823:45;25820:71;;;25871:18;;:::i;:::-;-1:-1:-1;25911:9:1;;25758:168::o;25931:246::-;25971:4;-1:-1:-1;;;;;26084:10:1;;;;26054;;26106:12;;;26103:38;;;26121:18;;:::i;:::-;26158:13;;25931:246;-1:-1:-1;;;25931:246:1:o;26182:125::-;26222:4;26250:1;26247;26244:8;26241:34;;;26255:18;;:::i;:::-;-1:-1:-1;26292:9:1;;26182:125::o;26312:258::-;26384:1;26394:113;26408:6;26405:1;26402:13;26394:113;;;26484:11;;;26478:18;26465:11;;;26458:39;26430:2;26423:10;26394:113;;;26525:6;26522:1;26519:13;26516:48;;;-1:-1:-1;;26560:1:1;26542:16;;26535:27;26312:258::o;26575:136::-;26614:3;26642:5;26632:39;;26651:18;;:::i;:::-;-1:-1:-1;;;26687:18:1;;26575:136::o;26716:380::-;26795:1;26791:12;;;;26838;;;26859:61;;26913:4;26905:6;26901:17;26891:27;;26859:61;26966:2;26958:6;26955:14;26935:18;26932:38;26929:161;;;27012:10;27007:3;27003:20;27000:1;26993:31;27047:4;27044:1;27037:15;27075:4;27072:1;27065:15;26929:161;;26716:380;;;:::o;27101:135::-;27140:3;-1:-1:-1;;27161:17:1;;27158:43;;;27181:18;;:::i;:::-;-1:-1:-1;27228:1:1;27217:13;;27101:135::o;27241:112::-;27273:1;27299;27289:35;;27304:18;;:::i;:::-;-1:-1:-1;27338:9:1;;27241:112::o;27358:127::-;27419:10;27414:3;27410:20;27407:1;27400:31;27450:4;27447:1;27440:15;27474:4;27471:1;27464:15;27490:127;27551:10;27546:3;27542:20;27539:1;27532:31;27582:4;27579:1;27572:15;27606:4;27603:1;27596:15;27622:127;27683:10;27678:3;27674:20;27671:1;27664:31;27714:4;27711:1;27704:15;27738:4;27735:1;27728:15;27754:127;27815:10;27810:3;27806:20;27803:1;27796:31;27846:4;27843:1;27836:15;27870:4;27867:1;27860:15;27886:131;-1:-1:-1;;;;;;27960:32:1;;27950:43;;27940:71;;28007:1;28004;27997:12
Swarm Source
ipfs://021bcff9321e0a1672d4289a894bbc1c3ca48935ed6e10b02c3ce4b0dc50a1bc
Loading...
Loading
Loading...
Loading
[ 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.