ERC-721
Overview
Max Total Supply
999 WPDC
Holders
104
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
6 WPDCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WPDC
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-09 */ pragma solidity ^0.8.4; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return recover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return recover(hash, r, vs); } else { revert("ECDSA: invalid signature length"); } } /** * @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return recover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. require( uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value" ); require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value"); // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } 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); } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success,) = recipient.call{value : amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value : value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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); } } } } pragma solidity ^0.8.0; /** * @title Interface for contracts conforming to ERC-721 */ interface ERC721Interface { function ownerOf(uint256 _tokenId) external view returns (address _owner); function balanceOf(address owner) external view returns (uint256 balance); function approve(address _to, uint256 _tokenId) external; function getApproved(uint256 _tokenId) external view returns (address); function isApprovedForAll(address _owner, address _operator) external view returns (bool); function transferFrom(address _from, address _to, uint256 _tokenId) external; function supportsInterface(bytes4) external view returns (bool); } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // ERC721A Contracts v4.2.3 // Creator: Chiru Labs /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // ERC721A Contracts v4.2.3 // Creator: Chiru Labs /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for {let temp := value} 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) {break} } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the tBscen * contract returns false). TBscens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `tBscen.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 tBscen, address to, uint256 value) internal { _callOptionalReturn(tBscen, abi.encodeWithSelector(tBscen.transfer.selector, to, value)); } function safeTransferFrom(IERC20 tBscen, address from, address to, uint256 value) internal { _callOptionalReturn(tBscen, abi.encodeWithSelector(tBscen.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 tBscen, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (tBscen.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(tBscen, abi.encodeWithSelector(tBscen.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 tBscen, address spender, uint256 value) internal { uint256 newAllowance = tBscen.allowance(address(this), spender).add(value); _callOptionalReturn(tBscen, abi.encodeWithSelector(tBscen.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 tBscen, address spender, uint256 value) internal { uint256 newAllowance = tBscen.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(tBscen, abi.encodeWithSelector(tBscen.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param tBscen The tBscen targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 tBscen, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(tBscen).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) {// Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tBscens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tBscens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tBscens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tBscens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tBscens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tBscens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tBscens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } contract WPDC is ERC721A, Ownable { using SafeMath for uint256; using Address for address; address private executorAddress; bool private PAUSE = false; string public baseURI; string public commonTokenURI; mapping(uint256 => string) public _tokenURI; mapping(address => bool) public mintedPool; mapping(address => bool) private _blackMarketplaces; /* all mint total quantity */ uint256 public maxTotalSupply = 0; uint256 price = 0; event PauseEvent(bool pause); /** * typ mint type 0 1 * to to address * quantity current mint quantity */ event NFTMintEvent(uint256 token, address to, uint256 quantity, uint256 price); event ExecutorAddressEvent(address executorAddress); event MaxTotalSupplyEvent(uint256 _maxTotalSupply); event BaseURIEvent(string _baseURI); event TokenURIEvent(uint256 tokenId, string _baseURI); event CommonTokenURIEvent(string _commonTokenURI); event PriceEvent(uint256 _price); constructor( address _executorAddress, string memory baseUri, string memory _commonTokenURI, uint256 _maxTotalSupply, uint256 _price ) ERC721A("WHIKO PDC", "WPDC"){ executorAddress = _executorAddress; baseURI = baseUri; commonTokenURI = _commonTokenURI; maxTotalSupply = _maxTotalSupply; price = _price; } modifier nftIsOpen { require(!PAUSE, "nft has not open"); _; } modifier onlyExecutor { require(executorAddress == _msgSender() || owner() == _msgSender(), "caller is not the executor or ower"); _; } function setBaseURI(string memory _baseURI) public onlyExecutor { require(bytes(_baseURI).length > 0, "URI length not null"); baseURI = _baseURI; emit BaseURIEvent(_baseURI); } function setTokenURI(uint256 tokenId, string memory _tokenuri) public onlyExecutor { require(bytes(_tokenuri).length > 0, "URI length not null"); _tokenURI[tokenId] = _tokenuri; emit TokenURIEvent(tokenId, _tokenuri); } function setCommonTokenURI(string memory _commonTokenURI) public onlyExecutor { require(bytes(_commonTokenURI).length > 0, "URI length not null"); commonTokenURI = _commonTokenURI; emit CommonTokenURIEvent(_commonTokenURI); } function setPrice(uint256 _price) public onlyExecutor { price = _price; emit PriceEvent(_price); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory _baseURI = _baseURI(); string memory uri = ''; if (bytes(_baseURI).length > 0) { uri = _baseURI; } string memory tokenURI = _tokenURI[tokenId]; if (bytes(tokenURI).length > 0) { uri = string(abi.encodePacked(uri, tokenURI)); } else { uri = string(abi.encodePacked(uri, commonTokenURI)); uri = string(abi.encodePacked(uri, uint2str(tokenId))); uri = string(abi.encodePacked(uri, ".json")); } return uri; } function getExecutorAddress() public view returns (address _executorAddress){ if (owner() != _msgSender()) { return address(0); } return executorAddress; } function setMaxTotalSupply(uint256 _maxTotalSupply) public onlyExecutor { maxTotalSupply = _maxTotalSupply; emit MaxTotalSupplyEvent(_maxTotalSupply); } function setExecutorAddress(address _executorAddress) public onlyOwner { executorAddress = _executorAddress; emit ExecutorAddressEvent(_executorAddress); } function executorMint(address to, uint256 quantity) public onlyExecutor nftIsOpen { require(msg.sender == tx.origin, "only origin"); require(to == msg.sender, "The address of to cannot be the address of the caller"); require(maxTotalSupply == 0 || totalSupply().add(quantity) < maxTotalSupply, "The total supply more than max"); uint256 tokenId = _nextTokenId(); _mint(to, quantity); emit NFTMintEvent(tokenId, to, quantity, 0); } function mint(address to) public nftIsOpen payable { require(msg.sender == tx.origin, "only origin"); require(to == msg.sender, "The address of to cannot be the address of the caller"); require(maxTotalSupply == 0 || totalSupply() <= maxTotalSupply, "Total limit"); bool minted = mintedPool[to]; require(!minted, "This address has mint"); require(msg.value >= price, "The price error"); uint256 tokenId = _nextTokenId(); uint256 quantity = 1; mintedPool[to] = true; _mint(to, quantity); emit NFTMintEvent(tokenId, to, quantity, price); } /** * @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) public payable virtual override { require(_blackMarketplaces[to] == false, "Invalid Marketplace"); super.approve(to, tokenId); } /** * @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) public virtual override { require(_blackMarketplaces[operator] == false, "Invalid Marketplace"); super.setApprovalForAll(operator, approved); } function setBlackMarketplaces(address operator, bool approved) public onlyExecutor { _blackMarketplaces[operator] = approved; } function isBlackMarketplaces(address operator) public view returns (bool){ return _blackMarketplaces[operator]; } function setPause(bool _pause) public onlyOwner { PAUSE = _pause; emit PauseEvent(PAUSE); } function withDrawAll(address payable to) public onlyOwner { (bool success,) = to.call{gas : 21000, value : address(this).balance}(""); require(success, "Transfer failed."); } function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len; while (_i != 0) { k = k - 1; uint8 temp = (48 + uint8(_i - _i / 10 * 10)); bytes1 b1 = bytes1(temp); bstr[k] = b1; _i /= 10; } return string(bstr); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_executorAddress","type":"address"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"string","name":"_commonTokenURI","type":"string"},{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"BaseURIEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_commonTokenURI","type":"string"}],"name":"CommonTokenURIEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"executorAddress","type":"address"}],"name":"ExecutorAddressEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"}],"name":"MaxTotalSupplyEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"token","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"NFTMintEvent","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":false,"internalType":"bool","name":"pause","type":"bool"}],"name":"PauseEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"PriceEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"TokenURIEvent","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":"uint256","name":"","type":"uint256"}],"name":"_tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"commonTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"executorMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getExecutorAddress","outputs":[{"internalType":"address","name":"_executorAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"isBlackMarketplaces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setBlackMarketplaces","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_commonTokenURI","type":"string"}],"name":"setCommonTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_executorAddress","type":"address"}],"name":"setExecutorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"}],"name":"setMaxTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenuri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"withDrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600960146101000a81548160ff0219169083151502179055506000600f5560006010553480156200003657600080fd5b5060405162004cdc38038062004cdc83398181016040528101906200005c9190620003e1565b6040518060400160405280600981526020017f5748494b4f2050444300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f57504443000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e092919062000291565b508060039080519060200190620000f992919062000291565b506200010a620001be60201b60201c565b60008190555050506200013262000126620001c360201b60201c565b620001cb60201b60201c565b84600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600a90805190602001906200018b92919062000291565b5082600b9080519060200190620001a492919062000291565b5081600f8190555080601081905550505050505062000677565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029f9062000568565b90600052602060002090601f016020900481019282620002c357600085556200030f565b82601f10620002de57805160ff19168380011785556200030f565b828001600101855582156200030f579182015b828111156200030e578251825591602001919060010190620002f1565b5b5090506200031e919062000322565b5090565b5b808211156200033d57600081600090555060010162000323565b5090565b6000620003586200035284620004be565b62000495565b9050828152602081018484840111156200037157600080fd5b6200037e84828562000532565b509392505050565b600081519050620003978162000643565b92915050565b600082601f830112620003af57600080fd5b8151620003c184826020860162000341565b91505092915050565b600081519050620003db816200065d565b92915050565b600080600080600060a08688031215620003fa57600080fd5b60006200040a8882890162000386565b955050602086015167ffffffffffffffff8111156200042857600080fd5b62000436888289016200039d565b945050604086015167ffffffffffffffff8111156200045457600080fd5b62000462888289016200039d565b93505060606200047588828901620003ca565b92505060806200048888828901620003ca565b9150509295509295909350565b6000620004a1620004b4565b9050620004af82826200059e565b919050565b6000604051905090565b600067ffffffffffffffff821115620004dc57620004db62000603565b5b620004e78262000632565b9050602081019050919050565b6000620005018262000508565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200055257808201518184015260208101905062000535565b8381111562000562576000848401525b50505050565b600060028204905060018216806200058157607f821691505b60208210811415620005985762000597620005d4565b5b50919050565b620005a98262000632565b810181811067ffffffffffffffff82111715620005cb57620005ca62000603565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200064e81620004f4565b81146200065a57600080fd5b50565b620006688162000528565b81146200067457600080fd5b50565b61465580620006876000396000f3fe6080604052600436106102045760003560e01c80636a6278421161011857806395d89b41116100a0578063bedb86fb1161006f578063bedb86fb14610720578063c2513f1114610749578063c87b56dd14610772578063e985e9c5146107af578063f2fde38b146107ec57610204565b806395d89b4114610673578063a22cb4651461069e578063a85c749a146106c7578063b88d4fde1461070457610204565b80637a24f53b116100e75780637a24f53b146105905780637a3f773c146105b95780638d17e712146105e25780638da5cb5b1461061f57806391b7f5ed1461064a57610204565b80636a627842146104f55780636c0360eb1461051157806370a082311461053c578063715018a61461057957610204565b806323b872dd1161019b5780633f3e4c111161016a5780633f3e4c111461040d57806342842e0e14610436578063543788a11461045257806355f804b31461048f5780636352211e146104b857610204565b806323b872dd146103705780632ab4d0521461038c578063350157a8146103b75780633b7b3c9f146103e257610204565b806309f21f6a116101d757806309f21f6a146102ca5780631483be90146102f3578063162094c41461031c57806318160ddd1461034557610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613650565b610815565b60405161023d9190613bb1565b60405180910390f35b34801561025257600080fd5b5061025b6108a7565b6040516102689190613bcc565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906136e3565b610939565b6040516102a59190613b4a565b60405180910390f35b6102c860048036038101906102c391906135eb565b6109b8565b005b3480156102d657600080fd5b506102f160048036038101906102ec9190613480565b610a59565b005b3480156102ff57600080fd5b5061031a600480360381019061031591906135eb565b610b89565b005b34801561032857600080fd5b50610343600480360381019061033e919061370c565b610e53565b005b34801561035157600080fd5b5061035a610fd7565b6040516103679190613d8e565b60405180910390f35b61038a600480360381019061038591906134e5565b610fee565b005b34801561039857600080fd5b506103a1611313565b6040516103ae9190613d8e565b60405180910390f35b3480156103c357600080fd5b506103cc611319565b6040516103d99190613b4a565b60405180910390f35b3480156103ee57600080fd5b506103f761138e565b6040516104049190613bcc565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f91906136e3565b61141c565b005b610450600480360381019061044b91906134e5565b611538565b005b34801561045e57600080fd5b5061047960048036038101906104749190613457565b611558565b6040516104869190613bb1565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b191906136a2565b6115ae565b005b3480156104c457600080fd5b506104df60048036038101906104da91906136e3565b61171e565b6040516104ec9190613b4a565b60405180910390f35b61050f600480360381019061050a9190613457565b611730565b005b34801561051d57600080fd5b50610526611a45565b6040516105339190613bcc565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190613457565b611ad3565b6040516105709190613d8e565b60405180910390f35b34801561058557600080fd5b5061058e611b8c565b005b34801561059c57600080fd5b506105b760048036038101906105b291906135af565b611c14565b005b3480156105c557600080fd5b506105e060048036038101906105db91906136a2565b611d4a565b005b3480156105ee57600080fd5b50610609600480360381019061060491906136e3565b611eba565b6040516106169190613bcc565b60405180910390f35b34801561062b57600080fd5b50610634611f5a565b6040516106419190613b4a565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c91906136e3565b611f84565b005b34801561067f57600080fd5b506106886120a0565b6040516106959190613bcc565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c091906135af565b612132565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613457565b6121d3565b6040516106fb9190613bb1565b60405180910390f35b61071e60048036038101906107199190613534565b6121f3565b005b34801561072c57600080fd5b5061074760048036038101906107429190613627565b612266565b005b34801561075557600080fd5b50610770600480360381019061076b9190613457565b612345565b005b34801561077e57600080fd5b50610799600480360381019061079491906136e3565b61243c565b6040516107a69190613bcc565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906134a9565b6125fd565b6040516107e39190613bb1565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e9190613457565b612691565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108b690614180565b80601f01602080910402602001604051908101604052809291908181526020018280546108e290614180565b801561092f5780601f106109045761010080835404028352916020019161092f565b820191906000526020600020905b81548152906001019060200180831161091257829003601f168201915b5050505050905090565b600061094482612789565b61097a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60001515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290613cce565b60405180910390fd5b610a5582826127e8565b5050565b610a6161292c565b73ffffffffffffffffffffffffffffffffffffffff16610a7f611f5a565b73ffffffffffffffffffffffffffffffffffffffff1614610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90613cae565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1661520847604051610afe90613b35565b600060405180830381858888f193505050503d8060008114610b3c576040519150601f19603f3d011682016040523d82523d6000602084013e610b41565b606091505b5050905080610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90613cee565b60405180910390fd5b5050565b610b9161292c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610c255750610bef61292c565b73ffffffffffffffffffffffffffffffffffffffff16610c0d611f5a565b73ffffffffffffffffffffffffffffffffffffffff16145b610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90613c2e565b60405180910390fd5b600960149054906101000a900460ff1615610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90613d0e565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1990613c6e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790613c4e565b60405180910390fd5b6000600f541480610dbb5750600f54610db982610dab610fd7565b61293490919063ffffffff16565b105b610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190613d4e565b60405180910390fd5b6000610e0461294a565b9050610e108383612953565b7f68f2a418cb0c89d3063df527e90de8fdabbdb6401506da6fae08290d8921b3318184846000604051610e469493929190613da9565b60405180910390a1505050565b610e5b61292c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610eef5750610eb961292c565b73ffffffffffffffffffffffffffffffffffffffff16610ed7611f5a565b73ffffffffffffffffffffffffffffffffffffffff16145b610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590613c2e565b60405180910390fd5b6000815111610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990613d6e565b60405180910390fd5b80600c60008481526020019081526020016000209080519060200190610f99929190613266565b507f46d8448744d5437620a2269b16ee3c2a7c456939212e0ebff458b1692982a6238282604051610fcb929190613e33565b60405180910390a15050565b6000610fe1612b10565b6001546000540303905090565b6000610ff982612b15565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611060576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061106c84612be3565b91509150611082818761107d612c0a565b612c12565b6110ce5761109786611092612c0a565b6125fd565b6110cd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611135576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111428686866001612c56565b801561114d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061121b856111f7888887612c5c565b7c020000000000000000000000000000000000000000000000000000000017612c84565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156112a35760006001850190506000600460008381526020019081526020016000205414156112a15760005481146112a0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461130b8686866001612caf565b505050505050565b600f5481565b600061132361292c565b73ffffffffffffffffffffffffffffffffffffffff16611341611f5a565b73ffffffffffffffffffffffffffffffffffffffff1614611365576000905061138b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b90565b600b805461139b90614180565b80601f01602080910402602001604051908101604052809291908181526020018280546113c790614180565b80156114145780601f106113e957610100808354040283529160200191611414565b820191906000526020600020905b8154815290600101906020018083116113f757829003601f168201915b505050505081565b61142461292c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806114b8575061148261292c565b73ffffffffffffffffffffffffffffffffffffffff166114a0611f5a565b73ffffffffffffffffffffffffffffffffffffffff16145b6114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee90613c2e565b60405180910390fd5b80600f819055507febcabb09c4acfc0d9a87ab83271030ef016b067d1ce0dd6299c8862a972103b18160405161152d9190613d8e565b60405180910390a150565b611553838383604051806020016040528060008152506121f3565b505050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6115b661292c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061164a575061161461292c565b73ffffffffffffffffffffffffffffffffffffffff16611632611f5a565b73ffffffffffffffffffffffffffffffffffffffff16145b611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613c2e565b60405180910390fd5b60008151116116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613d6e565b60405180910390fd5b80600a90805190602001906116e3929190613266565b507f2fc013f885e8a815b9d697da28bc143b4dced47528c41b46e2b35fd0f4be718c816040516117139190613bcc565b60405180910390a150565b600061172982612b15565b9050919050565b600960149054906101000a900460ff1615611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790613d0e565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590613c6e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390613c4e565b60405180910390fd5b6000600f5414806118765750600f54611873610fd7565b11155b6118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90613bee565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690508015611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90613c8e565b60405180910390fd5b60105434101561198c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198390613d2e565b60405180910390fd5b600061199661294a565b90506000600190506001600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a008482612953565b7f68f2a418cb0c89d3063df527e90de8fdabbdb6401506da6fae08290d8921b331828583601054604051611a379493929190613dee565b60405180910390a150505050565b600a8054611a5290614180565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7e90614180565b8015611acb5780601f10611aa057610100808354040283529160200191611acb565b820191906000526020600020905b815481529060010190602001808311611aae57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b3b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611b9461292c565b73ffffffffffffffffffffffffffffffffffffffff16611bb2611f5a565b73ffffffffffffffffffffffffffffffffffffffff1614611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90613cae565b60405180910390fd5b611c126000612cb5565b565b611c1c61292c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480611cb05750611c7a61292c565b73ffffffffffffffffffffffffffffffffffffffff16611c98611f5a565b73ffffffffffffffffffffffffffffffffffffffff16145b611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce690613c2e565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611d5261292c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480611de65750611db061292c565b73ffffffffffffffffffffffffffffffffffffffff16611dce611f5a565b73ffffffffffffffffffffffffffffffffffffffff16145b611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c90613c2e565b60405180910390fd5b6000815111611e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6090613d6e565b60405180910390fd5b80600b9080519060200190611e7f929190613266565b507f44c58c5d5029e635b900df65b2ad5bde7b15aac30b969480ce19f5aa9fda89b881604051611eaf9190613bcc565b60405180910390a150565b600c6020528060005260406000206000915090508054611ed990614180565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0590614180565b8015611f525780601f10611f2757610100808354040283529160200191611f52565b820191906000526020600020905b815481529060010190602001808311611f3557829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f8c61292c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806120205750611fea61292c565b73ffffffffffffffffffffffffffffffffffffffff16612008611f5a565b73ffffffffffffffffffffffffffffffffffffffff16145b61205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690613c2e565b60405180910390fd5b806010819055507f2a532808f862e313781c16aa4651532207bbb8932378c7b0016fab13dd60e79e816040516120959190613d8e565b60405180910390a150565b6060600380546120af90614180565b80601f01602080910402602001604051908101604052809291908181526020018280546120db90614180565b80156121285780601f106120fd57610100808354040283529160200191612128565b820191906000526020600020905b81548152906001019060200180831161210b57829003601f168201915b5050505050905090565b60001515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146121c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bc90613cce565b60405180910390fd5b6121cf8282612d7b565b5050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6121fe848484610fee565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122605761222984848484612e86565b61225f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61226e61292c565b73ffffffffffffffffffffffffffffffffffffffff1661228c611f5a565b73ffffffffffffffffffffffffffffffffffffffff16146122e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d990613cae565b60405180910390fd5b80600960146101000a81548160ff0219169083151502179055507f10e1c3fcaff06b68391033547e8f9bb8067d7c4a2e32659b0629153814d242d3600960149054906101000a900460ff1660405161233a9190613bb1565b60405180910390a150565b61234d61292c565b73ffffffffffffffffffffffffffffffffffffffff1661236b611f5a565b73ffffffffffffffffffffffffffffffffffffffff16146123c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b890613cae565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f5d4c9f48878376ec8ef863eaacc51a56e08beecfd8056447bd9c181544546f75816040516124319190613b4a565b60405180910390a150565b606061244782612789565b61247d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612487612fe6565b905060006040518060200160405280600081525090506000825111156124ab578190505b6000600c600086815260200190815260200160002080546124cb90614180565b80601f01602080910402602001604051908101604052809291908181526020018280546124f790614180565b80156125445780601f1061251957610100808354040283529160200191612544565b820191906000526020600020905b81548152906001019060200180831161252757829003601f168201915b5050505050905060008151111561257e578181604051602001612568929190613acb565b60405160208183030381529060405291506125f2565b81600b604051602001612592929190613aef565b6040516020818303038152906040529150816125ad86613078565b6040516020016125be929190613acb565b6040516020818303038152906040529150816040516020016125e09190613b13565b60405160208183030381529060405291505b819350505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61269961292c565b73ffffffffffffffffffffffffffffffffffffffff166126b7611f5a565b73ffffffffffffffffffffffffffffffffffffffff161461270d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270490613cae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561277d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277490613c0e565b60405180910390fd5b61278681612cb5565b50565b600081612794612b10565b111580156127a3575060005482105b80156127e1575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006127f38261171e565b90508073ffffffffffffffffffffffffffffffffffffffff16612814612c0a565b73ffffffffffffffffffffffffffffffffffffffff1614612877576128408161283b612c0a565b6125fd565b612876576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600033905090565b600081836129429190613f4d565b905092915050565b60008054905090565b6000805490506000821415612994576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129a16000848385612c56565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612a1883612a096000866000612c5c565b612a128561324d565b17612c84565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612ab957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612a7e565b506000821415612af5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612b0b6000848385612caf565b505050565b600090565b60008082905080612b24612b10565b11612bac57600054811015612bab5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612ba9575b6000811415612b9f576004600083600190039350838152602001908152602001600020549050612b74565b8092505050612bde565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612c7386868461325d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000612d88612c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612e35612c0a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e7a9190613bb1565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612eac612c0a565b8786866040518563ffffffff1660e01b8152600401612ece9493929190613b65565b602060405180830381600087803b158015612ee857600080fd5b505af1925050508015612f1957506040513d601f19601f82011682018060405250810190612f169190613679565b60015b612f93573d8060008114612f49576040519150601f19603f3d011682016040523d82523d6000602084013e612f4e565b606091505b50600081511415612f8b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612ff590614180565b80601f016020809104026020016040519081016040528092919081815260200182805461302190614180565b801561306e5780601f106130435761010080835404028352916020019161306e565b820191906000526020600020905b81548152906001019060200180831161305157829003601f168201915b5050505050905090565b606060008214156130c0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613248565b600082905060005b600082146130f25780806130db906141e3565b915050600a826130eb9190613fda565b91506130c8565b60008167ffffffffffffffff811115613134577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131665781602001600182028036833780820191505090505b50905060008290505b60008614613240576001816131849190614065565b90506000600a80886131969190613fda565b6131a0919061400b565b876131ab9190614065565b60306131b79190613fa3565b905060008160f81b9050808484815181106131fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886132379190613fda565b9750505061316f565b819450505050505b919050565b60006001821460e11b9050919050565b60009392505050565b82805461327290614180565b90600052602060002090601f01602090048101928261329457600085556132db565b82601f106132ad57805160ff19168380011785556132db565b828001600101855582156132db579182015b828111156132da5782518255916020019190600101906132bf565b5b5090506132e891906132ec565b5090565b5b808211156133055760008160009055506001016132ed565b5090565b600061331c61331784613e88565b613e63565b90508281526020810184848401111561333457600080fd5b61333f84828561413e565b509392505050565b600061335a61335584613eb9565b613e63565b90508281526020810184848401111561337257600080fd5b61337d84828561413e565b509392505050565b600081359050613394816145ac565b92915050565b6000813590506133a9816145c3565b92915050565b6000813590506133be816145da565b92915050565b6000813590506133d3816145f1565b92915050565b6000815190506133e8816145f1565b92915050565b600082601f8301126133ff57600080fd5b813561340f848260208601613309565b91505092915050565b600082601f83011261342957600080fd5b8135613439848260208601613347565b91505092915050565b60008135905061345181614608565b92915050565b60006020828403121561346957600080fd5b600061347784828501613385565b91505092915050565b60006020828403121561349257600080fd5b60006134a08482850161339a565b91505092915050565b600080604083850312156134bc57600080fd5b60006134ca85828601613385565b92505060206134db85828601613385565b9150509250929050565b6000806000606084860312156134fa57600080fd5b600061350886828701613385565b935050602061351986828701613385565b925050604061352a86828701613442565b9150509250925092565b6000806000806080858703121561354a57600080fd5b600061355887828801613385565b945050602061356987828801613385565b935050604061357a87828801613442565b925050606085013567ffffffffffffffff81111561359757600080fd5b6135a3878288016133ee565b91505092959194509250565b600080604083850312156135c257600080fd5b60006135d085828601613385565b92505060206135e1858286016133af565b9150509250929050565b600080604083850312156135fe57600080fd5b600061360c85828601613385565b925050602061361d85828601613442565b9150509250929050565b60006020828403121561363957600080fd5b6000613647848285016133af565b91505092915050565b60006020828403121561366257600080fd5b6000613670848285016133c4565b91505092915050565b60006020828403121561368b57600080fd5b6000613699848285016133d9565b91505092915050565b6000602082840312156136b457600080fd5b600082013567ffffffffffffffff8111156136ce57600080fd5b6136da84828501613418565b91505092915050565b6000602082840312156136f557600080fd5b600061370384828501613442565b91505092915050565b6000806040838503121561371f57600080fd5b600061372d85828601613442565b925050602083013567ffffffffffffffff81111561374a57600080fd5b61375685828601613418565b9150509250929050565b61376981614099565b82525050565b613778816140bd565b82525050565b600061378982613eff565b6137938185613f15565b93506137a381856020860161414d565b6137ac816142e8565b840191505092915050565b6137c08161412c565b82525050565b60006137d182613f0a565b6137db8185613f31565b93506137eb81856020860161414d565b6137f4816142e8565b840191505092915050565b600061380a82613f0a565b6138148185613f42565b935061382481856020860161414d565b80840191505092915050565b6000815461383d81614180565b6138478186613f42565b945060018216600081146138625760018114613873576138a6565b60ff198316865281860193506138a6565b61387c85613eea565b60005b8381101561389e5781548189015260018201915060208101905061387f565b838801955050505b50505092915050565b60006138bc600b83613f31565b91506138c7826142f9565b602082019050919050565b60006138df602683613f31565b91506138ea82614322565b604082019050919050565b6000613902602283613f31565b915061390d82614371565b604082019050919050565b6000613925603583613f31565b9150613930826143c0565b604082019050919050565b6000613948600b83613f31565b91506139538261440f565b602082019050919050565b600061396b601583613f31565b915061397682614438565b602082019050919050565b600061398e600583613f42565b915061399982614461565b600582019050919050565b60006139b1602083613f31565b91506139bc8261448a565b602082019050919050565b60006139d4601383613f31565b91506139df826144b3565b602082019050919050565b60006139f7600083613f26565b9150613a02826144dc565b600082019050919050565b6000613a1a601083613f31565b9150613a25826144df565b602082019050919050565b6000613a3d601083613f31565b9150613a4882614508565b602082019050919050565b6000613a60600f83613f31565b9150613a6b82614531565b602082019050919050565b6000613a83601e83613f31565b9150613a8e8261455a565b602082019050919050565b6000613aa6601383613f31565b9150613ab182614583565b602082019050919050565b613ac581614115565b82525050565b6000613ad782856137ff565b9150613ae382846137ff565b91508190509392505050565b6000613afb82856137ff565b9150613b078284613830565b91508190509392505050565b6000613b1f82846137ff565b9150613b2a82613981565b915081905092915050565b6000613b40826139ea565b9150819050919050565b6000602082019050613b5f6000830184613760565b92915050565b6000608082019050613b7a6000830187613760565b613b876020830186613760565b613b946040830185613abc565b8181036060830152613ba6818461377e565b905095945050505050565b6000602082019050613bc6600083018461376f565b92915050565b60006020820190508181036000830152613be681846137c6565b905092915050565b60006020820190508181036000830152613c07816138af565b9050919050565b60006020820190508181036000830152613c27816138d2565b9050919050565b60006020820190508181036000830152613c47816138f5565b9050919050565b60006020820190508181036000830152613c6781613918565b9050919050565b60006020820190508181036000830152613c878161393b565b9050919050565b60006020820190508181036000830152613ca78161395e565b9050919050565b60006020820190508181036000830152613cc7816139a4565b9050919050565b60006020820190508181036000830152613ce7816139c7565b9050919050565b60006020820190508181036000830152613d0781613a0d565b9050919050565b60006020820190508181036000830152613d2781613a30565b9050919050565b60006020820190508181036000830152613d4781613a53565b9050919050565b60006020820190508181036000830152613d6781613a76565b9050919050565b60006020820190508181036000830152613d8781613a99565b9050919050565b6000602082019050613da36000830184613abc565b92915050565b6000608082019050613dbe6000830187613abc565b613dcb6020830186613760565b613dd86040830185613abc565b613de560608301846137b7565b95945050505050565b6000608082019050613e036000830187613abc565b613e106020830186613760565b613e1d6040830185613abc565b613e2a6060830184613abc565b95945050505050565b6000604082019050613e486000830185613abc565b8181036020830152613e5a81846137c6565b90509392505050565b6000613e6d613e7e565b9050613e7982826141b2565b919050565b6000604051905090565b600067ffffffffffffffff821115613ea357613ea26142b9565b5b613eac826142e8565b9050602081019050919050565b600067ffffffffffffffff821115613ed457613ed36142b9565b5b613edd826142e8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f5882614115565b9150613f6383614115565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f9857613f9761422c565b5b828201905092915050565b6000613fae8261411f565b9150613fb98361411f565b92508260ff03821115613fcf57613fce61422c565b5b828201905092915050565b6000613fe582614115565b9150613ff083614115565b92508261400057613fff61425b565b5b828204905092915050565b600061401682614115565b915061402183614115565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561405a5761405961422c565b5b828202905092915050565b600061407082614115565b915061407b83614115565b92508282101561408e5761408d61422c565b5b828203905092915050565b60006140a4826140f5565b9050919050565b60006140b6826140f5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061413782614115565b9050919050565b82818337600083830152505050565b60005b8381101561416b578082015181840152602081019050614150565b8381111561417a576000848401525b50505050565b6000600282049050600182168061419857607f821691505b602082108114156141ac576141ab61428a565b5b50919050565b6141bb826142e8565b810181811067ffffffffffffffff821117156141da576141d96142b9565b5b80604052505050565b60006141ee82614115565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142215761422061422c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f546f74616c206c696d6974000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f63616c6c6572206973206e6f7420746865206578656375746f72206f72206f7760008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f5468652061646472657373206f6620746f2063616e6e6f74206265207468652060008201527f61646472657373206f66207468652063616c6c65720000000000000000000000602082015250565b7f6f6e6c79206f726967696e000000000000000000000000000000000000000000600082015250565b7f54686973206164647265737320686173206d696e740000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964204d61726b6574706c61636500000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f6e667420686173206e6f74206f70656e00000000000000000000000000000000600082015250565b7f546865207072696365206572726f720000000000000000000000000000000000600082015250565b7f54686520746f74616c20737570706c79206d6f7265207468616e206d61780000600082015250565b7f555249206c656e677468206e6f74206e756c6c00000000000000000000000000600082015250565b6145b581614099565b81146145c057600080fd5b50565b6145cc816140ab565b81146145d757600080fd5b50565b6145e3816140bd565b81146145ee57600080fd5b50565b6145fa816140c9565b811461460557600080fd5b50565b61461181614115565b811461461c57600080fd5b5056fea2646970667358221220dff0dd281701744530a163d944a84b44ee11c162378454b48b5f51f32f2fa7e164736f6c63430008040033000000000000000000000000f261451016a6a08b51656471e33ae412aff6f50d00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001568747470733a2f2f697066732e696f2f697066732f0000000000000000000000000000000000000000000000000000000000000000000000000000000000003c626166796265696135717a356c75737276686a68646b676a7567357263656165736e356e6a7735766a7869636e6f6d756b36747967613364766c712f00000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c80636a6278421161011857806395d89b41116100a0578063bedb86fb1161006f578063bedb86fb14610720578063c2513f1114610749578063c87b56dd14610772578063e985e9c5146107af578063f2fde38b146107ec57610204565b806395d89b4114610673578063a22cb4651461069e578063a85c749a146106c7578063b88d4fde1461070457610204565b80637a24f53b116100e75780637a24f53b146105905780637a3f773c146105b95780638d17e712146105e25780638da5cb5b1461061f57806391b7f5ed1461064a57610204565b80636a627842146104f55780636c0360eb1461051157806370a082311461053c578063715018a61461057957610204565b806323b872dd1161019b5780633f3e4c111161016a5780633f3e4c111461040d57806342842e0e14610436578063543788a11461045257806355f804b31461048f5780636352211e146104b857610204565b806323b872dd146103705780632ab4d0521461038c578063350157a8146103b75780633b7b3c9f146103e257610204565b806309f21f6a116101d757806309f21f6a146102ca5780631483be90146102f3578063162094c41461031c57806318160ddd1461034557610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613650565b610815565b60405161023d9190613bb1565b60405180910390f35b34801561025257600080fd5b5061025b6108a7565b6040516102689190613bcc565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906136e3565b610939565b6040516102a59190613b4a565b60405180910390f35b6102c860048036038101906102c391906135eb565b6109b8565b005b3480156102d657600080fd5b506102f160048036038101906102ec9190613480565b610a59565b005b3480156102ff57600080fd5b5061031a600480360381019061031591906135eb565b610b89565b005b34801561032857600080fd5b50610343600480360381019061033e919061370c565b610e53565b005b34801561035157600080fd5b5061035a610fd7565b6040516103679190613d8e565b60405180910390f35b61038a600480360381019061038591906134e5565b610fee565b005b34801561039857600080fd5b506103a1611313565b6040516103ae9190613d8e565b60405180910390f35b3480156103c357600080fd5b506103cc611319565b6040516103d99190613b4a565b60405180910390f35b3480156103ee57600080fd5b506103f761138e565b6040516104049190613bcc565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f91906136e3565b61141c565b005b610450600480360381019061044b91906134e5565b611538565b005b34801561045e57600080fd5b5061047960048036038101906104749190613457565b611558565b6040516104869190613bb1565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b191906136a2565b6115ae565b005b3480156104c457600080fd5b506104df60048036038101906104da91906136e3565b61171e565b6040516104ec9190613b4a565b60405180910390f35b61050f600480360381019061050a9190613457565b611730565b005b34801561051d57600080fd5b50610526611a45565b6040516105339190613bcc565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190613457565b611ad3565b6040516105709190613d8e565b60405180910390f35b34801561058557600080fd5b5061058e611b8c565b005b34801561059c57600080fd5b506105b760048036038101906105b291906135af565b611c14565b005b3480156105c557600080fd5b506105e060048036038101906105db91906136a2565b611d4a565b005b3480156105ee57600080fd5b50610609600480360381019061060491906136e3565b611eba565b6040516106169190613bcc565b60405180910390f35b34801561062b57600080fd5b50610634611f5a565b6040516106419190613b4a565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c91906136e3565b611f84565b005b34801561067f57600080fd5b506106886120a0565b6040516106959190613bcc565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c091906135af565b612132565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613457565b6121d3565b6040516106fb9190613bb1565b60405180910390f35b61071e60048036038101906107199190613534565b6121f3565b005b34801561072c57600080fd5b5061074760048036038101906107429190613627565b612266565b005b34801561075557600080fd5b50610770600480360381019061076b9190613457565b612345565b005b34801561077e57600080fd5b50610799600480360381019061079491906136e3565b61243c565b6040516107a69190613bcc565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906134a9565b6125fd565b6040516107e39190613bb1565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e9190613457565b612691565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108b690614180565b80601f01602080910402602001604051908101604052809291908181526020018280546108e290614180565b801561092f5780601f106109045761010080835404028352916020019161092f565b820191906000526020600020905b81548152906001019060200180831161091257829003601f168201915b5050505050905090565b600061094482612789565b61097a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60001515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290613cce565b60405180910390fd5b610a5582826127e8565b5050565b610a6161292c565b73ffffffffffffffffffffffffffffffffffffffff16610a7f611f5a565b73ffffffffffffffffffffffffffffffffffffffff1614610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90613cae565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1661520847604051610afe90613b35565b600060405180830381858888f193505050503d8060008114610b3c576040519150601f19603f3d011682016040523d82523d6000602084013e610b41565b606091505b5050905080610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90613cee565b60405180910390fd5b5050565b610b9161292c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610c255750610bef61292c565b73ffffffffffffffffffffffffffffffffffffffff16610c0d611f5a565b73ffffffffffffffffffffffffffffffffffffffff16145b610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90613c2e565b60405180910390fd5b600960149054906101000a900460ff1615610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90613d0e565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1990613c6e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790613c4e565b60405180910390fd5b6000600f541480610dbb5750600f54610db982610dab610fd7565b61293490919063ffffffff16565b105b610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190613d4e565b60405180910390fd5b6000610e0461294a565b9050610e108383612953565b7f68f2a418cb0c89d3063df527e90de8fdabbdb6401506da6fae08290d8921b3318184846000604051610e469493929190613da9565b60405180910390a1505050565b610e5b61292c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610eef5750610eb961292c565b73ffffffffffffffffffffffffffffffffffffffff16610ed7611f5a565b73ffffffffffffffffffffffffffffffffffffffff16145b610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590613c2e565b60405180910390fd5b6000815111610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990613d6e565b60405180910390fd5b80600c60008481526020019081526020016000209080519060200190610f99929190613266565b507f46d8448744d5437620a2269b16ee3c2a7c456939212e0ebff458b1692982a6238282604051610fcb929190613e33565b60405180910390a15050565b6000610fe1612b10565b6001546000540303905090565b6000610ff982612b15565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611060576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061106c84612be3565b91509150611082818761107d612c0a565b612c12565b6110ce5761109786611092612c0a565b6125fd565b6110cd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611135576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111428686866001612c56565b801561114d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061121b856111f7888887612c5c565b7c020000000000000000000000000000000000000000000000000000000017612c84565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156112a35760006001850190506000600460008381526020019081526020016000205414156112a15760005481146112a0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461130b8686866001612caf565b505050505050565b600f5481565b600061132361292c565b73ffffffffffffffffffffffffffffffffffffffff16611341611f5a565b73ffffffffffffffffffffffffffffffffffffffff1614611365576000905061138b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b90565b600b805461139b90614180565b80601f01602080910402602001604051908101604052809291908181526020018280546113c790614180565b80156114145780601f106113e957610100808354040283529160200191611414565b820191906000526020600020905b8154815290600101906020018083116113f757829003601f168201915b505050505081565b61142461292c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806114b8575061148261292c565b73ffffffffffffffffffffffffffffffffffffffff166114a0611f5a565b73ffffffffffffffffffffffffffffffffffffffff16145b6114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee90613c2e565b60405180910390fd5b80600f819055507febcabb09c4acfc0d9a87ab83271030ef016b067d1ce0dd6299c8862a972103b18160405161152d9190613d8e565b60405180910390a150565b611553838383604051806020016040528060008152506121f3565b505050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6115b661292c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061164a575061161461292c565b73ffffffffffffffffffffffffffffffffffffffff16611632611f5a565b73ffffffffffffffffffffffffffffffffffffffff16145b611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613c2e565b60405180910390fd5b60008151116116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613d6e565b60405180910390fd5b80600a90805190602001906116e3929190613266565b507f2fc013f885e8a815b9d697da28bc143b4dced47528c41b46e2b35fd0f4be718c816040516117139190613bcc565b60405180910390a150565b600061172982612b15565b9050919050565b600960149054906101000a900460ff1615611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790613d0e565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590613c6e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390613c4e565b60405180910390fd5b6000600f5414806118765750600f54611873610fd7565b11155b6118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90613bee565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690508015611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90613c8e565b60405180910390fd5b60105434101561198c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198390613d2e565b60405180910390fd5b600061199661294a565b90506000600190506001600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a008482612953565b7f68f2a418cb0c89d3063df527e90de8fdabbdb6401506da6fae08290d8921b331828583601054604051611a379493929190613dee565b60405180910390a150505050565b600a8054611a5290614180565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7e90614180565b8015611acb5780601f10611aa057610100808354040283529160200191611acb565b820191906000526020600020905b815481529060010190602001808311611aae57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b3b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611b9461292c565b73ffffffffffffffffffffffffffffffffffffffff16611bb2611f5a565b73ffffffffffffffffffffffffffffffffffffffff1614611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90613cae565b60405180910390fd5b611c126000612cb5565b565b611c1c61292c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480611cb05750611c7a61292c565b73ffffffffffffffffffffffffffffffffffffffff16611c98611f5a565b73ffffffffffffffffffffffffffffffffffffffff16145b611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce690613c2e565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611d5261292c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480611de65750611db061292c565b73ffffffffffffffffffffffffffffffffffffffff16611dce611f5a565b73ffffffffffffffffffffffffffffffffffffffff16145b611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c90613c2e565b60405180910390fd5b6000815111611e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6090613d6e565b60405180910390fd5b80600b9080519060200190611e7f929190613266565b507f44c58c5d5029e635b900df65b2ad5bde7b15aac30b969480ce19f5aa9fda89b881604051611eaf9190613bcc565b60405180910390a150565b600c6020528060005260406000206000915090508054611ed990614180565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0590614180565b8015611f525780601f10611f2757610100808354040283529160200191611f52565b820191906000526020600020905b815481529060010190602001808311611f3557829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f8c61292c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806120205750611fea61292c565b73ffffffffffffffffffffffffffffffffffffffff16612008611f5a565b73ffffffffffffffffffffffffffffffffffffffff16145b61205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690613c2e565b60405180910390fd5b806010819055507f2a532808f862e313781c16aa4651532207bbb8932378c7b0016fab13dd60e79e816040516120959190613d8e565b60405180910390a150565b6060600380546120af90614180565b80601f01602080910402602001604051908101604052809291908181526020018280546120db90614180565b80156121285780601f106120fd57610100808354040283529160200191612128565b820191906000526020600020905b81548152906001019060200180831161210b57829003601f168201915b5050505050905090565b60001515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146121c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bc90613cce565b60405180910390fd5b6121cf8282612d7b565b5050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6121fe848484610fee565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122605761222984848484612e86565b61225f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61226e61292c565b73ffffffffffffffffffffffffffffffffffffffff1661228c611f5a565b73ffffffffffffffffffffffffffffffffffffffff16146122e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d990613cae565b60405180910390fd5b80600960146101000a81548160ff0219169083151502179055507f10e1c3fcaff06b68391033547e8f9bb8067d7c4a2e32659b0629153814d242d3600960149054906101000a900460ff1660405161233a9190613bb1565b60405180910390a150565b61234d61292c565b73ffffffffffffffffffffffffffffffffffffffff1661236b611f5a565b73ffffffffffffffffffffffffffffffffffffffff16146123c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b890613cae565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f5d4c9f48878376ec8ef863eaacc51a56e08beecfd8056447bd9c181544546f75816040516124319190613b4a565b60405180910390a150565b606061244782612789565b61247d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612487612fe6565b905060006040518060200160405280600081525090506000825111156124ab578190505b6000600c600086815260200190815260200160002080546124cb90614180565b80601f01602080910402602001604051908101604052809291908181526020018280546124f790614180565b80156125445780601f1061251957610100808354040283529160200191612544565b820191906000526020600020905b81548152906001019060200180831161252757829003601f168201915b5050505050905060008151111561257e578181604051602001612568929190613acb565b60405160208183030381529060405291506125f2565b81600b604051602001612592929190613aef565b6040516020818303038152906040529150816125ad86613078565b6040516020016125be929190613acb565b6040516020818303038152906040529150816040516020016125e09190613b13565b60405160208183030381529060405291505b819350505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61269961292c565b73ffffffffffffffffffffffffffffffffffffffff166126b7611f5a565b73ffffffffffffffffffffffffffffffffffffffff161461270d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270490613cae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561277d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277490613c0e565b60405180910390fd5b61278681612cb5565b50565b600081612794612b10565b111580156127a3575060005482105b80156127e1575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006127f38261171e565b90508073ffffffffffffffffffffffffffffffffffffffff16612814612c0a565b73ffffffffffffffffffffffffffffffffffffffff1614612877576128408161283b612c0a565b6125fd565b612876576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600033905090565b600081836129429190613f4d565b905092915050565b60008054905090565b6000805490506000821415612994576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129a16000848385612c56565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612a1883612a096000866000612c5c565b612a128561324d565b17612c84565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612ab957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612a7e565b506000821415612af5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612b0b6000848385612caf565b505050565b600090565b60008082905080612b24612b10565b11612bac57600054811015612bab5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612ba9575b6000811415612b9f576004600083600190039350838152602001908152602001600020549050612b74565b8092505050612bde565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612c7386868461325d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000612d88612c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612e35612c0a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e7a9190613bb1565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612eac612c0a565b8786866040518563ffffffff1660e01b8152600401612ece9493929190613b65565b602060405180830381600087803b158015612ee857600080fd5b505af1925050508015612f1957506040513d601f19601f82011682018060405250810190612f169190613679565b60015b612f93573d8060008114612f49576040519150601f19603f3d011682016040523d82523d6000602084013e612f4e565b606091505b50600081511415612f8b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612ff590614180565b80601f016020809104026020016040519081016040528092919081815260200182805461302190614180565b801561306e5780601f106130435761010080835404028352916020019161306e565b820191906000526020600020905b81548152906001019060200180831161305157829003601f168201915b5050505050905090565b606060008214156130c0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613248565b600082905060005b600082146130f25780806130db906141e3565b915050600a826130eb9190613fda565b91506130c8565b60008167ffffffffffffffff811115613134577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131665781602001600182028036833780820191505090505b50905060008290505b60008614613240576001816131849190614065565b90506000600a80886131969190613fda565b6131a0919061400b565b876131ab9190614065565b60306131b79190613fa3565b905060008160f81b9050808484815181106131fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886132379190613fda565b9750505061316f565b819450505050505b919050565b60006001821460e11b9050919050565b60009392505050565b82805461327290614180565b90600052602060002090601f01602090048101928261329457600085556132db565b82601f106132ad57805160ff19168380011785556132db565b828001600101855582156132db579182015b828111156132da5782518255916020019190600101906132bf565b5b5090506132e891906132ec565b5090565b5b808211156133055760008160009055506001016132ed565b5090565b600061331c61331784613e88565b613e63565b90508281526020810184848401111561333457600080fd5b61333f84828561413e565b509392505050565b600061335a61335584613eb9565b613e63565b90508281526020810184848401111561337257600080fd5b61337d84828561413e565b509392505050565b600081359050613394816145ac565b92915050565b6000813590506133a9816145c3565b92915050565b6000813590506133be816145da565b92915050565b6000813590506133d3816145f1565b92915050565b6000815190506133e8816145f1565b92915050565b600082601f8301126133ff57600080fd5b813561340f848260208601613309565b91505092915050565b600082601f83011261342957600080fd5b8135613439848260208601613347565b91505092915050565b60008135905061345181614608565b92915050565b60006020828403121561346957600080fd5b600061347784828501613385565b91505092915050565b60006020828403121561349257600080fd5b60006134a08482850161339a565b91505092915050565b600080604083850312156134bc57600080fd5b60006134ca85828601613385565b92505060206134db85828601613385565b9150509250929050565b6000806000606084860312156134fa57600080fd5b600061350886828701613385565b935050602061351986828701613385565b925050604061352a86828701613442565b9150509250925092565b6000806000806080858703121561354a57600080fd5b600061355887828801613385565b945050602061356987828801613385565b935050604061357a87828801613442565b925050606085013567ffffffffffffffff81111561359757600080fd5b6135a3878288016133ee565b91505092959194509250565b600080604083850312156135c257600080fd5b60006135d085828601613385565b92505060206135e1858286016133af565b9150509250929050565b600080604083850312156135fe57600080fd5b600061360c85828601613385565b925050602061361d85828601613442565b9150509250929050565b60006020828403121561363957600080fd5b6000613647848285016133af565b91505092915050565b60006020828403121561366257600080fd5b6000613670848285016133c4565b91505092915050565b60006020828403121561368b57600080fd5b6000613699848285016133d9565b91505092915050565b6000602082840312156136b457600080fd5b600082013567ffffffffffffffff8111156136ce57600080fd5b6136da84828501613418565b91505092915050565b6000602082840312156136f557600080fd5b600061370384828501613442565b91505092915050565b6000806040838503121561371f57600080fd5b600061372d85828601613442565b925050602083013567ffffffffffffffff81111561374a57600080fd5b61375685828601613418565b9150509250929050565b61376981614099565b82525050565b613778816140bd565b82525050565b600061378982613eff565b6137938185613f15565b93506137a381856020860161414d565b6137ac816142e8565b840191505092915050565b6137c08161412c565b82525050565b60006137d182613f0a565b6137db8185613f31565b93506137eb81856020860161414d565b6137f4816142e8565b840191505092915050565b600061380a82613f0a565b6138148185613f42565b935061382481856020860161414d565b80840191505092915050565b6000815461383d81614180565b6138478186613f42565b945060018216600081146138625760018114613873576138a6565b60ff198316865281860193506138a6565b61387c85613eea565b60005b8381101561389e5781548189015260018201915060208101905061387f565b838801955050505b50505092915050565b60006138bc600b83613f31565b91506138c7826142f9565b602082019050919050565b60006138df602683613f31565b91506138ea82614322565b604082019050919050565b6000613902602283613f31565b915061390d82614371565b604082019050919050565b6000613925603583613f31565b9150613930826143c0565b604082019050919050565b6000613948600b83613f31565b91506139538261440f565b602082019050919050565b600061396b601583613f31565b915061397682614438565b602082019050919050565b600061398e600583613f42565b915061399982614461565b600582019050919050565b60006139b1602083613f31565b91506139bc8261448a565b602082019050919050565b60006139d4601383613f31565b91506139df826144b3565b602082019050919050565b60006139f7600083613f26565b9150613a02826144dc565b600082019050919050565b6000613a1a601083613f31565b9150613a25826144df565b602082019050919050565b6000613a3d601083613f31565b9150613a4882614508565b602082019050919050565b6000613a60600f83613f31565b9150613a6b82614531565b602082019050919050565b6000613a83601e83613f31565b9150613a8e8261455a565b602082019050919050565b6000613aa6601383613f31565b9150613ab182614583565b602082019050919050565b613ac581614115565b82525050565b6000613ad782856137ff565b9150613ae382846137ff565b91508190509392505050565b6000613afb82856137ff565b9150613b078284613830565b91508190509392505050565b6000613b1f82846137ff565b9150613b2a82613981565b915081905092915050565b6000613b40826139ea565b9150819050919050565b6000602082019050613b5f6000830184613760565b92915050565b6000608082019050613b7a6000830187613760565b613b876020830186613760565b613b946040830185613abc565b8181036060830152613ba6818461377e565b905095945050505050565b6000602082019050613bc6600083018461376f565b92915050565b60006020820190508181036000830152613be681846137c6565b905092915050565b60006020820190508181036000830152613c07816138af565b9050919050565b60006020820190508181036000830152613c27816138d2565b9050919050565b60006020820190508181036000830152613c47816138f5565b9050919050565b60006020820190508181036000830152613c6781613918565b9050919050565b60006020820190508181036000830152613c878161393b565b9050919050565b60006020820190508181036000830152613ca78161395e565b9050919050565b60006020820190508181036000830152613cc7816139a4565b9050919050565b60006020820190508181036000830152613ce7816139c7565b9050919050565b60006020820190508181036000830152613d0781613a0d565b9050919050565b60006020820190508181036000830152613d2781613a30565b9050919050565b60006020820190508181036000830152613d4781613a53565b9050919050565b60006020820190508181036000830152613d6781613a76565b9050919050565b60006020820190508181036000830152613d8781613a99565b9050919050565b6000602082019050613da36000830184613abc565b92915050565b6000608082019050613dbe6000830187613abc565b613dcb6020830186613760565b613dd86040830185613abc565b613de560608301846137b7565b95945050505050565b6000608082019050613e036000830187613abc565b613e106020830186613760565b613e1d6040830185613abc565b613e2a6060830184613abc565b95945050505050565b6000604082019050613e486000830185613abc565b8181036020830152613e5a81846137c6565b90509392505050565b6000613e6d613e7e565b9050613e7982826141b2565b919050565b6000604051905090565b600067ffffffffffffffff821115613ea357613ea26142b9565b5b613eac826142e8565b9050602081019050919050565b600067ffffffffffffffff821115613ed457613ed36142b9565b5b613edd826142e8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f5882614115565b9150613f6383614115565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f9857613f9761422c565b5b828201905092915050565b6000613fae8261411f565b9150613fb98361411f565b92508260ff03821115613fcf57613fce61422c565b5b828201905092915050565b6000613fe582614115565b9150613ff083614115565b92508261400057613fff61425b565b5b828204905092915050565b600061401682614115565b915061402183614115565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561405a5761405961422c565b5b828202905092915050565b600061407082614115565b915061407b83614115565b92508282101561408e5761408d61422c565b5b828203905092915050565b60006140a4826140f5565b9050919050565b60006140b6826140f5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061413782614115565b9050919050565b82818337600083830152505050565b60005b8381101561416b578082015181840152602081019050614150565b8381111561417a576000848401525b50505050565b6000600282049050600182168061419857607f821691505b602082108114156141ac576141ab61428a565b5b50919050565b6141bb826142e8565b810181811067ffffffffffffffff821117156141da576141d96142b9565b5b80604052505050565b60006141ee82614115565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142215761422061422c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f546f74616c206c696d6974000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f63616c6c6572206973206e6f7420746865206578656375746f72206f72206f7760008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f5468652061646472657373206f6620746f2063616e6e6f74206265207468652060008201527f61646472657373206f66207468652063616c6c65720000000000000000000000602082015250565b7f6f6e6c79206f726967696e000000000000000000000000000000000000000000600082015250565b7f54686973206164647265737320686173206d696e740000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964204d61726b6574706c61636500000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f6e667420686173206e6f74206f70656e00000000000000000000000000000000600082015250565b7f546865207072696365206572726f720000000000000000000000000000000000600082015250565b7f54686520746f74616c20737570706c79206d6f7265207468616e206d61780000600082015250565b7f555249206c656e677468206e6f74206e756c6c00000000000000000000000000600082015250565b6145b581614099565b81146145c057600080fd5b50565b6145cc816140ab565b81146145d757600080fd5b50565b6145e3816140bd565b81146145ee57600080fd5b50565b6145fa816140c9565b811461460557600080fd5b50565b61461181614115565b811461461c57600080fd5b5056fea2646970667358221220dff0dd281701744530a163d944a84b44ee11c162378454b48b5f51f32f2fa7e164736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f261451016a6a08b51656471e33ae412aff6f50d00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001568747470733a2f2f697066732e696f2f697066732f0000000000000000000000000000000000000000000000000000000000000000000000000000000000003c626166796265696135717a356c75737276686a68646b676a7567357263656165736e356e6a7735766a7869636e6f6d756b36747967613364766c712f00000000
-----Decoded View---------------
Arg [0] : _executorAddress (address): 0xf261451016A6A08b51656471e33aE412aFF6f50d
Arg [1] : baseUri (string): https://ipfs.io/ipfs/
Arg [2] : _commonTokenURI (string): bafybeia5qz5lusrvhjhdkgjug5rceaesn5njw5vjxicnomuk6tyga3dvlq/
Arg [3] : _maxTotalSupply (uint256): 1000
Arg [4] : _price (uint256): 0
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000f261451016a6a08b51656471e33ae412aff6f50d
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [6] : 68747470733a2f2f697066732e696f2f697066732f0000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [8] : 626166796265696135717a356c75737276686a68646b676a7567357263656165
Arg [9] : 736e356e6a7735766a7869636e6f6d756b36747967613364766c712f00000000
Deployed Bytecode Sourcemap
82945:7726:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44323:636;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45222:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51613:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88706:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89883;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87072:489;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84889:251;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41000:311;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55225:2735;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83381:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86495:200;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83150:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86703:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58056:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89626:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84673:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46615:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87569:651;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83122:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42160:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25465:94;;;;;;;;;;;;;:::i;:::-;;89477:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85148:257;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83185:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24814:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85413:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45398:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89243:226;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83235:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58847:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89761:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86886:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85756:731;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52562:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25714:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44323:636;44408:4;44743:10;44728:25;;:11;:25;;;;:98;;;;44816:10;44801:25;;:11;:25;;;;44728:98;:171;;;;44889:10;44874:25;;:11;:25;;;;44728:171;44712:187;;44323:636;;;:::o;45222:100::-;45276:13;45309:5;45302:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45222:100;:::o;51613:218::-;51689:7;51714:16;51722:7;51714;:16::i;:::-;51709:64;;51739:34;;;;;;;;;;;;;;51709:64;51793:15;:24;51809:7;51793:24;;;;;;;;;;;:30;;;;;;;;;;;;51786:37;;51613:218;;;:::o;88706:197::-;88829:5;88803:31;;:18;:22;88822:2;88803:22;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;88795:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;88869:26;88883:2;88887:7;88869:13;:26::i;:::-;88706:197;;:::o;89883:::-;25045:12;:10;:12::i;:::-;25034:23;;:7;:5;:7::i;:::-;:23;;;25026:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;89953:12:::1;89970:2;:7;;89984:5;89999:21;89970:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89952:73;;;90044:7;90036:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;25105:1;89883:197:::0;:::o;87072:489::-;84567:12;:10;:12::i;:::-;84548:31;;:15;;;;;;;;;;;:31;;;:58;;;;84594:12;:10;:12::i;:::-;84583:23;;:7;:5;:7::i;:::-;:23;;;84548:58;84540:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;84453:5:::1;;;;;;;;;;;84452:6;84444:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;87187:9:::2;87173:23;;:10;:23;;;87165:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;87237:10;87231:16;;:2;:16;;;87223:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;87342:1;87324:14;;:19;:67;;;;87377:14;;87347:27;87365:8;87347:13;:11;:13::i;:::-;:17;;:27;;;;:::i;:::-;:44;87324:67;87316:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;87437:15;87455:14;:12;:14::i;:::-;87437:32;;87480:19;87486:2;87490:8;87480:5;:19::i;:::-;87515:38;87528:7;87537:2;87541:8;87551:1;87515:38;;;;;;;;;:::i;:::-;;;;;;;;84490:1;87072:489:::0;;:::o;84889:251::-;84567:12;:10;:12::i;:::-;84548:31;;:15;;;;;;;;;;;:31;;;:58;;;;84594:12;:10;:12::i;:::-;84583:23;;:7;:5;:7::i;:::-;:23;;;84548:58;84540:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;85017:1:::1;84997:9;84991:23;:27;84983:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;85074:9;85053;:18;85063:7;85053:18;;;;;;;;;;;:30;;;;;;;;;;;;:::i;:::-;;85099:33;85113:7;85122:9;85099:33;;;;;;;:::i;:::-;;;;;;;;84889:251:::0;;:::o;41000:311::-;41061:7;41281:15;:13;:15::i;:::-;41266:12;;41250:13;;:28;:46;41243:53;;41000:311;:::o;55225:2735::-;55367:27;55397;55416:7;55397:18;:27::i;:::-;55367:57;;55482:4;55441:45;;55457:19;55441:45;;;55437:86;;55495:28;;;;;;;;;;;;;;55437:86;55537:27;55566:23;55593:35;55620:7;55593:26;:35::i;:::-;55536:92;;;;55728:68;55753:15;55770:4;55776:19;:17;:19::i;:::-;55728:24;:68::i;:::-;55723:180;;55816:43;55833:4;55839:19;:17;:19::i;:::-;55816:16;:43::i;:::-;55811:92;;55868:35;;;;;;;;;;;;;;55811:92;55723:180;55934:1;55920:16;;:2;:16;;;55916:52;;;55945:23;;;;;;;;;;;;;;55916:52;55981:43;56003:4;56009:2;56013:7;56022:1;55981:21;:43::i;:::-;56117:15;56114:2;;;56253:1;56232:19;56225:30;56114:2;56638:18;:24;56657:4;56638:24;;;;;;;;;;;;;;;;56636:26;;;;;;;;;;;;56712:18;:22;56731:2;56712:22;;;;;;;;;;;;;;;;56710:24;;;;;;;;;;;57019:134;57052:2;57097:45;57112:4;57118:2;57122:19;57097:14;:45::i;:::-;37403:8;57069:73;57019:18;:134::i;:::-;56990:17;:26;57008:7;56990:26;;;;;;;;;;;:163;;;;57316:1;37403:8;57265:19;:47;:52;57261:587;;;57334:19;57366:1;57356:7;:11;57334:33;;57515:1;57481:17;:30;57499:11;57481:30;;;;;;;;;;;;:35;57477:360;;;57611:13;;57596:11;:28;57592:230;;57783:19;57750:17;:30;57768:11;57750:30;;;;;;;;;;;:52;;;;57592:230;57477:360;57261:587;;57891:7;57887:2;57872:27;;57881:4;57872:27;;;;;;;;;;;;57910:42;57931:4;57937:2;57941:7;57950:1;57910:20;:42::i;:::-;55225:2735;;;;;;:::o;83381:33::-;;;;:::o;86495:200::-;86546:24;86597:12;:10;:12::i;:::-;86586:23;;:7;:5;:7::i;:::-;:23;;;86582:73;;86641:1;86626:17;;;;86582:73;86672:15;;;;;;;;;;;86665:22;;86495:200;;:::o;83150:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;86703:175::-;84567:12;:10;:12::i;:::-;84548:31;;:15;;;;;;;;;;;:31;;;:58;;;;84594:12;:10;:12::i;:::-;84583:23;;:7;:5;:7::i;:::-;:23;;;84548:58;84540:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;86803:15:::1;86786:14;:32;;;;86834:36;86854:15;86834:36;;;;;;:::i;:::-;;;;;;;;86703:175:::0;:::o;58056:193::-;58202:39;58219:4;58225:2;58229:7;58202:39;;;;;;;;;;;;:16;:39::i;:::-;58056:193;;;:::o;89626:127::-;89694:4;89717:18;:28;89736:8;89717:28;;;;;;;;;;;;;;;;;;;;;;;;;89710:35;;89626:127;;;:::o;84673:208::-;84567:12;:10;:12::i;:::-;84548:31;;:15;;;;;;;;;;;:31;;;:58;;;;84594:12;:10;:12::i;:::-;84583:23;;:7;:5;:7::i;:::-;:23;;;84548:58;84540:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;84781:1:::1;84762:8;84756:22;:26;84748:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;84827:8;84817:7;:18;;;;;;;;;;;;:::i;:::-;;84851:22;84864:8;84851:22;;;;;;:::i;:::-;;;;;;;;84673:208:::0;:::o;46615:152::-;46687:7;46730:27;46749:7;46730:18;:27::i;:::-;46707:52;;46615:152;;;:::o;87569:651::-;84453:5;;;;;;;;;;;84452:6;84444:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;87653:9:::1;87639:23;;:10;:23;;;87631:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;87703:10;87697:16;;:2;:16;;;87689:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;87810:1;87792:14;;:19;:54;;;;87832:14;;87815:13;:11;:13::i;:::-;:31;;87792:54;87784:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;87875:11;87889:10;:14;87900:2;87889:14;;;;;;;;;;;;;;;;;;;;;;;;;87875:28;;87923:6;87922:7;87914:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;87989:5;;87976:9;:18;;87968:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;88027:15;88045:14;:12;:14::i;:::-;88027:32;;88070:16;88089:1;88070:20;;88120:4;88103:10;:14;88114:2;88103:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;88135:19;88141:2;88145:8;88135:5;:19::i;:::-;88170:42;88183:7;88192:2;88196:8;88206:5;;88170:42;;;;;;;;;:::i;:::-;;;;;;;;84490:1;;;87569:651:::0;:::o;83122:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42160:233::-;42232:7;42273:1;42256:19;;:5;:19;;;42252:60;;;42284:28;;;;;;;;;;;;;;42252:60;36347:13;42330:18;:25;42349:5;42330:25;;;;;;;;;;;;;;;;:55;42323:62;;42160:233;;;:::o;25465:94::-;25045:12;:10;:12::i;:::-;25034:23;;:7;:5;:7::i;:::-;:23;;;25026:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25530:21:::1;25548:1;25530:9;:21::i;:::-;25465:94::o:0;89477:141::-;84567:12;:10;:12::i;:::-;84548:31;;:15;;;;;;;;;;;:31;;;:58;;;;84594:12;:10;:12::i;:::-;84583:23;;:7;:5;:7::i;:::-;:23;;;84548:58;84540:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;89602:8:::1;89571:18;:28;89590:8;89571:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;89477:141:::0;;:::o;85148:257::-;84567:12;:10;:12::i;:::-;84548:31;;:15;;;;;;;;;;;:31;;;:58;;;;84594:12;:10;:12::i;:::-;84583:23;;:7;:5;:7::i;:::-;:23;;;84548:58;84540:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;85277:1:::1;85251:15;85245:29;:33;85237:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;85330:15;85313:14;:32;;;;;;;;;;;;:::i;:::-;;85361:36;85381:15;85361:36;;;;;;:::i;:::-;;;;;;;;85148:257:::0;:::o;83185:43::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24814:87::-;24860:7;24887:6;;;;;;;;;;;24880:13;;24814:87;:::o;85413:121::-;84567:12;:10;:12::i;:::-;84548:31;;:15;;;;;;;;;;;:31;;;:58;;;;84594:12;:10;:12::i;:::-;84583:23;;:7;:5;:7::i;:::-;:23;;;84548:58;84540:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;85486:6:::1;85478:5;:14;;;;85508:18;85519:6;85508:18;;;;;;:::i;:::-;;;;;;;;85413:121:::0;:::o;45398:104::-;45454:13;45487:7;45480:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45398:104;:::o;89243:226::-;89378:5;89346:37;;:18;:28;89365:8;89346:28;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;89338:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;89418:43;89442:8;89452;89418:23;:43::i;:::-;89243:226;;:::o;83235:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;58847:407::-;59022:31;59035:4;59041:2;59045:7;59022:12;:31::i;:::-;59086:1;59068:2;:14;;;:19;59064:183;;59107:56;59138:4;59144:2;59148:7;59157:5;59107:30;:56::i;:::-;59102:145;;59191:40;;;;;;;;;;;;;;59102:145;59064:183;58847:407;;;;:::o;89761:114::-;25045:12;:10;:12::i;:::-;25034:23;;:7;:5;:7::i;:::-;:23;;;25026:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;89828:6:::1;89820:5;;:14;;;;;;;;;;;;;;;;;;89850:17;89861:5;;;;;;;;;;;89850:17;;;;;;:::i;:::-;;;;;;;;89761:114:::0;:::o;86886:178::-;25045:12;:10;:12::i;:::-;25034:23;;:7;:5;:7::i;:::-;:23;;;25026:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;86986:16:::1;86968:15;;:34;;;;;;;;;;;;;;;;;;87018:38;87039:16;87018:38;;;;;;:::i;:::-;;;;;;;;86886:178:::0;:::o;85756:731::-;85829:13;85860:16;85868:7;85860;:16::i;:::-;85855:59;;85885:29;;;;;;;;;;;;;;85855:59;85925:22;85950:10;:8;:10::i;:::-;85925:35;;85971:17;:22;;;;;;;;;;;;;;86033:1;86014:8;86008:22;:26;86004:73;;;86057:8;86051:14;;86004:73;86089:22;86114:9;:18;86124:7;86114:18;;;;;;;;;;;86089:43;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86172:1;86153:8;86147:22;:26;86143:316;;;86220:3;86225:8;86203:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;86190:45;;86143:316;;;86298:3;86303:14;86281:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;86268:51;;86364:3;86369:17;86378:7;86369:8;:17::i;:::-;86347:40;;;;;;;;;:::i;:::-;;;;;;;;;;;;;86334:54;;86433:3;86416:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;86403:44;;86143:316;86476:3;86469:10;;;;;85756:731;;;:::o;52562:164::-;52659:4;52683:18;:25;52702:5;52683:25;;;;;;;;;;;;;;;:35;52709:8;52683:35;;;;;;;;;;;;;;;;;;;;;;;;;52676:42;;52562:164;;;;:::o;25714:192::-;25045:12;:10;:12::i;:::-;25034:23;;:7;:5;:7::i;:::-;:23;;;25026:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25823:1:::1;25803:22;;:8;:22;;;;25795:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25879:19;25889:8;25879:9;:19::i;:::-;25714:192:::0;:::o;52984:279::-;53049:4;53101:7;53082:15;:13;:15::i;:::-;:26;;:62;;;;;53131:13;;53121:7;:23;53082:62;:145;;;;;53226:1;37123:8;53178:17;:26;53196:7;53178:26;;;;;;;;;;;;:44;:49;53082:145;53066:161;;52984:279;;;:::o;51046:408::-;51135:13;51151:16;51159:7;51151;:16::i;:::-;51135:32;;51207:5;51184:28;;:19;:17;:19::i;:::-;:28;;;51180:175;;51232:44;51249:5;51256:19;:17;:19::i;:::-;51232:16;:44::i;:::-;51227:128;;51304:35;;;;;;;;;;;;;;51227:128;51180:175;51400:2;51367:15;:24;51383:7;51367:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;51438:7;51434:2;51418:28;;51427:5;51418:28;;;;;;;;;;;;51046:408;;;:::o;23692:98::-;23745:7;23772:10;23765:17;;23692:98;:::o;2624:::-;2682:7;2713:1;2709;:5;;;;:::i;:::-;2702:12;;2624:98;;;;:::o;40687:103::-;40742:7;40769:13;;40762:20;;40687:103;:::o;62516:2722::-;62589:20;62612:13;;62589:36;;62652:1;62640:8;:13;62636:44;;;62662:18;;;;;;;;;;;;;;62636:44;62693:61;62723:1;62727:2;62731:12;62745:8;62693:21;:61::i;:::-;63209:1;36485:2;63179:1;:26;;63178:32;63166:8;:45;63140:18;:22;63159:2;63140:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;63464:127;63497:2;63547:33;63570:1;63574:2;63578:1;63547:14;:33::i;:::-;63514:30;63535:8;63514:20;:30::i;:::-;:66;63464:18;:127::i;:::-;63430:17;:31;63448:12;63430:31;;;;;;;;;;;:161;;;;63604:16;63631:11;63660:8;63645:12;:23;63631:37;;64149:16;64145:2;64141:25;64129:37;;64461:12;64429:8;64396:1;64342:25;64291:1;64238;64219:283;64796:1;64782:12;64778:20;64740:314;64833:3;64824:7;64821:16;64740:314;;65031:7;65021:8;65018:1;64991:25;64988:1;64985;64980:59;64882:1;64873:7;64869:15;64858:26;;64740:314;;;64744:69;65091:1;65079:8;:13;65075:45;;;65101:19;;;;;;;;;;;;;;65075:45;65149:3;65133:13;:19;;;;62516:2722;;65170:60;65199:1;65203:2;65207:12;65221:8;65170:20;:60::i;:::-;62516:2722;;;:::o;40516:92::-;40572:7;40516:92;:::o;47770:1187::-;47837:7;47857:12;47872:7;47857:22;;47932:4;47913:15;:13;:15::i;:::-;:23;47909:985;;47962:13;;47955:4;:20;47951:943;;;47996:14;48013:17;:23;48031:4;48013:23;;;;;;;;;;;;47996:40;;48122:1;37123:8;48094:6;:24;:29;48090:789;;;48719:105;48736:1;48726:6;:11;48719:105;;;48775:17;:25;48793:6;;;;;;;48775:25;;;;;;;;;;;;48766:34;;48719:105;;;48853:6;48846:13;;;;;;48090:789;47951:943;;47909:985;48918:31;;;;;;;;;;;;;;47770:1187;;;;:::o;54132:473::-;54222:27;54251:23;54292:38;54333:15;:24;54349:7;54333:24;;;;;;;;;;;54292:65;;54510:18;54487:41;;54567:19;54561:26;54542:45;;54472:126;;;;:::o;74680:105::-;74740:7;74767:10;74760:17;;74680:105;:::o;53372:647::-;53521:11;53682:16;53675:5;53671:28;53662:37;;53838:16;53827:9;53823:32;53810:45;;53984:15;53973:9;53970:30;53962:5;53951:9;53948:20;53945:56;53935:66;;53554:458;;;;;:::o;59916:159::-;;;;;:::o;73989:311::-;74124:7;74144:16;37527:3;74170:19;:41;;74144:68;;37527:3;74238:31;74249:4;74255:2;74259:9;74238:10;:31::i;:::-;74230:40;;:62;;74223:69;;;73989:311;;;;;:::o;49505:442::-;49585:14;49749:16;49742:5;49738:28;49729:37;;49922:5;49908:11;49883:23;49879:41;49876:52;49869:5;49866:63;49856:73;;49621:319;;;;:::o;60740:158::-;;;;;:::o;25914:173::-;25970:16;25989:6;;;;;;;;;;;25970:25;;26015:8;26006:6;;:17;;;;;;;;;;;;;;;;;;26070:8;26039:40;;26060:8;26039:40;;;;;;;;;;;;25914:173;;:::o;52171:234::-;52318:8;52266:18;:39;52285:19;:17;:19::i;:::-;52266:39;;;;;;;;;;;;;;;:49;52306:8;52266:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;52378:8;52342:55;;52357:19;:17;:19::i;:::-;52342:55;;;52388:8;52342:55;;;;;;:::i;:::-;;;;;;;;52171:234;;:::o;61338:716::-;61501:4;61547:2;61522:45;;;61568:19;:17;:19::i;:::-;61589:4;61595:7;61604:5;61522:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;61518:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61822:1;61805:6;:13;:18;61801:235;;;61851:40;;;;;;;;;;;;;;61801:235;61994:6;61988:13;61979:6;61975:2;61971:15;61964:38;61518:529;61691:54;;;61681:64;;;:6;:64;;;;61674:71;;;61338:716;;;;;;:::o;85542:108::-;85602:13;85635:7;85628:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85542:108;:::o;90088:578::-;90141:27;90191:1;90185:2;:7;90181:50;;;90209:10;;;;;;;;;;;;;;;;;;;;;90181:50;90241:6;90250:2;90241:11;;90263:8;90282:69;90294:1;90289;:6;90282:69;;90312:5;;;;;:::i;:::-;;;;90337:2;90332:7;;;;;:::i;:::-;;;90282:69;;;90361:17;90391:3;90381:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90361:34;;90406:6;90415:3;90406:12;;90429:200;90442:1;90436:2;:7;90429:200;;90468:1;90464;:5;;;;:::i;:::-;90460:9;;90484:10;90524:2;90519;90514;:7;;;;:::i;:::-;:12;;;;:::i;:::-;90509:2;:17;;;;:::i;:::-;90498:2;:29;;;;:::i;:::-;90484:44;;90543:9;90562:4;90555:12;;90543:24;;90592:2;90582:4;90587:1;90582:7;;;;;;;;;;;;;;;;;;;:12;;;;;;;;;;;90615:2;90609:8;;;;;:::i;:::-;;;90429:200;;;;;90653:4;90639:19;;;;;;90088:578;;;;:::o;50049:320::-;50119:14;50348:1;50338:8;50335:15;50309:24;50305:46;50295:56;;50221:141;;;:::o;73690:147::-;73827:6;73690:147;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:155::-;906:5;944:6;931:20;922:29;;960:41;995:5;960:41;:::i;:::-;912:95;;;;:::o;1013:133::-;1056:5;1094:6;1081:20;1072:29;;1110:30;1134:5;1110:30;:::i;:::-;1062:84;;;;:::o;1152:137::-;1197:5;1235:6;1222:20;1213:29;;1251:32;1277:5;1251:32;:::i;:::-;1203:86;;;;:::o;1295:141::-;1351:5;1382:6;1376:13;1367:22;;1398:32;1424:5;1398:32;:::i;:::-;1357:79;;;;:::o;1455:271::-;1510:5;1559:3;1552:4;1544:6;1540:17;1536:27;1526:2;;1577:1;1574;1567:12;1526:2;1617:6;1604:20;1642:78;1716:3;1708:6;1701:4;1693:6;1689:17;1642:78;:::i;:::-;1633:87;;1516:210;;;;;:::o;1746:273::-;1802:5;1851:3;1844:4;1836:6;1832:17;1828:27;1818:2;;1869:1;1866;1859:12;1818:2;1909:6;1896:20;1934:79;2009:3;2001:6;1994:4;1986:6;1982:17;1934:79;:::i;:::-;1925:88;;1808:211;;;;;:::o;2025:139::-;2071:5;2109:6;2096:20;2087:29;;2125:33;2152:5;2125:33;:::i;:::-;2077:87;;;;:::o;2170:262::-;2229:6;2278:2;2266:9;2257:7;2253:23;2249:32;2246:2;;;2294:1;2291;2284:12;2246:2;2337:1;2362:53;2407:7;2398:6;2387:9;2383:22;2362:53;:::i;:::-;2352:63;;2308:117;2236:196;;;;:::o;2438:278::-;2505:6;2554:2;2542:9;2533:7;2529:23;2525:32;2522:2;;;2570:1;2567;2560:12;2522:2;2613:1;2638:61;2691:7;2682:6;2671:9;2667:22;2638:61;:::i;:::-;2628:71;;2584:125;2512:204;;;;:::o;2722:407::-;2790:6;2798;2847:2;2835:9;2826:7;2822:23;2818:32;2815:2;;;2863:1;2860;2853:12;2815:2;2906:1;2931:53;2976:7;2967:6;2956:9;2952:22;2931:53;:::i;:::-;2921:63;;2877:117;3033:2;3059:53;3104:7;3095:6;3084:9;3080:22;3059:53;:::i;:::-;3049:63;;3004:118;2805:324;;;;;:::o;3135:552::-;3212:6;3220;3228;3277:2;3265:9;3256:7;3252:23;3248:32;3245:2;;;3293:1;3290;3283:12;3245:2;3336:1;3361:53;3406:7;3397:6;3386:9;3382:22;3361:53;:::i;:::-;3351:63;;3307:117;3463:2;3489:53;3534:7;3525:6;3514:9;3510:22;3489:53;:::i;:::-;3479:63;;3434:118;3591:2;3617:53;3662:7;3653:6;3642:9;3638:22;3617:53;:::i;:::-;3607:63;;3562:118;3235:452;;;;;:::o;3693:809::-;3788:6;3796;3804;3812;3861:3;3849:9;3840:7;3836:23;3832:33;3829:2;;;3878:1;3875;3868:12;3829:2;3921:1;3946:53;3991:7;3982:6;3971:9;3967:22;3946:53;:::i;:::-;3936:63;;3892:117;4048:2;4074:53;4119:7;4110:6;4099:9;4095:22;4074:53;:::i;:::-;4064:63;;4019:118;4176:2;4202:53;4247:7;4238:6;4227:9;4223:22;4202:53;:::i;:::-;4192:63;;4147:118;4332:2;4321:9;4317:18;4304:32;4363:18;4355:6;4352:30;4349:2;;;4395:1;4392;4385:12;4349:2;4423:62;4477:7;4468:6;4457:9;4453:22;4423:62;:::i;:::-;4413:72;;4275:220;3819:683;;;;;;;:::o;4508:401::-;4573:6;4581;4630:2;4618:9;4609:7;4605:23;4601:32;4598:2;;;4646:1;4643;4636:12;4598:2;4689:1;4714:53;4759:7;4750:6;4739:9;4735:22;4714:53;:::i;:::-;4704:63;;4660:117;4816:2;4842:50;4884:7;4875:6;4864:9;4860:22;4842:50;:::i;:::-;4832:60;;4787:115;4588:321;;;;;:::o;4915:407::-;4983:6;4991;5040:2;5028:9;5019:7;5015:23;5011:32;5008:2;;;5056:1;5053;5046:12;5008:2;5099:1;5124:53;5169:7;5160:6;5149:9;5145:22;5124:53;:::i;:::-;5114:63;;5070:117;5226:2;5252:53;5297:7;5288:6;5277:9;5273:22;5252:53;:::i;:::-;5242:63;;5197:118;4998:324;;;;;:::o;5328:256::-;5384:6;5433:2;5421:9;5412:7;5408:23;5404:32;5401:2;;;5449:1;5446;5439:12;5401:2;5492:1;5517:50;5559:7;5550:6;5539:9;5535:22;5517:50;:::i;:::-;5507:60;;5463:114;5391:193;;;;:::o;5590:260::-;5648:6;5697:2;5685:9;5676:7;5672:23;5668:32;5665:2;;;5713:1;5710;5703:12;5665:2;5756:1;5781:52;5825:7;5816:6;5805:9;5801:22;5781:52;:::i;:::-;5771:62;;5727:116;5655:195;;;;:::o;5856:282::-;5925:6;5974:2;5962:9;5953:7;5949:23;5945:32;5942:2;;;5990:1;5987;5980:12;5942:2;6033:1;6058:63;6113:7;6104:6;6093:9;6089:22;6058:63;:::i;:::-;6048:73;;6004:127;5932:206;;;;:::o;6144:375::-;6213:6;6262:2;6250:9;6241:7;6237:23;6233:32;6230:2;;;6278:1;6275;6268:12;6230:2;6349:1;6338:9;6334:17;6321:31;6379:18;6371:6;6368:30;6365:2;;;6411:1;6408;6401:12;6365:2;6439:63;6494:7;6485:6;6474:9;6470:22;6439:63;:::i;:::-;6429:73;;6292:220;6220:299;;;;:::o;6525:262::-;6584:6;6633:2;6621:9;6612:7;6608:23;6604:32;6601:2;;;6649:1;6646;6639:12;6601:2;6692:1;6717:53;6762:7;6753:6;6742:9;6738:22;6717:53;:::i;:::-;6707:63;;6663:117;6591:196;;;;:::o;6793:520::-;6871:6;6879;6928:2;6916:9;6907:7;6903:23;6899:32;6896:2;;;6944:1;6941;6934:12;6896:2;6987:1;7012:53;7057:7;7048:6;7037:9;7033:22;7012:53;:::i;:::-;7002:63;;6958:117;7142:2;7131:9;7127:18;7114:32;7173:18;7165:6;7162:30;7159:2;;;7205:1;7202;7195:12;7159:2;7233:63;7288:7;7279:6;7268:9;7264:22;7233:63;:::i;:::-;7223:73;;7085:221;6886:427;;;;;:::o;7319:118::-;7406:24;7424:5;7406:24;:::i;:::-;7401:3;7394:37;7384:53;;:::o;7443:109::-;7524:21;7539:5;7524:21;:::i;:::-;7519:3;7512:34;7502:50;;:::o;7558:360::-;7644:3;7672:38;7704:5;7672:38;:::i;:::-;7726:70;7789:6;7784:3;7726:70;:::i;:::-;7719:77;;7805:52;7850:6;7845:3;7838:4;7831:5;7827:16;7805:52;:::i;:::-;7882:29;7904:6;7882:29;:::i;:::-;7877:3;7873:39;7866:46;;7648:270;;;;;:::o;7924:147::-;8019:45;8058:5;8019:45;:::i;:::-;8014:3;8007:58;7997:74;;:::o;8077:364::-;8165:3;8193:39;8226:5;8193:39;:::i;:::-;8248:71;8312:6;8307:3;8248:71;:::i;:::-;8241:78;;8328:52;8373:6;8368:3;8361:4;8354:5;8350:16;8328:52;:::i;:::-;8405:29;8427:6;8405:29;:::i;:::-;8400:3;8396:39;8389:46;;8169:272;;;;;:::o;8447:377::-;8553:3;8581:39;8614:5;8581:39;:::i;:::-;8636:89;8718:6;8713:3;8636:89;:::i;:::-;8629:96;;8734:52;8779:6;8774:3;8767:4;8760:5;8756:16;8734:52;:::i;:::-;8811:6;8806:3;8802:16;8795:23;;8557:267;;;;;:::o;8854:845::-;8957:3;8994:5;8988:12;9023:36;9049:9;9023:36;:::i;:::-;9075:89;9157:6;9152:3;9075:89;:::i;:::-;9068:96;;9195:1;9184:9;9180:17;9211:1;9206:137;;;;9357:1;9352:341;;;;9173:520;;9206:137;9290:4;9286:9;9275;9271:25;9266:3;9259:38;9326:6;9321:3;9317:16;9310:23;;9206:137;;9352:341;9419:38;9451:5;9419:38;:::i;:::-;9479:1;9493:154;9507:6;9504:1;9501:13;9493:154;;;9581:7;9575:14;9571:1;9566:3;9562:11;9555:35;9631:1;9622:7;9618:15;9607:26;;9529:4;9526:1;9522:12;9517:17;;9493:154;;;9676:6;9671:3;9667:16;9660:23;;9359:334;;9173:520;;8961:738;;;;;;:::o;9705:366::-;9847:3;9868:67;9932:2;9927:3;9868:67;:::i;:::-;9861:74;;9944:93;10033:3;9944:93;:::i;:::-;10062:2;10057:3;10053:12;10046:19;;9851:220;;;:::o;10077:366::-;10219:3;10240:67;10304:2;10299:3;10240:67;:::i;:::-;10233:74;;10316:93;10405:3;10316:93;:::i;:::-;10434:2;10429:3;10425:12;10418:19;;10223:220;;;:::o;10449:366::-;10591:3;10612:67;10676:2;10671:3;10612:67;:::i;:::-;10605:74;;10688:93;10777:3;10688:93;:::i;:::-;10806:2;10801:3;10797:12;10790:19;;10595:220;;;:::o;10821:366::-;10963:3;10984:67;11048:2;11043:3;10984:67;:::i;:::-;10977:74;;11060:93;11149:3;11060:93;:::i;:::-;11178:2;11173:3;11169:12;11162:19;;10967:220;;;:::o;11193:366::-;11335:3;11356:67;11420:2;11415:3;11356:67;:::i;:::-;11349:74;;11432:93;11521:3;11432:93;:::i;:::-;11550:2;11545:3;11541:12;11534:19;;11339:220;;;:::o;11565:366::-;11707:3;11728:67;11792:2;11787:3;11728:67;:::i;:::-;11721:74;;11804:93;11893:3;11804:93;:::i;:::-;11922:2;11917:3;11913:12;11906:19;;11711:220;;;:::o;11937:400::-;12097:3;12118:84;12200:1;12195:3;12118:84;:::i;:::-;12111:91;;12211:93;12300:3;12211:93;:::i;:::-;12329:1;12324:3;12320:11;12313:18;;12101:236;;;:::o;12343:366::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12489:220;;;:::o;12715:366::-;12857:3;12878:67;12942:2;12937:3;12878:67;:::i;:::-;12871:74;;12954:93;13043:3;12954:93;:::i;:::-;13072:2;13067:3;13063:12;13056:19;;12861:220;;;:::o;13087:398::-;13246:3;13267:83;13348:1;13343:3;13267:83;:::i;:::-;13260:90;;13359:93;13448:3;13359:93;:::i;:::-;13477:1;13472:3;13468:11;13461:18;;13250:235;;;:::o;13491:366::-;13633:3;13654:67;13718:2;13713:3;13654:67;:::i;:::-;13647:74;;13730:93;13819:3;13730:93;:::i;:::-;13848:2;13843:3;13839:12;13832:19;;13637:220;;;:::o;13863:366::-;14005:3;14026:67;14090:2;14085:3;14026:67;:::i;:::-;14019:74;;14102:93;14191:3;14102:93;:::i;:::-;14220:2;14215:3;14211:12;14204:19;;14009:220;;;:::o;14235:366::-;14377:3;14398:67;14462:2;14457:3;14398:67;:::i;:::-;14391:74;;14474:93;14563:3;14474:93;:::i;:::-;14592:2;14587:3;14583:12;14576:19;;14381:220;;;:::o;14607:366::-;14749:3;14770:67;14834:2;14829:3;14770:67;:::i;:::-;14763:74;;14846:93;14935:3;14846:93;:::i;:::-;14964:2;14959:3;14955:12;14948:19;;14753:220;;;:::o;14979:366::-;15121:3;15142:67;15206:2;15201:3;15142:67;:::i;:::-;15135:74;;15218:93;15307:3;15218:93;:::i;:::-;15336:2;15331:3;15327:12;15320:19;;15125:220;;;:::o;15351:118::-;15438:24;15456:5;15438:24;:::i;:::-;15433:3;15426:37;15416:53;;:::o;15475:435::-;15655:3;15677:95;15768:3;15759:6;15677:95;:::i;:::-;15670:102;;15789:95;15880:3;15871:6;15789:95;:::i;:::-;15782:102;;15901:3;15894:10;;15659:251;;;;;:::o;15916:429::-;16093:3;16115:95;16206:3;16197:6;16115:95;:::i;:::-;16108:102;;16227:92;16315:3;16306:6;16227:92;:::i;:::-;16220:99;;16336:3;16329:10;;16097:248;;;;;:::o;16351:541::-;16584:3;16606:95;16697:3;16688:6;16606:95;:::i;:::-;16599:102;;16718:148;16862:3;16718:148;:::i;:::-;16711:155;;16883:3;16876:10;;16588:304;;;;:::o;16898:379::-;17082:3;17104:147;17247:3;17104:147;:::i;:::-;17097:154;;17268:3;17261:10;;17086:191;;;:::o;17283:222::-;17376:4;17414:2;17403:9;17399:18;17391:26;;17427:71;17495:1;17484:9;17480:17;17471:6;17427:71;:::i;:::-;17381:124;;;;:::o;17511:640::-;17706:4;17744:3;17733:9;17729:19;17721:27;;17758:71;17826:1;17815:9;17811:17;17802:6;17758:71;:::i;:::-;17839:72;17907:2;17896:9;17892:18;17883:6;17839:72;:::i;:::-;17921;17989:2;17978:9;17974:18;17965:6;17921:72;:::i;:::-;18040:9;18034:4;18030:20;18025:2;18014:9;18010:18;18003:48;18068:76;18139:4;18130:6;18068:76;:::i;:::-;18060:84;;17711:440;;;;;;;:::o;18157:210::-;18244:4;18282:2;18271:9;18267:18;18259:26;;18295:65;18357:1;18346:9;18342:17;18333:6;18295:65;:::i;:::-;18249:118;;;;:::o;18373:313::-;18486:4;18524:2;18513:9;18509:18;18501:26;;18573:9;18567:4;18563:20;18559:1;18548:9;18544:17;18537:47;18601:78;18674:4;18665:6;18601:78;:::i;:::-;18593:86;;18491:195;;;;:::o;18692:419::-;18858:4;18896:2;18885:9;18881:18;18873:26;;18945:9;18939:4;18935:20;18931:1;18920:9;18916:17;18909:47;18973:131;19099:4;18973:131;:::i;:::-;18965:139;;18863:248;;;:::o;19117:419::-;19283:4;19321:2;19310:9;19306:18;19298:26;;19370:9;19364:4;19360:20;19356:1;19345:9;19341:17;19334:47;19398:131;19524:4;19398:131;:::i;:::-;19390:139;;19288:248;;;:::o;19542:419::-;19708:4;19746:2;19735:9;19731:18;19723:26;;19795:9;19789:4;19785:20;19781:1;19770:9;19766:17;19759:47;19823:131;19949:4;19823:131;:::i;:::-;19815:139;;19713:248;;;:::o;19967:419::-;20133:4;20171:2;20160:9;20156:18;20148:26;;20220:9;20214:4;20210:20;20206:1;20195:9;20191:17;20184:47;20248:131;20374:4;20248:131;:::i;:::-;20240:139;;20138:248;;;:::o;20392:419::-;20558:4;20596:2;20585:9;20581:18;20573:26;;20645:9;20639:4;20635:20;20631:1;20620:9;20616:17;20609:47;20673:131;20799:4;20673:131;:::i;:::-;20665:139;;20563:248;;;:::o;20817:419::-;20983:4;21021:2;21010:9;21006:18;20998:26;;21070:9;21064:4;21060:20;21056:1;21045:9;21041:17;21034:47;21098:131;21224:4;21098:131;:::i;:::-;21090:139;;20988:248;;;:::o;21242:419::-;21408:4;21446:2;21435:9;21431:18;21423:26;;21495:9;21489:4;21485:20;21481:1;21470:9;21466:17;21459:47;21523:131;21649:4;21523:131;:::i;:::-;21515:139;;21413:248;;;:::o;21667:419::-;21833:4;21871:2;21860:9;21856:18;21848:26;;21920:9;21914:4;21910:20;21906:1;21895:9;21891:17;21884:47;21948:131;22074:4;21948:131;:::i;:::-;21940:139;;21838:248;;;:::o;22092:419::-;22258:4;22296:2;22285:9;22281:18;22273:26;;22345:9;22339:4;22335:20;22331:1;22320:9;22316:17;22309:47;22373:131;22499:4;22373:131;:::i;:::-;22365:139;;22263:248;;;:::o;22517:419::-;22683:4;22721:2;22710:9;22706:18;22698:26;;22770:9;22764:4;22760:20;22756:1;22745:9;22741:17;22734:47;22798:131;22924:4;22798:131;:::i;:::-;22790:139;;22688:248;;;:::o;22942:419::-;23108:4;23146:2;23135:9;23131:18;23123:26;;23195:9;23189:4;23185:20;23181:1;23170:9;23166:17;23159:47;23223:131;23349:4;23223:131;:::i;:::-;23215:139;;23113:248;;;:::o;23367:419::-;23533:4;23571:2;23560:9;23556:18;23548:26;;23620:9;23614:4;23610:20;23606:1;23595:9;23591:17;23584:47;23648:131;23774:4;23648:131;:::i;:::-;23640:139;;23538:248;;;:::o;23792:419::-;23958:4;23996:2;23985:9;23981:18;23973:26;;24045:9;24039:4;24035:20;24031:1;24020:9;24016:17;24009:47;24073:131;24199:4;24073:131;:::i;:::-;24065:139;;23963:248;;;:::o;24217:222::-;24310:4;24348:2;24337:9;24333:18;24325:26;;24361:71;24429:1;24418:9;24414:17;24405:6;24361:71;:::i;:::-;24315:124;;;;:::o;24445:569::-;24630:4;24668:3;24657:9;24653:19;24645:27;;24682:71;24750:1;24739:9;24735:17;24726:6;24682:71;:::i;:::-;24763:72;24831:2;24820:9;24816:18;24807:6;24763:72;:::i;:::-;24845;24913:2;24902:9;24898:18;24889:6;24845:72;:::i;:::-;24927:80;25003:2;24992:9;24988:18;24979:6;24927:80;:::i;:::-;24635:379;;;;;;;:::o;25020:553::-;25197:4;25235:3;25224:9;25220:19;25212:27;;25249:71;25317:1;25306:9;25302:17;25293:6;25249:71;:::i;:::-;25330:72;25398:2;25387:9;25383:18;25374:6;25330:72;:::i;:::-;25412;25480:2;25469:9;25465:18;25456:6;25412:72;:::i;:::-;25494;25562:2;25551:9;25547:18;25538:6;25494:72;:::i;:::-;25202:371;;;;;;;:::o;25579:423::-;25720:4;25758:2;25747:9;25743:18;25735:26;;25771:71;25839:1;25828:9;25824:17;25815:6;25771:71;:::i;:::-;25889:9;25883:4;25879:20;25874:2;25863:9;25859:18;25852:48;25917:78;25990:4;25981:6;25917:78;:::i;:::-;25909:86;;25725:277;;;;;:::o;26008:129::-;26042:6;26069:20;;:::i;:::-;26059:30;;26098:33;26126:4;26118:6;26098:33;:::i;:::-;26049:88;;;:::o;26143:75::-;26176:6;26209:2;26203:9;26193:19;;26183:35;:::o;26224:307::-;26285:4;26375:18;26367:6;26364:30;26361:2;;;26397:18;;:::i;:::-;26361:2;26435:29;26457:6;26435:29;:::i;:::-;26427:37;;26519:4;26513;26509:15;26501:23;;26290:241;;;:::o;26537:308::-;26599:4;26689:18;26681:6;26678:30;26675:2;;;26711:18;;:::i;:::-;26675:2;26749:29;26771:6;26749:29;:::i;:::-;26741:37;;26833:4;26827;26823:15;26815:23;;26604:241;;;:::o;26851:141::-;26900:4;26923:3;26915:11;;26946:3;26943:1;26936:14;26980:4;26977:1;26967:18;26959:26;;26905:87;;;:::o;26998:98::-;27049:6;27083:5;27077:12;27067:22;;27056:40;;;:::o;27102:99::-;27154:6;27188:5;27182:12;27172:22;;27161:40;;;:::o;27207:168::-;27290:11;27324:6;27319:3;27312:19;27364:4;27359:3;27355:14;27340:29;;27302:73;;;;:::o;27381:147::-;27482:11;27519:3;27504:18;;27494:34;;;;:::o;27534:169::-;27618:11;27652:6;27647:3;27640:19;27692:4;27687:3;27683:14;27668:29;;27630:73;;;;:::o;27709:148::-;27811:11;27848:3;27833:18;;27823:34;;;;:::o;27863:305::-;27903:3;27922:20;27940:1;27922:20;:::i;:::-;27917:25;;27956:20;27974:1;27956:20;:::i;:::-;27951:25;;28110:1;28042:66;28038:74;28035:1;28032:81;28029:2;;;28116:18;;:::i;:::-;28029:2;28160:1;28157;28153:9;28146:16;;27907:261;;;;:::o;28174:237::-;28212:3;28231:18;28247:1;28231:18;:::i;:::-;28226:23;;28263:18;28279:1;28263:18;:::i;:::-;28258:23;;28353:1;28347:4;28343:12;28340:1;28337:19;28334:2;;;28359:18;;:::i;:::-;28334:2;28403:1;28400;28396:9;28389:16;;28216:195;;;;:::o;28417:185::-;28457:1;28474:20;28492:1;28474:20;:::i;:::-;28469:25;;28508:20;28526:1;28508:20;:::i;:::-;28503:25;;28547:1;28537:2;;28552:18;;:::i;:::-;28537:2;28594:1;28591;28587:9;28582:14;;28459:143;;;;:::o;28608:348::-;28648:7;28671:20;28689:1;28671:20;:::i;:::-;28666:25;;28705:20;28723:1;28705:20;:::i;:::-;28700:25;;28893:1;28825:66;28821:74;28818:1;28815:81;28810:1;28803:9;28796:17;28792:105;28789:2;;;28900:18;;:::i;:::-;28789:2;28948:1;28945;28941:9;28930:20;;28656:300;;;;:::o;28962:191::-;29002:4;29022:20;29040:1;29022:20;:::i;:::-;29017:25;;29056:20;29074:1;29056:20;:::i;:::-;29051:25;;29095:1;29092;29089:8;29086:2;;;29100:18;;:::i;:::-;29086:2;29145:1;29142;29138:9;29130:17;;29007:146;;;;:::o;29159:96::-;29196:7;29225:24;29243:5;29225:24;:::i;:::-;29214:35;;29204:51;;;:::o;29261:104::-;29306:7;29335:24;29353:5;29335:24;:::i;:::-;29324:35;;29314:51;;;:::o;29371:90::-;29405:7;29448:5;29441:13;29434:21;29423:32;;29413:48;;;:::o;29467:149::-;29503:7;29543:66;29536:5;29532:78;29521:89;;29511:105;;;:::o;29622:126::-;29659:7;29699:42;29692:5;29688:54;29677:65;;29667:81;;;:::o;29754:77::-;29791:7;29820:5;29809:16;;29799:32;;;:::o;29837:86::-;29872:7;29912:4;29905:5;29901:16;29890:27;;29880:43;;;:::o;29929:121::-;29987:9;30020:24;30038:5;30020:24;:::i;:::-;30007:37;;29997:53;;;:::o;30056:154::-;30140:6;30135:3;30130;30117:30;30202:1;30193:6;30188:3;30184:16;30177:27;30107:103;;;:::o;30216:307::-;30284:1;30294:113;30308:6;30305:1;30302:13;30294:113;;;30393:1;30388:3;30384:11;30378:18;30374:1;30369:3;30365:11;30358:39;30330:2;30327:1;30323:10;30318:15;;30294:113;;;30425:6;30422:1;30419:13;30416:2;;;30505:1;30496:6;30491:3;30487:16;30480:27;30416:2;30265:258;;;;:::o;30529:320::-;30573:6;30610:1;30604:4;30600:12;30590:22;;30657:1;30651:4;30647:12;30678:18;30668:2;;30734:4;30726:6;30722:17;30712:27;;30668:2;30796;30788:6;30785:14;30765:18;30762:38;30759:2;;;30815:18;;:::i;:::-;30759:2;30580:269;;;;:::o;30855:281::-;30938:27;30960:4;30938:27;:::i;:::-;30930:6;30926:40;31068:6;31056:10;31053:22;31032:18;31020:10;31017:34;31014:62;31011:2;;;31079:18;;:::i;:::-;31011:2;31119:10;31115:2;31108:22;30898:238;;;:::o;31142:233::-;31181:3;31204:24;31222:5;31204:24;:::i;:::-;31195:33;;31250:66;31243:5;31240:77;31237:2;;;31320:18;;:::i;:::-;31237:2;31367:1;31360:5;31356:13;31349:20;;31185:190;;;:::o;31381:180::-;31429:77;31426:1;31419:88;31526:4;31523:1;31516:15;31550:4;31547:1;31540:15;31567:180;31615:77;31612:1;31605:88;31712:4;31709:1;31702:15;31736:4;31733:1;31726:15;31753:180;31801:77;31798:1;31791:88;31898:4;31895:1;31888:15;31922:4;31919:1;31912:15;31939:180;31987:77;31984:1;31977:88;32084:4;32081:1;32074:15;32108:4;32105:1;32098:15;32125:102;32166:6;32217:2;32213:7;32208:2;32201:5;32197:14;32193:28;32183:38;;32173:54;;;:::o;32233:161::-;32373:13;32369:1;32361:6;32357:14;32350:37;32339:55;:::o;32400:225::-;32540:34;32536:1;32528:6;32524:14;32517:58;32609:8;32604:2;32596:6;32592:15;32585:33;32506:119;:::o;32631:221::-;32771:34;32767:1;32759:6;32755:14;32748:58;32840:4;32835:2;32827:6;32823:15;32816:29;32737:115;:::o;32858:240::-;32998:34;32994:1;32986:6;32982:14;32975:58;33067:23;33062:2;33054:6;33050:15;33043:48;32964:134;:::o;33104:161::-;33244:13;33240:1;33232:6;33228:14;33221:37;33210:55;:::o;33271:171::-;33411:23;33407:1;33399:6;33395:14;33388:47;33377:65;:::o;33448:155::-;33588:7;33584:1;33576:6;33572:14;33565:31;33554:49;:::o;33609:182::-;33749:34;33745:1;33737:6;33733:14;33726:58;33715:76;:::o;33797:169::-;33937:21;33933:1;33925:6;33921:14;33914:45;33903:63;:::o;33972:114::-;34078:8;:::o;34092:166::-;34232:18;34228:1;34220:6;34216:14;34209:42;34198:60;:::o;34264:166::-;34404:18;34400:1;34392:6;34388:14;34381:42;34370:60;:::o;34436:165::-;34576:17;34572:1;34564:6;34560:14;34553:41;34542:59;:::o;34607:180::-;34747:32;34743:1;34735:6;34731:14;34724:56;34713:74;:::o;34793:169::-;34933:21;34929:1;34921:6;34917:14;34910:45;34899:63;:::o;34968:122::-;35041:24;35059:5;35041:24;:::i;:::-;35034:5;35031:35;35021:2;;35080:1;35077;35070:12;35021:2;35011:79;:::o;35096:138::-;35177:32;35203:5;35177:32;:::i;:::-;35170:5;35167:43;35157:2;;35224:1;35221;35214:12;35157:2;35147:87;:::o;35240:116::-;35310:21;35325:5;35310:21;:::i;:::-;35303:5;35300:32;35290:2;;35346:1;35343;35336:12;35290:2;35280:76;:::o;35362:120::-;35434:23;35451:5;35434:23;:::i;:::-;35427:5;35424:34;35414:2;;35472:1;35469;35462:12;35414:2;35404:78;:::o;35488:122::-;35561:24;35579:5;35561:24;:::i;:::-;35554:5;35551:35;35541:2;;35600:1;35597;35590:12;35541:2;35531:79;:::o
Swarm Source
ipfs://dff0dd281701744530a163d944a84b44ee11c162378454b48b5f51f32f2fa7e1
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.