Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,888 PA
Holders
752
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 PALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ProofAccessPass
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-24 */ /* _______ ______ ______ _______ | \ / \ / \ | \ | $$$$$$$\ ______ ______ ______ | $$$$$$\ | $$$$$$\ _______ _______ ______ _______ _______ | $$$$$$$\ ______ _______ _______ | $$__/ $$ / \ / \ / \ | $$_ \$$ | $$__| $$ / \ / \ / \ / \ / \ | $$__/ $$| \ / \ / \ | $$ $$| $$$$$$\| $$$$$$\| $$$$$$\| $$ \ | $$ $$| $$$$$$$| $$$$$$$| $$$$$$\| $$$$$$$| $$$$$$$ | $$ $$ \$$$$$$\| $$$$$$$| $$$$$$$ | $$$$$$$ | $$ \$$| $$ | $$| $$ | $$| $$$$ | $$$$$$$$| $$ | $$ | $$ $$ \$$ \ \$$ \ | $$$$$$$ / $$ \$$ \ \$$ \ | $$ | $$ | $$__/ $$| $$__/ $$| $$ | $$ | $$| $$_____ | $$_____ | $$$$$$$$ _\$$$$$$\ _\$$$$$$\ | $$ | $$$$$$$ _\$$$$$$\ _\$$$$$$\ | $$ | $$ \$$ $$ \$$ $$| $$ | $$ | $$ \$$ \ \$$ \ \$$ \| $$| $$ | $$ \$$ $$| $$| $$ \$$ \$$ \$$$$$$ \$$$$$$ \$$ \$$ \$$ \$$$$$$$ \$$$$$$$ \$$$$$$$ \$$$$$$$ \$$$$$$$ \$$ \$$$$$$$ \$$$$$$$ \$$$$$$$ */ // File: @openzeppelin/contracts/utils/Strings.sol // SPDX-License-Identifier: MIT // 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/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: @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: @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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // 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: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/ProofA.sol pragma solidity ^0.8.4; contract ProofAccessPass is Ownable, ERC721A { using Strings for uint256; uint256 public start; // Start time uint256 public price; // Price of each tokens uint256 public collectionSize; // Total collection size uint256 public maxBatchSize; // Total max mint per tx allowed uint256 public saleLimit; // Stop limit for current minting phase uint256 public maxPerWallet; // Max number of mints a wallet can hold and still mint uint256 public maxPerWalletWhitelist; // Max number of mints a wallet can hold and still mint while whitelisted string public baseTokenURI; // Placeholder during mint string public revealedTokenURI; // Revealed URI bool public isPaused; // Pauses contract mapping(address => bool) public whitelisted; /** * @notice Checks if the msg.sender is a contract or a proxy */ modifier notContract() { require(!_isContract(msg.sender), 'contract not allowed'); require(msg.sender == tx.origin, 'proxy contract not allowed'); _; } modifier pausable() { require(!isPaused, 'public actions are paused'); _; } /** * @notice Checks if address is a contract * @dev It prevents contract from being targeted */ function _isContract(address addr) internal view returns (bool) { uint256 size; assembly { size := extcodesize(addr) } return size > 0; } /** @notice Public mint day after whitelist */ function publicMint() external payable notContract pausable { // Check ethereum paid uint256 mintAmount = msg.value / price; // Check for whitelist to bypass start date if (start > block.timestamp) { if (whitelisted[msg.sender] != true) { require( start <= block.timestamp, 'Mint: Public sale not yet started, bud.' ); } else { // Enforce max wallet rule for whitelist uint256 balance = balanceOf(msg.sender); if (balance + mintAmount > maxPerWalletWhitelist) { uint256 over = (balance + mintAmount) - maxPerWalletWhitelist; safeTransferETH(msg.sender, over * price); mintAmount = maxPerWalletWhitelist - balance; } } } else { uint256 balance = balanceOf(msg.sender); if (balance + mintAmount > maxPerWallet) { uint256 over = (balance + mintAmount) - maxPerWallet; safeTransferETH(msg.sender, over * price); mintAmount = maxPerWallet - balance; } } if (totalSupply() + mintAmount > saleLimit && saleLimit < collectionSize) { uint256 over = (totalSupply() + mintAmount) - saleLimit; safeTransferETH(msg.sender, over * price); mintAmount = saleLimit - totalSupply(); // Last person gets the rest. } if (totalSupply() + mintAmount > collectionSize && saleLimit >= collectionSize) { uint256 over = (totalSupply() + mintAmount) - collectionSize; safeTransferETH(msg.sender, over * price); mintAmount = collectionSize - totalSupply(); // Last person gets the rest. } require(mintAmount <= maxBatchSize); require(mintAmount > 0, 'Mint: Can not mint 0 fren.'); _safeMint(msg.sender, mintAmount); } function burn(uint256 tokenId) external { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); require(isApprovedOrOwner, "Not approved"); _burn(tokenId); } /** @notice Gift mints after all minted */ function mint(address to, uint256 amount) external onlyOwner { require( totalSupply() + amount <= collectionSize, 'Mint: Bruh you are overminting.' ); _safeMint(to, amount); } /** @notice Set Start Time */ function setStart(uint256 time) external onlyOwner { start = time; } /** @notice Set Base URI */ function setBaseTokenURI(string memory uri) external onlyOwner { baseTokenURI = uri; } /** @notice Whitelist User */ function whitelistUser(address _user) public onlyOwner { whitelisted[_user] = true; } /** @notice Whitelist Users Bulk */ function addBulkWhitelistUsers(address[] memory _users) public onlyOwner { for (uint256 i = 0; i < _users.length; i++) { whitelisted[_users[i]] = true; } } /** @notice Remove User from Whitelist */ function removeWhitelistUser(address _user) public onlyOwner { whitelisted[_user] = false; } /** @notice Remove Bulk Users from Whitelist */ function removeBulkWhitelistUser(address[] memory _users) public onlyOwner { for (uint256 i = 0; i < _users.length; i++) { whitelisted[_users[i]] = false; } } /** @notice Set Sale Limit */ function setSaleLimit(uint256 _saleLimit) external onlyOwner { require(_saleLimit <= collectionSize); saleLimit = _saleLimit; } /** @notice Set Max Per Wallet*/ function setMaxPerWallet(uint256 _walletLimit) external onlyOwner { maxPerWallet = _walletLimit; } /** @notice Set Max Per Wallet*/ function setMaxPerWalletWhitelist(uint256 _walletLimit) external onlyOwner { maxPerWalletWhitelist = _walletLimit; } /** @notice Set Max Batch Size*/ function setMaxBatchSize(uint256 _maxBatchSize) external onlyOwner { maxBatchSize = _maxBatchSize; } /** @notice Set Reveal URI */ function setRevealedTokenUri(string memory uri) external onlyOwner { revealedTokenURI = uri; } /** @notice Set Base URI */ function setBaseTokenUri(string memory uri) external onlyOwner { baseTokenURI = uri; } /** @notice Set Price */ function setPrice(uint256 newPrice) external onlyOwner { price = newPrice; } /** @notice Set isPaused Ethereum */ function setIsPaused(bool _isPaused) external onlyOwner { isPaused = _isPaused; } /** @notice Withdraw All Ethereum */ function withdrawAll(address to) external onlyOwner { uint256 balance = address(this).balance; safeTransferETH(to, balance); } /** Utility Function */ function safeTransferETH(address to, uint256 value) internal { (bool success, ) = to.call{value: value}(new bytes(0)); require(success, 'TransferHelper: ETH_TRANSFER_FAILED'); } function getCollectionSize() external view returns (uint256) { return collectionSize; } /** @notice Image URI */ function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) { require(_exists(tokenId), 'URI: Token does not exist'); // Convert string to bytes so we can check if it's empty or not. return bytes(revealedTokenURI).length > 0 ? string(abi.encodePacked(revealedTokenURI, tokenId.toString())) : baseTokenURI; } /** @notice initialize contract */ constructor( string memory _name, string memory _symbol, uint256 _maxBatchSize, uint256 _collectionSize, string memory _baseTokenURI ) ERC721A(_name, _symbol) { baseTokenURI = _baseTokenURI; maxBatchSize = _maxBatchSize; collectionSize = _collectionSize; start = 1643127258; price = 0.03 ether; saleLimit = _collectionSize; maxPerWallet = 500; maxPerWalletWhitelist = 10; //only for whitelist presale isPaused = false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_maxBatchSize","type":"uint256"},{"internalType":"uint256","name":"_collectionSize","type":"uint256"},{"internalType":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addBulkWhitelistUsers","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":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCollectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"removeBulkWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealedTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPaused","type":"bool"}],"name":"setIsPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBatchSize","type":"uint256"}],"name":"setMaxBatchSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_walletLimit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_walletLimit","type":"uint256"}],"name":"setMaxPerWalletWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setRevealedTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleLimit","type":"uint256"}],"name":"setSaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002bd638038062002bd6833981016040819052620000349162000278565b84846200004133620000cb565b8151620000569060039060208501906200011b565b5080516200006c9060049060208401906200011b565b506001805550508051620000889060109060208401906200011b565b5050600c91909155600b8190556361f021da600955666a94d74f430000600a908155600d919091556101f4600e55600f5550506012805460ff1916905562000370565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000129906200031d565b90600052602060002090601f0160209004810192826200014d576000855562000198565b82601f106200016857805160ff191683800117855562000198565b8280016001018555821562000198579182015b82811115620001985782518255916020019190600101906200017b565b50620001a6929150620001aa565b5090565b5b80821115620001a65760008155600101620001ab565b600082601f830112620001d357600080fd5b81516001600160401b0380821115620001f057620001f06200035a565b604051601f8301601f19908116603f011681019082821181831017156200021b576200021b6200035a565b816040528381526020925086838588010111156200023857600080fd5b600091505b838210156200025c57858201830151818301840152908201906200023d565b838211156200026e5760008385830101525b9695505050505050565b600080600080600060a086880312156200029157600080fd5b85516001600160401b0380821115620002a957600080fd5b620002b789838a01620001c1565b96506020880151915080821115620002ce57600080fd5b620002dc89838a01620001c1565b9550604088015194506060880151935060808801519150808211156200030157600080fd5b506200031088828901620001c1565b9150509295509295909350565b600181811c908216806200033257607f821691505b602082108114156200035457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61285680620003806000396000f3fe6080604052600436106102885760003560e01c8063715018a61161015a578063c5149ca8116100c1578063de09af621161007a578063de09af6214610734578063e268e4d314610754578063e985e9c514610774578063f2fde38b146107bd578063f6a03ebf146107dd578063fa09e630146107fd57600080fd5b8063c5149ca81461067a578063c6baf9171461068f578063c87b56dd146106af578063d547cfb7146106cf578063d87d6bd5146106e4578063d936547e1461070457600080fd5b806395d89b411161011357806395d89b41146105df578063a035b1fe146105f4578063a22cb4651461060a578063b187bd261461062a578063b88d4fde14610644578063be9a65551461066457600080fd5b8063715018a6146105615780637155c1ea146105765780637e26639f1461058b5780638da5cb5b146105a157806391b7f5ed146105bf57806395652cfa146103df57600080fd5b806330cc7ae0116101fe57806345c0f533116101b757806345c0f533146104ab5780634a4c560d146104c15780635b69efce146104e15780636352211e14610501578063708ef9061461052157806370a082311461054157600080fd5b806330cc7ae0146103ff57806336a4e19b1461041f57806340c10f191461043557806342842e0e1461045557806342966c6814610475578063453c23101461049557600080fd5b806323b872dd1161025057806323b872dd14610361578063240976bf1461038157806326092b83146103a15780632913daa0146103a95780632b26a6bf146103bf57806330176e13146103df57600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c57806318160ddd1461033e575b600080fd5b34801561029957600080fd5b506102ad6102a836600461243f565b61081d565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d761086f565b6040516102b99190612622565b3480156102f057600080fd5b506103046102ff3660046124c1565b610901565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c610337366004612347565b610945565b005b34801561034a57600080fd5b506103536109d3565b6040519081526020016102b9565b34801561036d57600080fd5b5061033c61037c366004612266565b6109e1565b34801561038d57600080fd5b5061033c61039c366004612424565b6109ec565b61033c610a32565b3480156103b557600080fd5b50610353600c5481565b3480156103cb57600080fd5b5061033c6103da3660046124c1565b610de9565b3480156103eb57600080fd5b5061033c6103fa366004612479565b610e18565b34801561040b57600080fd5b5061033c61041a366004612211565b610e59565b34801561042b57600080fd5b50610353600f5481565b34801561044157600080fd5b5061033c610450366004612347565b610ea4565b34801561046157600080fd5b5061033c610470366004612266565b610f3c565b34801561048157600080fd5b5061033c6104903660046124c1565b610f57565b3480156104a157600080fd5b50610353600e5481565b3480156104b757600080fd5b50610353600b5481565b3480156104cd57600080fd5b5061033c6104dc366004612211565b610ff2565b3480156104ed57600080fd5b5061033c6104fc366004612371565b611040565b34801561050d57600080fd5b5061030461051c3660046124c1565b6110d2565b34801561052d57600080fd5b5061033c61053c366004612371565b6110e4565b34801561054d57600080fd5b5061035361055c366004612211565b611176565b34801561056d57600080fd5b5061033c6111c4565b34801561058257600080fd5b50600b54610353565b34801561059757600080fd5b50610353600d5481565b3480156105ad57600080fd5b506000546001600160a01b0316610304565b3480156105cb57600080fd5b5061033c6105da3660046124c1565b6111fa565b3480156105eb57600080fd5b506102d7611229565b34801561060057600080fd5b50610353600a5481565b34801561061657600080fd5b5061033c61062536600461231d565b611238565b34801561063657600080fd5b506012546102ad9060ff1681565b34801561065057600080fd5b5061033c61065f3660046122a2565b6112ce565b34801561067057600080fd5b5061035360095481565b34801561068657600080fd5b506102d761131f565b34801561069b57600080fd5b5061033c6106aa3660046124c1565b6113ad565b3480156106bb57600080fd5b506102d76106ca3660046124c1565b6113dc565b3480156106db57600080fd5b506102d761150a565b3480156106f057600080fd5b5061033c6106ff3660046124c1565b611517565b34801561071057600080fd5b506102ad61071f366004612211565b60136020526000908152604090205460ff1681565b34801561074057600080fd5b5061033c61074f366004612479565b611555565b34801561076057600080fd5b5061033c61076f3660046124c1565b611592565b34801561078057600080fd5b506102ad61078f366004612233565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107c957600080fd5b5061033c6107d8366004612211565b6115c1565b3480156107e957600080fd5b5061033c6107f83660046124c1565b611659565b34801561080957600080fd5b5061033c610818366004612211565b611688565b60006001600160e01b031982166380ac58cd60e01b148061084e57506001600160e01b03198216635b5e139f60e01b145b8061086957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461087e90612728565b80601f01602080910402602001604051908101604052809291908181526020018280546108aa90612728565b80156108f75780601f106108cc576101008083540402835291602001916108f7565b820191906000526020600020905b8154815290600101906020018083116108da57829003601f168201915b5050505050905090565b600061090c826116bd565b610929576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610950826110d2565b9050806001600160a01b0316836001600160a01b031614156109855760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109a557506109a3813361078f565b155b156109c3576040516367d9dca160e11b815260040160405180910390fd5b6109ce8383836116f6565b505050565b600254600154036000190190565b6109ce838383611752565b6000546001600160a01b03163314610a1f5760405162461bcd60e51b8152600401610a1690612635565b60405180910390fd5b6012805460ff1916911515919091179055565b333b15610a785760405162461bcd60e51b815260206004820152601460248201527318dbdb9d1c9858dd081b9bdd08185b1b1bddd95960621b6044820152606401610a16565b333214610ac75760405162461bcd60e51b815260206004820152601a60248201527f70726f787920636f6e7472616374206e6f7420616c6c6f7765640000000000006044820152606401610a16565b60125460ff1615610b1a5760405162461bcd60e51b815260206004820152601960248201527f7075626c696320616374696f6e732061726520706175736564000000000000006044820152606401610a16565b6000600a5434610b2a91906126b2565b9050426009541115610c25573360009081526013602052604090205460ff161515600114610bb957426009541115610bb45760405162461bcd60e51b815260206004820152602760248201527f4d696e743a205075626c69632073616c65206e6f742079657420737461727465604482015266321610313ab21760c91b6064820152608401610a16565b610c88565b6000610bc433611176565b600f54909150610bd4838361269a565b1115610c1f57600f54600090610bea848461269a565b610bf491906126e5565b9050610c0d33600a5483610c0891906126c6565b61192e565b81600f54610c1b91906126e5565b9250505b50610c88565b6000610c3033611176565b600e54909150610c40838361269a565b1115610c8657600e54600090610c56848461269a565b610c6091906126e5565b9050610c7433600a5483610c0891906126c6565b81600e54610c8291906126e5565b9250505b505b600d5481610c946109d3565b610c9e919061269a565b118015610cae5750600b54600d54105b15610d02576000600d5482610cc16109d3565b610ccb919061269a565b610cd591906126e5565b9050610ce933600a5483610c0891906126c6565b610cf16109d3565b600d54610cfe91906126e5565b9150505b600b5481610d0e6109d3565b610d18919061269a565b118015610d295750600b54600d5410155b15610d7d576000600b5482610d3c6109d3565b610d46919061269a565b610d5091906126e5565b9050610d6433600a5483610c0891906126c6565b610d6c6109d3565b600b54610d7991906126e5565b9150505b600c54811115610d8c57600080fd5b60008111610ddc5760405162461bcd60e51b815260206004820152601a60248201527f4d696e743a2043616e206e6f74206d696e742030206672656e2e0000000000006044820152606401610a16565b610de633826119f7565b50565b6000546001600160a01b03163314610e135760405162461bcd60e51b8152600401610a1690612635565b600c55565b6000546001600160a01b03163314610e425760405162461bcd60e51b8152600401610a1690612635565b8051610e559060109060208401906120f5565b5050565b6000546001600160a01b03163314610e835760405162461bcd60e51b8152600401610a1690612635565b6001600160a01b03166000908152601360205260409020805460ff19169055565b6000546001600160a01b03163314610ece5760405162461bcd60e51b8152600401610a1690612635565b600b5481610eda6109d3565b610ee4919061269a565b1115610f325760405162461bcd60e51b815260206004820152601f60248201527f4d696e743a204272756820796f7520617265206f7665726d696e74696e672e006044820152606401610a16565b610e5582826119f7565b6109ce838383604051806020016040528060008152506112ce565b6000610f6282611a11565b80519091506000906001600160a01b0316336001600160a01b03161480610f9057508151610f90903361078f565b80610fab575033610fa084610901565b6001600160a01b0316145b905080610fe95760405162461bcd60e51b815260206004820152600c60248201526b139bdd08185c1c1c9bdd995960a21b6044820152606401610a16565b6109ce83611b38565b6000546001600160a01b0316331461101c5760405162461bcd60e51b8152600401610a1690612635565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6000546001600160a01b0316331461106a5760405162461bcd60e51b8152600401610a1690612635565b60005b8151811015610e555760016013600084848151811061108e5761108e6127be565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110ca81612763565b91505061106d565b60006110dd82611a11565b5192915050565b6000546001600160a01b0316331461110e5760405162461bcd60e51b8152600401610a1690612635565b60005b8151811015610e5557600060136000848481518110611132576111326127be565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061116e81612763565b915050611111565b60006001600160a01b03821661119f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b031633146111ee5760405162461bcd60e51b8152600401610a1690612635565b6111f86000611b43565b565b6000546001600160a01b031633146112245760405162461bcd60e51b8152600401610a1690612635565b600a55565b60606004805461087e90612728565b6001600160a01b0382163314156112625760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112d9848484611752565b6001600160a01b0383163b151580156112fb57506112f984848484611b93565b155b15611319576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6011805461132c90612728565b80601f016020809104026020016040519081016040528092919081815260200182805461135890612728565b80156113a55780601f1061137a576101008083540402835291602001916113a5565b820191906000526020600020905b81548152906001019060200180831161138857829003601f168201915b505050505081565b6000546001600160a01b031633146113d75760405162461bcd60e51b8152600401610a1690612635565b600f55565b60606113e7826116bd565b6114335760405162461bcd60e51b815260206004820152601960248201527f5552493a20546f6b656e20646f6573206e6f74206578697374000000000000006044820152606401610a16565b60006011805461144290612728565b9050116114d9576010805461145690612728565b80601f016020809104026020016040519081016040528092919081815260200182805461148290612728565b80156114cf5780601f106114a4576101008083540402835291602001916114cf565b820191906000526020600020905b8154815290600101906020018083116114b257829003601f168201915b5050505050610869565b60116114e483611c8b565b6040516020016114f592919061253e565b60405160208183030381529060405292915050565b6010805461132c90612728565b6000546001600160a01b031633146115415760405162461bcd60e51b8152600401610a1690612635565b600b5481111561155057600080fd5b600d55565b6000546001600160a01b0316331461157f5760405162461bcd60e51b8152600401610a1690612635565b8051610e559060119060208401906120f5565b6000546001600160a01b031633146115bc5760405162461bcd60e51b8152600401610a1690612635565b600e55565b6000546001600160a01b031633146115eb5760405162461bcd60e51b8152600401610a1690612635565b6001600160a01b0381166116505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a16565b610de681611b43565b6000546001600160a01b031633146116835760405162461bcd60e51b8152600401610a1690612635565b600955565b6000546001600160a01b031633146116b25760405162461bcd60e51b8152600401610a1690612635565b47610e55828261192e565b6000816001111580156116d1575060015482105b8015610869575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061175d82611a11565b9050836001600160a01b031681600001516001600160a01b0316146117945760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806117b257506117b2853361078f565b806117cd5750336117c284610901565b6001600160a01b0316145b9050806117ed57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661181457604051633a954ecd60e21b815260040160405180910390fd5b611820600084876116f6565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166118f45760015482146118f457805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061280183398151915260405160405180910390a45b5050505050565b604080516000808252602082019092526001600160a01b0384169083906040516119589190612522565b60006040518083038185875af1925050503d8060008114611995576040519150601f19603f3d011682016040523d82523d6000602084013e61199a565b606091505b50509050806109ce5760405162461bcd60e51b815260206004820152602360248201527f5472616e7366657248656c7065723a204554485f5452414e534645525f46414960448201526213115160ea1b6064820152608401610a16565b610e55828260405180602001604052806000815250611d88565b60408051606081018252600080825260208201819052918101919091528180600111158015611a41575060015481105b15611b1f57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b1d5780516001600160a01b031615611ab4579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b18579392505050565b611ab4565b505b604051636f96cda160e11b815260040160405180910390fd5b610de6816000611d95565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bc89033908990889088906004016125e5565b602060405180830381600087803b158015611be257600080fd5b505af1925050508015611c12575060408051601f3d908101601f19168201909252611c0f9181019061245c565b60015b611c6d573d808015611c40576040519150601f19603f3d011682016040523d82523d6000602084013e611c45565b606091505b508051611c65576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611caf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cd95780611cc381612763565b9150611cd29050600a836126b2565b9150611cb3565b6000816001600160401b03811115611cf357611cf36127d4565b6040519080825280601f01601f191660200182016040528015611d1d576020820181803683370190505b5090505b8415611c8357611d326001836126e5565b9150611d3f600a8661277e565b611d4a90603061269a565b60f81b818381518110611d5f57611d5f6127be565b60200101906001600160f81b031916908160001a905350611d81600a866126b2565b9450611d21565b6109ce8383836001611f49565b6000611da083611a11565b80519091508215611e06576000336001600160a01b0383161480611dc95750611dc9823361078f565b80611de4575033611dd986610901565b6001600160a01b0316145b905080611e0457604051632ce44b5f60e11b815260040160405180910390fd5b505b611e12600085836116f6565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611f10576001548214611f1057805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612801833981519152908390a450506002805460010190555050565b6001546001600160a01b038516611f7257604051622e076360e81b815260040160405180910390fd5b83611f905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561204157506001600160a01b0387163b15155b156120b8575b60405182906001600160a01b03891690600090600080516020612801833981519152908290a46120806000888480600101955088611b93565b61209d576040516368d2bf6b60e11b815260040160405180910390fd5b808214156120475782600154146120b357600080fd5b6120ec565b5b6040516001830192906001600160a01b03891690600090600080516020612801833981519152908290a4808214156120b9575b50600155611927565b82805461210190612728565b90600052602060002090601f0160209004810192826121235760008555612169565b82601f1061213c57805160ff1916838001178555612169565b82800160010185558215612169579182015b8281111561216957825182559160200191906001019061214e565b50612175929150612179565b5090565b5b80821115612175576000815560010161217a565b60006001600160401b038311156121a7576121a76127d4565b6121ba601f8401601f191660200161266a565b90508281528383830111156121ce57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146121fc57600080fd5b919050565b803580151581146121fc57600080fd5b60006020828403121561222357600080fd5b61222c826121e5565b9392505050565b6000806040838503121561224657600080fd5b61224f836121e5565b915061225d602084016121e5565b90509250929050565b60008060006060848603121561227b57600080fd5b612284846121e5565b9250612292602085016121e5565b9150604084013590509250925092565b600080600080608085870312156122b857600080fd5b6122c1856121e5565b93506122cf602086016121e5565b92506040850135915060608501356001600160401b038111156122f157600080fd5b8501601f8101871361230257600080fd5b6123118782356020840161218e565b91505092959194509250565b6000806040838503121561233057600080fd5b612339836121e5565b915061225d60208401612201565b6000806040838503121561235a57600080fd5b612363836121e5565b946020939093013593505050565b6000602080838503121561238457600080fd5b82356001600160401b038082111561239b57600080fd5b818501915085601f8301126123af57600080fd5b8135818111156123c1576123c16127d4565b8060051b91506123d284830161266a565b8181528481019084860184860187018a10156123ed57600080fd5b600095505b8386101561241757612403816121e5565b8352600195909501949186019186016123f2565b5098975050505050505050565b60006020828403121561243657600080fd5b61222c82612201565b60006020828403121561245157600080fd5b813561222c816127ea565b60006020828403121561246e57600080fd5b815161222c816127ea565b60006020828403121561248b57600080fd5b81356001600160401b038111156124a157600080fd5b8201601f810184136124b257600080fd5b611c838482356020840161218e565b6000602082840312156124d357600080fd5b5035919050565b600081518084526124f28160208601602086016126fc565b601f01601f19169290920160200192915050565b600081516125188185602086016126fc565b9290920192915050565b600082516125348184602087016126fc565b9190910192915050565b600080845481600182811c91508083168061255a57607f831692505b602080841082141561257a57634e487b7160e01b86526022600452602486fd5b81801561258e576001811461259f576125cc565b60ff198616895284890196506125cc565b60008b81526020902060005b868110156125c45781548b8201529085019083016125ab565b505084890196505b5050505050506125dc8185612506565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612618908301846124da565b9695505050505050565b60208152600061222c60208301846124da565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612692576126926127d4565b604052919050565b600082198211156126ad576126ad612792565b500190565b6000826126c1576126c16127a8565b500490565b60008160001904831182151516156126e0576126e0612792565b500290565b6000828210156126f7576126f7612792565b500390565b60005b838110156127175781810151838201526020016126ff565b838111156113195750506000910152565b600181811c9082168061273c57607f821691505b6020821081141561275d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561277757612777612792565b5060010190565b60008261278d5761278d6127a8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610de657600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c49c7fab6add09d594c3715964e0bdf817bb4c3ba4bf42cc5eae2942939643b964736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000b480000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001150726f6f66204163636573732050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000250410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d584a7a55796a767a32777a524b5a6e656b53536f6e7038637a797438416a327332575a724567527165384b6b0000000000000000000000
Deployed Bytecode
0x6080604052600436106102885760003560e01c8063715018a61161015a578063c5149ca8116100c1578063de09af621161007a578063de09af6214610734578063e268e4d314610754578063e985e9c514610774578063f2fde38b146107bd578063f6a03ebf146107dd578063fa09e630146107fd57600080fd5b8063c5149ca81461067a578063c6baf9171461068f578063c87b56dd146106af578063d547cfb7146106cf578063d87d6bd5146106e4578063d936547e1461070457600080fd5b806395d89b411161011357806395d89b41146105df578063a035b1fe146105f4578063a22cb4651461060a578063b187bd261461062a578063b88d4fde14610644578063be9a65551461066457600080fd5b8063715018a6146105615780637155c1ea146105765780637e26639f1461058b5780638da5cb5b146105a157806391b7f5ed146105bf57806395652cfa146103df57600080fd5b806330cc7ae0116101fe57806345c0f533116101b757806345c0f533146104ab5780634a4c560d146104c15780635b69efce146104e15780636352211e14610501578063708ef9061461052157806370a082311461054157600080fd5b806330cc7ae0146103ff57806336a4e19b1461041f57806340c10f191461043557806342842e0e1461045557806342966c6814610475578063453c23101461049557600080fd5b806323b872dd1161025057806323b872dd14610361578063240976bf1461038157806326092b83146103a15780632913daa0146103a95780632b26a6bf146103bf57806330176e13146103df57600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c57806318160ddd1461033e575b600080fd5b34801561029957600080fd5b506102ad6102a836600461243f565b61081d565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d761086f565b6040516102b99190612622565b3480156102f057600080fd5b506103046102ff3660046124c1565b610901565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c610337366004612347565b610945565b005b34801561034a57600080fd5b506103536109d3565b6040519081526020016102b9565b34801561036d57600080fd5b5061033c61037c366004612266565b6109e1565b34801561038d57600080fd5b5061033c61039c366004612424565b6109ec565b61033c610a32565b3480156103b557600080fd5b50610353600c5481565b3480156103cb57600080fd5b5061033c6103da3660046124c1565b610de9565b3480156103eb57600080fd5b5061033c6103fa366004612479565b610e18565b34801561040b57600080fd5b5061033c61041a366004612211565b610e59565b34801561042b57600080fd5b50610353600f5481565b34801561044157600080fd5b5061033c610450366004612347565b610ea4565b34801561046157600080fd5b5061033c610470366004612266565b610f3c565b34801561048157600080fd5b5061033c6104903660046124c1565b610f57565b3480156104a157600080fd5b50610353600e5481565b3480156104b757600080fd5b50610353600b5481565b3480156104cd57600080fd5b5061033c6104dc366004612211565b610ff2565b3480156104ed57600080fd5b5061033c6104fc366004612371565b611040565b34801561050d57600080fd5b5061030461051c3660046124c1565b6110d2565b34801561052d57600080fd5b5061033c61053c366004612371565b6110e4565b34801561054d57600080fd5b5061035361055c366004612211565b611176565b34801561056d57600080fd5b5061033c6111c4565b34801561058257600080fd5b50600b54610353565b34801561059757600080fd5b50610353600d5481565b3480156105ad57600080fd5b506000546001600160a01b0316610304565b3480156105cb57600080fd5b5061033c6105da3660046124c1565b6111fa565b3480156105eb57600080fd5b506102d7611229565b34801561060057600080fd5b50610353600a5481565b34801561061657600080fd5b5061033c61062536600461231d565b611238565b34801561063657600080fd5b506012546102ad9060ff1681565b34801561065057600080fd5b5061033c61065f3660046122a2565b6112ce565b34801561067057600080fd5b5061035360095481565b34801561068657600080fd5b506102d761131f565b34801561069b57600080fd5b5061033c6106aa3660046124c1565b6113ad565b3480156106bb57600080fd5b506102d76106ca3660046124c1565b6113dc565b3480156106db57600080fd5b506102d761150a565b3480156106f057600080fd5b5061033c6106ff3660046124c1565b611517565b34801561071057600080fd5b506102ad61071f366004612211565b60136020526000908152604090205460ff1681565b34801561074057600080fd5b5061033c61074f366004612479565b611555565b34801561076057600080fd5b5061033c61076f3660046124c1565b611592565b34801561078057600080fd5b506102ad61078f366004612233565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107c957600080fd5b5061033c6107d8366004612211565b6115c1565b3480156107e957600080fd5b5061033c6107f83660046124c1565b611659565b34801561080957600080fd5b5061033c610818366004612211565b611688565b60006001600160e01b031982166380ac58cd60e01b148061084e57506001600160e01b03198216635b5e139f60e01b145b8061086957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461087e90612728565b80601f01602080910402602001604051908101604052809291908181526020018280546108aa90612728565b80156108f75780601f106108cc576101008083540402835291602001916108f7565b820191906000526020600020905b8154815290600101906020018083116108da57829003601f168201915b5050505050905090565b600061090c826116bd565b610929576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610950826110d2565b9050806001600160a01b0316836001600160a01b031614156109855760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109a557506109a3813361078f565b155b156109c3576040516367d9dca160e11b815260040160405180910390fd5b6109ce8383836116f6565b505050565b600254600154036000190190565b6109ce838383611752565b6000546001600160a01b03163314610a1f5760405162461bcd60e51b8152600401610a1690612635565b60405180910390fd5b6012805460ff1916911515919091179055565b333b15610a785760405162461bcd60e51b815260206004820152601460248201527318dbdb9d1c9858dd081b9bdd08185b1b1bddd95960621b6044820152606401610a16565b333214610ac75760405162461bcd60e51b815260206004820152601a60248201527f70726f787920636f6e7472616374206e6f7420616c6c6f7765640000000000006044820152606401610a16565b60125460ff1615610b1a5760405162461bcd60e51b815260206004820152601960248201527f7075626c696320616374696f6e732061726520706175736564000000000000006044820152606401610a16565b6000600a5434610b2a91906126b2565b9050426009541115610c25573360009081526013602052604090205460ff161515600114610bb957426009541115610bb45760405162461bcd60e51b815260206004820152602760248201527f4d696e743a205075626c69632073616c65206e6f742079657420737461727465604482015266321610313ab21760c91b6064820152608401610a16565b610c88565b6000610bc433611176565b600f54909150610bd4838361269a565b1115610c1f57600f54600090610bea848461269a565b610bf491906126e5565b9050610c0d33600a5483610c0891906126c6565b61192e565b81600f54610c1b91906126e5565b9250505b50610c88565b6000610c3033611176565b600e54909150610c40838361269a565b1115610c8657600e54600090610c56848461269a565b610c6091906126e5565b9050610c7433600a5483610c0891906126c6565b81600e54610c8291906126e5565b9250505b505b600d5481610c946109d3565b610c9e919061269a565b118015610cae5750600b54600d54105b15610d02576000600d5482610cc16109d3565b610ccb919061269a565b610cd591906126e5565b9050610ce933600a5483610c0891906126c6565b610cf16109d3565b600d54610cfe91906126e5565b9150505b600b5481610d0e6109d3565b610d18919061269a565b118015610d295750600b54600d5410155b15610d7d576000600b5482610d3c6109d3565b610d46919061269a565b610d5091906126e5565b9050610d6433600a5483610c0891906126c6565b610d6c6109d3565b600b54610d7991906126e5565b9150505b600c54811115610d8c57600080fd5b60008111610ddc5760405162461bcd60e51b815260206004820152601a60248201527f4d696e743a2043616e206e6f74206d696e742030206672656e2e0000000000006044820152606401610a16565b610de633826119f7565b50565b6000546001600160a01b03163314610e135760405162461bcd60e51b8152600401610a1690612635565b600c55565b6000546001600160a01b03163314610e425760405162461bcd60e51b8152600401610a1690612635565b8051610e559060109060208401906120f5565b5050565b6000546001600160a01b03163314610e835760405162461bcd60e51b8152600401610a1690612635565b6001600160a01b03166000908152601360205260409020805460ff19169055565b6000546001600160a01b03163314610ece5760405162461bcd60e51b8152600401610a1690612635565b600b5481610eda6109d3565b610ee4919061269a565b1115610f325760405162461bcd60e51b815260206004820152601f60248201527f4d696e743a204272756820796f7520617265206f7665726d696e74696e672e006044820152606401610a16565b610e5582826119f7565b6109ce838383604051806020016040528060008152506112ce565b6000610f6282611a11565b80519091506000906001600160a01b0316336001600160a01b03161480610f9057508151610f90903361078f565b80610fab575033610fa084610901565b6001600160a01b0316145b905080610fe95760405162461bcd60e51b815260206004820152600c60248201526b139bdd08185c1c1c9bdd995960a21b6044820152606401610a16565b6109ce83611b38565b6000546001600160a01b0316331461101c5760405162461bcd60e51b8152600401610a1690612635565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6000546001600160a01b0316331461106a5760405162461bcd60e51b8152600401610a1690612635565b60005b8151811015610e555760016013600084848151811061108e5761108e6127be565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110ca81612763565b91505061106d565b60006110dd82611a11565b5192915050565b6000546001600160a01b0316331461110e5760405162461bcd60e51b8152600401610a1690612635565b60005b8151811015610e5557600060136000848481518110611132576111326127be565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061116e81612763565b915050611111565b60006001600160a01b03821661119f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b031633146111ee5760405162461bcd60e51b8152600401610a1690612635565b6111f86000611b43565b565b6000546001600160a01b031633146112245760405162461bcd60e51b8152600401610a1690612635565b600a55565b60606004805461087e90612728565b6001600160a01b0382163314156112625760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112d9848484611752565b6001600160a01b0383163b151580156112fb57506112f984848484611b93565b155b15611319576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6011805461132c90612728565b80601f016020809104026020016040519081016040528092919081815260200182805461135890612728565b80156113a55780601f1061137a576101008083540402835291602001916113a5565b820191906000526020600020905b81548152906001019060200180831161138857829003601f168201915b505050505081565b6000546001600160a01b031633146113d75760405162461bcd60e51b8152600401610a1690612635565b600f55565b60606113e7826116bd565b6114335760405162461bcd60e51b815260206004820152601960248201527f5552493a20546f6b656e20646f6573206e6f74206578697374000000000000006044820152606401610a16565b60006011805461144290612728565b9050116114d9576010805461145690612728565b80601f016020809104026020016040519081016040528092919081815260200182805461148290612728565b80156114cf5780601f106114a4576101008083540402835291602001916114cf565b820191906000526020600020905b8154815290600101906020018083116114b257829003601f168201915b5050505050610869565b60116114e483611c8b565b6040516020016114f592919061253e565b60405160208183030381529060405292915050565b6010805461132c90612728565b6000546001600160a01b031633146115415760405162461bcd60e51b8152600401610a1690612635565b600b5481111561155057600080fd5b600d55565b6000546001600160a01b0316331461157f5760405162461bcd60e51b8152600401610a1690612635565b8051610e559060119060208401906120f5565b6000546001600160a01b031633146115bc5760405162461bcd60e51b8152600401610a1690612635565b600e55565b6000546001600160a01b031633146115eb5760405162461bcd60e51b8152600401610a1690612635565b6001600160a01b0381166116505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a16565b610de681611b43565b6000546001600160a01b031633146116835760405162461bcd60e51b8152600401610a1690612635565b600955565b6000546001600160a01b031633146116b25760405162461bcd60e51b8152600401610a1690612635565b47610e55828261192e565b6000816001111580156116d1575060015482105b8015610869575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061175d82611a11565b9050836001600160a01b031681600001516001600160a01b0316146117945760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806117b257506117b2853361078f565b806117cd5750336117c284610901565b6001600160a01b0316145b9050806117ed57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661181457604051633a954ecd60e21b815260040160405180910390fd5b611820600084876116f6565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166118f45760015482146118f457805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061280183398151915260405160405180910390a45b5050505050565b604080516000808252602082019092526001600160a01b0384169083906040516119589190612522565b60006040518083038185875af1925050503d8060008114611995576040519150601f19603f3d011682016040523d82523d6000602084013e61199a565b606091505b50509050806109ce5760405162461bcd60e51b815260206004820152602360248201527f5472616e7366657248656c7065723a204554485f5452414e534645525f46414960448201526213115160ea1b6064820152608401610a16565b610e55828260405180602001604052806000815250611d88565b60408051606081018252600080825260208201819052918101919091528180600111158015611a41575060015481105b15611b1f57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b1d5780516001600160a01b031615611ab4579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b18579392505050565b611ab4565b505b604051636f96cda160e11b815260040160405180910390fd5b610de6816000611d95565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bc89033908990889088906004016125e5565b602060405180830381600087803b158015611be257600080fd5b505af1925050508015611c12575060408051601f3d908101601f19168201909252611c0f9181019061245c565b60015b611c6d573d808015611c40576040519150601f19603f3d011682016040523d82523d6000602084013e611c45565b606091505b508051611c65576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611caf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cd95780611cc381612763565b9150611cd29050600a836126b2565b9150611cb3565b6000816001600160401b03811115611cf357611cf36127d4565b6040519080825280601f01601f191660200182016040528015611d1d576020820181803683370190505b5090505b8415611c8357611d326001836126e5565b9150611d3f600a8661277e565b611d4a90603061269a565b60f81b818381518110611d5f57611d5f6127be565b60200101906001600160f81b031916908160001a905350611d81600a866126b2565b9450611d21565b6109ce8383836001611f49565b6000611da083611a11565b80519091508215611e06576000336001600160a01b0383161480611dc95750611dc9823361078f565b80611de4575033611dd986610901565b6001600160a01b0316145b905080611e0457604051632ce44b5f60e11b815260040160405180910390fd5b505b611e12600085836116f6565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611f10576001548214611f1057805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612801833981519152908390a450506002805460010190555050565b6001546001600160a01b038516611f7257604051622e076360e81b815260040160405180910390fd5b83611f905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561204157506001600160a01b0387163b15155b156120b8575b60405182906001600160a01b03891690600090600080516020612801833981519152908290a46120806000888480600101955088611b93565b61209d576040516368d2bf6b60e11b815260040160405180910390fd5b808214156120475782600154146120b357600080fd5b6120ec565b5b6040516001830192906001600160a01b03891690600090600080516020612801833981519152908290a4808214156120b9575b50600155611927565b82805461210190612728565b90600052602060002090601f0160209004810192826121235760008555612169565b82601f1061213c57805160ff1916838001178555612169565b82800160010185558215612169579182015b8281111561216957825182559160200191906001019061214e565b50612175929150612179565b5090565b5b80821115612175576000815560010161217a565b60006001600160401b038311156121a7576121a76127d4565b6121ba601f8401601f191660200161266a565b90508281528383830111156121ce57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146121fc57600080fd5b919050565b803580151581146121fc57600080fd5b60006020828403121561222357600080fd5b61222c826121e5565b9392505050565b6000806040838503121561224657600080fd5b61224f836121e5565b915061225d602084016121e5565b90509250929050565b60008060006060848603121561227b57600080fd5b612284846121e5565b9250612292602085016121e5565b9150604084013590509250925092565b600080600080608085870312156122b857600080fd5b6122c1856121e5565b93506122cf602086016121e5565b92506040850135915060608501356001600160401b038111156122f157600080fd5b8501601f8101871361230257600080fd5b6123118782356020840161218e565b91505092959194509250565b6000806040838503121561233057600080fd5b612339836121e5565b915061225d60208401612201565b6000806040838503121561235a57600080fd5b612363836121e5565b946020939093013593505050565b6000602080838503121561238457600080fd5b82356001600160401b038082111561239b57600080fd5b818501915085601f8301126123af57600080fd5b8135818111156123c1576123c16127d4565b8060051b91506123d284830161266a565b8181528481019084860184860187018a10156123ed57600080fd5b600095505b8386101561241757612403816121e5565b8352600195909501949186019186016123f2565b5098975050505050505050565b60006020828403121561243657600080fd5b61222c82612201565b60006020828403121561245157600080fd5b813561222c816127ea565b60006020828403121561246e57600080fd5b815161222c816127ea565b60006020828403121561248b57600080fd5b81356001600160401b038111156124a157600080fd5b8201601f810184136124b257600080fd5b611c838482356020840161218e565b6000602082840312156124d357600080fd5b5035919050565b600081518084526124f28160208601602086016126fc565b601f01601f19169290920160200192915050565b600081516125188185602086016126fc565b9290920192915050565b600082516125348184602087016126fc565b9190910192915050565b600080845481600182811c91508083168061255a57607f831692505b602080841082141561257a57634e487b7160e01b86526022600452602486fd5b81801561258e576001811461259f576125cc565b60ff198616895284890196506125cc565b60008b81526020902060005b868110156125c45781548b8201529085019083016125ab565b505084890196505b5050505050506125dc8185612506565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612618908301846124da565b9695505050505050565b60208152600061222c60208301846124da565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612692576126926127d4565b604052919050565b600082198211156126ad576126ad612792565b500190565b6000826126c1576126c16127a8565b500490565b60008160001904831182151516156126e0576126e0612792565b500290565b6000828210156126f7576126f7612792565b500390565b60005b838110156127175781810151838201526020016126ff565b838111156113195750506000910152565b600181811c9082168061273c57607f821691505b6020821081141561275d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561277757612777612792565b5060010190565b60008261278d5761278d6127a8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610de657600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c49c7fab6add09d594c3715964e0bdf817bb4c3ba4bf42cc5eae2942939643b964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000b480000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001150726f6f66204163636573732050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000250410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d584a7a55796a767a32777a524b5a6e656b53536f6e7038637a797438416a327332575a724567527165384b6b0000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Proof Access Pass
Arg [1] : _symbol (string): PA
Arg [2] : _maxBatchSize (uint256): 10
Arg [3] : _collectionSize (uint256): 2888
Arg [4] : _baseTokenURI (string): ipfs://QmXJzUyjvz2wzRKZnekSSonp8czyt8Aj2s2WZrEgRqe8Kk
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000b48
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [6] : 50726f6f66204163636573732050617373000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [8] : 5041000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [10] : 697066733a2f2f516d584a7a55796a767a32777a524b5a6e656b53536f6e7038
Arg [11] : 637a797438416a327332575a724567527165384b6b0000000000000000000000
Deployed Bytecode Sourcemap
45901:8201:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28476:293;;;;;;;;;;-1:-1:-1;28476:293:0;;;;;:::i;:::-;;:::i;:::-;;;7839:14:1;;7832:22;7814:41;;7802:2;7787:18;28476:293:0;;;;;;;;31493:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32996:204::-;;;;;;;;;;-1:-1:-1;32996:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7126:32:1;;;7108:51;;7096:2;7081:18;32996:204:0;6962:203:1;32559:371:0;;;;;;;;;;-1:-1:-1;32559:371:0;;;;;:::i;:::-;;:::i;:::-;;27749:291;;;;;;;;;;;;;:::i;:::-;;;12295:25:1;;;12283:2;12268:18;27749:291:0;12149:177:1;33861:170:0;;;;;;;;;;-1:-1:-1;33861:170:0;;;;;:::i;:::-;;:::i;52391:95::-;;;;;;;;;;-1:-1:-1;52391:95:0;;;;;:::i;:::-;;:::i;47449:2039::-;;;:::i;46140:27::-;;;;;;;;;;;;;;;;51806:114;;;;;;;;;;-1:-1:-1;51806:114:0;;;;;:::i;:::-;;:::i;50335:100::-;;;;;;;;;;-1:-1:-1;50335:100:0;;;;;:::i;:::-;;:::i;50872:106::-;;;;;;;;;;-1:-1:-1;50872:106:0;;;;;:::i;:::-;;:::i;46368:36::-;;;;;;;;;;;;;;;;49936:233;;;;;;;;;;-1:-1:-1;49936:233:0;;;;;:::i;:::-;;:::i;34102:185::-;;;;;;;;;;-1:-1:-1;34102:185:0;;;;;:::i;:::-;;:::i;49496:384::-;;;;;;;;;;-1:-1:-1;49496:384:0;;;;;:::i;:::-;;:::i;46278:27::-;;;;;;;;;;;;;;;;46079:29;;;;;;;;;;;;;;;;50478:99;;;;;;;;;;-1:-1:-1;50478:99:0;;;;;:::i;:::-;;:::i;50626:191::-;;;;;;;;;;-1:-1:-1;50626:191:0;;;;;:::i;:::-;;:::i;31301:125::-;;;;;;;;;;-1:-1:-1;31301:125:0;;;;;:::i;:::-;;:::i;51039:194::-;;;;;;;;;;-1:-1:-1;51039:194:0;;;;;:::i;:::-;;:::i;28833:206::-;;;;;;;;;;-1:-1:-1;28833:206:0;;;;;:::i;:::-;;:::i;6176:103::-;;;;;;;;;;;;;:::i;52932:101::-;;;;;;;;;;-1:-1:-1;53011:14:0;;52932:101;;46207:24;;;;;;;;;;;;;;;;5525:87;;;;;;;;;;-1:-1:-1;5571:7:0;5598:6;-1:-1:-1;;;;;5598:6:0;5525:87;;52251:90;;;;;;;;;;-1:-1:-1;52251:90:0;;;;;:::i;:::-;;:::i;31662:104::-;;;;;;;;;;;;;:::i;46028:20::-;;;;;;;;;;;;;;;;33272:287;;;;;;;;;;-1:-1:-1;33272:287:0;;;;;:::i;:::-;;:::i;46598:20::-;;;;;;;;;;-1:-1:-1;46598:20:0;;;;;;;;34358:369;;;;;;;;;;-1:-1:-1;34358:369:0;;;;;:::i;:::-;;:::i;45987:20::-;;;;;;;;;;;;;;;;46545:30;;;;;;;;;;;;;:::i;51630:130::-;;;;;;;;;;-1:-1:-1;51630:130:0;;;;;:::i;:::-;;:::i;53071:422::-;;;;;;;;;;-1:-1:-1;53071:422:0;;;;;:::i;:::-;;:::i;46485:26::-;;;;;;;;;;;;;:::i;51276:150::-;;;;;;;;;;-1:-1:-1;51276:150:0;;;;;:::i;:::-;;:::i;46644:43::-;;;;;;;;;;-1:-1:-1;46644:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;51963:108;;;;;;;;;;-1:-1:-1;51963:108:0;;;;;:::i;:::-;;:::i;51472:112::-;;;;;;;;;;-1:-1:-1;51472:112:0;;;;;:::i;:::-;;:::i;33630:164::-;;;;;;;;;;-1:-1:-1;33630:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33751:25:0;;;33727:4;33751:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33630:164;6434:201;;;;;;;;;;-1:-1:-1;6434:201:0;;;;;:::i;:::-;;:::i;50212:82::-;;;;;;;;;;-1:-1:-1;50212:82:0;;;;;:::i;:::-;;:::i;52536:151::-;;;;;;;;;;-1:-1:-1;52536:151:0;;;;;:::i;:::-;;:::i;28476:293::-;28578:4;-1:-1:-1;;;;;;28611:40:0;;-1:-1:-1;;;28611:40:0;;:101;;-1:-1:-1;;;;;;;28664:48:0;;-1:-1:-1;;;28664:48:0;28611:101;:150;;;-1:-1:-1;;;;;;;;;;18441:40:0;;;28725:36;28595:166;28476:293;-1:-1:-1;;28476:293:0:o;31493:100::-;31547:13;31580:5;31573:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31493:100;:::o;32996:204::-;33064:7;33089:16;33097:7;33089;:16::i;:::-;33084:64;;33114:34;;-1:-1:-1;;;33114:34:0;;;;;;;;;;;33084:64;-1:-1:-1;33168:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33168:24:0;;32996:204::o;32559:371::-;32632:13;32648:24;32664:7;32648:15;:24::i;:::-;32632:40;;32693:5;-1:-1:-1;;;;;32687:11:0;:2;-1:-1:-1;;;;;32687:11:0;;32683:48;;;32707:24;;-1:-1:-1;;;32707:24:0;;;;;;;;;;;32683:48;4329:10;-1:-1:-1;;;;;32748:21:0;;;;;;:63;;-1:-1:-1;32774:37:0;32791:5;4329:10;33630:164;:::i;32774:37::-;32773:38;32748:63;32744:138;;;32835:35;;-1:-1:-1;;;32835:35:0;;;;;;;;;;;32744:138;32894:28;32903:2;32907:7;32916:5;32894:8;:28::i;:::-;32621:309;32559:371;;:::o;27749:291::-;27995:12;;27606:1;27979:13;:28;-1:-1:-1;;27979:46:0;;27749:291::o;33861:170::-;33995:28;34005:4;34011:2;34015:7;33995:9;:28::i;52391:95::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;;;;;;;;;52458:8:::1;:20:::0;;-1:-1:-1;;52458:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52391:95::o;47449:2039::-;46835:10;47328:17;47373:8;46814:57;;;;-1:-1:-1;;;46814:57:0;;10889:2:1;46814:57:0;;;10871:21:1;10928:2;10908:18;;;10901:30;-1:-1:-1;;;10947:18:1;;;10940:50;11007:18;;46814:57:0;10687:344:1;46814:57:0;46890:10;46904:9;46890:23;46882:62;;;;-1:-1:-1;;;46882:62:0;;8303:2:1;46882:62:0;;;8285:21:1;8342:2;8322:18;;;8315:30;8381:28;8361:18;;;8354:56;8427:18;;46882:62:0;8101:350:1;46882:62:0;47012:8:::1;::::0;::::1;;47011:9;47003:47;;;::::0;-1:-1:-1;;;47003:47:0;;9425:2:1;47003:47:0::1;::::0;::::1;9407:21:1::0;9464:2;9444:18;;;9437:30;9503:27;9483:18;;;9476:55;9548:18;;47003:47:0::1;9223:349:1::0;47003:47:0::1;47552:18:::2;47585:5;;47573:9;:17;;;;:::i;:::-;47552:38;;47668:15;47660:5;;:23;47656:1033;;;47716:10;47704:23;::::0;;;:11:::2;:23;::::0;;;;;::::2;;:31;;:23:::0;:31:::2;47700:650;;47795:15;47786:5;;:24;;47756:137;;;::::0;-1:-1:-1;;;47756:137:0;;10120:2:1;47756:137:0::2;::::0;::::2;10102:21:1::0;10159:2;10139:18;;;10132:30;10198:34;10178:18;;;10171:62;-1:-1:-1;;;10249:18:1;;;10242:37;10296:19;;47756:137:0::2;9918:403:1::0;47756:137:0::2;47656:1033;;47700:650;47992:15;48010:21;48020:10;48010:9;:21::i;:::-;48077;::::0;47992:39;;-1:-1:-1;48054:20:0::2;48064:10:::0;47992:39;48054:20:::2;:::i;:::-;:44;48050:285;;;48163:21;::::0;48123:12:::2;::::0;48139:20:::2;48149:10:::0;48139:7;:20:::2;:::i;:::-;48138:46;;;;:::i;:::-;48123:61;;48207:41;48223:10;48242:5;;48235:4;:12;;;;:::i;:::-;48207:15;:41::i;:::-;48308:7;48284:21;;:31;;;;:::i;:::-;48271:44;;48100:235;48050:285;47915:435;47656:1033;;;48382:15;48400:21;48410:10;48400:9;:21::i;:::-;48463:12;::::0;48382:39;;-1:-1:-1;48440:20:0::2;48450:10:::0;48382:39;48440:20:::2;:::i;:::-;:35;48436:242;;;48536:12;::::0;48496::::2;::::0;48512:20:::2;48522:10:::0;48512:7;:20:::2;:::i;:::-;48511:37;;;;:::i;:::-;48496:52;;48567:41;48583:10;48602:5;;48595:4;:12;;;;:::i;48567:41::-;48655:7;48640:12;;:22;;;;:::i;:::-;48627:35;;48477:201;48436:242;48367:322;47656:1033;48734:9;;48721:10;48705:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:38;:68;;;;;48759:14;;48747:9;;:26;48705:68;48701:297;;;48790:12;48836:9;;48822:10;48806:13;:11;:13::i;:::-;:26;;;;:::i;:::-;48805:40;;;;:::i;:::-;48790:55;;48860:41;48876:10;48895:5;;48888:4;:12;;;;:::i;48860:41::-;48943:13;:11;:13::i;:::-;48931:9;;:25;;;;:::i;:::-;48918:38;;48775:223;48701:297;49043:14;;49030:10;49014:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:43;:74;;;;;49074:14;;49061:9;;:27;;49014:74;49010:313;;;49105:12;49151:14;;49137:10;49121:13;:11;:13::i;:::-;:26;;;;:::i;:::-;49120:45;;;;:::i;:::-;49105:60;;49180:41;49196:10;49215:5;;49208:4;:12;;;;:::i;49180:41::-;49268:13;:11;:13::i;:::-;49251:14;;:30;;;;:::i;:::-;49238:43;;49090:233;49010:313;49357:12;;49343:10;:26;;49335:35;;;::::0;::::2;;49402:1;49389:10;:14;49381:53;;;::::0;-1:-1:-1;;;49381:53:0;;11996:2:1;49381:53:0::2;::::0;::::2;11978:21:1::0;12035:2;12015:18;;;12008:30;12074:28;12054:18;;;12047:56;12120:18;;49381:53:0::2;11794:350:1::0;49381:53:0::2;49447:33;49457:10;49469;49447:9;:33::i;:::-;47509:1979;47449:2039::o:0;51806:114::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;51884:12:::1;:28:::0;51806:114::o;50335:100::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;50409:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50335:100:::0;:::o;50872:106::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50944:18:0::1;50965:5;50944:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;50944:26:0::1;::::0;;50872:106::o;49936:233::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;50056:14:::1;;50046:6;50030:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:40;;50008:121;;;::::0;-1:-1:-1;;;50008:121:0;;9065:2:1;50008:121:0::1;::::0;::::1;9047:21:1::0;9104:2;9084:18;;;9077:30;9143:33;9123:18;;;9116:61;9194:18;;50008:121:0::1;8863:355:1::0;50008:121:0::1;50140:21;50150:2;50154:6;50140:9;:21::i;34102:185::-:0;34240:39;34257:4;34263:2;34267:7;34240:39;;;;;;;;;;;;:16;:39::i;49496:384::-;49547:35;49585:21;49598:7;49585:12;:21::i;:::-;49661:18;;49547:59;;-1:-1:-1;49619:22:0;;-1:-1:-1;;;;;49645:34:0;4329:10;-1:-1:-1;;;;;49645:34:0;;:97;;;-1:-1:-1;49709:18:0;;49692:50;;4329:10;33630:164;:::i;49692:50::-;49645:146;;;-1:-1:-1;4329:10:0;49755:20;49767:7;49755:11;:20::i;:::-;-1:-1:-1;;;;;49755:36:0;;49645:146;49619:173;;49813:17;49805:42;;;;-1:-1:-1;;;49805:42:0;;9779:2:1;49805:42:0;;;9761:21:1;9818:2;9798:18;;;9791:30;-1:-1:-1;;;9837:18:1;;;9830:42;9889:18;;49805:42:0;9577:336:1;49805:42:0;49858:14;49864:7;49858:5;:14::i;50478:99::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50544:18:0::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;50544:25:0::1;50565:4;50544:25;::::0;;50478:99::o;50626:191::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;50715:9:::1;50710:100;50734:6;:13;50730:1;:17;50710:100;;;50794:4;50769:11;:22;50781:6;50788:1;50781:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50769:22:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50769:22:0;:29;;-1:-1:-1;;50769:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50749:3;::::1;::::0;::::1;:::i;:::-;;;;50710:100;;31301:125:::0;31365:7;31392:21;31405:7;31392:12;:21::i;:::-;:26;;31301:125;-1:-1:-1;;31301:125:0:o;51039:194::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;51130:9:::1;51125:101;51149:6;:13;51145:1;:17;51125:101;;;51209:5;51184:11;:22;51196:6;51203:1;51196:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;51184:22:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;51184:22:0;:30;;-1:-1:-1;;51184:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51164:3;::::1;::::0;::::1;:::i;:::-;;;;51125:101;;28833:206:::0;28897:7;-1:-1:-1;;;;;28921:19:0;;28917:60;;28949:28;;-1:-1:-1;;;28949:28:0;;;;;;;;;;;28917:60;-1:-1:-1;;;;;;29003:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29003:27:0;;28833:206::o;6176:103::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;6241:30:::1;6268:1;6241:18;:30::i;:::-;6176:103::o:0;52251:90::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;52317:5:::1;:16:::0;52251:90::o;31662:104::-;31718:13;31751:7;31744:14;;;;;:::i;33272:287::-;-1:-1:-1;;;;;33371:24:0;;4329:10;33371:24;33367:54;;;33404:17;;-1:-1:-1;;;33404:17:0;;;;;;;;;;;33367:54;4329:10;33434:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33434:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33434:53:0;;;;;;;;;;33503:48;;7814:41:1;;;33434:42:0;;4329:10;33503:48;;7787:18:1;33503:48:0;;;;;;;33272:287;;:::o;34358:369::-;34525:28;34535:4;34541:2;34545:7;34525:9;:28::i;:::-;-1:-1:-1;;;;;34568:13:0;;8521:19;:23;;34568:76;;;;;34588:56;34619:4;34625:2;34629:7;34638:5;34588:30;:56::i;:::-;34587:57;34568:76;34564:156;;;34668:40;;-1:-1:-1;;;34668:40:0;;;;;;;;;;;34564:156;34358:369;;;;:::o;46545:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51630:130::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;51716:21:::1;:36:::0;51630:130::o;53071:422::-;53165:13;53204:16;53212:7;53204;:16::i;:::-;53196:54;;;;-1:-1:-1;;;53196:54:0;;11238:2:1;53196:54:0;;;11220:21:1;11277:2;11257:18;;;11250:30;11316:27;11296:18;;;11289:55;11361:18;;53196:54:0;11036:349:1;53196:54:0;53386:1;53359:16;53353:30;;;;;:::i;:::-;;;:34;:132;;53473:12;53353:132;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53423:16;53441:18;:7;:16;:18::i;:::-;53406:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53337:148;53071:422;-1:-1:-1;;53071:422:0:o;46485:26::-;;;;;;;:::i;51276:150::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;51370:14:::1;;51356:10;:28;;51348:37;;;::::0;::::1;;51396:9;:22:::0;51276:150::o;51963:108::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;52041:22;;::::1;::::0;:16:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;51472:112::-:0;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;51549:12:::1;:27:::0;51472:112::o;6434:201::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6523:22:0;::::1;6515:73;;;::::0;-1:-1:-1;;;6515:73:0;;8658:2:1;6515:73:0::1;::::0;::::1;8640:21:1::0;8697:2;8677:18;;;8670:30;8736:34;8716:18;;;8709:62;-1:-1:-1;;;8787:18:1;;;8780:36;8833:19;;6515:73:0::1;8456:402:1::0;6515:73:0::1;6599:28;6618:8;6599:18;:28::i;50212:82::-:0;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;50274:5:::1;:12:::0;50212:82::o;52536:151::-;5571:7;5598:6;-1:-1:-1;;;;;5598:6:0;4329:10;5745:23;5737:68;;;;-1:-1:-1;;;5737:68:0;;;;;;;:::i;:::-;52617:21:::1;52651:28;52667:2:::0;52617:21;52651:15:::1;:28::i;34982:174::-:0;35039:4;35082:7;27606:1;35063:26;;:53;;;;;35103:13;;35093:7;:23;35063:53;:85;;;;-1:-1:-1;;35121:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35121:27:0;;;;35120:28;;34982:174::o;42855:196::-;42970:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42970:29:0;-1:-1:-1;;;;;42970:29:0;;;;;;;;;43015:28;;42970:24;;43015:28;;;;;;;42855:196;;;:::o;37990:2046::-;38105:35;38143:21;38156:7;38143:12;:21::i;:::-;38105:59;;38203:4;-1:-1:-1;;;;;38181:26:0;:13;:18;;;-1:-1:-1;;;;;38181:26:0;;38177:67;;38216:28;;-1:-1:-1;;;38216:28:0;;;;;;;;;;;38177:67;38257:22;4329:10;-1:-1:-1;;;;;38283:20:0;;;;:69;;-1:-1:-1;38316:36:0;38333:4;4329:10;33630:164;:::i;38316:36::-;38283:118;;;-1:-1:-1;4329:10:0;38365:20;38377:7;38365:11;:20::i;:::-;-1:-1:-1;;;;;38365:36:0;;38283:118;38257:145;;38420:17;38415:66;;38446:35;;-1:-1:-1;;;38446:35:0;;;;;;;;;;;38415:66;-1:-1:-1;;;;;38496:16:0;;38492:52;;38521:23;;-1:-1:-1;;;38521:23:0;;;;;;;;;;;38492:52;38665:35;38682:1;38686:7;38695:4;38665:8;:35::i;:::-;-1:-1:-1;;;;;38988:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38988:31:0;;;-1:-1:-1;;;;;38988:31:0;;;-1:-1:-1;;38988:31:0;;;;;;;39030:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39030:29:0;;;;;;;;;;;39106:20;;;:11;:20;;;;;;39137:18;;-1:-1:-1;;;;;;39166:49:0;;;;-1:-1:-1;;;39199:15:0;39166:49;;;;;;;;;;39477:11;;39533:24;;;;;39572:13;;39106:20;;39533:24;;39572:13;39568:356;;39770:13;;39755:11;:28;39751:162;;39804:20;;39869:28;;;;-1:-1:-1;;;;;39843:54:0;-1:-1:-1;;;39843:54:0;-1:-1:-1;;;;;;39843:54:0;;;-1:-1:-1;;;;;39804:20:0;;39843:54;;;;39751:162;38967:964;;;39967:7;39963:2;-1:-1:-1;;;;;39948:27:0;39957:4;-1:-1:-1;;;;;39948:27:0;-1:-1:-1;;;;;;;;;;;39948:27:0;;;;;;;;;39986:42;38094:1942;;37990:2046;;;:::o;52724:200::-;52837:12;;;52797;52837;;;;;;;;;-1:-1:-1;;;;;52815:7:0;;;52830:5;;52815:35;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52796:54;;;52869:7;52861:55;;;;-1:-1:-1;;;52861:55:0;;11592:2:1;52861:55:0;;;11574:21:1;11631:2;11611:18;;;11604:30;11670:34;11650:18;;;11643:62;-1:-1:-1;;;11721:18:1;;;11714:33;11764:19;;52861:55:0;11390:399:1;35164:104:0;35233:27;35243:2;35247:8;35233:27;;;;;;;;;;;;:9;:27::i;30214:1025::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30325:7:0;;27606:1;30366:23;;:47;;;;;30400:13;;30393:4;:20;30366:47;30362:814;;;30430:31;30464:17;;;:11;:17;;;;;;;;;30430:51;;;;;;;;;-1:-1:-1;;;;;30430:51:0;;;;-1:-1:-1;;;30430:51:0;;-1:-1:-1;;;;;30430:51:0;;;;;;;;-1:-1:-1;;;30430:51:0;;;;;;;;;;;;;;30496:669;;30542:14;;-1:-1:-1;;;;;30542:28:0;;30538:93;;30602:9;30214:1025;-1:-1:-1;;;30214:1025:0:o;30538:93::-;-1:-1:-1;;;30949:6:0;30990:17;;;;:11;:17;;;;;;;;;30978:29;;;;;;;;;-1:-1:-1;;;;;30978:29:0;;;;;-1:-1:-1;;;30978:29:0;;-1:-1:-1;;;;;30978:29:0;;;;;;;;-1:-1:-1;;;30978:29:0;;;;;;;;;;;;;31034:28;31030:101;;31098:9;30214:1025;-1:-1:-1;;;30214:1025:0:o;31030:101::-;30913:237;;;30415:761;30362:814;31200:31;;-1:-1:-1;;;31200:31:0;;;;;;;;;;;40119:89;40179:21;40185:7;40194:5;40179;:21::i;6795:191::-;6869:16;6888:6;;-1:-1:-1;;;;;6905:17:0;;;-1:-1:-1;;;;;;6905:17:0;;;;;;6938:40;;6888:6;;;;;;;6938:40;;6869:16;6938:40;6858:128;6795:191;:::o;43543:667::-;43727:72;;-1:-1:-1;;;43727:72:0;;43706:4;;-1:-1:-1;;;;;43727:36:0;;;;;:72;;4329:10;;43778:4;;43784:7;;43793:5;;43727:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43727:72:0;;;;;;;;-1:-1:-1;;43727:72:0;;;;;;;;;;;;:::i;:::-;;;43723:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43961:13:0;;43957:235;;44007:40;;-1:-1:-1;;;44007:40:0;;;;;;;;;;;43957:235;44150:6;44144:13;44135:6;44131:2;44127:15;44120:38;43723:480;-1:-1:-1;;;;;;43846:55:0;-1:-1:-1;;;43846:55:0;;-1:-1:-1;43723:480:0;43543:667;;;;;;:::o;1811:723::-;1867:13;2088:10;2084:53;;-1:-1:-1;;2115:10:0;;;;;;;;;;;;-1:-1:-1;;;2115:10:0;;;;;1811:723::o;2084:53::-;2162:5;2147:12;2203:78;2210:9;;2203:78;;2236:8;;;;:::i;:::-;;-1:-1:-1;2259:10:0;;-1:-1:-1;2267:2:0;2259:10;;:::i;:::-;;;2203:78;;;2291:19;2323:6;-1:-1:-1;;;;;2313:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2313:17:0;;2291:39;;2341:154;2348:10;;2341:154;;2375:11;2385:1;2375:11;;:::i;:::-;;-1:-1:-1;2444:10:0;2452:2;2444:5;:10;:::i;:::-;2431:24;;:2;:24;:::i;:::-;2418:39;;2401:6;2408;2401:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2401:56:0;;;;;;;;-1:-1:-1;2472:11:0;2481:2;2472:11;;:::i;:::-;;;2341:154;;35631:163;35754:32;35760:2;35764:8;35774:5;35781:4;35754:5;:32::i;40437:2300::-;40517:35;40555:21;40568:7;40555:12;:21::i;:::-;40604:18;;40517:59;;-1:-1:-1;40635:282:0;;;;40669:22;4329:10;-1:-1:-1;;;;;40695:20:0;;;;:73;;-1:-1:-1;40732:36:0;40749:4;4329:10;33630:164;:::i;40732:36::-;40695:126;;;-1:-1:-1;4329:10:0;40785:20;40797:7;40785:11;:20::i;:::-;-1:-1:-1;;;;;40785:36:0;;40695:126;40669:153;;40844:17;40839:66;;40870:35;;-1:-1:-1;;;40870:35:0;;;;;;;;;;;40839:66;40654:263;40635:282;41045:35;41062:1;41066:7;41075:4;41045:8;:35::i;:::-;-1:-1:-1;;;;;41402:18:0;;;41368:31;41402:18;;;:12;:18;;;;;;;;41431:24;;-1:-1:-1;;;;;;;;;;41431:24:0;;;;;;;;;-1:-1:-1;;41431:24:0;;;;41466:29;;;;;41454:1;41466:29;;;;;;;;-1:-1:-1;;41466:29:0;;;;;;;;;;41620:20;;;:11;:20;;;;;;41651;;-1:-1:-1;;;;41715:15:0;41682:49;;;-1:-1:-1;;;41682:49:0;-1:-1:-1;;;;;;41682:49:0;;;;;;;;;;41742:22;-1:-1:-1;;;41742:22:0;;;42022:11;;;42078:24;;;;;42117:13;;41402:18;;42078:24;;42117:13;42113:356;;42315:13;;42300:11;:28;42296:162;;42349:20;;42414:28;;;;-1:-1:-1;;;;;42388:54:0;-1:-1:-1;;;42388:54:0;-1:-1:-1;;;;;;42388:54:0;;;-1:-1:-1;;;;;42349:20:0;;42388:54;;;;42296:162;-1:-1:-1;;42493:35:0;;42520:7;;-1:-1:-1;42516:1:0;;-1:-1:-1;;;;;;42493:35:0;;;-1:-1:-1;;;;;;;;;;;42493:35:0;42516:1;;42493:35;-1:-1:-1;;42708:12:0;:14;;;;;;-1:-1:-1;;40437:2300:0:o;36053:1683::-;36215:13;;-1:-1:-1;;;;;36243:16:0;;36239:48;;36268:19;;-1:-1:-1;;;36268:19:0;;;;;;;;;;;36239:48;36302:13;36298:44;;36324:18;;-1:-1:-1;;;36324:18:0;;;;;;;;;;;36298:44;-1:-1:-1;;;;;36685:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36740:49:0;;-1:-1:-1;;;;;36685:44:0;;;;;;;36740:49;;;;-1:-1:-1;;36685:44:0;;;;;;36740:49;;;;;;;;;;;;;;;;36802:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36848:66:0;;;;-1:-1:-1;;;36898:15:0;36848:66;;;;;;;;;;36802:25;36987:23;;;37027:4;:23;;;;-1:-1:-1;;;;;;37035:13:0;;8521:19;:23;;37035:15;37023:589;;;37067:294;37094:38;;37119:12;;-1:-1:-1;;;;;37094:38:0;;;37111:1;;-1:-1:-1;;;;;;;;;;;37094:38:0;37111:1;;37094:38;37156:69;37195:1;37199:2;37203:14;;;;;;37219:5;37156:30;:69::i;:::-;37151:166;;37257:40;;-1:-1:-1;;;37257:40:0;;;;;;;;;;;37151:166;37356:3;37340:12;:19;;37067:294;;37434:12;37417:13;;:29;37413:43;;37448:8;;;37413:43;37023:589;;;37489:112;37516:40;;37541:14;;;;;-1:-1:-1;;;;;37516:40:0;;;37533:1;;-1:-1:-1;;;;;;;;;;;37516:40:0;37533:1;;37516:40;37596:3;37580:12;:19;;37489:112;;37023:589;-1:-1:-1;37622:13:0;:28;37668:60;34358:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;:::-;909:39;768:186;-1:-1:-1;;;768:186:1:o;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;-1:-1:-1;;;;;1976:6:1;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;-1:-1:-1;;;;;3030:2:1;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;-1:-1:-1;;;;;4606:6:1;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:268::-;5095:3;5133:5;5127:12;5160:6;5155:3;5148:19;5176:63;5232:6;5225:4;5220:3;5216:14;5209:4;5202:5;5198:16;5176:63;:::i;:::-;5293:2;5272:15;-1:-1:-1;;5268:29:1;5259:39;;;;5300:4;5255:50;;5043:268;-1:-1:-1;;5043:268:1:o;5316:184::-;5357:3;5395:5;5389:12;5410:52;5455:6;5450:3;5443:4;5436:5;5432:16;5410:52;:::i;:::-;5478:16;;;;;5316:184;-1:-1:-1;;5316:184:1:o;5505:274::-;5634:3;5672:6;5666:13;5688:53;5734:6;5729:3;5722:4;5714:6;5710:17;5688:53;:::i;:::-;5757:16;;;;;5505:274;-1:-1:-1;;5505:274:1:o;5784:1173::-;5960:3;5989:1;6022:6;6016:13;6052:3;6074:1;6102:9;6098:2;6094:18;6084:28;;6162:2;6151:9;6147:18;6184;6174:61;;6228:4;6220:6;6216:17;6206:27;;6174:61;6254:2;6302;6294:6;6291:14;6271:18;6268:38;6265:165;;;-1:-1:-1;;;6329:33:1;;6385:4;6382:1;6375:15;6415:4;6336:3;6403:17;6265:165;6446:18;6473:104;;;;6591:1;6586:320;;;;6439:467;;6473:104;-1:-1:-1;;6506:24:1;;6494:37;;6551:16;;;;-1:-1:-1;6473:104:1;;6586:320;12684:1;12677:14;;;12721:4;12708:18;;6681:1;6695:165;6709:6;6706:1;6703:13;6695:165;;;6787:14;;6774:11;;;6767:35;6830:16;;;;6724:10;;6695:165;;;6699:3;;6889:6;6884:3;6880:16;6873:23;;6439:467;;;;;;;6922:29;6947:3;6939:6;6922:29;:::i;:::-;6915:36;5784:1173;-1:-1:-1;;;;;5784:1173:1:o;7170:499::-;-1:-1:-1;;;;;7439:15:1;;;7421:34;;7491:15;;7486:2;7471:18;;7464:43;7538:2;7523:18;;7516:34;;;7586:3;7581:2;7566:18;;7559:31;;;7364:4;;7607:56;;7643:19;;7635:6;7607:56;:::i;:::-;7599:64;7170:499;-1:-1:-1;;;;;;7170:499:1:o;7866:230::-;8015:2;8004:9;7997:21;7978:4;8035:55;8086:2;8075:9;8071:18;8063:6;8035:55;:::i;10326:356::-;10528:2;10510:21;;;10547:18;;;10540:30;10606:34;10601:2;10586:18;;10579:62;10673:2;10658:18;;10326:356::o;12331:275::-;12402:2;12396:9;12467:2;12448:13;;-1:-1:-1;;12444:27:1;12432:40;;-1:-1:-1;;;;;12487:34:1;;12523:22;;;12484:62;12481:88;;;12549:18;;:::i;:::-;12585:2;12578:22;12331:275;;-1:-1:-1;12331:275:1:o;12737:128::-;12777:3;12808:1;12804:6;12801:1;12798:13;12795:39;;;12814:18;;:::i;:::-;-1:-1:-1;12850:9:1;;12737:128::o;12870:120::-;12910:1;12936;12926:35;;12941:18;;:::i;:::-;-1:-1:-1;12975:9:1;;12870:120::o;12995:168::-;13035:7;13101:1;13097;13093:6;13089:14;13086:1;13083:21;13078:1;13071:9;13064:17;13060:45;13057:71;;;13108:18;;:::i;:::-;-1:-1:-1;13148:9:1;;12995:168::o;13168:125::-;13208:4;13236:1;13233;13230:8;13227:34;;;13241:18;;:::i;:::-;-1:-1:-1;13278:9:1;;13168:125::o;13298:258::-;13370:1;13380:113;13394:6;13391:1;13388:13;13380:113;;;13470:11;;;13464:18;13451:11;;;13444:39;13416:2;13409:10;13380:113;;;13511:6;13508:1;13505:13;13502:48;;;-1:-1:-1;;13546:1:1;13528:16;;13521:27;13298:258::o;13561:380::-;13640:1;13636:12;;;;13683;;;13704:61;;13758:4;13750:6;13746:17;13736:27;;13704:61;13811:2;13803:6;13800:14;13780:18;13777:38;13774:161;;;13857:10;13852:3;13848:20;13845:1;13838:31;13892:4;13889:1;13882:15;13920:4;13917:1;13910:15;13774:161;;13561:380;;;:::o;13946:135::-;13985:3;-1:-1:-1;;14006:17:1;;14003:43;;;14026:18;;:::i;:::-;-1:-1:-1;14073:1:1;14062:13;;13946:135::o;14086:112::-;14118:1;14144;14134:35;;14149:18;;:::i;:::-;-1:-1:-1;14183:9:1;;14086:112::o;14203:127::-;14264:10;14259:3;14255:20;14252:1;14245:31;14295:4;14292:1;14285:15;14319:4;14316:1;14309:15;14335:127;14396:10;14391:3;14387:20;14384:1;14377:31;14427:4;14424:1;14417:15;14451:4;14448:1;14441:15;14467:127;14528:10;14523:3;14519:20;14516:1;14509:31;14559:4;14556:1;14549:15;14583:4;14580:1;14573:15;14599:127;14660:10;14655:3;14651:20;14648:1;14641:31;14691:4;14688:1;14681:15;14715:4;14712:1;14705:15;14731:131;-1:-1:-1;;;;;;14805:32:1;;14795:43;;14785:71;;14852:1;14849;14842:12
Swarm Source
ipfs://c49c7fab6add09d594c3715964e0bdf817bb4c3ba4bf42cc5eae2942939643b9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.