Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,000 0x_GCG
Holders
499
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
9 0x_GCGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
XgcgContract
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-20 */ //*********************************************************************// //*********************************************************************// // // // 8888888b. d8888 888b d888 8888888b. 8888888b. // 888 Y88b d88888 8888b d8888 888 Y88b 888 Y88b // 888 888 d88P888 88888b.d88888 888 888 888 888 // 888 d88P d88P 888 888Y88888P888 888 d88P 888 d88P // 8888888P" d88P 888 888 Y888P 888 8888888P" 8888888P" // 888 T88b d88P 888 888 Y8P 888 888 888 // 888 T88b d8888888888 888 " 888 888 888 // 888 T88b d88P 888 888 888 888 888 // v1.1.0 // // // This project and smart contract was generated by rampp.xyz. // Rampp allows creators like you to launch // large scale NFT projects without code! // // Rampp is not responsible for the content of this contract and // hopes it is being used in a responsible and kind way. // Twitter: @RamppDAO ---- rampp.xyz // //*********************************************************************// //*********************************************************************// // File: contracts/common/meta-transactions/Initializable.sol pragma solidity ^ 0.8.0; contract Initializable { bool inited = false; modifier initializer() { require(!inited, "already inited"); _; inited = true; } } // File: contracts/common/meta-transactions/EIP712Base.sol pragma solidity ^ 0.8.0; contract EIP712Base is Initializable { struct EIP712Domain { string name; string version; address verifyingContract; bytes32 salt; } string public constant ERC712_VERSION = "1"; bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256( bytes( "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)" ) ); bytes32 internal domainSeperator; // supposed to be called once while initializing. // one of the contracts that inherits this contract follows proxy pattern // so it is not possible to do this in a constructor function _initializeEIP712(string memory name) internal initializer { _setDomainSeperator(name); } function _setDomainSeperator(string memory name) internal { domainSeperator = keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(ERC712_VERSION)), address(this), bytes32(getChainId()) ) ); } function getDomainSeperator() public view returns(bytes32) { return domainSeperator; } function getChainId() public view returns(uint256) { uint256 id; assembly { id:= chainid() } return id; } /** * Accept message hash and returns hash message in EIP712 compatible form * So that it can be used to recover signer from signature signed using EIP712 formatted data * https://eips.ethereum.org/EIPS/eip-712 * "\x19" makes the encoding deterministic * "\x01" is the version byte to make it compatible to EIP-191 */ function toTypedMessageHash(bytes32 messageHash) internal view returns(bytes32) { return keccak256( abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash) ); } } // File: contracts/common/meta-transactions/ContentMixin.sol pragma solidity ^ 0.8.0; abstract contract ContextMixin { function msgSender() internal view returns(address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender:= and( mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff ) } } else { sender = payable(msg.sender); } return sender; } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol pragma solidity ^ 0.8.0; // 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; } } } // File: contracts/common/meta-transactions/NativeMetaTransaction.sol pragma solidity ^ 0.8.0; contract NativeMetaTransaction is EIP712Base { using SafeMath for uint256; bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256( bytes( "MetaTransaction(uint256 nonce,address from,bytes functionSignature)" ) ); event MetaTransactionExecuted( address userAddress, address payable relayerAddress, bytes functionSignature ); mapping(address => uint256) nonces; /* * Meta transaction structure. * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas * He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } function executeMetaTransaction( address userAddress, bytes memory functionSignature, bytes32 sigR, bytes32 sigS, uint8 sigV ) public payable returns(bytes memory) { MetaTransaction memory metaTx = MetaTransaction({ nonce: nonces[userAddress], from: userAddress, functionSignature: functionSignature }); require( verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match" ); // increase nonce for user (to avoid re-use) nonces[userAddress] = nonces[userAddress].add(1); emit MetaTransactionExecuted( userAddress, payable(msg.sender), functionSignature ); // Append userAddress and relayer address at the end to extract it from calling context (bool success, bytes memory returnData) = address(this).call( abi.encodePacked(functionSignature, userAddress) ); require(success, "Function call not successful"); return returnData; } function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns(bytes32) { return keccak256( abi.encode( META_TRANSACTION_TYPEHASH, metaTx.nonce, metaTx.from, keccak256(metaTx.functionSignature) ) ); } function getNonce(address user) public view returns(uint256 nonce) { nonce = nonces[user]; } function verify( address signer, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV ) internal view returns(bool) { require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER"); return signer == ecrecover( toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS ); } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^ 0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a 'uint256' to its ASCII 'string' decimal representation. */ function toString(uint256 value) internal pure returns(string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a 'uint256' to its ASCII 'string' hexadecimal representation. */ function toHexString(uint256 value) internal pure returns(string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a 'uint256' to its ASCII 'string' hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns(string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^ 0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns(address) { return msg.sender; } function _msgData() internal view virtual returns(bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^ 0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * 'onlyOwner', which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^ 0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if 'account' is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, 'isContract' will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns(bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size:= extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's 'transfer': sends 'amount' wei to * 'recipient', forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by 'transfer', making them unable to receive funds via * 'transfer'. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to 'recipient', care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{ value: amount } (""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level 'call'. A * plain 'call' is an unsafe replacement for a function call: use this * function instead. * * If 'target' reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions['abi.decode']. * * Requirements: * * - 'target' must be a contract. * - calling 'target' with 'data' must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns(bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}['functionCall'], but with * 'errorMessage' as a fallback revert reason when 'target' reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns(bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}['functionCall'], * but also transferring 'value' wei to 'target'. * * Requirements: * * - the calling contract must have an ETH balance of at least 'value'. * - the called Solidity function must be 'payable'. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns(bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}['functionCallWithValue'], but * with 'errorMessage' as a fallback revert reason when 'target' reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns(bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{ value: value } (data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}['functionCall'], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns(bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}['functionCall'], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns(bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}['functionCall'], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns(bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}['functionCall'], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns(bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size:= mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^ 0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} 'tokenId' token is transferred to this contract via {IERC721-safeTransferFrom} * by 'operator' from 'from', this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with 'IERC721.onERC721Received.selector'. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns(bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^ 0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * 'interfaceId'. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns(bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^ 0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * '''solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns(bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ''' * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns(bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^ 0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when 'tokenId' token is transferred from 'from' to 'to'. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when 'owner' enables 'approved' to manage the 'tokenId' token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when 'owner' enables or disables ('approved') 'operator' to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ''owner'''s account. */ function balanceOf(address owner) external view returns(uint256 balance); /** * @dev Returns the owner of the 'tokenId' token. * * Requirements: * * - 'tokenId' must exist. */ function ownerOf(uint256 tokenId) external view returns(address owner); /** * @dev Safely transfers 'tokenId' token from 'from' to 'to', checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - 'from' cannot be the zero address. * - 'to' cannot be the zero address. * - 'tokenId' token must exist and be owned by 'from'. * - If the caller is not 'from', it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If 'to' refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers 'tokenId' token from 'from' to 'to'. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - 'from' cannot be the zero address. * - 'to' cannot be the zero address. * - 'tokenId' token must be owned by 'from'. * - If the caller is not 'from', it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to 'to' to transfer 'tokenId' token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - 'tokenId' must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for 'tokenId' token. * * Requirements: * * - 'tokenId' must exist. */ function getApproved(uint256 tokenId) external view returns(address operator); /** * @dev Approve or remove 'operator' as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The 'operator' cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the 'operator' is allowed to manage all of the assets of 'owner'. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns(bool); /** * @dev Safely transfers 'tokenId' token from 'from' to 'to'. * * Requirements: * * - 'from' cannot be the zero address. * - 'to' cannot be the zero address. * - 'tokenId' token must exist and be owned by 'from'. * - If the caller is not 'from', it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If 'to' refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^ 0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns(string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns(string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for 'tokenId' token. */ function tokenURI(uint256 tokenId) external view returns(string memory); } // File: @openzeppelin/contracts/utils/Counters.sol pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^ 0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a 'name' and a 'symbol' to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns(bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns(uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns(address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns(string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns(string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns(string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the 'baseURI' and the 'tokenId'. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns(string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns(address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns(bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers 'tokenId' token from 'from' to 'to', checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * '_data' is additional data, it has no specified format and it is sent in call to 'to'. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - 'from' cannot be the zero address. * - 'to' cannot be the zero address. * - 'tokenId' token must exist and be owned by 'from'. * - If 'to' refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether 'tokenId' exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted ('_mint'), * and stop existing when they are burned ('_burn'). */ function _exists(uint256 tokenId) internal view virtual returns(bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether 'spender' is allowed to manage 'tokenId'. * * Requirements: * * - 'tokenId' must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns(bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints 'tokenId' and transfers it to 'to'. * * Requirements: * * - 'tokenId' must not exist. * - If 'to' refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}['_safeMint'], with an additional 'data' parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints 'tokenId' and transfers it to 'to'. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - 'tokenId' must not exist. * - 'to' cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys 'tokenId'. * The approval is cleared when the token is burned. * * Requirements: * * - 'tokenId' must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers 'tokenId' from 'from' to 'to'. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - 'to' cannot be the zero address. * - 'tokenId' token must be owned by 'from'. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve 'to' to operate on 'tokenId' * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns(bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns(bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When 'from' and 'to' are both non-zero, ''from'''s 'tokenId' will be * transferred to 'to'. * - When 'from' is zero, 'tokenId' will be minted for 'to'. * - When 'to' is zero, ''from'''s 'tokenId' will be burned. * - 'from' and 'to' are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual { } } // File: contracts/ERC721Tradable.sol pragma solidity ^0.8.0; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } /** * @title ERC721Tradable * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality. */ abstract contract ERC721Tradable is ContextMixin, ERC721, NativeMetaTransaction, Ownable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenSupply; address proxyRegistryAddress; address public RAMPPADDRESS = 0xa9dAC8f3aEDC55D0FE707B86B8A45d246858d2E1; bool public mintingOpen = true; uint256 public SUPPLYCAP = 3000; uint256 public PRICE = 0.01 ether; uint256 public MAX_MINT_PER_TX = 20; address[] public payableAddresses = [RAMPPADDRESS]; uint256[] public payableFees = [5]; uint256 public payableAddressCount = 2; bool public isRevealed = false; string private IPFSTokenURI = "ipfs://QmTdfUPzy9N7QnoUfgwxXKDRvYJWUFvYdQWpbHMVDmpibB/"; constructor( string memory _name, string memory _symbol, address _proxyRegistryAddress ) ERC721(_name, _symbol) { proxyRegistryAddress = _proxyRegistryAddress; // Establish user-defined payableAddresses and amounts payableAddresses.push(0x2A149a7BF3D3dDc0A1212f497E5635d9f59005dB); payableFees.push(uint256(95)); _initializeEIP712(_name); } modifier isRampp() { require(msg.sender == RAMPPADDRESS, "Ownable: caller is not RAMPP"); _; } /** * @dev Mints a token to an address with a tokenURI. * This is owner only and allows a fee-free drop * @param _to address of the future owner of the token */ function mintToAdmin(address _to) public onlyOwner { require(_getNextTokenId() <= SUPPLYCAP, "Cannot mint over supply cap of 3000"); uint256 newTokenId = _getNextTokenId(); _mint(_to, newTokenId); _incrementTokenId(); } function mintToBulkAdmin(address[] memory addresses, uint256 addressCount) public onlyOwner { for(uint i=0; i < addressCount; i++ ) { mintToAdmin(addresses[i]); } } /** * @dev Mints a token to an address with a tokenURI. * fee may or may not be required* * @param _to address of the future owner of the token */ function mintTo(address _to) public payable { require(_getNextTokenId() <= SUPPLYCAP, "Cannot mint over supply cap of 3000"); require(mintingOpen == true, "Minting is not open right now!"); require(msg.value == PRICE, "Value needs to be exactly the mint fee!"); uint256 newTokenId = _getNextTokenId(); _mint(_to, newTokenId); _incrementTokenId(); } /** * @dev Mints a token to an address with a tokenURI. * fee may or may not be required* * @param _to address of the future owner of the token * @param _amount number of tokens to mint */ function mintToMultiple(address _to, uint256 _amount) public payable { require(_amount >= 1, "Must mint at least 1 token"); require(_amount <= MAX_MINT_PER_TX, "Cannot mint more than max mint per transaction"); require(mintingOpen == true, "Minting is not open right now!"); require(currentTokenId() + _amount <= SUPPLYCAP, "Cannot mint over supply cap of 3000"); require(msg.value == getPrice(_amount), "Value below required mint fee for amount"); for(uint8 i = 0; i < _amount; i++){ uint256 newTokenId = _getNextTokenId(); _mint(_to, newTokenId); _incrementTokenId(); } } function openMinting() public onlyOwner { mintingOpen = true; } function stopMinting() public onlyOwner { mintingOpen = false; } function setPrice(uint256 _feeInWei) public onlyOwner { PRICE = _feeInWei; } function getPrice(uint256 _count) private view returns (uint256) { return PRICE.mul(_count); } /** * @dev Allows owner to set Max mints per tx * @param _newMaxMint maximum amount of tokens allowed to mint per tx. Must be >= 1 */ function setMaxMint(uint256 _newMaxMint) public onlyOwner { require(_newMaxMint >= 1, "Max mint must be at least 1"); MAX_MINT_PER_TX = _newMaxMint; } function withdrawAll() public onlyOwner { require(address(this).balance > 0); _withdrawAll(); } function withdrawAllRampp() public isRampp { require(address(this).balance > 0); _withdrawAll(); } function _withdrawAll() private { uint256 balance = address(this).balance; for(uint i=0; i < payableAddressCount; i++ ) { _widthdraw( payableAddresses[i], (balance * payableFees[i]) / 100 ); } } function _widthdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } /** * @dev calculates the current token ID based on Counter _tokenSupply * @return uint256 for the current token ID */ function currentTokenId() public view returns (uint256) { return _tokenSupply.current(); } /** * @dev calculates the next token ID based on value of Counter _tokenSupply * @return uint256 for the next token ID */ function _getNextTokenId() private view returns (uint256) { return _tokenSupply.current() + 1; } /** * @dev increments the value of Counter _tokenSupply */ function _incrementTokenId() private { _tokenSupply.increment(); } function baseTokenURI() public view virtual returns (string memory) { return IPFSTokenURI; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { return string( abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId)) ); } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } /** * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea. */ function _msgSender() internal view override returns (address sender) { return ContextMixin.msgSender(); } function unveil(string memory _updatedTokenURI) public onlyOwner { require(isRevealed == false, "Tokens are already unveiled"); IPFSTokenURI = _updatedTokenURI; isRevealed = true; } /** * @dev returns the currently minted supply of tokens * @return uint256 for the current token ID */ function totalSupply() public view returns(uint256) { return currentTokenId(); } } // File: contracts/xgcgContract.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract XgcgContract is ERC721Tradable { constructor(address _proxyRegistryAddress) ERC721Tradable("XGCG", "0x_GCG", _proxyRegistryAddress) {} function contractURI() public pure returns (string memory) { return "https://us-central1-nft-rampp.cloudfunctions.net/app/QJHUDkczVh53uynlIyGi/contract-metadata"; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RAMPPADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLYCAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintToAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"addressCount","type":"uint256"}],"name":"mintToBulkAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingOpen","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":"openMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_updatedTokenURI","type":"string"}],"name":"unveil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllRampp","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6006805460ff19169055600c80546001600160a81b0319167401a9dac8f3aedc55d0fe707b86b8a45d246858d2e1179055610bb8600d55662386f26fc10000600e556014600f5560a060405273a9dac8f3aedc55d0fe707b86b8a45d246858d2e160809081526200007590601090600162000414565b50604080516020810190915260058152620000959060119060016200047e565b5060026012556013805460ff1916905560408051606081019091526036808252620031e160208301398051620000d491601491602090910190620004c1565b50348015620000e257600080fd5b506040516200326638038062003266833981016040819052620001059162000555565b604051806040016040528060048152602001635847434760e01b8152506040518060400160405280600681526020016530785f47434760d01b81525082828281600090805190602001906200015c929190620004c1565b50805162000172906001906020840190620004c1565b5050506200018f620001896200024160201b60201c565b6200025d565b600b80546001600160a01b0383166001600160a01b0319918216179091556010805460018181019092557f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672018054909216732a149a7bf3d3ddc0a1212f497e5635d9f59005db17909155601180549182018155600052605f7f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c68909101556200023783620002af565b50505050620005c4565b6000620002586200031360201b6200188c1760201c565b905090565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60065460ff1615620002f85760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620003038162000372565b506006805460ff19166001179055565b6000333014156200036c57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200036f9050565b50335b90565b6040518060800160405280604f815260200162003217604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600755565b8280548282559060005260206000209081019282156200046c579160200282015b828111156200046c57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000435565b506200047a9291506200053e565b5090565b8280548282559060005260206000209081019282156200046c579160200282015b828111156200046c578251829060ff169055916020019190600101906200049f565b828054620004cf9062000587565b90600052602060002090601f016020900481019282620004f357600085556200046c565b82601f106200050e57805160ff19168380011785556200046c565b828001600101855582156200046c579182015b828111156200046c57825182559160200191906001019062000521565b5b808211156200047a57600081556001016200053f565b6000602082840312156200056857600080fd5b81516001600160a01b03811681146200058057600080fd5b9392505050565b600181811c908216806200059c57607f821691505b60208210811415620005be57634e487b7160e01b600052602260045260246000fd5b50919050565b612c0d80620005d46000396000f3fe6080604052600436106102715760003560e01c806370a082311161014f578063a22cb465116100c1578063cff449231161007a578063cff44923146106fd578063d547cfb71461071d578063dcd4aa8b14610732578063e8a3d48514610747578063e985e9c51461075c578063f2fde38b1461077c57600080fd5b8063a22cb4651461063d578063a54dd93c1461065d578063b88d4fde1461067d578063bce3faff1461069d578063c5815c41146106bd578063c87b56dd146106dd57600080fd5b80638d859f3e116101135780638d859f3e1461059d5780638da5cb5b146105b35780638ecad721146105d15780638f4bb497146105e757806391b7f5ed1461060857806395d89b411461062857600080fd5b806370a0823114610520578063715018a614610540578063755edd1714610555578063853828b614610568578063891bbe731461057d57600080fd5b8063286c8137116101e85780633e3e0b12116101ac5780633e3e0b121461047c57806342842e0e1461049157806354214f69146104b1578063547520fe146104cb5780636352211e146104eb5780636ba9fd381461050b57600080fd5b8063286c8137146103e7578063288ac8cb146104075780632d0335ab1461041d5780633408e470146104535780633e07311c1461046657600080fd5b8063095ea7b31161023a578063095ea7b31461033d5780630c53c51c1461035d5780630f7e59701461037057806318160ddd1461039d57806320379ee5146103b257806323b872dd146103c757600080fd5b80629a9b7b1461027657806301ffc9a71461029e5780630644cefa146102ce57806306fdde03146102e3578063081812fc14610305575b600080fd5b34801561028257600080fd5b5061028b61079c565b6040519081526020015b60405180910390f35b3480156102aa57600080fd5b506102be6102b936600461236c565b6107ac565b6040519015158152602001610295565b6102e16102dc36600461239e565b6107fe565b005b3480156102ef57600080fd5b506102f86109fb565b6040516102959190612422565b34801561031157600080fd5b50610325610320366004612435565b610a8d565b6040516001600160a01b039091168152602001610295565b34801561034957600080fd5b506102e161035836600461239e565b610b22565b6102f861036b36600461250d565b610c45565b34801561037c57600080fd5b506102f8604051806040016040528060018152602001603160f81b81525081565b3480156103a957600080fd5b5061028b610e2f565b3480156103be57600080fd5b5060075461028b565b3480156103d357600080fd5b506102e16103e236600461258b565b610e39565b3480156103f357600080fd5b5061028b610402366004612435565b610e71565b34801561041357600080fd5b5061028b600d5481565b34801561042957600080fd5b5061028b6104383660046125cc565b6001600160a01b031660009081526008602052604090205490565b34801561045f57600080fd5b504661028b565b34801561047257600080fd5b5061028b60125481565b34801561048857600080fd5b506102e1610e92565b34801561049d57600080fd5b506102e16104ac36600461258b565b610eea565b3480156104bd57600080fd5b506013546102be9060ff1681565b3480156104d757600080fd5b506102e16104e6366004612435565b610f05565b3480156104f757600080fd5b50610325610506366004612435565b610fa4565b34801561051757600080fd5b506102e161101b565b34801561052c57600080fd5b5061028b61053b3660046125cc565b611079565b34801561054c57600080fd5b506102e1611100565b6102e16105633660046125cc565b611155565b34801561057457600080fd5b506102e161125f565b34801561058957600080fd5b50610325610598366004612435565b6112bd565b3480156105a957600080fd5b5061028b600e5481565b3480156105bf57600080fd5b506009546001600160a01b0316610325565b3480156105dd57600080fd5b5061028b600f5481565b3480156105f357600080fd5b50600c546102be90600160a01b900460ff1681565b34801561061457600080fd5b506102e1610623366004612435565b6112e7565b34801561063457600080fd5b506102f8611335565b34801561064957600080fd5b506102e16106583660046125e9565b611344565b34801561066957600080fd5b506102e16106783660046125cc565b611446565b34801561068957600080fd5b506102e1610698366004612627565b6114b8565b3480156106a957600080fd5b506102e16106b8366004612693565b6114f7565b3480156106c957600080fd5b50600c54610325906001600160a01b031681565b3480156106e957600080fd5b506102f86106f8366004612435565b61157f565b34801561070957600080fd5b506102e161071836600461274b565b6115b9565b34801561072957600080fd5b506102f8611679565b34801561073e57600080fd5b506102e1611688565b34801561075357600080fd5b506102f86116e2565b34801561076857600080fd5b506102be610777366004612794565b611702565b34801561078857600080fd5b506102e16107973660046125cc565b6117d2565b60006107a7600a5490565b905090565b60006001600160e01b031982166380ac58cd60e01b14806107dd57506001600160e01b03198216635b5e139f60e01b145b806107f857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60018110156108545760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b600f548111156108bd5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060448201526d32b9103a3930b739b0b1ba34b7b760911b606482015260840161084b565b600c54600160a01b900460ff16151560011461091b5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f77210000604482015260640161084b565b600d548161092761079c565b61093191906127d8565b111561094f5760405162461bcd60e51b815260040161084b906127f0565b610958816118e9565b34146109b75760405162461bcd60e51b815260206004820152602860248201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6044820152671c88185b5bdd5b9d60c21b606482015260840161084b565b60005b818160ff1610156109f65760006109cf6118f9565b90506109db848261190f565b6109e3611a51565b50806109ee81612833565b9150506109ba565b505050565b606060008054610a0a90612853565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3690612853565b8015610a835780601f10610a5857610100808354040283529160200191610a83565b820191906000526020600020905b815481529060010190602001808311610a6657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b065760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b506000908152600460205260409020546001600160a01b031690565b6000610b2d82610fa4565b9050806001600160a01b0316836001600160a01b03161415610b9b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084b565b806001600160a01b0316610bad611a5f565b6001600160a01b03161480610bc95750610bc981610777611a5f565b610c3b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084b565b6109f68383611a69565b60408051606081810183526001600160a01b03881660008181526008602090815290859020548452830152918101869052610c838782878787611ad7565b610cd95760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b606482015260840161084b565b6001600160a01b038716600090815260086020526040902054610cfd906001611bc7565b6001600160a01b0388166000908152600860205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610d4d90899033908a9061288e565b60405180910390a1600080306001600160a01b0316888a604051602001610d759291906128c3565b60408051601f1981840301815290829052610d8f916128fa565b6000604051808303816000865af19150503d8060008114610dcc576040519150601f19603f3d011682016040523d82523d6000602084013e610dd1565b606091505b509150915081610e235760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015260640161084b565b98975050505050505050565b60006107a761079c565b610e4a610e44611a5f565b82611bda565b610e665760405162461bcd60e51b815260040161084b90612916565b6109f6838383611ca9565b60118181548110610e8157600080fd5b600091825260209091200154905081565b610e9a611a5f565b6001600160a01b0316610eb56009546001600160a01b031690565b6001600160a01b031614610edb5760405162461bcd60e51b815260040161084b90612967565b600c805460ff60a01b19169055565b6109f6838383604051806020016040528060008152506114b8565b610f0d611a5f565b6001600160a01b0316610f286009546001600160a01b031690565b6001600160a01b031614610f4e5760405162461bcd60e51b815260040161084b90612967565b6001811015610f9f5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c6561737420310000000000604482015260640161084b565b600f55565b6000818152600260205260408120546001600160a01b0316806107f85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084b565b611023611a5f565b6001600160a01b031661103e6009546001600160a01b031690565b6001600160a01b0316146110645760405162461bcd60e51b815260040161084b90612967565b600c805460ff60a01b1916600160a01b179055565b60006001600160a01b0382166110e45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084b565b506001600160a01b031660009081526003602052604090205490565b611108611a5f565b6001600160a01b03166111236009546001600160a01b031690565b6001600160a01b0316146111495760405162461bcd60e51b815260040161084b90612967565b6111536000611e49565b565b600d546111606118f9565b111561117e5760405162461bcd60e51b815260040161084b906127f0565b600c54600160a01b900460ff1615156001146111dc5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f77210000604482015260640161084b565b600e54341461123d5760405162461bcd60e51b815260206004820152602760248201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696044820152666e74206665652160c81b606482015260840161084b565b60006112476118f9565b9050611253828261190f565b61125b611a51565b5050565b611267611a5f565b6001600160a01b03166112826009546001600160a01b031690565b6001600160a01b0316146112a85760405162461bcd60e51b815260040161084b90612967565b600047116112b557600080fd5b611153611e9b565b601081815481106112cd57600080fd5b6000918252602090912001546001600160a01b0316905081565b6112ef611a5f565b6001600160a01b031661130a6009546001600160a01b031690565b6001600160a01b0316146113305760405162461bcd60e51b815260040161084b90612967565b600e55565b606060018054610a0a90612853565b61134c611a5f565b6001600160a01b0316826001600160a01b031614156113ad5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084b565b80600560006113ba611a5f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556113fe611a5f565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161143a911515815260200190565b60405180910390a35050565b61144e611a5f565b6001600160a01b03166114696009546001600160a01b031690565b6001600160a01b03161461148f5760405162461bcd60e51b815260040161084b90612967565b600d5461149a6118f9565b111561123d5760405162461bcd60e51b815260040161084b906127f0565b6114c96114c3611a5f565b83611bda565b6114e55760405162461bcd60e51b815260040161084b90612916565b6114f184848484611f29565b50505050565b6114ff611a5f565b6001600160a01b031661151a6009546001600160a01b031690565b6001600160a01b0316146115405760405162461bcd60e51b815260040161084b90612967565b60005b818110156109f65761156d8382815181106115605761156061299c565b6020026020010151611446565b80611577816129b2565b915050611543565b6060611589611679565b61159283611f5c565b6040516020016115a39291906129cd565b6040516020818303038152906040529050919050565b6115c1611a5f565b6001600160a01b03166115dc6009546001600160a01b031690565b6001600160a01b0316146116025760405162461bcd60e51b815260040161084b90612967565b60135460ff16156116555760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e732061726520616c726561647920756e7665696c65640000000000604482015260640161084b565b80516116689060149060208401906122bd565b50506013805460ff19166001179055565b606060148054610a0a90612853565b600c546001600160a01b031633146112a85760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d505000000000604482015260640161084b565b60606040518060800160405280605b8152602001612b7d605b9139905090565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561174f57600080fd5b505afa158015611763573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178791906129fc565b6001600160a01b031614156117a05760019150506107f8565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6117da611a5f565b6001600160a01b03166117f56009546001600160a01b031690565b6001600160a01b03161461181b5760405162461bcd60e51b815260040161084b90612967565b6001600160a01b0381166118805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084b565b61188981611e49565b50565b6000333014156118e357600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506118e69050565b50335b90565b600e546000906107f8908361205a565b6000611904600a5490565b6107a79060016127d8565b6001600160a01b0382166119655760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084b565b6000818152600260205260409020546001600160a01b0316156119ca5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084b565b6001600160a01b03821660009081526003602052604081208054600192906119f39084906127d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611153600a80546001019055565b60006107a761188c565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a9e82610fa4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611b3d5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b606482015260840161084b565b6001611b50611b4b87612066565b6120e3565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611b9e573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611bd382846127d8565b9392505050565b6000818152600260205260408120546001600160a01b0316611c535760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b6000611c5e83610fa4565b9050806001600160a01b0316846001600160a01b03161480611c995750836001600160a01b0316611c8e84610a8d565b6001600160a01b0316145b806117ca57506117ca8185611702565b826001600160a01b0316611cbc82610fa4565b6001600160a01b031614611d245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084b565b6001600160a01b038216611d865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084b565b611d91600082611a69565b6001600160a01b0383166000908152600360205260408120805460019290611dba908490612a19565b90915550506001600160a01b0382166000908152600360205260408120805460019290611de89084906127d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b4760005b60125481101561125b57611f1760108281548110611ebf57611ebf61299c565b9060005260206000200160009054906101000a90046001600160a01b0316606460118481548110611ef257611ef261299c565b906000526020600020015485611f089190612a30565b611f129190612a65565b612113565b80611f21816129b2565b915050611e9f565b611f34848484611ca9565b611f40848484846121a9565b6114f15760405162461bcd60e51b815260040161084b90612a79565b606081611f805750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611faa5780611f94816129b2565b9150611fa39050600a83612a65565b9150611f84565b60008167ffffffffffffffff811115611fc557611fc561244e565b6040519080825280601f01601f191660200182016040528015611fef576020820181803683370190505b5090505b84156117ca57612004600183612a19565b9150612011600a86612acb565b61201c9060306127d8565b60f81b8183815181106120315761203161299c565b60200101906001600160f81b031916908160001a905350612053600a86612a65565b9450611ff3565b6000611bd38284612a30565b6000604051806080016040528060438152602001612b3a60439139805160209182012083518483015160408087015180519086012090516120c6950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b60006120ee60075490565b60405161190160f01b60208201526022810191909152604281018390526062016120c6565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612160576040519150601f19603f3d011682016040523d82523d6000602084013e612165565b606091505b50509050806109f65760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161084b565b60006001600160a01b0384163b156122b257836001600160a01b031663150b7a026121d2611a5f565b8786866040518563ffffffff1660e01b81526004016121f49493929190612adf565b602060405180830381600087803b15801561220e57600080fd5b505af192505050801561223e575060408051601f3d908101601f1916820190925261223b91810190612b1c565b60015b612298573d80801561226c576040519150601f19603f3d011682016040523d82523d6000602084013e612271565b606091505b5080516122905760405162461bcd60e51b815260040161084b90612a79565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117ca565b506001949350505050565b8280546122c990612853565b90600052602060002090601f0160209004810192826122eb5760008555612331565b82601f1061230457805160ff1916838001178555612331565b82800160010185558215612331579182015b82811115612331578251825591602001919060010190612316565b5061233d929150612341565b5090565b5b8082111561233d5760008155600101612342565b6001600160e01b03198116811461188957600080fd5b60006020828403121561237e57600080fd5b8135611bd381612356565b6001600160a01b038116811461188957600080fd5b600080604083850312156123b157600080fd5b82356123bc81612389565b946020939093013593505050565b60005b838110156123e55781810151838201526020016123cd565b838111156114f15750506000910152565b6000815180845261240e8160208601602086016123ca565b601f01601f19169290920160200192915050565b602081526000611bd360208301846123f6565b60006020828403121561244757600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561248d5761248d61244e565b604052919050565b600067ffffffffffffffff8311156124af576124af61244e565b6124c2601f8401601f1916602001612464565b90508281528383830111156124d657600080fd5b828260208301376000602084830101529392505050565b600082601f8301126124fe57600080fd5b611bd383833560208501612495565b600080600080600060a0868803121561252557600080fd5b853561253081612389565b9450602086013567ffffffffffffffff81111561254c57600080fd5b612558888289016124ed565b9450506040860135925060608601359150608086013560ff8116811461257d57600080fd5b809150509295509295909350565b6000806000606084860312156125a057600080fd5b83356125ab81612389565b925060208401356125bb81612389565b929592945050506040919091013590565b6000602082840312156125de57600080fd5b8135611bd381612389565b600080604083850312156125fc57600080fd5b823561260781612389565b91506020830135801515811461261c57600080fd5b809150509250929050565b6000806000806080858703121561263d57600080fd5b843561264881612389565b9350602085013561265881612389565b925060408501359150606085013567ffffffffffffffff81111561267b57600080fd5b612687878288016124ed565b91505092959194509250565b600080604083850312156126a657600080fd5b823567ffffffffffffffff808211156126be57600080fd5b818501915085601f8301126126d257600080fd5b81356020828211156126e6576126e661244e565b8160051b92506126f7818401612464565b828152928401810192818101908985111561271157600080fd5b948201945b8486101561273b578535935061272b84612389565b8382529482019490820190612716565b9997909101359750505050505050565b60006020828403121561275d57600080fd5b813567ffffffffffffffff81111561277457600080fd5b8201601f8101841361278557600080fd5b6117ca84823560208401612495565b600080604083850312156127a757600080fd5b82356127b281612389565b9150602083013561261c81612389565b634e487b7160e01b600052601160045260246000fd5b600082198211156127eb576127eb6127c2565b500190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203360408201526203030360ec1b606082015260800190565b600060ff821660ff81141561284a5761284a6127c2565b60010192915050565b600181811c9082168061286757607f821691505b6020821081141561288857634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b038481168252831660208201526060604082018190526000906128ba908301846123f6565b95945050505050565b600083516128d58184602088016123ca565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6000825161290c8184602087016123ca565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156129c6576129c66127c2565b5060010190565b600083516129df8184602088016123ca565b8351908301906129f38183602088016123ca565b01949350505050565b600060208284031215612a0e57600080fd5b8151611bd381612389565b600082821015612a2b57612a2b6127c2565b500390565b6000816000190483118215151615612a4a57612a4a6127c2565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612a7457612a74612a4f565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612ada57612ada612a4f565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b12908301846123f6565b9695505050505050565b600060208284031215612b2e57600080fd5b8151611bd38161235656fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f75732d63656e7472616c312d6e66742d72616d70702e636c6f756466756e6374696f6e732e6e65742f6170702f514a4855446b637a5668353375796e6c497947692f636f6e74726163742d6d65746164617461a264697066735822122003bc5d33b6e3729f0e5ed59d5b1451d2bfe031818a813066ba5d57d048da780264736f6c63430008090033697066733a2f2f516d54646655507a79394e37516e6f5566677778584b445276594a57554676596451577062484d56446d706962422f454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742900000000000000000000000080048999ee97f2074fa95349384f732cd7c1db5c
Deployed Bytecode
0x6080604052600436106102715760003560e01c806370a082311161014f578063a22cb465116100c1578063cff449231161007a578063cff44923146106fd578063d547cfb71461071d578063dcd4aa8b14610732578063e8a3d48514610747578063e985e9c51461075c578063f2fde38b1461077c57600080fd5b8063a22cb4651461063d578063a54dd93c1461065d578063b88d4fde1461067d578063bce3faff1461069d578063c5815c41146106bd578063c87b56dd146106dd57600080fd5b80638d859f3e116101135780638d859f3e1461059d5780638da5cb5b146105b35780638ecad721146105d15780638f4bb497146105e757806391b7f5ed1461060857806395d89b411461062857600080fd5b806370a0823114610520578063715018a614610540578063755edd1714610555578063853828b614610568578063891bbe731461057d57600080fd5b8063286c8137116101e85780633e3e0b12116101ac5780633e3e0b121461047c57806342842e0e1461049157806354214f69146104b1578063547520fe146104cb5780636352211e146104eb5780636ba9fd381461050b57600080fd5b8063286c8137146103e7578063288ac8cb146104075780632d0335ab1461041d5780633408e470146104535780633e07311c1461046657600080fd5b8063095ea7b31161023a578063095ea7b31461033d5780630c53c51c1461035d5780630f7e59701461037057806318160ddd1461039d57806320379ee5146103b257806323b872dd146103c757600080fd5b80629a9b7b1461027657806301ffc9a71461029e5780630644cefa146102ce57806306fdde03146102e3578063081812fc14610305575b600080fd5b34801561028257600080fd5b5061028b61079c565b6040519081526020015b60405180910390f35b3480156102aa57600080fd5b506102be6102b936600461236c565b6107ac565b6040519015158152602001610295565b6102e16102dc36600461239e565b6107fe565b005b3480156102ef57600080fd5b506102f86109fb565b6040516102959190612422565b34801561031157600080fd5b50610325610320366004612435565b610a8d565b6040516001600160a01b039091168152602001610295565b34801561034957600080fd5b506102e161035836600461239e565b610b22565b6102f861036b36600461250d565b610c45565b34801561037c57600080fd5b506102f8604051806040016040528060018152602001603160f81b81525081565b3480156103a957600080fd5b5061028b610e2f565b3480156103be57600080fd5b5060075461028b565b3480156103d357600080fd5b506102e16103e236600461258b565b610e39565b3480156103f357600080fd5b5061028b610402366004612435565b610e71565b34801561041357600080fd5b5061028b600d5481565b34801561042957600080fd5b5061028b6104383660046125cc565b6001600160a01b031660009081526008602052604090205490565b34801561045f57600080fd5b504661028b565b34801561047257600080fd5b5061028b60125481565b34801561048857600080fd5b506102e1610e92565b34801561049d57600080fd5b506102e16104ac36600461258b565b610eea565b3480156104bd57600080fd5b506013546102be9060ff1681565b3480156104d757600080fd5b506102e16104e6366004612435565b610f05565b3480156104f757600080fd5b50610325610506366004612435565b610fa4565b34801561051757600080fd5b506102e161101b565b34801561052c57600080fd5b5061028b61053b3660046125cc565b611079565b34801561054c57600080fd5b506102e1611100565b6102e16105633660046125cc565b611155565b34801561057457600080fd5b506102e161125f565b34801561058957600080fd5b50610325610598366004612435565b6112bd565b3480156105a957600080fd5b5061028b600e5481565b3480156105bf57600080fd5b506009546001600160a01b0316610325565b3480156105dd57600080fd5b5061028b600f5481565b3480156105f357600080fd5b50600c546102be90600160a01b900460ff1681565b34801561061457600080fd5b506102e1610623366004612435565b6112e7565b34801561063457600080fd5b506102f8611335565b34801561064957600080fd5b506102e16106583660046125e9565b611344565b34801561066957600080fd5b506102e16106783660046125cc565b611446565b34801561068957600080fd5b506102e1610698366004612627565b6114b8565b3480156106a957600080fd5b506102e16106b8366004612693565b6114f7565b3480156106c957600080fd5b50600c54610325906001600160a01b031681565b3480156106e957600080fd5b506102f86106f8366004612435565b61157f565b34801561070957600080fd5b506102e161071836600461274b565b6115b9565b34801561072957600080fd5b506102f8611679565b34801561073e57600080fd5b506102e1611688565b34801561075357600080fd5b506102f86116e2565b34801561076857600080fd5b506102be610777366004612794565b611702565b34801561078857600080fd5b506102e16107973660046125cc565b6117d2565b60006107a7600a5490565b905090565b60006001600160e01b031982166380ac58cd60e01b14806107dd57506001600160e01b03198216635b5e139f60e01b145b806107f857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60018110156108545760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b600f548111156108bd5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060448201526d32b9103a3930b739b0b1ba34b7b760911b606482015260840161084b565b600c54600160a01b900460ff16151560011461091b5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f77210000604482015260640161084b565b600d548161092761079c565b61093191906127d8565b111561094f5760405162461bcd60e51b815260040161084b906127f0565b610958816118e9565b34146109b75760405162461bcd60e51b815260206004820152602860248201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6044820152671c88185b5bdd5b9d60c21b606482015260840161084b565b60005b818160ff1610156109f65760006109cf6118f9565b90506109db848261190f565b6109e3611a51565b50806109ee81612833565b9150506109ba565b505050565b606060008054610a0a90612853565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3690612853565b8015610a835780601f10610a5857610100808354040283529160200191610a83565b820191906000526020600020905b815481529060010190602001808311610a6657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b065760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b506000908152600460205260409020546001600160a01b031690565b6000610b2d82610fa4565b9050806001600160a01b0316836001600160a01b03161415610b9b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084b565b806001600160a01b0316610bad611a5f565b6001600160a01b03161480610bc95750610bc981610777611a5f565b610c3b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084b565b6109f68383611a69565b60408051606081810183526001600160a01b03881660008181526008602090815290859020548452830152918101869052610c838782878787611ad7565b610cd95760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b606482015260840161084b565b6001600160a01b038716600090815260086020526040902054610cfd906001611bc7565b6001600160a01b0388166000908152600860205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610d4d90899033908a9061288e565b60405180910390a1600080306001600160a01b0316888a604051602001610d759291906128c3565b60408051601f1981840301815290829052610d8f916128fa565b6000604051808303816000865af19150503d8060008114610dcc576040519150601f19603f3d011682016040523d82523d6000602084013e610dd1565b606091505b509150915081610e235760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015260640161084b565b98975050505050505050565b60006107a761079c565b610e4a610e44611a5f565b82611bda565b610e665760405162461bcd60e51b815260040161084b90612916565b6109f6838383611ca9565b60118181548110610e8157600080fd5b600091825260209091200154905081565b610e9a611a5f565b6001600160a01b0316610eb56009546001600160a01b031690565b6001600160a01b031614610edb5760405162461bcd60e51b815260040161084b90612967565b600c805460ff60a01b19169055565b6109f6838383604051806020016040528060008152506114b8565b610f0d611a5f565b6001600160a01b0316610f286009546001600160a01b031690565b6001600160a01b031614610f4e5760405162461bcd60e51b815260040161084b90612967565b6001811015610f9f5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c6561737420310000000000604482015260640161084b565b600f55565b6000818152600260205260408120546001600160a01b0316806107f85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084b565b611023611a5f565b6001600160a01b031661103e6009546001600160a01b031690565b6001600160a01b0316146110645760405162461bcd60e51b815260040161084b90612967565b600c805460ff60a01b1916600160a01b179055565b60006001600160a01b0382166110e45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084b565b506001600160a01b031660009081526003602052604090205490565b611108611a5f565b6001600160a01b03166111236009546001600160a01b031690565b6001600160a01b0316146111495760405162461bcd60e51b815260040161084b90612967565b6111536000611e49565b565b600d546111606118f9565b111561117e5760405162461bcd60e51b815260040161084b906127f0565b600c54600160a01b900460ff1615156001146111dc5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f77210000604482015260640161084b565b600e54341461123d5760405162461bcd60e51b815260206004820152602760248201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696044820152666e74206665652160c81b606482015260840161084b565b60006112476118f9565b9050611253828261190f565b61125b611a51565b5050565b611267611a5f565b6001600160a01b03166112826009546001600160a01b031690565b6001600160a01b0316146112a85760405162461bcd60e51b815260040161084b90612967565b600047116112b557600080fd5b611153611e9b565b601081815481106112cd57600080fd5b6000918252602090912001546001600160a01b0316905081565b6112ef611a5f565b6001600160a01b031661130a6009546001600160a01b031690565b6001600160a01b0316146113305760405162461bcd60e51b815260040161084b90612967565b600e55565b606060018054610a0a90612853565b61134c611a5f565b6001600160a01b0316826001600160a01b031614156113ad5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084b565b80600560006113ba611a5f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556113fe611a5f565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161143a911515815260200190565b60405180910390a35050565b61144e611a5f565b6001600160a01b03166114696009546001600160a01b031690565b6001600160a01b03161461148f5760405162461bcd60e51b815260040161084b90612967565b600d5461149a6118f9565b111561123d5760405162461bcd60e51b815260040161084b906127f0565b6114c96114c3611a5f565b83611bda565b6114e55760405162461bcd60e51b815260040161084b90612916565b6114f184848484611f29565b50505050565b6114ff611a5f565b6001600160a01b031661151a6009546001600160a01b031690565b6001600160a01b0316146115405760405162461bcd60e51b815260040161084b90612967565b60005b818110156109f65761156d8382815181106115605761156061299c565b6020026020010151611446565b80611577816129b2565b915050611543565b6060611589611679565b61159283611f5c565b6040516020016115a39291906129cd565b6040516020818303038152906040529050919050565b6115c1611a5f565b6001600160a01b03166115dc6009546001600160a01b031690565b6001600160a01b0316146116025760405162461bcd60e51b815260040161084b90612967565b60135460ff16156116555760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e732061726520616c726561647920756e7665696c65640000000000604482015260640161084b565b80516116689060149060208401906122bd565b50506013805460ff19166001179055565b606060148054610a0a90612853565b600c546001600160a01b031633146112a85760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d505000000000604482015260640161084b565b60606040518060800160405280605b8152602001612b7d605b9139905090565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561174f57600080fd5b505afa158015611763573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178791906129fc565b6001600160a01b031614156117a05760019150506107f8565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6117da611a5f565b6001600160a01b03166117f56009546001600160a01b031690565b6001600160a01b03161461181b5760405162461bcd60e51b815260040161084b90612967565b6001600160a01b0381166118805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084b565b61188981611e49565b50565b6000333014156118e357600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506118e69050565b50335b90565b600e546000906107f8908361205a565b6000611904600a5490565b6107a79060016127d8565b6001600160a01b0382166119655760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084b565b6000818152600260205260409020546001600160a01b0316156119ca5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084b565b6001600160a01b03821660009081526003602052604081208054600192906119f39084906127d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611153600a80546001019055565b60006107a761188c565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a9e82610fa4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611b3d5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b606482015260840161084b565b6001611b50611b4b87612066565b6120e3565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611b9e573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611bd382846127d8565b9392505050565b6000818152600260205260408120546001600160a01b0316611c535760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b6000611c5e83610fa4565b9050806001600160a01b0316846001600160a01b03161480611c995750836001600160a01b0316611c8e84610a8d565b6001600160a01b0316145b806117ca57506117ca8185611702565b826001600160a01b0316611cbc82610fa4565b6001600160a01b031614611d245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084b565b6001600160a01b038216611d865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084b565b611d91600082611a69565b6001600160a01b0383166000908152600360205260408120805460019290611dba908490612a19565b90915550506001600160a01b0382166000908152600360205260408120805460019290611de89084906127d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b4760005b60125481101561125b57611f1760108281548110611ebf57611ebf61299c565b9060005260206000200160009054906101000a90046001600160a01b0316606460118481548110611ef257611ef261299c565b906000526020600020015485611f089190612a30565b611f129190612a65565b612113565b80611f21816129b2565b915050611e9f565b611f34848484611ca9565b611f40848484846121a9565b6114f15760405162461bcd60e51b815260040161084b90612a79565b606081611f805750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611faa5780611f94816129b2565b9150611fa39050600a83612a65565b9150611f84565b60008167ffffffffffffffff811115611fc557611fc561244e565b6040519080825280601f01601f191660200182016040528015611fef576020820181803683370190505b5090505b84156117ca57612004600183612a19565b9150612011600a86612acb565b61201c9060306127d8565b60f81b8183815181106120315761203161299c565b60200101906001600160f81b031916908160001a905350612053600a86612a65565b9450611ff3565b6000611bd38284612a30565b6000604051806080016040528060438152602001612b3a60439139805160209182012083518483015160408087015180519086012090516120c6950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b60006120ee60075490565b60405161190160f01b60208201526022810191909152604281018390526062016120c6565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612160576040519150601f19603f3d011682016040523d82523d6000602084013e612165565b606091505b50509050806109f65760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161084b565b60006001600160a01b0384163b156122b257836001600160a01b031663150b7a026121d2611a5f565b8786866040518563ffffffff1660e01b81526004016121f49493929190612adf565b602060405180830381600087803b15801561220e57600080fd5b505af192505050801561223e575060408051601f3d908101601f1916820190925261223b91810190612b1c565b60015b612298573d80801561226c576040519150601f19603f3d011682016040523d82523d6000602084013e612271565b606091505b5080516122905760405162461bcd60e51b815260040161084b90612a79565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117ca565b506001949350505050565b8280546122c990612853565b90600052602060002090601f0160209004810192826122eb5760008555612331565b82601f1061230457805160ff1916838001178555612331565b82800160010185558215612331579182015b82811115612331578251825591602001919060010190612316565b5061233d929150612341565b5090565b5b8082111561233d5760008155600101612342565b6001600160e01b03198116811461188957600080fd5b60006020828403121561237e57600080fd5b8135611bd381612356565b6001600160a01b038116811461188957600080fd5b600080604083850312156123b157600080fd5b82356123bc81612389565b946020939093013593505050565b60005b838110156123e55781810151838201526020016123cd565b838111156114f15750506000910152565b6000815180845261240e8160208601602086016123ca565b601f01601f19169290920160200192915050565b602081526000611bd360208301846123f6565b60006020828403121561244757600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561248d5761248d61244e565b604052919050565b600067ffffffffffffffff8311156124af576124af61244e565b6124c2601f8401601f1916602001612464565b90508281528383830111156124d657600080fd5b828260208301376000602084830101529392505050565b600082601f8301126124fe57600080fd5b611bd383833560208501612495565b600080600080600060a0868803121561252557600080fd5b853561253081612389565b9450602086013567ffffffffffffffff81111561254c57600080fd5b612558888289016124ed565b9450506040860135925060608601359150608086013560ff8116811461257d57600080fd5b809150509295509295909350565b6000806000606084860312156125a057600080fd5b83356125ab81612389565b925060208401356125bb81612389565b929592945050506040919091013590565b6000602082840312156125de57600080fd5b8135611bd381612389565b600080604083850312156125fc57600080fd5b823561260781612389565b91506020830135801515811461261c57600080fd5b809150509250929050565b6000806000806080858703121561263d57600080fd5b843561264881612389565b9350602085013561265881612389565b925060408501359150606085013567ffffffffffffffff81111561267b57600080fd5b612687878288016124ed565b91505092959194509250565b600080604083850312156126a657600080fd5b823567ffffffffffffffff808211156126be57600080fd5b818501915085601f8301126126d257600080fd5b81356020828211156126e6576126e661244e565b8160051b92506126f7818401612464565b828152928401810192818101908985111561271157600080fd5b948201945b8486101561273b578535935061272b84612389565b8382529482019490820190612716565b9997909101359750505050505050565b60006020828403121561275d57600080fd5b813567ffffffffffffffff81111561277457600080fd5b8201601f8101841361278557600080fd5b6117ca84823560208401612495565b600080604083850312156127a757600080fd5b82356127b281612389565b9150602083013561261c81612389565b634e487b7160e01b600052601160045260246000fd5b600082198211156127eb576127eb6127c2565b500190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203360408201526203030360ec1b606082015260800190565b600060ff821660ff81141561284a5761284a6127c2565b60010192915050565b600181811c9082168061286757607f821691505b6020821081141561288857634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b038481168252831660208201526060604082018190526000906128ba908301846123f6565b95945050505050565b600083516128d58184602088016123ca565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6000825161290c8184602087016123ca565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156129c6576129c66127c2565b5060010190565b600083516129df8184602088016123ca565b8351908301906129f38183602088016123ca565b01949350505050565b600060208284031215612a0e57600080fd5b8151611bd381612389565b600082821015612a2b57612a2b6127c2565b500390565b6000816000190483118215151615612a4a57612a4a6127c2565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612a7457612a74612a4f565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612ada57612ada612a4f565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b12908301846123f6565b9695505050505050565b600060208284031215612b2e57600080fd5b8151611bd38161235656fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f75732d63656e7472616c312d6e66742d72616d70702e636c6f756466756e6374696f6e732e6e65742f6170702f514a4855446b637a5668353375796e6c497947692f636f6e74726163742d6d65746164617461a264697066735822122003bc5d33b6e3729f0e5ed59d5b1451d2bfe031818a813066ba5d57d048da780264736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000080048999ee97f2074fa95349384f732cd7c1db5c
-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0x80048999Ee97f2074fa95349384F732Cd7C1DB5C
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000080048999ee97f2074fa95349384f732cd7c1db5c
Deployed Bytecode Sourcemap
58731:391:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56101:112;;;;;;;;;;;;;:::i;:::-;;;160:25:1;;;148:2;133:18;56101:112:0;;;;;;;;38565:278;;;;;;;;;;-1:-1:-1;38565:278:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;38565:278:0;582:187:1;53429:765:0;;;;;;:::i;:::-;;:::i;:::-;;39441:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40902:210::-;;;;;;;;;;-1:-1:-1;40902:210:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2330:32:1;;;2312:51;;2300:2;2285:18;40902:210:0;2166:203:1;40459:385:0;;;;;;;;;;-1:-1:-1;40459:385:0;;;;;:::i;:::-;;:::i;12542:1082::-;;;;;;:::i;:::-;;:::i;2134:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2134:43:0;;;;;58493:102;;;;;;;;;;;;;:::i;3075:98::-;;;;;;;;;;-1:-1:-1;3150:15:0;;3075:98;;41744:311;;;;;;;;;;-1:-1:-1;41744:311:0;;;;;:::i;:::-;;:::i;50865:34::-;;;;;;;;;;-1:-1:-1;50865:34:0;;;;;:::i;:::-;;:::i;50672:31::-;;;;;;;;;;;;;;;;13967:104;;;;;;;;;;-1:-1:-1;13967:104:0;;;;;:::i;:::-;-1:-1:-1;;;;;14051:12:0;14019:13;14051:12;;;:6;:12;;;;;;;13967:104;3181:159;;;;;;;;;;-1:-1:-1;3297:9:0;3181:159;;50910:38;;;;;;;;;;;;;;;;54315:86;;;;;;;;;;;;;:::i;42118:165::-;;;;;;;;;;-1:-1:-1;42118:165:0;;;;;:::i;:::-;;:::i;50969:30::-;;;;;;;;;;-1:-1:-1;50969:30:0;;;;;;;;54884:181;;;;;;;;;;-1:-1:-1;54884:181:0;;;;;:::i;:::-;;:::i;39150:232::-;;;;;;;;;;-1:-1:-1;39150:232:0;;;;;:::i;:::-;;:::i;54218:85::-;;;;;;;;;;;;;:::i;38899:197::-;;;;;;;;;;-1:-1:-1;38899:197:0;;;;;:::i;:::-;;:::i;19237:96::-;;;;;;;;;;;;;:::i;52694:480::-;;;;;;:::i;:::-;;:::i;55087:130::-;;;;;;;;;;;;;:::i;50804:50::-;;;;;;;;;;-1:-1:-1;50804:50:0;;;;;:::i;:::-;;:::i;50714:33::-;;;;;;;;;;;;;;;;18537:91;;;;;;;;;;-1:-1:-1;18612:6:0;;-1:-1:-1;;;;;18612:6:0;18537:91;;50758:35;;;;;;;;;;;;;;;;50631:30;;;;;;;;;;-1:-1:-1;50631:30:0;;;;-1:-1:-1;;;50631:30:0;;;;;;54445:98;;;;;;;;;;-1:-1:-1;54445:98:0;;;;;:::i;:::-;;:::i;39595:97::-;;;;;;;;;;;;;:::i;41176:289::-;;;;;;;;;;-1:-1:-1;41176:289:0;;;;;:::i;:::-;;:::i;51964:280::-;;;;;;;;;;-1:-1:-1;51964:280:0;;;;;:::i;:::-;;:::i;42346:300::-;;;;;;;;;;-1:-1:-1;42346:300:0;;;;;:::i;:::-;;:::i;52256:216::-;;;;;;;;;;-1:-1:-1;52256:216:0;;;;;:::i;:::-;;:::i;50548:72::-;;;;;;;;;;-1:-1:-1;50548:72:0;;;;-1:-1:-1;;;;;50548:72:0;;;56850:301;;;;;;;;;;-1:-1:-1;56850:301:0;;;;;:::i;:::-;;:::i;58102:229::-;;;;;;;;;;-1:-1:-1;58102:229:0;;;;;:::i;:::-;;:::i;56714:114::-;;;;;;;;;;;;;:::i;55237:133::-;;;;;;;;;;;;;:::i;58929:186::-;;;;;;;;;;;;;:::i;57299:493::-;;;;;;;;;;-1:-1:-1;57299:493:0;;;;;:::i;:::-;;:::i;19500:198::-;;;;;;;;;;-1:-1:-1;19500:198:0;;;;;:::i;:::-;;:::i;56101:112::-;56148:7;56179:22;:12;36809:14;;36719:112;56179:22;56172:29;;56101:112;:::o;38565:278::-;38666:4;-1:-1:-1;;;;;;38691:40:0;;-1:-1:-1;;;38691:40:0;;:99;;-1:-1:-1;;;;;;;38742:48:0;;-1:-1:-1;;;38742:48:0;38691:99;:146;;;-1:-1:-1;;;;;;;;;;30612:40:0;;;38801:36;38679:158;38565:278;-1:-1:-1;;38565:278:0:o;53429:765::-;53532:1;53521:7;:12;;53513:51;;;;-1:-1:-1;;;53513:51:0;;8540:2:1;53513:51:0;;;8522:21:1;8579:2;8559:18;;;8552:30;8618:28;8598:18;;;8591:56;8664:18;;53513:51:0;;;;;;;;;53598:15;;53587:7;:26;;53579:85;;;;-1:-1:-1;;;53579:85:0;;8895:2:1;53579:85:0;;;8877:21:1;8934:2;8914:18;;;8907:30;8973:34;8953:18;;;8946:62;-1:-1:-1;;;9024:18:1;;;9017:44;9078:19;;53579:85:0;8693:410:1;53579:85:0;53689:11;;-1:-1:-1;;;53689:11:0;;;;:19;;53704:4;53689:19;53681:62;;;;-1:-1:-1;;;53681:62:0;;9310:2:1;53681:62:0;;;9292:21:1;9349:2;9329:18;;;9322:30;9388:32;9368:18;;;9361:60;9438:18;;53681:62:0;9108:354:1;53681:62:0;53811:9;;53800:7;53781:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:39;;53773:87;;;;-1:-1:-1;;;53773:87:0;;;;;;;:::i;:::-;53896:17;53905:7;53896:8;:17::i;:::-;53883:9;:30;53875:83;;;;-1:-1:-1;;;53875:83:0;;10338:2:1;53875:83:0;;;10320:21:1;10377:2;10357:18;;;10350:30;10416:34;10396:18;;;10389:62;-1:-1:-1;;;10467:18:1;;;10460:38;10515:19;;53875:83:0;10136:404:1;53875:83:0;53991:7;53987:180;54008:7;54004:1;:11;;;53987:180;;;54038:18;54059:17;:15;:17::i;:::-;54038:38;;54093:22;54099:3;54104:10;54093:5;:22::i;:::-;54132:19;:17;:19::i;:::-;-1:-1:-1;54017:3:0;;;;:::i;:::-;;;;53987:180;;;;53429:765;;:::o;39441:93::-;39494:13;39523:5;39516:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39441:93;:::o;40902:210::-;40977:7;44156:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44156:16:0;40993:73;;;;-1:-1:-1;;;40993:73:0;;11312:2:1;40993:73:0;;;11294:21:1;11351:2;11331:18;;;11324:30;11390:34;11370:18;;;11363:62;-1:-1:-1;;;11441:18:1;;;11434:42;11493:19;;40993:73:0;11110:408:1;40993:73:0;-1:-1:-1;41082:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41082:24:0;;40902:210::o;40459:385::-;40544:13;40560:23;40575:7;40560:14;:23::i;:::-;40544:39;;40604:5;-1:-1:-1;;;;;40598:11:0;:2;-1:-1:-1;;;;;40598:11:0;;;40590:57;;;;-1:-1:-1;;;40590:57:0;;11725:2:1;40590:57:0;;;11707:21:1;11764:2;11744:18;;;11737:30;11803:34;11783:18;;;11776:62;-1:-1:-1;;;11854:18:1;;;11847:31;11895:19;;40590:57:0;11523:397:1;40590:57:0;40688:5;-1:-1:-1;;;;;40672:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;40672:21:0;;:62;;;;40697:37;40714:5;40721:12;:10;:12::i;40697:37::-;40656:152;;;;-1:-1:-1;;;40656:152:0;;12127:2:1;40656:152:0;;;12109:21:1;12166:2;12146:18;;;12139:30;12205:34;12185:18;;;12178:62;12276:26;12256:18;;;12249:54;12320:19;;40656:152:0;11925:420:1;40656:152:0;40817:21;40826:2;40830:7;40817:8;:21::i;12542:1082::-;12793:130;;;12732:12;12793:130;;;;;-1:-1:-1;;;;;12825:19:0;;12761:29;12825:19;;;:6;:19;;;;;;;;;12793:130;;;;;;;;;;;12952:45;12832:11;12793:130;12980:4;12986;12992;12952:6;:45::i;:::-;12934:118;;;;-1:-1:-1;;;12934:118:0;;12552:2:1;12934:118:0;;;12534:21:1;12591:2;12571:18;;;12564:30;12630:34;12610:18;;;12603:62;-1:-1:-1;;;12681:18:1;;;12674:31;12722:19;;12934:118:0;12350:397:1;12934:118:0;-1:-1:-1;;;;;13137:19:0;;;;;;:6;:19;;;;;;:26;;13161:1;13137:23;:26::i;:::-;-1:-1:-1;;;;;13115:19:0;;;;;;:6;:19;;;;;;;:48;;;;13185:112;;;;;13122:11;;13249:10;;13271:17;;13185:112;:::i;:::-;;;;;;;;13404:12;13418:23;13453:4;-1:-1:-1;;;;;13445:18:0;13491:17;13510:11;13474:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;13474:48:0;;;;;;;;;;13445:86;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13403:128;;;;13548:7;13540:48;;;;-1:-1:-1;;;13540:48:0;;14090:2:1;13540:48:0;;;14072:21:1;14129:2;14109:18;;;14102:30;14168;14148:18;;;14141:58;14216:18;;13540:48:0;13888:352:1;13540:48:0;13606:10;12542:1082;-1:-1:-1;;;;;;;;12542:1082:0:o;58493:102::-;58536:7;58567:16;:14;:16::i;41744:311::-;41917:41;41936:12;:10;:12::i;:::-;41950:7;41917:18;:41::i;:::-;41909:103;;;;-1:-1:-1;;;41909:103:0;;;;;;;:::i;:::-;42021:28;42031:4;42037:2;42041:7;42021:9;:28::i;50865:34::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50865:34:0;:::o;54315:86::-;18784:12;:10;:12::i;:::-;-1:-1:-1;;;;;18773:23:0;:7;18612:6;;-1:-1:-1;;;;;18612:6:0;;18537:91;18773:7;-1:-1:-1;;;;;18773:23:0;;18765:68;;;;-1:-1:-1;;;18765:68:0;;;;;;;:::i;:::-;54370:11:::1;:19:::0;;-1:-1:-1;;;;54370:19:0::1;::::0;;54315:86::o;42118:165::-;42238:39;42255:4;42261:2;42265:7;42238:39;;;;;;;;;;;;:16;:39::i;54884:181::-;18784:12;:10;:12::i;:::-;-1:-1:-1;;;;;18773:23:0;:7;18612:6;;-1:-1:-1;;;;;18612:6:0;;18537:91;18773:7;-1:-1:-1;;;;;18773:23:0;;18765:68;;;;-1:-1:-1;;;18765:68:0;;;;;;;:::i;:::-;54978:1:::1;54963:11;:16;;54955:56;;;::::0;-1:-1:-1;;;54955:56:0;;15226:2:1;54955:56:0::1;::::0;::::1;15208:21:1::0;15265:2;15245:18;;;15238:30;15304:29;15284:18;;;15277:57;15351:18;;54955:56:0::1;15024:351:1::0;54955:56:0::1;55024:15;:29:::0;54884:181::o;39150:232::-;39221:7;39261:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39261:16:0;39292:19;39284:73;;;;-1:-1:-1;;;39284:73:0;;15582:2:1;39284:73:0;;;15564:21:1;15621:2;15601:18;;;15594:30;15660:34;15640:18;;;15633:62;-1:-1:-1;;;15711:18:1;;;15704:39;15760:19;;39284:73:0;15380:405:1;54218:85:0;18784:12;:10;:12::i;:::-;-1:-1:-1;;;;;18773:23:0;:7;18612:6;;-1:-1:-1;;;;;18612:6:0;;18537:91;18773:7;-1:-1:-1;;;;;18773:23:0;;18765:68;;;;-1:-1:-1;;;18765:68:0;;;;;;;:::i;:::-;54273:11:::1;:18:::0;;-1:-1:-1;;;;54273:18:0::1;-1:-1:-1::0;;;54273:18:0::1;::::0;;54218:85::o;38899:197::-;38970:7;-1:-1:-1;;;;;38994:19:0;;38986:74;;;;-1:-1:-1;;;38986:74:0;;15992:2:1;38986:74:0;;;15974:21:1;16031:2;16011:18;;;16004:30;16070:34;16050:18;;;16043:62;-1:-1:-1;;;16121:18:1;;;16114:40;16171:19;;38986:74:0;15790:406:1;38986:74:0;-1:-1:-1;;;;;;39074:16:0;;;;;:9;:16;;;;;;;38899:197::o;19237:96::-;18784:12;:10;:12::i;:::-;-1:-1:-1;;;;;18773:23:0;:7;18612:6;;-1:-1:-1;;;;;18612:6:0;;18537:91;18773:7;-1:-1:-1;;;;;18773:23:0;;18765:68;;;;-1:-1:-1;;;18765:68:0;;;;;;;:::i;:::-;19302:21:::1;19320:1;19302:9;:21::i;:::-;19237:96::o:0;52694:480::-;52782:9;;52761:17;:15;:17::i;:::-;:30;;52753:78;;;;-1:-1:-1;;;52753:78:0;;;;;;;:::i;:::-;52853:11;;-1:-1:-1;;;52853:11:0;;;;:19;;52868:4;52853:19;52845:62;;;;-1:-1:-1;;;52845:62:0;;9310:2:1;52845:62:0;;;9292:21:1;9349:2;9329:18;;;9322:30;9388:32;9368:18;;;9361:60;9438:18;;52845:62:0;9108:354:1;52845:62:0;52975:5;;52962:9;:18;52954:70;;;;-1:-1:-1;;;52954:70:0;;16403:2:1;52954:70:0;;;16385:21:1;16442:2;16422:18;;;16415:30;16481:34;16461:18;;;16454:62;-1:-1:-1;;;16532:18:1;;;16525:37;16579:19;;52954:70:0;16201:403:1;52954:70:0;53039:18;53060:17;:15;:17::i;:::-;53039:38;;53092:22;53098:3;53103:10;53092:5;:22::i;:::-;53129:19;:17;:19::i;:::-;52738:436;52694:480;:::o;55087:130::-;18784:12;:10;:12::i;:::-;-1:-1:-1;;;;;18773:23:0;:7;18612:6;;-1:-1:-1;;;;;18612:6:0;;18537:91;18773:7;-1:-1:-1;;;;;18773:23:0;;18765:68;;;;-1:-1:-1;;;18765:68:0;;;;;;;:::i;:::-;55174:1:::1;55150:21;:25;55142:34;;;::::0;::::1;;55191:14;:12;:14::i;50804:50::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50804:50:0;;-1:-1:-1;50804:50:0;:::o;54445:98::-;18784:12;:10;:12::i;:::-;-1:-1:-1;;;;;18773:23:0;:7;18612:6;;-1:-1:-1;;;;;18612:6:0;;18537:91;18773:7;-1:-1:-1;;;;;18773:23:0;;18765:68;;;;-1:-1:-1;;;18765:68:0;;;;;;;:::i;:::-;54514:5:::1;:17:::0;54445:98::o;39595:97::-;39650:13;39679:7;39672:14;;;;;:::i;41176:289::-;41287:12;:10;:12::i;:::-;-1:-1:-1;;;;;41275:24:0;:8;-1:-1:-1;;;;;41275:24:0;;;41267:62;;;;-1:-1:-1;;;41267:62:0;;16811:2:1;41267:62:0;;;16793:21:1;16850:2;16830:18;;;16823:30;16889:27;16869:18;;;16862:55;16934:18;;41267:62:0;16609:349:1;41267:62:0;41383:8;41338:18;:32;41357:12;:10;:12::i;:::-;-1:-1:-1;;;;;41338:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;41338:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;41338:53:0;;;;;;;;;;;41426:12;:10;:12::i;:::-;-1:-1:-1;;;;;41411:48:0;;41450:8;41411:48;;;;747:14:1;740:22;722:41;;710:2;695:18;;582:187;41411:48:0;;;;;;;;41176:289;;:::o;51964:280::-;18784:12;:10;:12::i;:::-;-1:-1:-1;;;;;18773:23:0;:7;18612:6;;-1:-1:-1;;;;;18612:6:0;;18537:91;18773:7;-1:-1:-1;;;;;18773:23:0;;18765:68;;;;-1:-1:-1;;;18765:68:0;;;;;;;:::i;:::-;52059:9:::1;;52038:17;:15;:17::i;:::-;:30;;52030:78;;;;-1:-1:-1::0;;;52030:78:0::1;;;;;;;:::i;42346:300::-:0;42499:41;42518:12;:10;:12::i;:::-;42532:7;42499:18;:41::i;:::-;42491:103;;;;-1:-1:-1;;;42491:103:0;;;;;;;:::i;:::-;42601:39;42615:4;42621:2;42625:7;42634:5;42601:13;:39::i;:::-;42346:300;;;;:::o;52256:216::-;18784:12;:10;:12::i;:::-;-1:-1:-1;;;;;18773:23:0;:7;18612:6;;-1:-1:-1;;;;;18612:6:0;;18537:91;18773:7;-1:-1:-1;;;;;18773:23:0;;18765:68;;;;-1:-1:-1;;;18765:68:0;;;;;;;:::i;:::-;52367:6:::1;52363:98;52381:12;52377:1;:16;52363:98;;;52420:25;52432:9;52442:1;52432:12;;;;;;;;:::i;:::-;;;;;;;52420:11;:25::i;:::-;52395:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52363:98;;56850:301:::0;56968:13;57077:14;:12;:14::i;:::-;57093:26;57110:8;57093:16;:26::i;:::-;57060:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57007:132;;56850:301;;;:::o;58102:229::-;18784:12;:10;:12::i;:::-;-1:-1:-1;;;;;18773:23:0;:7;18612:6;;-1:-1:-1;;;;;18612:6:0;;18537:91;18773:7;-1:-1:-1;;;;;18773:23:0;;18765:68;;;;-1:-1:-1;;;18765:68:0;;;;;;;:::i;:::-;58190:10:::1;::::0;::::1;;:19;58182:59;;;::::0;-1:-1:-1;;;58182:59:0;;17912:2:1;58182:59:0::1;::::0;::::1;17894:21:1::0;17951:2;17931:18;;;17924:30;17990:29;17970:18;;;17963:57;18037:18;;58182:59:0::1;17710:351:1::0;58182:59:0::1;58256:31:::0;;::::1;::::0;:12:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;58302:10:0::1;:17:::0;;-1:-1:-1;;58302:17:0::1;58315:4;58302:17;::::0;;58102:229::o;56714:114::-;56767:13;56804:12;56797:19;;;;;:::i;55237:133::-;51663:12;;-1:-1:-1;;;;;51663:12:0;51649:10;:26;51641:67;;;;-1:-1:-1;;;51641:67:0;;18268:2:1;51641:67:0;;;18250:21:1;18307:2;18287:18;;;18280:30;18346;18326:18;;;18319:58;18394:18;;51641:67:0;18066:352:1;58929:186:0;58973:13;59003:100;;;;;;;;;;;;;;;;;;;58929:186;:::o;57299:493::-;57581:20;;57629:28;;-1:-1:-1;;;57629:28:0;;-1:-1:-1;;;;;2330:32:1;;;57629:28:0;;;2312:51:1;57440:4:0;;57581:20;;;57621:49;;;;57581:20;;57629:21;;2285:18:1;;57629:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;57621:49:0;;57617:101;;;57698:4;57691:11;;;;;57617:101;-1:-1:-1;;;;;41644:25:0;;;41624:4;41644:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;57741:39;57734:46;57299:493;-1:-1:-1;;;;57299:493:0:o;19500:198::-;18784:12;:10;:12::i;:::-;-1:-1:-1;;;;;18773:23:0;:7;18612:6;;-1:-1:-1;;;;;18612:6:0;;18537:91;18773:7;-1:-1:-1;;;;;18773:23:0;;18765:68;;;;-1:-1:-1;;;18765:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19591:22:0;::::1;19583:73;;;::::0;-1:-1:-1;;;19583:73:0;;18910:2:1;19583:73:0::1;::::0;::::1;18892:21:1::0;18949:2;18929:18;;;18922:30;18988:34;18968:18;;;18961:62;-1:-1:-1;;;19039:18:1;;;19032:36;19085:19;;19583:73:0::1;18708:402:1::0;19583:73:0::1;19669:19;19679:8;19669:9;:19::i;:::-;19500:198:::0;:::o;4071:548::-;4114:22;4149:10;4171:4;4149:27;4145:449;;;4195:18;4216:8;;4195:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;4257:8:0;4443:17;4437:24;-1:-1:-1;;;;;4421:106:0;;-1:-1:-1;4145:449:0;;-1:-1:-1;4145:449:0;;-1:-1:-1;4575:10:0;4145:449;4071:548;:::o;54555:116::-;54642:5;;54611:7;;54642:17;;54652:6;54642:9;:17::i;56386:118::-;56435:7;56466:22;:12;36809:14;;36719:112;56466:22;:26;;56491:1;56466:26;:::i;45916:364::-;-1:-1:-1;;;;;45992:16:0;;45984:61;;;;-1:-1:-1;;;45984:61:0;;19317:2:1;45984:61:0;;;19299:21:1;;;19336:18;;;19329:30;19395:34;19375:18;;;19368:62;19447:18;;45984:61:0;19115:356:1;45984:61:0;44136:4;44156:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44156:16:0;:30;46052:58;;;;-1:-1:-1;;;46052:58:0;;19678:2:1;46052:58:0;;;19660:21:1;19717:2;19697:18;;;19690:30;19756;19736:18;;;19729:58;19804:18;;46052:58:0;19476:352:1;46052:58:0;-1:-1:-1;;;;;46173:13:0;;;;;;:9;:13;;;;;:18;;46190:1;;46173:13;:18;;46190:1;;46173:18;:::i;:::-;;;;-1:-1:-1;;46198:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;46198:21:0;-1:-1:-1;;;;;46198:21:0;;;;;;;;46241:33;;46198:16;;;46241:33;;46198:16;;46241:33;45916:364;;:::o;56604:88::-;56656:24;:12;36922:19;;36940:1;36922:19;;;36839:119;57952:128;58006:14;58044:24;:22;:24::i;47786:172::-;47857:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;47857:29:0;-1:-1:-1;;;;;47857:29:0;;;;;;;;:24;;47915:23;47857:24;47915:14;:23::i;:::-;-1:-1:-1;;;;;47906:46:0;;;;;;;;;;;47786:172;;:::o;14079:433::-;14246:4;-1:-1:-1;;;;;14269:20:0;;14261:70;;;;-1:-1:-1;;;14261:70:0;;20035:2:1;14261:70:0;;;20017:21:1;20074:2;20054:18;;;20047:30;20113:34;20093:18;;;20086:62;-1:-1:-1;;;20164:18:1;;;20157:35;20209:19;;14261:70:0;19833:401:1;14261:70:0;14373:131;14395:47;14414:27;14434:6;14414:19;:27::i;:::-;14395:18;:47::i;:::-;14373:131;;;;;;;;;;;;20466:25:1;;;;20539:4;20527:17;;20507:18;;;20500:45;20561:18;;;20554:34;;;20604:18;;;20597:34;;;20438:19;;14373:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14354:150:0;:6;-1:-1:-1;;;;;14354:150:0;;14340:164;;14079:433;;;;;;;:::o;7410:95::-;7467:7;7492:5;7496:1;7492;:5;:::i;:::-;7485:12;7410:95;-1:-1:-1;;;7410:95:0:o;44343:341::-;44435:4;44156:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44156:16:0;44448:73;;;;-1:-1:-1;;;44448:73:0;;20844:2:1;44448:73:0;;;20826:21:1;20883:2;20863:18;;;20856:30;20922:34;20902:18;;;20895:62;-1:-1:-1;;;20973:18:1;;;20966:42;21025:19;;44448:73:0;20642:408:1;44448:73:0;44536:13;44552:23;44567:7;44552:14;:23::i;:::-;44536:39;;44601:5;-1:-1:-1;;;;;44590:16:0;:7;-1:-1:-1;;;;;44590:16:0;;:51;;;;44634:7;-1:-1:-1;;;;;44610:31:0;:20;44622:7;44610:11;:20::i;:::-;-1:-1:-1;;;;;44610:31:0;;44590:51;:87;;;;44645:32;44662:5;44669:7;44645:16;:32::i;47146:534::-;47287:4;-1:-1:-1;;;;;47260:31:0;:23;47275:7;47260:14;:23::i;:::-;-1:-1:-1;;;;;47260:31:0;;47252:85;;;;-1:-1:-1;;;47252:85:0;;21257:2:1;47252:85:0;;;21239:21:1;21296:2;21276:18;;;21269:30;21335:34;21315:18;;;21308:62;-1:-1:-1;;;21386:18:1;;;21379:39;21435:19;;47252:85:0;21055:405:1;47252:85:0;-1:-1:-1;;;;;47352:16:0;;47344:65;;;;-1:-1:-1;;;47344:65:0;;21667:2:1;47344:65:0;;;21649:21:1;21706:2;21686:18;;;21679:30;21745:34;21725:18;;;21718:62;-1:-1:-1;;;21796:18:1;;;21789:34;21840:19;;47344:65:0;21465:400:1;47344:65:0;47514:29;47531:1;47535:7;47514:8;:29::i;:::-;-1:-1:-1;;;;;47552:15:0;;;;;;:9;:15;;;;;:20;;47571:1;;47552:15;:20;;47571:1;;47552:20;:::i;:::-;;;;-1:-1:-1;;;;;;;47579:13:0;;;;;;:9;:13;;;;;:18;;47596:1;;47579:13;:18;;47596:1;;47579:18;:::i;:::-;;;;-1:-1:-1;;47604:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;47604:21:0;-1:-1:-1;;;;;47604:21:0;;;;;;;;;47647:27;;47604:16;;47647:27;;;;;;;47146:534;;;:::o;19714:181::-;19791:6;;;-1:-1:-1;;;;;19810:17:0;;;-1:-1:-1;;;;;;19810:17:0;;;;;;;19845:40;;19791:6;;;19810:17;19791:6;;19845:40;;19772:16;;19845:40;19759:136;19714:181;:::o;55386:332::-;55451:21;55433:15;55501:206;55519:19;;55515:1;:23;55501:206;;;55565:126;55598:16;55615:1;55598:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55598:19:0;55669:3;55651:11;55663:1;55651:14;;;;;;;;:::i;:::-;;;;;;;;;55641:7;:24;;;;:::i;:::-;55640:32;;;;:::i;:::-;55565:10;:126::i;:::-;55540:3;;;;:::i;:::-;;;;55501:206;;43490:287;43625:28;43635:4;43641:2;43645:7;43625:9;:28::i;:::-;43668:48;43691:4;43697:2;43701:7;43710:5;43668:22;:48::i;:::-;43660:111;;;;-1:-1:-1;;;43660:111:0;;;;;;;:::i;14861:692::-;14916:13;15131:10;15127:47;;-1:-1:-1;;15154:10:0;;;;;;;;;;;;-1:-1:-1;;;15154:10:0;;;;;14861:692::o;15127:47::-;15203:5;15188:12;15246:68;15253:9;;15246:68;;15275:8;;;;:::i;:::-;;-1:-1:-1;15294:10:0;;-1:-1:-1;15302:2:0;15294:10;;:::i;:::-;;;15246:68;;;15328:19;15360:6;15350:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15350:17:0;;15328:39;;15376:140;15383:10;;15376:140;;15406:11;15416:1;15406:11;;:::i;:::-;;-1:-1:-1;15471:10:0;15479:2;15471:5;:10;:::i;:::-;15458:24;;:2;:24;:::i;:::-;15445:39;;15428:6;15435;15428:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;15428:56:0;;;;;;;;-1:-1:-1;15495:11:0;15504:2;15495:11;;:::i;:::-;;;15376:140;;8144:95;8201:7;8226:5;8230:1;8226;:5;:::i;13632:327::-;13729:7;11826:102;;;;;;;;;;;;;;;;;11804:135;;;;;;;13847:12;;13872:11;;;;13906:24;;;;;13896:35;;;;;;13786:156;;;;;23197:25:1;;;23253:2;23238:18;;23231:34;;;;-1:-1:-1;;;;;23301:32:1;23296:2;23281:18;;23274:60;23365:2;23350:18;;23343:34;23184:3;23169:19;;22966:417;13786:156:0;;;;;;;;;;;;;13766:185;;;;;;13752:199;;13632:327;;;:::o;3707:223::-;3793:7;3879:20;3150:15;;;3075:98;3879:20;3850:63;;-1:-1:-1;;;3850:63:0;;;23646:27:1;23689:11;;;23682:27;;;;23725:12;;;23718:28;;;23762:12;;3850:63:0;23388:392:1;55738:193:0;55817:12;55835:8;-1:-1:-1;;;;;55835:13:0;55856:7;55835:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55816:52;;;55891:7;55883:36;;;;-1:-1:-1;;;55883:36:0;;24197:2:1;55883:36:0;;;24179:21:1;24236:2;24216:18;;;24209:30;-1:-1:-1;;;24255:18:1;;;24248:46;24311:18;;55883:36:0;23995:340:1;48501:681:0;48637:4;-1:-1:-1;;;;;48654:13:0;;21030:20;21074:8;48650:527;;48700:2;-1:-1:-1;;;;;48684:36:0;;48721:12;:10;:12::i;:::-;48735:4;48741:7;48750:5;48684:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48684:72:0;;;;;;;;-1:-1:-1;;48684:72:0;;;;;;;;;;;;:::i;:::-;;;48680:456;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48903:13:0;;48899:228;;48936:60;;-1:-1:-1;;;48936:60:0;;;;;;;:::i;48899:228::-;49095:6;49089:13;49080:6;49076:2;49072:15;49065:38;48680:456;-1:-1:-1;;;;;;48798:51:0;-1:-1:-1;;;48798:51:0;;-1:-1:-1;48791:58:0;;48650:527;-1:-1:-1;49165:4:0;48501:681;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:131::-;-1:-1:-1;;;;;849:31:1;;839:42;;829:70;;895:1;892;885:12;910:315;978:6;986;1039:2;1027:9;1018:7;1014:23;1010:32;1007:52;;;1055:1;1052;1045:12;1007:52;1094:9;1081:23;1113:31;1138:5;1113:31;:::i;:::-;1163:5;1215:2;1200:18;;;;1187:32;;-1:-1:-1;;;910:315:1:o;1230:258::-;1302:1;1312:113;1326:6;1323:1;1320:13;1312:113;;;1402:11;;;1396:18;1383:11;;;1376:39;1348:2;1341:10;1312:113;;;1443:6;1440:1;1437:13;1434:48;;;-1:-1:-1;;1478:1:1;1460:16;;1453:27;1230:258::o;1493:::-;1535:3;1573:5;1567:12;1600:6;1595:3;1588:19;1616:63;1672:6;1665:4;1660:3;1656:14;1649:4;1642:5;1638:16;1616:63;:::i;:::-;1733:2;1712:15;-1:-1:-1;;1708:29:1;1699:39;;;;1740:4;1695:50;;1493:258;-1:-1:-1;;1493:258:1:o;1756:220::-;1905:2;1894:9;1887:21;1868:4;1925:45;1966:2;1955:9;1951:18;1943:6;1925:45;:::i;1981:180::-;2040:6;2093:2;2081:9;2072:7;2068:23;2064:32;2061:52;;;2109:1;2106;2099:12;2061:52;-1:-1:-1;2132:23:1;;1981:180;-1:-1:-1;1981:180:1:o;2374:127::-;2435:10;2430:3;2426:20;2423:1;2416:31;2466:4;2463:1;2456:15;2490:4;2487:1;2480:15;2506:275;2577:2;2571:9;2642:2;2623:13;;-1:-1:-1;;2619:27:1;2607:40;;2677:18;2662:34;;2698:22;;;2659:62;2656:88;;;2724:18;;:::i;:::-;2760:2;2753:22;2506:275;;-1:-1:-1;2506:275:1:o;2786:406::-;2850:5;2884:18;2876:6;2873:30;2870:56;;;2906:18;;:::i;:::-;2944:57;2989:2;2968:15;;-1:-1:-1;;2964:29:1;2995:4;2960:40;2944:57;:::i;:::-;2935:66;;3024:6;3017:5;3010:21;3064:3;3055:6;3050:3;3046:16;3043:25;3040:45;;;3081:1;3078;3071:12;3040:45;3130:6;3125:3;3118:4;3111:5;3107:16;3094:43;3184:1;3177:4;3168:6;3161:5;3157:18;3153:29;3146:40;2786:406;;;;;:::o;3197:220::-;3239:5;3292:3;3285:4;3277:6;3273:17;3269:27;3259:55;;3310:1;3307;3300:12;3259:55;3332:79;3407:3;3398:6;3385:20;3378:4;3370:6;3366:17;3332:79;:::i;3422:758::-;3524:6;3532;3540;3548;3556;3609:3;3597:9;3588:7;3584:23;3580:33;3577:53;;;3626:1;3623;3616:12;3577:53;3665:9;3652:23;3684:31;3709:5;3684:31;:::i;:::-;3734:5;-1:-1:-1;3790:2:1;3775:18;;3762:32;3817:18;3806:30;;3803:50;;;3849:1;3846;3839:12;3803:50;3872:49;3913:7;3904:6;3893:9;3889:22;3872:49;:::i;:::-;3862:59;;;3968:2;3957:9;3953:18;3940:32;3930:42;;4019:2;4008:9;4004:18;3991:32;3981:42;;4075:3;4064:9;4060:19;4047:33;4124:4;4115:7;4111:18;4102:7;4099:31;4089:59;;4144:1;4141;4134:12;4089:59;4167:7;4157:17;;;3422:758;;;;;;;;:::o;4590:456::-;4667:6;4675;4683;4736:2;4724:9;4715:7;4711:23;4707:32;4704:52;;;4752:1;4749;4742:12;4704:52;4791:9;4778:23;4810:31;4835:5;4810:31;:::i;:::-;4860:5;-1:-1:-1;4917:2:1;4902:18;;4889:32;4930:33;4889:32;4930:33;:::i;:::-;4590:456;;4982:7;;-1:-1:-1;;;5036:2:1;5021:18;;;;5008:32;;4590:456::o;5051:247::-;5110:6;5163:2;5151:9;5142:7;5138:23;5134:32;5131:52;;;5179:1;5176;5169:12;5131:52;5218:9;5205:23;5237:31;5262:5;5237:31;:::i;5303:416::-;5368:6;5376;5429:2;5417:9;5408:7;5404:23;5400:32;5397:52;;;5445:1;5442;5435:12;5397:52;5484:9;5471:23;5503:31;5528:5;5503:31;:::i;:::-;5553:5;-1:-1:-1;5610:2:1;5595:18;;5582:32;5652:15;;5645:23;5633:36;;5623:64;;5683:1;5680;5673:12;5623:64;5706:7;5696:17;;;5303:416;;;;;:::o;5724:665::-;5819:6;5827;5835;5843;5896:3;5884:9;5875:7;5871:23;5867:33;5864:53;;;5913:1;5910;5903:12;5864:53;5952:9;5939:23;5971:31;5996:5;5971:31;:::i;:::-;6021:5;-1:-1:-1;6078:2:1;6063:18;;6050:32;6091:33;6050:32;6091:33;:::i;:::-;6143:7;-1:-1:-1;6197:2:1;6182:18;;6169:32;;-1:-1:-1;6252:2:1;6237:18;;6224:32;6279:18;6268:30;;6265:50;;;6311:1;6308;6301:12;6265:50;6334:49;6375:7;6366:6;6355:9;6351:22;6334:49;:::i;:::-;6324:59;;;5724:665;;;;;;;:::o;6394:1091::-;6487:6;6495;6548:2;6536:9;6527:7;6523:23;6519:32;6516:52;;;6564:1;6561;6554:12;6516:52;6604:9;6591:23;6633:18;6674:2;6666:6;6663:14;6660:34;;;6690:1;6687;6680:12;6660:34;6728:6;6717:9;6713:22;6703:32;;6773:7;6766:4;6762:2;6758:13;6754:27;6744:55;;6795:1;6792;6785:12;6744:55;6831:2;6818:16;6853:4;6876:2;6872;6869:10;6866:36;;;6882:18;;:::i;:::-;6928:2;6925:1;6921:10;6911:20;;6951:28;6975:2;6971;6967:11;6951:28;:::i;:::-;7013:15;;;7083:11;;;7079:20;;;7044:12;;;;7111:19;;;7108:39;;;7143:1;7140;7133:12;7108:39;7167:11;;;;7187:217;7203:6;7198:3;7195:15;7187:217;;;7283:3;7270:17;7257:30;;7300:31;7325:5;7300:31;:::i;:::-;7344:18;;;7220:12;;;;7382;;;;7187:217;;;7423:5;7460:18;;;;7447:32;;-1:-1:-1;;;;;;;6394:1091:1:o;7490:450::-;7559:6;7612:2;7600:9;7591:7;7587:23;7583:32;7580:52;;;7628:1;7625;7618:12;7580:52;7668:9;7655:23;7701:18;7693:6;7690:30;7687:50;;;7733:1;7730;7723:12;7687:50;7756:22;;7809:4;7801:13;;7797:27;-1:-1:-1;7787:55:1;;7838:1;7835;7828:12;7787:55;7861:73;7926:7;7921:2;7908:16;7903:2;7899;7895:11;7861:73;:::i;7945:388::-;8013:6;8021;8074:2;8062:9;8053:7;8049:23;8045:32;8042:52;;;8090:1;8087;8080:12;8042:52;8129:9;8116:23;8148:31;8173:5;8148:31;:::i;:::-;8198:5;-1:-1:-1;8255:2:1;8240:18;;8227:32;8268:33;8227:32;8268:33;:::i;9467:127::-;9528:10;9523:3;9519:20;9516:1;9509:31;9559:4;9556:1;9549:15;9583:4;9580:1;9573:15;9599:128;9639:3;9670:1;9666:6;9663:1;9660:13;9657:39;;;9676:18;;:::i;:::-;-1:-1:-1;9712:9:1;;9599:128::o;9732:399::-;9934:2;9916:21;;;9973:2;9953:18;;;9946:30;10012:34;10007:2;9992:18;;9985:62;-1:-1:-1;;;10078:2:1;10063:18;;10056:33;10121:3;10106:19;;9732:399::o;10545:175::-;10582:3;10626:4;10619:5;10615:16;10655:4;10646:7;10643:17;10640:43;;;10663:18;;:::i;:::-;10712:1;10699:15;;10545:175;-1:-1:-1;;10545:175:1:o;10725:380::-;10804:1;10800:12;;;;10847;;;10868:61;;10922:4;10914:6;10910:17;10900:27;;10868:61;10975:2;10967:6;10964:14;10944:18;10941:38;10938:161;;;11021:10;11016:3;11012:20;11009:1;11002:31;11056:4;11053:1;11046:15;11084:4;11081:1;11074:15;10938:161;;10725:380;;;:::o;12752:432::-;-1:-1:-1;;;;;13009:15:1;;;12991:34;;13061:15;;13056:2;13041:18;;13034:43;13113:2;13108;13093:18;;13086:30;;;12934:4;;13133:45;;13159:18;;13151:6;13133:45;:::i;:::-;13125:53;12752:432;-1:-1:-1;;;;;12752:432:1:o;13189:415::-;13346:3;13384:6;13378:13;13400:53;13446:6;13441:3;13434:4;13426:6;13422:17;13400:53;:::i;:::-;13522:2;13518:15;;;;-1:-1:-1;;13514:53:1;13475:16;;;;13500:68;;;13595:2;13584:14;;13189:415;-1:-1:-1;;13189:415:1:o;13609:274::-;13738:3;13776:6;13770:13;13792:53;13838:6;13833:3;13826:4;13818:6;13814:17;13792:53;:::i;:::-;13861:16;;;;;13609:274;-1:-1:-1;;13609:274:1:o;14245:413::-;14447:2;14429:21;;;14486:2;14466:18;;;14459:30;14525:34;14520:2;14505:18;;14498:62;-1:-1:-1;;;14591:2:1;14576:18;;14569:47;14648:3;14633:19;;14245:413::o;14663:356::-;14865:2;14847:21;;;14884:18;;;14877:30;14943:34;14938:2;14923:18;;14916:62;15010:2;14995:18;;14663:356::o;16963:127::-;17024:10;17019:3;17015:20;17012:1;17005:31;17055:4;17052:1;17045:15;17079:4;17076:1;17069:15;17095:135;17134:3;-1:-1:-1;;17155:17:1;;17152:43;;;17175:18;;:::i;:::-;-1:-1:-1;17222:1:1;17211:13;;17095:135::o;17235:470::-;17414:3;17452:6;17446:13;17468:53;17514:6;17509:3;17502:4;17494:6;17490:17;17468:53;:::i;:::-;17584:13;;17543:16;;;;17606:57;17584:13;17543:16;17640:4;17628:17;;17606:57;:::i;:::-;17679:20;;17235:470;-1:-1:-1;;;;17235:470:1:o;18423:280::-;18522:6;18575:2;18563:9;18554:7;18550:23;18546:32;18543:52;;;18591:1;18588;18581:12;18543:52;18623:9;18617:16;18642:31;18667:5;18642:31;:::i;21870:125::-;21910:4;21938:1;21935;21932:8;21929:34;;;21943:18;;:::i;:::-;-1:-1:-1;21980:9:1;;21870:125::o;22000:168::-;22040:7;22106:1;22102;22098:6;22094:14;22091:1;22088:21;22083:1;22076:9;22069:17;22065:45;22062:71;;;22113:18;;:::i;:::-;-1:-1:-1;22153:9:1;;22000:168::o;22173:127::-;22234:10;22229:3;22225:20;22222:1;22215:31;22265:4;22262:1;22255:15;22289:4;22286:1;22279:15;22305:120;22345:1;22371;22361:35;;22376:18;;:::i;:::-;-1:-1:-1;22410:9:1;;22305:120::o;22430:414::-;22632:2;22614:21;;;22671:2;22651:18;;;22644:30;22710:34;22705:2;22690:18;;22683:62;-1:-1:-1;;;22776:2:1;22761:18;;22754:48;22834:3;22819:19;;22430:414::o;22849:112::-;22881:1;22907;22897:35;;22912:18;;:::i;:::-;-1:-1:-1;22946:9:1;;22849:112::o;24340:489::-;-1:-1:-1;;;;;24609:15:1;;;24591:34;;24661:15;;24656:2;24641:18;;24634:43;24708:2;24693:18;;24686:34;;;24756:3;24751:2;24736:18;;24729:31;;;24534:4;;24777:46;;24803:19;;24795:6;24777:46;:::i;:::-;24769:54;24340:489;-1:-1:-1;;;;;;24340:489:1:o;24834:249::-;24903:6;24956:2;24944:9;24935:7;24931:23;24927:32;24924:52;;;24972:1;24969;24962:12;24924:52;25004:9;24998:16;25023:30;25047:5;25023:30;:::i
Swarm Source
ipfs://03bc5d33b6e3729f0e5ed59d5b1451d2bfe031818a813066ba5d57d048da7802
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.