ERC-721
Overview
Max Total Supply
999 HCP1
Holders
273
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HCP1Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HiddenCryptography
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-15 */ // SPDX-License-Identifier: MIT // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.15; contract HiddenCryptography is ERC721A, DefaultOperatorFilterer, Ownable { string public baseURI = "ipfs://QmRAv2hXRyeRtPZpBQgbzkHPR2qS3GYbFbTDAKxeusYJSc/"; string public baseExtension = ".json"; uint256 public price = 0.025 ether; uint256 public maxSupply = 999; uint256 public maxPerTransaction = 20; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor () ERC721A("999 HIDDEN CRYPTOGRAPHY - PHASE 1", "HCP1") { } function _startTokenId() internal view virtual override returns (uint256) { return 1; } // Mint function publicMint(uint256 amount) public payable callerIsUser{ require(amount <= maxPerTransaction, "Over Max Per Transaction!"); require(totalSupply() + amount <= maxSupply, "Sold Out!"); uint256 mintAmount = amount; if (totalSupply() % 2 != 0 ) { mintAmount--; } require(msg.value > 0 || mintAmount == 0, "Insufficient Value!"); if (msg.value >= price * mintAmount) { _safeMint(msg.sender, amount); } } ///////////////////////////// // CONTRACT MANAGEMENT ///////////////////////////// function setPrice(uint256 newPrice) public onlyOwner { price = newPrice; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } ///////////////////////////// // OPENSEA FILTER REGISTRY ///////////////////////////// function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180606001604052806036815260200162003aae60369139600990816200002e9190620006ab565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9081620000759190620006ab565b506658d15e17628000600b556103e7600c556014600d553480156200009957600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb6600160405180606001604052806021815260200162003a8d602191396040518060400160405280600481526020017f48435031000000000000000000000000000000000000000000000000000000008152508160029081620001129190620006ab565b508060039081620001249190620006ab565b50620001356200035a60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000332578015620001f8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001be929190620007d7565b600060405180830381600087803b158015620001d957600080fd5b505af1158015620001ee573d6000803e3d6000fd5b5050505062000331565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002b2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000278929190620007d7565b600060405180830381600087803b1580156200029357600080fd5b505af1158015620002a8573d6000803e3d6000fd5b5050505062000330565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002fb919062000804565b600060405180830381600087803b1580156200031657600080fd5b505af11580156200032b573d6000803e3d6000fd5b505050505b5b5b505062000354620003486200036360201b60201c565b6200036b60201b60201c565b62000821565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004b357607f821691505b602082108103620004c957620004c86200046b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004f4565b6200053f8683620004f4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200058c62000586620005808462000557565b62000561565b62000557565b9050919050565b6000819050919050565b620005a8836200056b565b620005c0620005b78262000593565b84845462000501565b825550505050565b600090565b620005d7620005c8565b620005e48184846200059d565b505050565b5b818110156200060c5762000600600082620005cd565b600181019050620005ea565b5050565b601f8211156200065b576200062581620004cf565b6200063084620004e4565b8101602085101562000640578190505b620006586200064f85620004e4565b830182620005e9565b50505b505050565b600082821c905092915050565b6000620006806000198460080262000660565b1980831691505092915050565b60006200069b83836200066d565b9150826002028217905092915050565b620006b68262000431565b67ffffffffffffffff811115620006d257620006d16200043c565b5b620006de82546200049a565b620006eb82828562000610565b600060209050601f8311600181146200072357600084156200070e578287015190505b6200071a85826200068d565b8655506200078a565b601f1984166200073386620004cf565b60005b828110156200075d5784890151825560018201915060208501945060208101905062000736565b868310156200077d578489015162000779601f8916826200066d565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007bf8262000792565b9050919050565b620007d181620007b2565b82525050565b6000604082019050620007ee6000830185620007c6565b620007fd6020830184620007c6565b9392505050565b60006020820190506200081b6000830184620007c6565b92915050565b61325c80620008316000396000f3fe60806040526004361061019c5760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461054d578063d5abeb011461058a578063e985e9c5146105b5578063f2fde38b146105f25761019c565b8063a22cb465146104dd578063b88d4fde14610506578063c6682862146105225761019c565b80638da5cb5b116100c65780638da5cb5b1461043357806391b7f5ed1461045e57806395d89b4114610487578063a035b1fe146104b25761019c565b80636c0360eb146103b457806370a08231146103df578063715018a61461041c5761019c565b80632db115441161015957806342842e0e1161013357806342842e0e146103075780634b980d671461032357806355f804b31461034e5780636352211e146103775761019c565b80632db11544146102a95780633ccfd60b146102c557806341f43434146102dc5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026257806323b872dd1461028d575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612316565b61061b565b6040516101d5919061235e565b60405180910390f35b3480156101ea57600080fd5b506101f36106ad565b6040516102009190612409565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612461565b61073f565b60405161023d91906124cf565b60405180910390f35b610260600480360381019061025b9190612516565b6107be565b005b34801561026e57600080fd5b506102776108c8565b6040516102849190612565565b60405180910390f35b6102a760048036038101906102a29190612580565b6108df565b005b6102c360048036038101906102be9190612461565b610a2f565b005b3480156102d157600080fd5b506102da610bd9565b005b3480156102e857600080fd5b506102f1610c2a565b6040516102fe9190612632565b60405180910390f35b610321600480360381019061031c9190612580565b610c3c565b005b34801561032f57600080fd5b50610338610d8c565b6040516103459190612565565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612782565b610d92565b005b34801561038357600080fd5b5061039e60048036038101906103999190612461565b610dad565b6040516103ab91906124cf565b60405180910390f35b3480156103c057600080fd5b506103c9610dbf565b6040516103d69190612409565b60405180910390f35b3480156103eb57600080fd5b50610406600480360381019061040191906127cb565b610e4d565b6040516104139190612565565b60405180910390f35b34801561042857600080fd5b50610431610f05565b005b34801561043f57600080fd5b50610448610f19565b60405161045591906124cf565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190612461565b610f43565b005b34801561049357600080fd5b5061049c610f55565b6040516104a99190612409565b60405180910390f35b3480156104be57600080fd5b506104c7610fe7565b6040516104d49190612565565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190612824565b610fed565b005b610520600480360381019061051b9190612905565b6110f7565b005b34801561052e57600080fd5b5061053761124a565b6040516105449190612409565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612461565b6112d8565b6040516105819190612409565b60405180910390f35b34801561059657600080fd5b5061059f611376565b6040516105ac9190612565565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612988565b61137c565b6040516105e9919061235e565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906127cb565b611410565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106bc906129f7565b80601f01602080910402602001604051908101604052809291908181526020018280546106e8906129f7565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a82611493565b610780576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108b9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610836929190612a28565b602060405180830381865afa158015610853573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108779190612a66565b6108b857806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108af91906124cf565b60405180910390fd5b5b6108c383836114f2565b505050565b60006108d2611636565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a1d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109515761094c84848461163f565b610a29565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161099a929190612a28565b602060405180830381865afa1580156109b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109db9190612a66565b610a1c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a1391906124cf565b60405180910390fd5b5b610a2884848461163f565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490612adf565b60405180910390fd5b600d54811115610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990612b4b565b60405180910390fd5b600c5481610aee6108c8565b610af89190612b9a565b1115610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090612c1a565b60405180910390fd5b600081905060006002610b4a6108c8565b610b549190612c69565b14610b68578080610b6490612c9a565b9150505b6000341180610b775750600081145b610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad90612d0f565b60405180910390fd5b80600b54610bc49190612d2f565b3410610bd557610bd43383611961565b5b5050565b610be161197f565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c27573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d7a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cae57610ca98484846119fd565b610d86565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cf7929190612a28565b602060405180830381865afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d389190612a66565b610d7957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d7091906124cf565b60405180910390fd5b5b610d858484846119fd565b5b50505050565b600d5481565b610d9a61197f565b8060099081610da99190612f13565b5050565b6000610db882611a1d565b9050919050565b60098054610dcc906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610df8906129f7565b8015610e455780601f10610e1a57610100808354040283529160200191610e45565b820191906000526020600020905b815481529060010190602001808311610e2857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f0d61197f565b610f176000611ae9565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f4b61197f565b80600b8190555050565b606060038054610f64906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f90906129f7565b8015610fdd5780601f10610fb257610100808354040283529160200191610fdd565b820191906000526020600020905b815481529060010190602001808311610fc057829003601f168201915b5050505050905090565b600b5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110e8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611065929190612a28565b602060405180830381865afa158015611082573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a69190612a66565b6110e757806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110de91906124cf565b60405180910390fd5b5b6110f28383611baf565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611236573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361116a5761116585858585611cba565b611243565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111b3929190612a28565b602060405180830381865afa1580156111d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f49190612a66565b61123557336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161122c91906124cf565b60405180910390fd5b5b61124285858585611cba565b5b5050505050565b600a8054611257906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611283906129f7565b80156112d05780601f106112a5576101008083540402835291602001916112d0565b820191906000526020600020905b8154815290600101906020018083116112b357829003601f168201915b505050505081565b60606112e382611493565b611319576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611323611d2d565b90506000815103611343576040518060200160405280600081525061136e565b8061134d84611dbf565b60405160200161135e929190613021565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61141861197f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e906130b7565b60405180910390fd5b61149081611ae9565b50565b60008161149e611636565b111580156114ad575060005482105b80156114eb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114fd82610dad565b90508073ffffffffffffffffffffffffffffffffffffffff1661151e611e0f565b73ffffffffffffffffffffffffffffffffffffffff16146115815761154a81611545611e0f565b61137c565b611580576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061164a82611a1d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116b1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116bd84611e17565b915091506116d381876116ce611e0f565b611e3e565b61171f576116e8866116e3611e0f565b61137c565b61171e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611785576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117928686866001611e82565b801561179d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061186b85611847888887611e88565b7c020000000000000000000000000000000000000000000000000000000017611eb0565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118f157600060018501905060006004600083815260200190815260200160002054036118ef5760005481146118ee578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119598686866001611edb565b505050505050565b61197b828260405180602001604052806000815250611ee1565b5050565b611987611f7e565b73ffffffffffffffffffffffffffffffffffffffff166119a5610f19565b73ffffffffffffffffffffffffffffffffffffffff16146119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290613123565b60405180910390fd5b565b611a18838383604051806020016040528060008152506110f7565b505050565b60008082905080611a2c611636565b11611ab257600054811015611ab15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611aaf575b60008103611aa5576004600083600190039350838152602001908152602001600020549050611a7b565b8092505050611ae4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611bbc611e0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c69611e0f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cae919061235e565b60405180910390a35050565b611cc58484846108df565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d2757611cf084848484611f86565b611d26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611d3c906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611d68906129f7565b8015611db55780601f10611d8a57610100808354040283529160200191611db5565b820191906000526020600020905b815481529060010190602001808311611d9857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611dfa57600184039350600a81066030018453600a8104905080611dd8575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e9f8686846120d6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611eeb83836120df565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f7957600080549050600083820390505b611f2b6000868380600101945086611f86565b611f61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f18578160005414611f7657600080fd5b50505b505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fac611e0f565b8786866040518563ffffffff1660e01b8152600401611fce9493929190613198565b6020604051808303816000875af192505050801561200a57506040513d601f19601f8201168201806040525081019061200791906131f9565b60015b612083573d806000811461203a576040519150601f19603f3d011682016040523d82523d6000602084013e61203f565b606091505b50600081510361207b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361211f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61212c6000848385611e82565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121a3836121946000866000611e88565b61219d8561229a565b17611eb0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461224457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612209565b506000820361227f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122956000848385611edb565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122f3816122be565b81146122fe57600080fd5b50565b600081359050612310816122ea565b92915050565b60006020828403121561232c5761232b6122b4565b5b600061233a84828501612301565b91505092915050565b60008115159050919050565b61235881612343565b82525050565b6000602082019050612373600083018461234f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123b3578082015181840152602081019050612398565b60008484015250505050565b6000601f19601f8301169050919050565b60006123db82612379565b6123e58185612384565b93506123f5818560208601612395565b6123fe816123bf565b840191505092915050565b6000602082019050818103600083015261242381846123d0565b905092915050565b6000819050919050565b61243e8161242b565b811461244957600080fd5b50565b60008135905061245b81612435565b92915050565b600060208284031215612477576124766122b4565b5b60006124858482850161244c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124b98261248e565b9050919050565b6124c9816124ae565b82525050565b60006020820190506124e460008301846124c0565b92915050565b6124f3816124ae565b81146124fe57600080fd5b50565b600081359050612510816124ea565b92915050565b6000806040838503121561252d5761252c6122b4565b5b600061253b85828601612501565b925050602061254c8582860161244c565b9150509250929050565b61255f8161242b565b82525050565b600060208201905061257a6000830184612556565b92915050565b600080600060608486031215612599576125986122b4565b5b60006125a786828701612501565b93505060206125b886828701612501565b92505060406125c98682870161244c565b9150509250925092565b6000819050919050565b60006125f86125f36125ee8461248e565b6125d3565b61248e565b9050919050565b600061260a826125dd565b9050919050565b600061261c826125ff565b9050919050565b61262c81612611565b82525050565b60006020820190506126476000830184612623565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61268f826123bf565b810181811067ffffffffffffffff821117156126ae576126ad612657565b5b80604052505050565b60006126c16122aa565b90506126cd8282612686565b919050565b600067ffffffffffffffff8211156126ed576126ec612657565b5b6126f6826123bf565b9050602081019050919050565b82818337600083830152505050565b6000612725612720846126d2565b6126b7565b90508281526020810184848401111561274157612740612652565b5b61274c848285612703565b509392505050565b600082601f8301126127695761276861264d565b5b8135612779848260208601612712565b91505092915050565b600060208284031215612798576127976122b4565b5b600082013567ffffffffffffffff8111156127b6576127b56122b9565b5b6127c284828501612754565b91505092915050565b6000602082840312156127e1576127e06122b4565b5b60006127ef84828501612501565b91505092915050565b61280181612343565b811461280c57600080fd5b50565b60008135905061281e816127f8565b92915050565b6000806040838503121561283b5761283a6122b4565b5b600061284985828601612501565b925050602061285a8582860161280f565b9150509250929050565b600067ffffffffffffffff82111561287f5761287e612657565b5b612888826123bf565b9050602081019050919050565b60006128a86128a384612864565b6126b7565b9050828152602081018484840111156128c4576128c3612652565b5b6128cf848285612703565b509392505050565b600082601f8301126128ec576128eb61264d565b5b81356128fc848260208601612895565b91505092915050565b6000806000806080858703121561291f5761291e6122b4565b5b600061292d87828801612501565b945050602061293e87828801612501565b935050604061294f8782880161244c565b925050606085013567ffffffffffffffff8111156129705761296f6122b9565b5b61297c878288016128d7565b91505092959194509250565b6000806040838503121561299f5761299e6122b4565b5b60006129ad85828601612501565b92505060206129be85828601612501565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a0f57607f821691505b602082108103612a2257612a216129c8565b5b50919050565b6000604082019050612a3d60008301856124c0565b612a4a60208301846124c0565b9392505050565b600081519050612a60816127f8565b92915050565b600060208284031215612a7c57612a7b6122b4565b5b6000612a8a84828501612a51565b91505092915050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612ac9601e83612384565b9150612ad482612a93565b602082019050919050565b60006020820190508181036000830152612af881612abc565b9050919050565b7f4f766572204d617820506572205472616e73616374696f6e2100000000000000600082015250565b6000612b35601983612384565b9150612b4082612aff565b602082019050919050565b60006020820190508181036000830152612b6481612b28565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ba58261242b565b9150612bb08361242b565b9250828201905080821115612bc857612bc7612b6b565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000612c04600983612384565b9150612c0f82612bce565b602082019050919050565b60006020820190508181036000830152612c3381612bf7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c748261242b565b9150612c7f8361242b565b925082612c8f57612c8e612c3a565b5b828206905092915050565b6000612ca58261242b565b915060008203612cb857612cb7612b6b565b5b600182039050919050565b7f496e73756666696369656e742056616c75652100000000000000000000000000600082015250565b6000612cf9601383612384565b9150612d0482612cc3565b602082019050919050565b60006020820190508181036000830152612d2881612cec565b9050919050565b6000612d3a8261242b565b9150612d458361242b565b9250828202612d538161242b565b91508282048414831517612d6a57612d69612b6b565b5b5092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612dd37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d96565b612ddd8683612d96565b95508019841693508086168417925050509392505050565b6000612e10612e0b612e068461242b565b6125d3565b61242b565b9050919050565b6000819050919050565b612e2a83612df5565b612e3e612e3682612e17565b848454612da3565b825550505050565b600090565b612e53612e46565b612e5e818484612e21565b505050565b5b81811015612e8257612e77600082612e4b565b600181019050612e64565b5050565b601f821115612ec757612e9881612d71565b612ea184612d86565b81016020851015612eb0578190505b612ec4612ebc85612d86565b830182612e63565b50505b505050565b600082821c905092915050565b6000612eea60001984600802612ecc565b1980831691505092915050565b6000612f038383612ed9565b9150826002028217905092915050565b612f1c82612379565b67ffffffffffffffff811115612f3557612f34612657565b5b612f3f82546129f7565b612f4a828285612e86565b600060209050601f831160018114612f7d5760008415612f6b578287015190505b612f758582612ef7565b865550612fdd565b601f198416612f8b86612d71565b60005b82811015612fb357848901518255600182019150602085019450602081019050612f8e565b86831015612fd05784890151612fcc601f891682612ed9565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000612ffb82612379565b6130058185612fe5565b9350613015818560208601612395565b80840191505092915050565b600061302d8285612ff0565b91506130398284612ff0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130a1602683612384565b91506130ac82613045565b604082019050919050565b600060208201905081810360008301526130d081613094565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061310d602083612384565b9150613118826130d7565b602082019050919050565b6000602082019050818103600083015261313c81613100565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061316a82613143565b613174818561314e565b9350613184818560208601612395565b61318d816123bf565b840191505092915050565b60006080820190506131ad60008301876124c0565b6131ba60208301866124c0565b6131c76040830185612556565b81810360608301526131d9818461315f565b905095945050505050565b6000815190506131f3816122ea565b92915050565b60006020828403121561320f5761320e6122b4565b5b600061321d848285016131e4565b9150509291505056fea264697066735822122097d046b64a1b73b3ddc6d2c4f2b05e18e4f6766248b113defbead012852a005964736f6c634300081200333939392048494444454e2043525950544f475241504859202d2050484153452031697066733a2f2f516d5241763268585279655274505a70425167627a6b4850523271533347596246625444414b78657573594a53632f
Deployed Bytecode
0x60806040526004361061019c5760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461054d578063d5abeb011461058a578063e985e9c5146105b5578063f2fde38b146105f25761019c565b8063a22cb465146104dd578063b88d4fde14610506578063c6682862146105225761019c565b80638da5cb5b116100c65780638da5cb5b1461043357806391b7f5ed1461045e57806395d89b4114610487578063a035b1fe146104b25761019c565b80636c0360eb146103b457806370a08231146103df578063715018a61461041c5761019c565b80632db115441161015957806342842e0e1161013357806342842e0e146103075780634b980d671461032357806355f804b31461034e5780636352211e146103775761019c565b80632db11544146102a95780633ccfd60b146102c557806341f43434146102dc5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026257806323b872dd1461028d575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612316565b61061b565b6040516101d5919061235e565b60405180910390f35b3480156101ea57600080fd5b506101f36106ad565b6040516102009190612409565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612461565b61073f565b60405161023d91906124cf565b60405180910390f35b610260600480360381019061025b9190612516565b6107be565b005b34801561026e57600080fd5b506102776108c8565b6040516102849190612565565b60405180910390f35b6102a760048036038101906102a29190612580565b6108df565b005b6102c360048036038101906102be9190612461565b610a2f565b005b3480156102d157600080fd5b506102da610bd9565b005b3480156102e857600080fd5b506102f1610c2a565b6040516102fe9190612632565b60405180910390f35b610321600480360381019061031c9190612580565b610c3c565b005b34801561032f57600080fd5b50610338610d8c565b6040516103459190612565565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612782565b610d92565b005b34801561038357600080fd5b5061039e60048036038101906103999190612461565b610dad565b6040516103ab91906124cf565b60405180910390f35b3480156103c057600080fd5b506103c9610dbf565b6040516103d69190612409565b60405180910390f35b3480156103eb57600080fd5b50610406600480360381019061040191906127cb565b610e4d565b6040516104139190612565565b60405180910390f35b34801561042857600080fd5b50610431610f05565b005b34801561043f57600080fd5b50610448610f19565b60405161045591906124cf565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190612461565b610f43565b005b34801561049357600080fd5b5061049c610f55565b6040516104a99190612409565b60405180910390f35b3480156104be57600080fd5b506104c7610fe7565b6040516104d49190612565565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190612824565b610fed565b005b610520600480360381019061051b9190612905565b6110f7565b005b34801561052e57600080fd5b5061053761124a565b6040516105449190612409565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612461565b6112d8565b6040516105819190612409565b60405180910390f35b34801561059657600080fd5b5061059f611376565b6040516105ac9190612565565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612988565b61137c565b6040516105e9919061235e565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906127cb565b611410565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106bc906129f7565b80601f01602080910402602001604051908101604052809291908181526020018280546106e8906129f7565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a82611493565b610780576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108b9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610836929190612a28565b602060405180830381865afa158015610853573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108779190612a66565b6108b857806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108af91906124cf565b60405180910390fd5b5b6108c383836114f2565b505050565b60006108d2611636565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a1d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109515761094c84848461163f565b610a29565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161099a929190612a28565b602060405180830381865afa1580156109b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109db9190612a66565b610a1c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a1391906124cf565b60405180910390fd5b5b610a2884848461163f565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490612adf565b60405180910390fd5b600d54811115610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990612b4b565b60405180910390fd5b600c5481610aee6108c8565b610af89190612b9a565b1115610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090612c1a565b60405180910390fd5b600081905060006002610b4a6108c8565b610b549190612c69565b14610b68578080610b6490612c9a565b9150505b6000341180610b775750600081145b610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad90612d0f565b60405180910390fd5b80600b54610bc49190612d2f565b3410610bd557610bd43383611961565b5b5050565b610be161197f565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c27573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d7a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cae57610ca98484846119fd565b610d86565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cf7929190612a28565b602060405180830381865afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d389190612a66565b610d7957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d7091906124cf565b60405180910390fd5b5b610d858484846119fd565b5b50505050565b600d5481565b610d9a61197f565b8060099081610da99190612f13565b5050565b6000610db882611a1d565b9050919050565b60098054610dcc906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610df8906129f7565b8015610e455780601f10610e1a57610100808354040283529160200191610e45565b820191906000526020600020905b815481529060010190602001808311610e2857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f0d61197f565b610f176000611ae9565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f4b61197f565b80600b8190555050565b606060038054610f64906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f90906129f7565b8015610fdd5780601f10610fb257610100808354040283529160200191610fdd565b820191906000526020600020905b815481529060010190602001808311610fc057829003601f168201915b5050505050905090565b600b5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110e8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611065929190612a28565b602060405180830381865afa158015611082573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a69190612a66565b6110e757806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110de91906124cf565b60405180910390fd5b5b6110f28383611baf565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611236573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361116a5761116585858585611cba565b611243565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111b3929190612a28565b602060405180830381865afa1580156111d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f49190612a66565b61123557336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161122c91906124cf565b60405180910390fd5b5b61124285858585611cba565b5b5050505050565b600a8054611257906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611283906129f7565b80156112d05780601f106112a5576101008083540402835291602001916112d0565b820191906000526020600020905b8154815290600101906020018083116112b357829003601f168201915b505050505081565b60606112e382611493565b611319576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611323611d2d565b90506000815103611343576040518060200160405280600081525061136e565b8061134d84611dbf565b60405160200161135e929190613021565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61141861197f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e906130b7565b60405180910390fd5b61149081611ae9565b50565b60008161149e611636565b111580156114ad575060005482105b80156114eb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114fd82610dad565b90508073ffffffffffffffffffffffffffffffffffffffff1661151e611e0f565b73ffffffffffffffffffffffffffffffffffffffff16146115815761154a81611545611e0f565b61137c565b611580576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061164a82611a1d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116b1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116bd84611e17565b915091506116d381876116ce611e0f565b611e3e565b61171f576116e8866116e3611e0f565b61137c565b61171e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611785576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117928686866001611e82565b801561179d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061186b85611847888887611e88565b7c020000000000000000000000000000000000000000000000000000000017611eb0565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118f157600060018501905060006004600083815260200190815260200160002054036118ef5760005481146118ee578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119598686866001611edb565b505050505050565b61197b828260405180602001604052806000815250611ee1565b5050565b611987611f7e565b73ffffffffffffffffffffffffffffffffffffffff166119a5610f19565b73ffffffffffffffffffffffffffffffffffffffff16146119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290613123565b60405180910390fd5b565b611a18838383604051806020016040528060008152506110f7565b505050565b60008082905080611a2c611636565b11611ab257600054811015611ab15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611aaf575b60008103611aa5576004600083600190039350838152602001908152602001600020549050611a7b565b8092505050611ae4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611bbc611e0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c69611e0f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cae919061235e565b60405180910390a35050565b611cc58484846108df565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d2757611cf084848484611f86565b611d26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611d3c906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611d68906129f7565b8015611db55780601f10611d8a57610100808354040283529160200191611db5565b820191906000526020600020905b815481529060010190602001808311611d9857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611dfa57600184039350600a81066030018453600a8104905080611dd8575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e9f8686846120d6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611eeb83836120df565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f7957600080549050600083820390505b611f2b6000868380600101945086611f86565b611f61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f18578160005414611f7657600080fd5b50505b505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fac611e0f565b8786866040518563ffffffff1660e01b8152600401611fce9493929190613198565b6020604051808303816000875af192505050801561200a57506040513d601f19601f8201168201806040525081019061200791906131f9565b60015b612083573d806000811461203a576040519150601f19603f3d011682016040523d82523d6000602084013e61203f565b606091505b50600081510361207b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361211f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61212c6000848385611e82565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121a3836121946000866000611e88565b61219d8561229a565b17611eb0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461224457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612209565b506000820361227f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122956000848385611edb565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122f3816122be565b81146122fe57600080fd5b50565b600081359050612310816122ea565b92915050565b60006020828403121561232c5761232b6122b4565b5b600061233a84828501612301565b91505092915050565b60008115159050919050565b61235881612343565b82525050565b6000602082019050612373600083018461234f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123b3578082015181840152602081019050612398565b60008484015250505050565b6000601f19601f8301169050919050565b60006123db82612379565b6123e58185612384565b93506123f5818560208601612395565b6123fe816123bf565b840191505092915050565b6000602082019050818103600083015261242381846123d0565b905092915050565b6000819050919050565b61243e8161242b565b811461244957600080fd5b50565b60008135905061245b81612435565b92915050565b600060208284031215612477576124766122b4565b5b60006124858482850161244c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124b98261248e565b9050919050565b6124c9816124ae565b82525050565b60006020820190506124e460008301846124c0565b92915050565b6124f3816124ae565b81146124fe57600080fd5b50565b600081359050612510816124ea565b92915050565b6000806040838503121561252d5761252c6122b4565b5b600061253b85828601612501565b925050602061254c8582860161244c565b9150509250929050565b61255f8161242b565b82525050565b600060208201905061257a6000830184612556565b92915050565b600080600060608486031215612599576125986122b4565b5b60006125a786828701612501565b93505060206125b886828701612501565b92505060406125c98682870161244c565b9150509250925092565b6000819050919050565b60006125f86125f36125ee8461248e565b6125d3565b61248e565b9050919050565b600061260a826125dd565b9050919050565b600061261c826125ff565b9050919050565b61262c81612611565b82525050565b60006020820190506126476000830184612623565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61268f826123bf565b810181811067ffffffffffffffff821117156126ae576126ad612657565b5b80604052505050565b60006126c16122aa565b90506126cd8282612686565b919050565b600067ffffffffffffffff8211156126ed576126ec612657565b5b6126f6826123bf565b9050602081019050919050565b82818337600083830152505050565b6000612725612720846126d2565b6126b7565b90508281526020810184848401111561274157612740612652565b5b61274c848285612703565b509392505050565b600082601f8301126127695761276861264d565b5b8135612779848260208601612712565b91505092915050565b600060208284031215612798576127976122b4565b5b600082013567ffffffffffffffff8111156127b6576127b56122b9565b5b6127c284828501612754565b91505092915050565b6000602082840312156127e1576127e06122b4565b5b60006127ef84828501612501565b91505092915050565b61280181612343565b811461280c57600080fd5b50565b60008135905061281e816127f8565b92915050565b6000806040838503121561283b5761283a6122b4565b5b600061284985828601612501565b925050602061285a8582860161280f565b9150509250929050565b600067ffffffffffffffff82111561287f5761287e612657565b5b612888826123bf565b9050602081019050919050565b60006128a86128a384612864565b6126b7565b9050828152602081018484840111156128c4576128c3612652565b5b6128cf848285612703565b509392505050565b600082601f8301126128ec576128eb61264d565b5b81356128fc848260208601612895565b91505092915050565b6000806000806080858703121561291f5761291e6122b4565b5b600061292d87828801612501565b945050602061293e87828801612501565b935050604061294f8782880161244c565b925050606085013567ffffffffffffffff8111156129705761296f6122b9565b5b61297c878288016128d7565b91505092959194509250565b6000806040838503121561299f5761299e6122b4565b5b60006129ad85828601612501565b92505060206129be85828601612501565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a0f57607f821691505b602082108103612a2257612a216129c8565b5b50919050565b6000604082019050612a3d60008301856124c0565b612a4a60208301846124c0565b9392505050565b600081519050612a60816127f8565b92915050565b600060208284031215612a7c57612a7b6122b4565b5b6000612a8a84828501612a51565b91505092915050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612ac9601e83612384565b9150612ad482612a93565b602082019050919050565b60006020820190508181036000830152612af881612abc565b9050919050565b7f4f766572204d617820506572205472616e73616374696f6e2100000000000000600082015250565b6000612b35601983612384565b9150612b4082612aff565b602082019050919050565b60006020820190508181036000830152612b6481612b28565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ba58261242b565b9150612bb08361242b565b9250828201905080821115612bc857612bc7612b6b565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000612c04600983612384565b9150612c0f82612bce565b602082019050919050565b60006020820190508181036000830152612c3381612bf7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c748261242b565b9150612c7f8361242b565b925082612c8f57612c8e612c3a565b5b828206905092915050565b6000612ca58261242b565b915060008203612cb857612cb7612b6b565b5b600182039050919050565b7f496e73756666696369656e742056616c75652100000000000000000000000000600082015250565b6000612cf9601383612384565b9150612d0482612cc3565b602082019050919050565b60006020820190508181036000830152612d2881612cec565b9050919050565b6000612d3a8261242b565b9150612d458361242b565b9250828202612d538161242b565b91508282048414831517612d6a57612d69612b6b565b5b5092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612dd37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d96565b612ddd8683612d96565b95508019841693508086168417925050509392505050565b6000612e10612e0b612e068461242b565b6125d3565b61242b565b9050919050565b6000819050919050565b612e2a83612df5565b612e3e612e3682612e17565b848454612da3565b825550505050565b600090565b612e53612e46565b612e5e818484612e21565b505050565b5b81811015612e8257612e77600082612e4b565b600181019050612e64565b5050565b601f821115612ec757612e9881612d71565b612ea184612d86565b81016020851015612eb0578190505b612ec4612ebc85612d86565b830182612e63565b50505b505050565b600082821c905092915050565b6000612eea60001984600802612ecc565b1980831691505092915050565b6000612f038383612ed9565b9150826002028217905092915050565b612f1c82612379565b67ffffffffffffffff811115612f3557612f34612657565b5b612f3f82546129f7565b612f4a828285612e86565b600060209050601f831160018114612f7d5760008415612f6b578287015190505b612f758582612ef7565b865550612fdd565b601f198416612f8b86612d71565b60005b82811015612fb357848901518255600182019150602085019450602081019050612f8e565b86831015612fd05784890151612fcc601f891682612ed9565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000612ffb82612379565b6130058185612fe5565b9350613015818560208601612395565b80840191505092915050565b600061302d8285612ff0565b91506130398284612ff0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130a1602683612384565b91506130ac82613045565b604082019050919050565b600060208201905081810360008301526130d081613094565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061310d602083612384565b9150613118826130d7565b602082019050919050565b6000602082019050818103600083015261313c81613100565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061316a82613143565b613174818561314e565b9350613184818560208601612395565b61318d816123bf565b840191505092915050565b60006080820190506131ad60008301876124c0565b6131ba60208301866124c0565b6131c76040830185612556565b81810360608301526131d9818461315f565b905095945050505050565b6000815190506131f3816122ea565b92915050565b60006020828403121561320f5761320e6122b4565b5b600061321d848285016131e4565b9150509291505056fea264697066735822122097d046b64a1b73b3ddc6d2c4f2b05e18e4f6766248b113defbead012852a005964736f6c63430008120033
Deployed Bytecode Sourcemap
63938:2824:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24336:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25238:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31729:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65975:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20989:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66148:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64611:521;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65457:108;;;;;;;;;;;;;:::i;:::-;;3118:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66327:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64231:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65577:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26631:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64020:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22173:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63089:103;;;;;;;;;;;;;:::i;:::-;;62441:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65245:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25414:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64153:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65791:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66514:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64109:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25624:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64194:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32678:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63347:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24336:639;24421:4;24760:10;24745:25;;:11;:25;;;;:102;;;;24837:10;24822:25;;:11;:25;;;;24745:102;:179;;;;24914:10;24899:25;;:11;:25;;;;24745:179;24725:199;;24336:639;;;:::o;25238:100::-;25292:13;25325:5;25318:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25238:100;:::o;31729:218::-;31805:7;31830:16;31838:7;31830;:16::i;:::-;31825:64;;31855:34;;;;;;;;;;;;;;31825:64;31909:15;:24;31925:7;31909:24;;;;;;;;;;;:30;;;;;;;;;;;;31902:37;;31729:218;;;:::o;65975:165::-;66079:8;5160:1;3218:42;5112:45;;;:49;5108:225;;;3218:42;5183;;;5234:4;5241:8;5183:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5178:144;;5297:8;5278:28;;;;;;;;;;;:::i;:::-;;;;;;;;5178:144;5108:225;66100:32:::1;66114:8;66124:7;66100:13;:32::i;:::-;65975:165:::0;;;:::o;20989:323::-;21050:7;21278:15;:13;:15::i;:::-;21263:12;;21247:13;;:28;:46;21240:53;;20989:323;:::o;66148:171::-;66257:4;4414:1;3218:42;4366:45;;;:49;4362:539;;;4655:10;4647:18;;:4;:18;;;4643:85;;66274:37:::1;66293:4;66299:2;66303:7;66274:18;:37::i;:::-;4706:7:::0;;4643:85;3218:42;4747;;;4798:4;4805:10;4747:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4742:148;;4863:10;4844:30;;;;;;;;;;;:::i;:::-;;;;;;;;4742:148;4362:539;66274:37:::1;66293:4;66299:2;66303:7;66274:18;:37::i;:::-;66148:171:::0;;;;;:::o;64611:521::-;64334:10;64321:23;;:9;:23;;;64313:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;64703:17:::1;;64693:6;:27;;64685:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;64795:9;;64785:6;64769:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;64761:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;64829:18;64850:6;64829:27;;64902:1;64897;64881:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:22;64877:68;;64921:12;;;;;:::i;:::-;;;;64877:68;64977:1;64965:9;:13;:32;;;;64996:1;64982:10;:15;64965:32;64957:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;65057:10;65049:5;;:18;;;;:::i;:::-;65036:9;:31;65032:93;;65084:29;65094:10;65106:6;65084:9;:29::i;:::-;65032:93;64674:458;64611:521:::0;:::o;65457:108::-;62327:13;:11;:13::i;:::-;65507:10:::1;65499:28;;:51;65528:21;65499:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65457:108::o:0;3118:143::-;3218:42;3118:143;:::o;66327:179::-;66440:4;4414:1;3218:42;4366:45;;;:49;4362:539;;;4655:10;4647:18;;:4;:18;;;4643:85;;66457:41:::1;66480:4;66486:2;66490:7;66457:22;:41::i;:::-;4706:7:::0;;4643:85;3218:42;4747;;;4798:4;4805:10;4747:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4742:148;;4863:10;4844:30;;;;;;;;;;;:::i;:::-;;;;;;;;4742:148;4362:539;66457:41:::1;66480:4;66486:2;66490:7;66457:22;:41::i;:::-;66327:179:::0;;;;;:::o;64231:37::-;;;;:::o;65577:100::-;62327:13;:11;:13::i;:::-;65661:8:::1;65651:7;:18;;;;;;:::i;:::-;;65577:100:::0;:::o;26631:152::-;26703:7;26746:27;26765:7;26746:18;:27::i;:::-;26723:52;;26631:152;;;:::o;64020:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22173:233::-;22245:7;22286:1;22269:19;;:5;:19;;;22265:60;;22297:28;;;;;;;;;;;;;;22265:60;16332:13;22343:18;:25;22362:5;22343:25;;;;;;;;;;;;;;;;:55;22336:62;;22173:233;;;:::o;63089:103::-;62327:13;:11;:13::i;:::-;63154:30:::1;63181:1;63154:18;:30::i;:::-;63089:103::o:0;62441:87::-;62487:7;62514:6;;;;;;;;;;;62507:13;;62441:87;:::o;65245:88::-;62327:13;:11;:13::i;:::-;65317:8:::1;65309:5;:16;;;;65245:88:::0;:::o;25414:104::-;25470:13;25503:7;25496:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25414:104;:::o;64153:34::-;;;;:::o;65791:176::-;65895:8;5160:1;3218:42;5112:45;;;:49;5108:225;;;3218:42;5183;;;5234:4;5241:8;5183:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5178:144;;5297:8;5278:28;;;;;;;;;;;:::i;:::-;;;;;;;;5178:144;5108:225;65916:43:::1;65940:8;65950;65916:23;:43::i;:::-;65791:176:::0;;;:::o;66514:245::-;66682:4;4414:1;3218:42;4366:45;;;:49;4362:539;;;4655:10;4647:18;;:4;:18;;;4643:85;;66704:47:::1;66727:4;66733:2;66737:7;66746:4;66704:22;:47::i;:::-;4706:7:::0;;4643:85;3218:42;4747;;;4798:4;4805:10;4747:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4742:148;;4863:10;4844:30;;;;;;;;;;;:::i;:::-;;;;;;;;4742:148;4362:539;66704:47:::1;66727:4;66733:2;66737:7;66746:4;66704:22;:47::i;:::-;66514:245:::0;;;;;;:::o;64109:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25624:318::-;25697:13;25728:16;25736:7;25728;:16::i;:::-;25723:59;;25753:29;;;;;;;;;;;;;;25723:59;25795:21;25819:10;:8;:10::i;:::-;25795:34;;25872:1;25853:7;25847:21;:26;:87;;;;;;;;;;;;;;;;;25900:7;25909:18;25919:7;25909:9;:18::i;:::-;25883:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25847:87;25840:94;;;25624:318;;;:::o;64194:30::-;;;;:::o;32678:164::-;32775:4;32799:18;:25;32818:5;32799:25;;;;;;;;;;;;;;;:35;32825:8;32799:35;;;;;;;;;;;;;;;;;;;;;;;;;32792:42;;32678:164;;;;:::o;63347:201::-;62327:13;:11;:13::i;:::-;63456:1:::1;63436:22;;:8;:22;;::::0;63428:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63512:28;63531:8;63512:18;:28::i;:::-;63347:201:::0;:::o;33100:282::-;33165:4;33221:7;33202:15;:13;:15::i;:::-;:26;;:66;;;;;33255:13;;33245:7;:23;33202:66;:153;;;;;33354:1;17108:8;33306:17;:26;33324:7;33306:26;;;;;;;;;;;;:44;:49;33202:153;33182:173;;33100:282;;;:::o;31162:408::-;31251:13;31267:16;31275:7;31267;:16::i;:::-;31251:32;;31323:5;31300:28;;:19;:17;:19::i;:::-;:28;;;31296:175;;31348:44;31365:5;31372:19;:17;:19::i;:::-;31348:16;:44::i;:::-;31343:128;;31420:35;;;;;;;;;;;;;;31343:128;31296:175;31516:2;31483:15;:24;31499:7;31483:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31554:7;31550:2;31534:28;;31543:5;31534:28;;;;;;;;;;;;31240:330;31162:408;;:::o;64489:101::-;64554:7;64581:1;64574:8;;64489:101;:::o;35368:2825::-;35510:27;35540;35559:7;35540:18;:27::i;:::-;35510:57;;35625:4;35584:45;;35600:19;35584:45;;;35580:86;;35638:28;;;;;;;;;;;;;;35580:86;35680:27;35709:23;35736:35;35763:7;35736:26;:35::i;:::-;35679:92;;;;35871:68;35896:15;35913:4;35919:19;:17;:19::i;:::-;35871:24;:68::i;:::-;35866:180;;35959:43;35976:4;35982:19;:17;:19::i;:::-;35959:16;:43::i;:::-;35954:92;;36011:35;;;;;;;;;;;;;;35954:92;35866:180;36077:1;36063:16;;:2;:16;;;36059:52;;36088:23;;;;;;;;;;;;;;36059:52;36124:43;36146:4;36152:2;36156:7;36165:1;36124:21;:43::i;:::-;36260:15;36257:160;;;36400:1;36379:19;36372:30;36257:160;36797:18;:24;36816:4;36797:24;;;;;;;;;;;;;;;;36795:26;;;;;;;;;;;;36866:18;:22;36885:2;36866:22;;;;;;;;;;;;;;;;36864:24;;;;;;;;;;;37188:146;37225:2;37274:45;37289:4;37295:2;37299:19;37274:14;:45::i;:::-;17388:8;37246:73;37188:18;:146::i;:::-;37159:17;:26;37177:7;37159:26;;;;;;;;;;;:175;;;;37505:1;17388:8;37454:19;:47;:52;37450:627;;37527:19;37559:1;37549:7;:11;37527:33;;37716:1;37682:17;:30;37700:11;37682:30;;;;;;;;;;;;:35;37678:384;;37820:13;;37805:11;:28;37801:242;;38000:19;37967:17;:30;37985:11;37967:30;;;;;;;;;;;:52;;;;37801:242;37678:384;37508:569;37450:627;38124:7;38120:2;38105:27;;38114:4;38105:27;;;;;;;;;;;;38143:42;38164:4;38170:2;38174:7;38183:1;38143:20;:42::i;:::-;35499:2694;;;35368:2825;;;:::o;49240:112::-;49317:27;49327:2;49331:8;49317:27;;;;;;;;;;;;:9;:27::i;:::-;49240:112;;:::o;62606:132::-;62681:12;:10;:12::i;:::-;62670:23;;:7;:5;:7::i;:::-;:23;;;62662:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62606:132::o;38289:193::-;38435:39;38452:4;38458:2;38462:7;38435:39;;;;;;;;;;;;:16;:39::i;:::-;38289:193;;;:::o;27786:1275::-;27853:7;27873:12;27888:7;27873:22;;27956:4;27937:15;:13;:15::i;:::-;:23;27933:1061;;27990:13;;27983:4;:20;27979:1015;;;28028:14;28045:17;:23;28063:4;28045:23;;;;;;;;;;;;28028:40;;28162:1;17108:8;28134:6;:24;:29;28130:845;;28799:113;28816:1;28806:6;:11;28799:113;;28859:17;:25;28877:6;;;;;;;28859:25;;;;;;;;;;;;28850:34;;28799:113;;;28945:6;28938:13;;;;;;28130:845;28005:989;27979:1015;27933:1061;29022:31;;;;;;;;;;;;;;27786:1275;;;;:::o;63708:191::-;63782:16;63801:6;;;;;;;;;;;63782:25;;63827:8;63818:6;;:17;;;;;;;;;;;;;;;;;;63882:8;63851:40;;63872:8;63851:40;;;;;;;;;;;;63771:128;63708:191;:::o;32287:234::-;32434:8;32382:18;:39;32401:19;:17;:19::i;:::-;32382:39;;;;;;;;;;;;;;;:49;32422:8;32382:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32494:8;32458:55;;32473:19;:17;:19::i;:::-;32458:55;;;32504:8;32458:55;;;;;;:::i;:::-;;;;;;;;32287:234;;:::o;39080:407::-;39255:31;39268:4;39274:2;39278:7;39255:12;:31::i;:::-;39319:1;39301:2;:14;;;:19;39297:183;;39340:56;39371:4;39377:2;39381:7;39390:5;39340:30;:56::i;:::-;39335:145;;39424:40;;;;;;;;;;;;;;39335:145;39297:183;39080:407;;;;:::o;65341:108::-;65401:13;65434:7;65427:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65341:108;:::o;55615:1745::-;55680:17;56114:4;56107;56101:11;56097:22;56206:1;56200:4;56193:15;56281:4;56278:1;56274:12;56267:19;;56363:1;56358:3;56351:14;56467:3;56706:5;56688:428;56714:1;56688:428;;;56754:1;56749:3;56745:11;56738:18;;56925:2;56919:4;56915:13;56911:2;56907:22;56902:3;56894:36;57019:2;57013:4;57009:13;57001:21;;57086:4;56688:428;57076:25;56688:428;56692:21;57155:3;57150;57146:13;57270:4;57265:3;57261:14;57254:21;;57335:6;57330:3;57323:19;55719:1634;;;55615:1745;;;:::o;55408:105::-;55468:7;55495:10;55488:17;;55408:105;:::o;34263:485::-;34365:27;34394:23;34435:38;34476:15;:24;34492:7;34476:24;;;;;;;;;;;34435:65;;34653:18;34630:41;;34710:19;34704:26;34685:45;;34615:126;34263:485;;;:::o;33491:659::-;33640:11;33805:16;33798:5;33794:28;33785:37;;33965:16;33954:9;33950:32;33937:45;;34115:15;34104:9;34101:30;34093:5;34082:9;34079:20;34076:56;34066:66;;33491:659;;;;;:::o;40149:159::-;;;;;:::o;54717:311::-;54852:7;54872:16;17512:3;54898:19;:41;;54872:68;;17512:3;54966:31;54977:4;54983:2;54987:9;54966:10;:31::i;:::-;54958:40;;:62;;54951:69;;;54717:311;;;;;:::o;29609:450::-;29689:14;29857:16;29850:5;29846:28;29837:37;;30034:5;30020:11;29995:23;29991:41;29988:52;29981:5;29978:63;29968:73;;29609:450;;;;:::o;40973:158::-;;;;;:::o;48467:689::-;48598:19;48604:2;48608:8;48598:5;:19::i;:::-;48677:1;48659:2;:14;;;:19;48655:483;;48699:11;48713:13;;48699:27;;48745:13;48767:8;48761:3;:14;48745:30;;48794:233;48825:62;48864:1;48868:2;48872:7;;;;;;48881:5;48825:30;:62::i;:::-;48820:167;;48923:40;;;;;;;;;;;;;;48820:167;49022:3;49014:5;:11;48794:233;;49109:3;49092:13;;:20;49088:34;;49114:8;;;49088:34;48680:458;;48655:483;48467:689;;;:::o;60992:98::-;61045:7;61072:10;61065:17;;60992:98;:::o;41571:716::-;41734:4;41780:2;41755:45;;;41801:19;:17;:19::i;:::-;41822:4;41828:7;41837:5;41755:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41751:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42055:1;42038:6;:13;:18;42034:235;;42084:40;;;;;;;;;;;;;;42034:235;42227:6;42221:13;42212:6;42208:2;42204:15;42197:38;41751:529;41924:54;;;41914:64;;;:6;:64;;;;41907:71;;;41571:716;;;;;;:::o;54418:147::-;54555:6;54418:147;;;;;:::o;42749:2966::-;42822:20;42845:13;;42822:36;;42885:1;42873:8;:13;42869:44;;42895:18;;;;;;;;;;;;;;42869:44;42926:61;42956:1;42960:2;42964:12;42978:8;42926:21;:61::i;:::-;43470:1;16470:2;43440:1;:26;;43439:32;43427:8;:45;43401:18;:22;43420:2;43401:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43749:139;43786:2;43840:33;43863:1;43867:2;43871:1;43840:14;:33::i;:::-;43807:30;43828:8;43807:20;:30::i;:::-;:66;43749:18;:139::i;:::-;43715:17;:31;43733:12;43715:31;;;;;;;;;;;:173;;;;43905:16;43936:11;43965:8;43950:12;:23;43936:37;;44486:16;44482:2;44478:25;44466:37;;44858:12;44818:8;44777:1;44715:25;44656:1;44595;44568:335;45229:1;45215:12;45211:20;45169:346;45270:3;45261:7;45258:16;45169:346;;45488:7;45478:8;45475:1;45448:25;45445:1;45442;45437:59;45323:1;45314:7;45310:15;45299:26;;45169:346;;;45173:77;45560:1;45548:8;:13;45544:45;;45570:19;;;;;;;;;;;;;;45544:45;45622:3;45606:13;:19;;;;43175:2462;;45647:60;45676:1;45680:2;45684:12;45698:8;45647:20;:60::i;:::-;42811:2904;42749:2966;;:::o;30161:324::-;30231:14;30464:1;30454:8;30451:15;30425:24;30421:46;30411:56;;30161:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:180::-;13137:77;13134:1;13127:88;13234:4;13231:1;13224:15;13258:4;13255:1;13248:15;13275:320;13319:6;13356:1;13350:4;13346:12;13336:22;;13403:1;13397:4;13393:12;13424:18;13414:81;;13480:4;13472:6;13468:17;13458:27;;13414:81;13542:2;13534:6;13531:14;13511:18;13508:38;13505:84;;13561:18;;:::i;:::-;13505:84;13326:269;13275:320;;;:::o;13601:332::-;13722:4;13760:2;13749:9;13745:18;13737:26;;13773:71;13841:1;13830:9;13826:17;13817:6;13773:71;:::i;:::-;13854:72;13922:2;13911:9;13907:18;13898:6;13854:72;:::i;:::-;13601:332;;;;;:::o;13939:137::-;13993:5;14024:6;14018:13;14009:22;;14040:30;14064:5;14040:30;:::i;:::-;13939:137;;;;:::o;14082:345::-;14149:6;14198:2;14186:9;14177:7;14173:23;14169:32;14166:119;;;14204:79;;:::i;:::-;14166:119;14324:1;14349:61;14402:7;14393:6;14382:9;14378:22;14349:61;:::i;:::-;14339:71;;14295:125;14082:345;;;;:::o;14433:180::-;14573:32;14569:1;14561:6;14557:14;14550:56;14433:180;:::o;14619:366::-;14761:3;14782:67;14846:2;14841:3;14782:67;:::i;:::-;14775:74;;14858:93;14947:3;14858:93;:::i;:::-;14976:2;14971:3;14967:12;14960:19;;14619:366;;;:::o;14991:419::-;15157:4;15195:2;15184:9;15180:18;15172:26;;15244:9;15238:4;15234:20;15230:1;15219:9;15215:17;15208:47;15272:131;15398:4;15272:131;:::i;:::-;15264:139;;14991:419;;;:::o;15416:175::-;15556:27;15552:1;15544:6;15540:14;15533:51;15416:175;:::o;15597:366::-;15739:3;15760:67;15824:2;15819:3;15760:67;:::i;:::-;15753:74;;15836:93;15925:3;15836:93;:::i;:::-;15954:2;15949:3;15945:12;15938:19;;15597:366;;;:::o;15969:419::-;16135:4;16173:2;16162:9;16158:18;16150:26;;16222:9;16216:4;16212:20;16208:1;16197:9;16193:17;16186:47;16250:131;16376:4;16250:131;:::i;:::-;16242:139;;15969:419;;;:::o;16394:180::-;16442:77;16439:1;16432:88;16539:4;16536:1;16529:15;16563:4;16560:1;16553:15;16580:191;16620:3;16639:20;16657:1;16639:20;:::i;:::-;16634:25;;16673:20;16691:1;16673:20;:::i;:::-;16668:25;;16716:1;16713;16709:9;16702:16;;16737:3;16734:1;16731:10;16728:36;;;16744:18;;:::i;:::-;16728:36;16580:191;;;;:::o;16777:159::-;16917:11;16913:1;16905:6;16901:14;16894:35;16777:159;:::o;16942:365::-;17084:3;17105:66;17169:1;17164:3;17105:66;:::i;:::-;17098:73;;17180:93;17269:3;17180:93;:::i;:::-;17298:2;17293:3;17289:12;17282:19;;16942:365;;;:::o;17313:419::-;17479:4;17517:2;17506:9;17502:18;17494:26;;17566:9;17560:4;17556:20;17552:1;17541:9;17537:17;17530:47;17594:131;17720:4;17594:131;:::i;:::-;17586:139;;17313:419;;;:::o;17738:180::-;17786:77;17783:1;17776:88;17883:4;17880:1;17873:15;17907:4;17904:1;17897:15;17924:176;17956:1;17973:20;17991:1;17973:20;:::i;:::-;17968:25;;18007:20;18025:1;18007:20;:::i;:::-;18002:25;;18046:1;18036:35;;18051:18;;:::i;:::-;18036:35;18092:1;18089;18085:9;18080:14;;17924:176;;;;:::o;18106:171::-;18145:3;18168:24;18186:5;18168:24;:::i;:::-;18159:33;;18214:4;18207:5;18204:15;18201:41;;18222:18;;:::i;:::-;18201:41;18269:1;18262:5;18258:13;18251:20;;18106:171;;;:::o;18283:169::-;18423:21;18419:1;18411:6;18407:14;18400:45;18283:169;:::o;18458:366::-;18600:3;18621:67;18685:2;18680:3;18621:67;:::i;:::-;18614:74;;18697:93;18786:3;18697:93;:::i;:::-;18815:2;18810:3;18806:12;18799:19;;18458:366;;;:::o;18830:419::-;18996:4;19034:2;19023:9;19019:18;19011:26;;19083:9;19077:4;19073:20;19069:1;19058:9;19054:17;19047:47;19111:131;19237:4;19111:131;:::i;:::-;19103:139;;18830:419;;;:::o;19255:410::-;19295:7;19318:20;19336:1;19318:20;:::i;:::-;19313:25;;19352:20;19370:1;19352:20;:::i;:::-;19347:25;;19407:1;19404;19400:9;19429:30;19447:11;19429:30;:::i;:::-;19418:41;;19608:1;19599:7;19595:15;19592:1;19589:22;19569:1;19562:9;19542:83;19519:139;;19638:18;;:::i;:::-;19519:139;19303:362;19255:410;;;;:::o;19671:141::-;19720:4;19743:3;19735:11;;19766:3;19763:1;19756:14;19800:4;19797:1;19787:18;19779:26;;19671:141;;;:::o;19818:93::-;19855:6;19902:2;19897;19890:5;19886:14;19882:23;19872:33;;19818:93;;;:::o;19917:107::-;19961:8;20011:5;20005:4;20001:16;19980:37;;19917:107;;;;:::o;20030:393::-;20099:6;20149:1;20137:10;20133:18;20172:97;20202:66;20191:9;20172:97;:::i;:::-;20290:39;20320:8;20309:9;20290:39;:::i;:::-;20278:51;;20362:4;20358:9;20351:5;20347:21;20338:30;;20411:4;20401:8;20397:19;20390:5;20387:30;20377:40;;20106:317;;20030:393;;;;;:::o;20429:142::-;20479:9;20512:53;20530:34;20539:24;20557:5;20539:24;:::i;:::-;20530:34;:::i;:::-;20512:53;:::i;:::-;20499:66;;20429:142;;;:::o;20577:75::-;20620:3;20641:5;20634:12;;20577:75;;;:::o;20658:269::-;20768:39;20799:7;20768:39;:::i;:::-;20829:91;20878:41;20902:16;20878:41;:::i;:::-;20870:6;20863:4;20857:11;20829:91;:::i;:::-;20823:4;20816:105;20734:193;20658:269;;;:::o;20933:73::-;20978:3;20933:73;:::o;21012:189::-;21089:32;;:::i;:::-;21130:65;21188:6;21180;21174:4;21130:65;:::i;:::-;21065:136;21012:189;;:::o;21207:186::-;21267:120;21284:3;21277:5;21274:14;21267:120;;;21338:39;21375:1;21368:5;21338:39;:::i;:::-;21311:1;21304:5;21300:13;21291:22;;21267:120;;;21207:186;;:::o;21399:543::-;21500:2;21495:3;21492:11;21489:446;;;21534:38;21566:5;21534:38;:::i;:::-;21618:29;21636:10;21618:29;:::i;:::-;21608:8;21604:44;21801:2;21789:10;21786:18;21783:49;;;21822:8;21807:23;;21783:49;21845:80;21901:22;21919:3;21901:22;:::i;:::-;21891:8;21887:37;21874:11;21845:80;:::i;:::-;21504:431;;21489:446;21399:543;;;:::o;21948:117::-;22002:8;22052:5;22046:4;22042:16;22021:37;;21948:117;;;;:::o;22071:169::-;22115:6;22148:51;22196:1;22192:6;22184:5;22181:1;22177:13;22148:51;:::i;:::-;22144:56;22229:4;22223;22219:15;22209:25;;22122:118;22071:169;;;;:::o;22245:295::-;22321:4;22467:29;22492:3;22486:4;22467:29;:::i;:::-;22459:37;;22529:3;22526:1;22522:11;22516:4;22513:21;22505:29;;22245:295;;;;:::o;22545:1395::-;22662:37;22695:3;22662:37;:::i;:::-;22764:18;22756:6;22753:30;22750:56;;;22786:18;;:::i;:::-;22750:56;22830:38;22862:4;22856:11;22830:38;:::i;:::-;22915:67;22975:6;22967;22961:4;22915:67;:::i;:::-;23009:1;23033:4;23020:17;;23065:2;23057:6;23054:14;23082:1;23077:618;;;;23739:1;23756:6;23753:77;;;23805:9;23800:3;23796:19;23790:26;23781:35;;23753:77;23856:67;23916:6;23909:5;23856:67;:::i;:::-;23850:4;23843:81;23712:222;23047:887;;23077:618;23129:4;23125:9;23117:6;23113:22;23163:37;23195:4;23163:37;:::i;:::-;23222:1;23236:208;23250:7;23247:1;23244:14;23236:208;;;23329:9;23324:3;23320:19;23314:26;23306:6;23299:42;23380:1;23372:6;23368:14;23358:24;;23427:2;23416:9;23412:18;23399:31;;23273:4;23270:1;23266:12;23261:17;;23236:208;;;23472:6;23463:7;23460:19;23457:179;;;23530:9;23525:3;23521:19;23515:26;23573:48;23615:4;23607:6;23603:17;23592:9;23573:48;:::i;:::-;23565:6;23558:64;23480:156;23457:179;23682:1;23678;23670:6;23666:14;23662:22;23656:4;23649:36;23084:611;;;23047:887;;22637:1303;;;22545:1395;;:::o;23946:148::-;24048:11;24085:3;24070:18;;23946:148;;;;:::o;24100:390::-;24206:3;24234:39;24267:5;24234:39;:::i;:::-;24289:89;24371:6;24366:3;24289:89;:::i;:::-;24282:96;;24387:65;24445:6;24440:3;24433:4;24426:5;24422:16;24387:65;:::i;:::-;24477:6;24472:3;24468:16;24461:23;;24210:280;24100:390;;;;:::o;24496:435::-;24676:3;24698:95;24789:3;24780:6;24698:95;:::i;:::-;24691:102;;24810:95;24901:3;24892:6;24810:95;:::i;:::-;24803:102;;24922:3;24915:10;;24496:435;;;;;:::o;24937:225::-;25077:34;25073:1;25065:6;25061:14;25054:58;25146:8;25141:2;25133:6;25129:15;25122:33;24937:225;:::o;25168:366::-;25310:3;25331:67;25395:2;25390:3;25331:67;:::i;:::-;25324:74;;25407:93;25496:3;25407:93;:::i;:::-;25525:2;25520:3;25516:12;25509:19;;25168:366;;;:::o;25540:419::-;25706:4;25744:2;25733:9;25729:18;25721:26;;25793:9;25787:4;25783:20;25779:1;25768:9;25764:17;25757:47;25821:131;25947:4;25821:131;:::i;:::-;25813:139;;25540:419;;;:::o;25965:182::-;26105:34;26101:1;26093:6;26089:14;26082:58;25965:182;:::o;26153:366::-;26295:3;26316:67;26380:2;26375:3;26316:67;:::i;:::-;26309:74;;26392:93;26481:3;26392:93;:::i;:::-;26510:2;26505:3;26501:12;26494:19;;26153:366;;;:::o;26525:419::-;26691:4;26729:2;26718:9;26714:18;26706:26;;26778:9;26772:4;26768:20;26764:1;26753:9;26749:17;26742:47;26806:131;26932:4;26806:131;:::i;:::-;26798:139;;26525:419;;;:::o;26950:98::-;27001:6;27035:5;27029:12;27019:22;;26950:98;;;:::o;27054:168::-;27137:11;27171:6;27166:3;27159:19;27211:4;27206:3;27202:14;27187:29;;27054:168;;;;:::o;27228:373::-;27314:3;27342:38;27374:5;27342:38;:::i;:::-;27396:70;27459:6;27454:3;27396:70;:::i;:::-;27389:77;;27475:65;27533:6;27528:3;27521:4;27514:5;27510:16;27475:65;:::i;:::-;27565:29;27587:6;27565:29;:::i;:::-;27560:3;27556:39;27549:46;;27318:283;27228:373;;;;:::o;27607:640::-;27802:4;27840:3;27829:9;27825:19;27817:27;;27854:71;27922:1;27911:9;27907:17;27898:6;27854:71;:::i;:::-;27935:72;28003:2;27992:9;27988:18;27979:6;27935:72;:::i;:::-;28017;28085:2;28074:9;28070:18;28061:6;28017:72;:::i;:::-;28136:9;28130:4;28126:20;28121:2;28110:9;28106:18;28099:48;28164:76;28235:4;28226:6;28164:76;:::i;:::-;28156:84;;27607:640;;;;;;;:::o;28253:141::-;28309:5;28340:6;28334:13;28325:22;;28356:32;28382:5;28356:32;:::i;:::-;28253:141;;;;:::o;28400:349::-;28469:6;28518:2;28506:9;28497:7;28493:23;28489:32;28486:119;;;28524:79;;:::i;:::-;28486:119;28644:1;28669:63;28724:7;28715:6;28704:9;28700:22;28669:63;:::i;:::-;28659:73;;28615:127;28400:349;;;;:::o
Swarm Source
ipfs://97d046b64a1b73b3ddc6d2c4f2b05e18e4f6766248b113defbead012852a0059
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.