ERC-721
Overview
Max Total Supply
10,000 CNR
Holders
5,646
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CNRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CNR
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-25 */ // File: contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // 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); } // File: contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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` 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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 `_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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try 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)) } } } } /** * @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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: contracts/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: contracts/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: contracts/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/CNR.sol pragma solidity >=0.8.9 <0.9.0; contract CNR is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public uriPrefix = ''; string public uriSuffix = '.json'; string public hiddenMetadataUri; uint256 public cost = 0.0029 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmount = 60; uint256 public maxPerTxn = 20; uint256 public maxFreeMintPerWalletAmount = 1; bool public revealed = true; bool public paused = true; constructor( string memory _tokenName, string memory _tokenSymbol, string memory _hiddenMetadataUri ) ERC721A(_tokenName, _tokenSymbol) { setHiddenMetadataUri(_hiddenMetadataUri); } modifier mintCompliance(uint256 _mintAmount) { require(!paused, "Minting phase not started."); require(totalSupply() + _mintAmount <= maxSupply, "All CNR minted."); require(_mintAmount > 0 && _mintAmount <= maxPerTxn, "20 max mints per txn."); require(tx.origin == msg.sender, "Calling from other contract is not allowed."); require( _mintAmount > 0 && numberMinted(msg.sender) + _mintAmount <= maxMintAmount, "Invalid mint amount or minted max amount already." ); _; } modifier mintPriceCompliance(uint256 _mintAmount) { uint256 costToSubtract = 0; if (numberMinted(msg.sender) < maxFreeMintPerWalletAmount) { uint256 freeMintsLeft = maxFreeMintPerWalletAmount - numberMinted(msg.sender); costToSubtract = cost * freeMintsLeft; } require(msg.value >= cost * _mintAmount - costToSubtract, "Insufficient or incorrect funds."); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { _safeMint(_msgSender(), _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ''; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner { maxMintAmount = _maxMintAmount; } function setmaxFreeMintPerWalletAmount(uint256 _maxFreeMintPerWalletAmount) public onlyOwner { maxFreeMintPerWalletAmount = _maxFreeMintPerWalletAmount; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner nonReentrant { uint256 core = address(this).balance * 4250 / 10000; (bool core1, ) = payable(0x6F48d7A2Ca89587b806B216B9cE4600549Da2cF5).call{value: core}(''); require(core1); (bool core2, ) = payable(0x1FF5bb08DBb39Ad95920286bB8eEb65D15A6E1cc).call{value: core}(''); require(core2); (bool freelance, ) = payable(0x2c3a1748C0dB5F073576cb6C84bC32607415077d).call{value: address(this).balance}(''); require(freelance); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxFreeMintPerWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMintPerWalletAmount","type":"uint256"}],"name":"setmaxFreeMintPerWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600a90805190602001906200002b9291906200033d565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000799291906200033d565b50660a4d88ddd94000600d55612710600e55603c600f55601460105560016011556001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550348015620000dd57600080fd5b50604051620045363803806200453683398181016040528101906200010391906200058a565b828281600290805190602001906200011d9291906200033d565b508060039080519060200190620001369291906200033d565b50620001476200019160201b60201c565b60008190555050506200016f620001636200019a60201b60201c565b620001a260201b60201c565b600160098190555062000188816200026860201b60201c565b5050506200072b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002786200019a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200029e6200031360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ee90620006a4565b60405180910390fd5b80600c90805190602001906200030f9291906200033d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200034b90620006f5565b90600052602060002090601f0160209004810192826200036f5760008555620003bb565b82601f106200038a57805160ff1916838001178555620003bb565b82800160010185558215620003bb579182015b82811115620003ba5782518255916020019190600101906200039d565b5b509050620003ca9190620003ce565b5090565b5b80821115620003e9576000816000905550600101620003cf565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000456826200040b565b810181811067ffffffffffffffff821117156200047857620004776200041c565b5b80604052505050565b60006200048d620003ed565b90506200049b82826200044b565b919050565b600067ffffffffffffffff821115620004be57620004bd6200041c565b5b620004c9826200040b565b9050602081019050919050565b60005b83811015620004f6578082015181840152602081019050620004d9565b8381111562000506576000848401525b50505050565b6000620005236200051d84620004a0565b62000481565b90508281526020810184848401111562000542576200054162000406565b5b6200054f848285620004d6565b509392505050565b600082601f8301126200056f576200056e62000401565b5b8151620005818482602086016200050c565b91505092915050565b600080600060608486031215620005a657620005a5620003f7565b5b600084015167ffffffffffffffff811115620005c757620005c6620003fc565b5b620005d58682870162000557565b935050602084015167ffffffffffffffff811115620005f957620005f8620003fc565b5b620006078682870162000557565b925050604084015167ffffffffffffffff8111156200062b576200062a620003fc565b5b620006398682870162000557565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200068c60208362000643565b9150620006998262000654565b602082019050919050565b60006020820190508181036000830152620006bf816200067d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070e57607f821691505b60208210811415620007255762000724620006c6565b5b50919050565b613dfb806200073b6000396000f3fe6080604052600436106102305760003560e01c80635c975abb1161012e578063a22cb465116100ab578063dc33e6811161006f578063dc33e681146107f6578063e0a8085314610833578063e985e9c51461085c578063efbd73f414610899578063f2fde38b146108c257610230565b8063a22cb46514610711578063a45ba8e71461073a578063b88d4fde14610765578063c87b56dd1461078e578063d5abeb01146107cb57610230565b80637ec4a659116100f25780637ec4a6591461064d5780638da5cb5b1461067657806391ae4534146106a157806395d89b41146106ca578063a0712d68146106f557610230565b80635c975abb1461056657806362b99ad4146105915780636352211e146105bc57806370a08231146105f9578063715018a61461063657610230565b806318160ddd116101bc57806342842e0e1161018057806342842e0e1461049557806344a0d68a146104be5780634fdd43cb146104e757806351830227146105105780635503a0e81461053b57610230565b806318160ddd146103d4578063239c70ae146103ff57806323b872dd1461042a5780633cb51994146104535780633ccfd60b1461047e57610230565b8063095ea7b311610203578063095ea7b314610303578063126fa6a91461032c57806313faede61461035757806316ba10e01461038257806316c38b3c146103ab57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063088a4ed0146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612d34565b6108eb565b6040516102699190612d7c565b60405180910390f35b34801561027e57600080fd5b5061028761097d565b6040516102949190612e30565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612e88565b610a0f565b6040516102d19190612ef6565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612e88565b610a8b565b005b34801561030f57600080fd5b5061032a60048036038101906103259190612f3d565b610b11565b005b34801561033857600080fd5b50610341610cb8565b60405161034e9190612f8c565b60405180910390f35b34801561036357600080fd5b5061036c610cbe565b6040516103799190612f8c565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906130dc565b610cc4565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190613151565b610d5a565b005b3480156103e057600080fd5b506103e9610df3565b6040516103f69190612f8c565b60405180910390f35b34801561040b57600080fd5b50610414610e0a565b6040516104219190612f8c565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c919061317e565b610e10565b005b34801561045f57600080fd5b50610468610e20565b6040516104759190612f8c565b60405180910390f35b34801561048a57600080fd5b50610493610e26565b005b3480156104a157600080fd5b506104bc60048036038101906104b7919061317e565b6110bb565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190612e88565b6110db565b005b3480156104f357600080fd5b5061050e600480360381019061050991906130dc565b611161565b005b34801561051c57600080fd5b506105256111f7565b6040516105329190612d7c565b60405180910390f35b34801561054757600080fd5b5061055061120a565b60405161055d9190612e30565b60405180910390f35b34801561057257600080fd5b5061057b611298565b6040516105889190612d7c565b60405180910390f35b34801561059d57600080fd5b506105a66112ab565b6040516105b39190612e30565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190612e88565b611339565b6040516105f09190612ef6565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b91906131d1565b61134b565b60405161062d9190612f8c565b60405180910390f35b34801561064257600080fd5b5061064b611404565b005b34801561065957600080fd5b50610674600480360381019061066f91906130dc565b61148c565b005b34801561068257600080fd5b5061068b611522565b6040516106989190612ef6565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190612e88565b61154c565b005b3480156106d657600080fd5b506106df6115d2565b6040516106ec9190612e30565b60405180910390f35b61070f600480360381019061070a9190612e88565b611664565b005b34801561071d57600080fd5b50610738600480360381019061073391906131fe565b6118e2565b005b34801561074657600080fd5b5061074f611a5a565b60405161075c9190612e30565b60405180910390f35b34801561077157600080fd5b5061078c600480360381019061078791906132df565b611ae8565b005b34801561079a57600080fd5b506107b560048036038101906107b09190612e88565b611b5b565b6040516107c29190612e30565b60405180910390f35b3480156107d757600080fd5b506107e0611cb4565b6040516107ed9190612f8c565b60405180910390f35b34801561080257600080fd5b5061081d600480360381019061081891906131d1565b611cba565b60405161082a9190612f8c565b60405180910390f35b34801561083f57600080fd5b5061085a60048036038101906108559190613151565b611ccc565b005b34801561086857600080fd5b50610883600480360381019061087e9190613362565b611d65565b6040516108909190612d7c565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb91906133a2565b611df9565b005b3480156108ce57600080fd5b506108e960048036038101906108e491906131d1565b611eda565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461098c90613411565b80601f01602080910402602001604051908101604052809291908181526020018280546109b890613411565b8015610a055780601f106109da57610100808354040283529160200191610a05565b820191906000526020600020905b8154815290600101906020018083116109e857829003601f168201915b5050505050905090565b6000610a1a82611fd2565b610a50576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a93612031565b73ffffffffffffffffffffffffffffffffffffffff16610ab1611522565b73ffffffffffffffffffffffffffffffffffffffff1614610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe9061348f565b60405180910390fd5b80600f8190555050565b6000610b1c82612039565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba3612107565b73ffffffffffffffffffffffffffffffffffffffff1614610c0657610bcf81610bca612107565b611d65565b610c05576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60115481565b600d5481565b610ccc612031565b73ffffffffffffffffffffffffffffffffffffffff16610cea611522565b73ffffffffffffffffffffffffffffffffffffffff1614610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d379061348f565b60405180910390fd5b80600b9080519060200190610d56929190612c25565b5050565b610d62612031565b73ffffffffffffffffffffffffffffffffffffffff16610d80611522565b73ffffffffffffffffffffffffffffffffffffffff1614610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd9061348f565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6000610dfd61210f565b6001546000540303905090565b600f5481565b610e1b838383612118565b505050565b60105481565b610e2e612031565b73ffffffffffffffffffffffffffffffffffffffff16610e4c611522565b73ffffffffffffffffffffffffffffffffffffffff1614610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e999061348f565b60405180910390fd5b60026009541415610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf906134fb565b60405180910390fd5b6002600981905550600061271061109a47610f03919061354a565b610f0d91906135d3565b90506000736f48d7a2ca89587b806b216b9ce4600549da2cf573ffffffffffffffffffffffffffffffffffffffff1682604051610f4990613635565b60006040518083038185875af1925050503d8060008114610f86576040519150601f19603f3d011682016040523d82523d6000602084013e610f8b565b606091505b5050905080610f9957600080fd5b6000731ff5bb08dbb39ad95920286bb8eeb65d15a6e1cc73ffffffffffffffffffffffffffffffffffffffff1683604051610fd390613635565b60006040518083038185875af1925050503d8060008114611010576040519150601f19603f3d011682016040523d82523d6000602084013e611015565b606091505b505090508061102357600080fd5b6000732c3a1748c0db5f073576cb6c84bc32607415077d73ffffffffffffffffffffffffffffffffffffffff164760405161105d90613635565b60006040518083038185875af1925050503d806000811461109a576040519150601f19603f3d011682016040523d82523d6000602084013e61109f565b606091505b50509050806110ad57600080fd5b505050506001600981905550565b6110d683838360405180602001604052806000815250611ae8565b505050565b6110e3612031565b73ffffffffffffffffffffffffffffffffffffffff16611101611522565b73ffffffffffffffffffffffffffffffffffffffff1614611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e9061348f565b60405180910390fd5b80600d8190555050565b611169612031565b73ffffffffffffffffffffffffffffffffffffffff16611187611522565b73ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d49061348f565b60405180910390fd5b80600c90805190602001906111f3929190612c25565b5050565b601260009054906101000a900460ff1681565b600b805461121790613411565b80601f016020809104026020016040519081016040528092919081815260200182805461124390613411565b80156112905780601f1061126557610100808354040283529160200191611290565b820191906000526020600020905b81548152906001019060200180831161127357829003601f168201915b505050505081565b601260019054906101000a900460ff1681565b600a80546112b890613411565b80601f01602080910402602001604051908101604052809291908181526020018280546112e490613411565b80156113315780601f1061130657610100808354040283529160200191611331565b820191906000526020600020905b81548152906001019060200180831161131457829003601f168201915b505050505081565b600061134482612039565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61140c612031565b73ffffffffffffffffffffffffffffffffffffffff1661142a611522565b73ffffffffffffffffffffffffffffffffffffffff1614611480576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114779061348f565b60405180910390fd5b61148a60006124c2565b565b611494612031565b73ffffffffffffffffffffffffffffffffffffffff166114b2611522565b73ffffffffffffffffffffffffffffffffffffffff1614611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff9061348f565b60405180910390fd5b80600a908051906020019061151e929190612c25565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611554612031565b73ffffffffffffffffffffffffffffffffffffffff16611572611522565b73ffffffffffffffffffffffffffffffffffffffff16146115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf9061348f565b60405180910390fd5b8060118190555050565b6060600380546115e190613411565b80601f016020809104026020016040519081016040528092919081815260200182805461160d90613411565b801561165a5780601f1061162f5761010080835404028352916020019161165a565b820191906000526020600020905b81548152906001019060200180831161163d57829003601f168201915b5050505050905090565b80601260019054906101000a900460ff16156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613696565b60405180910390fd5b600e54816116c1610df3565b6116cb91906136b6565b111561170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390613758565b60405180910390fd5b60008111801561171e57506010548111155b61175d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611754906137c4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290613856565b60405180910390fd5b6000811180156117f05750600f54816117e333611cba565b6117ed91906136b6565b11155b61182f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611826906138e8565b60405180910390fd5b81600060115461183e33611cba565b101561187057600061184f33611cba565b60115461185c9190613908565b905080600d5461186c919061354a565b9150505b8082600d5461187f919061354a565b6118899190613908565b3410156118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290613988565b60405180910390fd5b6118dc6118d6612031565b85612588565b50505050565b6118ea612107565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561194f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061195c612107565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a09612107565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a4e9190612d7c565b60405180910390a35050565b600c8054611a6790613411565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9390613411565b8015611ae05780601f10611ab557610100808354040283529160200191611ae0565b820191906000526020600020905b815481529060010190602001808311611ac357829003601f168201915b505050505081565b611af3848484612118565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b5557611b1e848484846125a6565b611b54576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b6682611fd2565b611ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9c90613a1a565b60405180910390fd5b60001515601260009054906101000a900460ff1615151415611c5357600c8054611bce90613411565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfa90613411565b8015611c475780601f10611c1c57610100808354040283529160200191611c47565b820191906000526020600020905b815481529060010190602001808311611c2a57829003601f168201915b50505050509050611caf565b6000611c5d612706565b90506000815111611c7d5760405180602001604052806000815250611cab565b80611c8784612798565b600b604051602001611c9b93929190613b0a565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000611cc5826128f9565b9050919050565b611cd4612031565b73ffffffffffffffffffffffffffffffffffffffff16611cf2611522565b73ffffffffffffffffffffffffffffffffffffffff1614611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f9061348f565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e01612031565b73ffffffffffffffffffffffffffffffffffffffff16611e1f611522565b73ffffffffffffffffffffffffffffffffffffffff1614611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c9061348f565b60405180910390fd5b600e5482611e81610df3565b611e8b91906136b6565b1115611ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec390613b87565b60405180910390fd5b611ed68183612588565b5050565b611ee2612031565b73ffffffffffffffffffffffffffffffffffffffff16611f00611522565b73ffffffffffffffffffffffffffffffffffffffff1614611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d9061348f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90613c19565b60405180910390fd5b611fcf816124c2565b50565b600081611fdd61210f565b11158015611fec575060005482105b801561202a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000808290508061204861210f565b116120d0576000548110156120cf5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156120cd575b60008114156120c3576004600083600190039350838152602001908152602001600020549050612098565b8092505050612102565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061212382612039565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461218a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121ab612107565b73ffffffffffffffffffffffffffffffffffffffff1614806121da57506121d9856121d4612107565b611d65565b5b8061221f57506121e8612107565b73ffffffffffffffffffffffffffffffffffffffff1661220784610a0f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612258576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122bf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122cc8585856001612950565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6123c986612956565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612453576000600184019050600060046000838152602001908152602001600020541415612451576000548114612450578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124bb8585856001612960565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125a2828260405180602001604052806000815250612966565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125cc612107565b8786866040518563ffffffff1660e01b81526004016125ee9493929190613c8e565b602060405180830381600087803b15801561260857600080fd5b505af192505050801561263957506040513d601f19601f820116820180604052508101906126369190613cef565b60015b6126b3573d8060008114612669576040519150601f19603f3d011682016040523d82523d6000602084013e61266e565b606091505b506000815114156126ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461271590613411565b80601f016020809104026020016040519081016040528092919081815260200182805461274190613411565b801561278e5780601f106127635761010080835404028352916020019161278e565b820191906000526020600020905b81548152906001019060200180831161277157829003601f168201915b5050505050905090565b606060008214156127e0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128f4565b600082905060005b600082146128125780806127fb90613d1c565b915050600a8261280b91906135d3565b91506127e8565b60008167ffffffffffffffff81111561282e5761282d612fb1565b5b6040519080825280601f01601f1916602001820160405280156128605781602001600182028036833780820191505090505b5090505b600085146128ed576001826128799190613908565b9150600a856128889190613d65565b603061289491906136b6565b60f81b8183815181106128aa576128a9613d96565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128e691906135d3565b9450612864565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129d3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612a0e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a1b6000858386612950565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612a8060018514612c1b565b901b60a042901b612a9086612956565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612b94575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b4460008784806001019550876125a6565b612b7a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612ad5578260005414612b8f57600080fd5b612bff565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612b95575b816000819055505050612c156000858386612960565b50505050565b6000819050919050565b828054612c3190613411565b90600052602060002090601f016020900481019282612c535760008555612c9a565b82601f10612c6c57805160ff1916838001178555612c9a565b82800160010185558215612c9a579182015b82811115612c99578251825591602001919060010190612c7e565b5b509050612ca79190612cab565b5090565b5b80821115612cc4576000816000905550600101612cac565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d1181612cdc565b8114612d1c57600080fd5b50565b600081359050612d2e81612d08565b92915050565b600060208284031215612d4a57612d49612cd2565b5b6000612d5884828501612d1f565b91505092915050565b60008115159050919050565b612d7681612d61565b82525050565b6000602082019050612d916000830184612d6d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612dd1578082015181840152602081019050612db6565b83811115612de0576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e0282612d97565b612e0c8185612da2565b9350612e1c818560208601612db3565b612e2581612de6565b840191505092915050565b60006020820190508181036000830152612e4a8184612df7565b905092915050565b6000819050919050565b612e6581612e52565b8114612e7057600080fd5b50565b600081359050612e8281612e5c565b92915050565b600060208284031215612e9e57612e9d612cd2565b5b6000612eac84828501612e73565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ee082612eb5565b9050919050565b612ef081612ed5565b82525050565b6000602082019050612f0b6000830184612ee7565b92915050565b612f1a81612ed5565b8114612f2557600080fd5b50565b600081359050612f3781612f11565b92915050565b60008060408385031215612f5457612f53612cd2565b5b6000612f6285828601612f28565b9250506020612f7385828601612e73565b9150509250929050565b612f8681612e52565b82525050565b6000602082019050612fa16000830184612f7d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fe982612de6565b810181811067ffffffffffffffff8211171561300857613007612fb1565b5b80604052505050565b600061301b612cc8565b90506130278282612fe0565b919050565b600067ffffffffffffffff82111561304757613046612fb1565b5b61305082612de6565b9050602081019050919050565b82818337600083830152505050565b600061307f61307a8461302c565b613011565b90508281526020810184848401111561309b5761309a612fac565b5b6130a684828561305d565b509392505050565b600082601f8301126130c3576130c2612fa7565b5b81356130d384826020860161306c565b91505092915050565b6000602082840312156130f2576130f1612cd2565b5b600082013567ffffffffffffffff8111156131105761310f612cd7565b5b61311c848285016130ae565b91505092915050565b61312e81612d61565b811461313957600080fd5b50565b60008135905061314b81613125565b92915050565b60006020828403121561316757613166612cd2565b5b60006131758482850161313c565b91505092915050565b60008060006060848603121561319757613196612cd2565b5b60006131a586828701612f28565b93505060206131b686828701612f28565b92505060406131c786828701612e73565b9150509250925092565b6000602082840312156131e7576131e6612cd2565b5b60006131f584828501612f28565b91505092915050565b6000806040838503121561321557613214612cd2565b5b600061322385828601612f28565b92505060206132348582860161313c565b9150509250929050565b600067ffffffffffffffff82111561325957613258612fb1565b5b61326282612de6565b9050602081019050919050565b600061328261327d8461323e565b613011565b90508281526020810184848401111561329e5761329d612fac565b5b6132a984828561305d565b509392505050565b600082601f8301126132c6576132c5612fa7565b5b81356132d684826020860161326f565b91505092915050565b600080600080608085870312156132f9576132f8612cd2565b5b600061330787828801612f28565b945050602061331887828801612f28565b935050604061332987828801612e73565b925050606085013567ffffffffffffffff81111561334a57613349612cd7565b5b613356878288016132b1565b91505092959194509250565b6000806040838503121561337957613378612cd2565b5b600061338785828601612f28565b925050602061339885828601612f28565b9150509250929050565b600080604083850312156133b9576133b8612cd2565b5b60006133c785828601612e73565b92505060206133d885828601612f28565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061342957607f821691505b6020821081141561343d5761343c6133e2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613479602083612da2565b915061348482613443565b602082019050919050565b600060208201905081810360008301526134a88161346c565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006134e5601f83612da2565b91506134f0826134af565b602082019050919050565b60006020820190508181036000830152613514816134d8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061355582612e52565b915061356083612e52565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135995761359861351b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135de82612e52565b91506135e983612e52565b9250826135f9576135f86135a4565b5b828204905092915050565b600081905092915050565b50565b600061361f600083613604565b915061362a8261360f565b600082019050919050565b600061364082613612565b9150819050919050565b7f4d696e74696e67207068617365206e6f7420737461727465642e000000000000600082015250565b6000613680601a83612da2565b915061368b8261364a565b602082019050919050565b600060208201905081810360008301526136af81613673565b9050919050565b60006136c182612e52565b91506136cc83612e52565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137015761370061351b565b5b828201905092915050565b7f416c6c20434e52206d696e7465642e0000000000000000000000000000000000600082015250565b6000613742600f83612da2565b915061374d8261370c565b602082019050919050565b6000602082019050818103600083015261377181613735565b9050919050565b7f3230206d6178206d696e7473207065722074786e2e0000000000000000000000600082015250565b60006137ae601583612da2565b91506137b982613778565b602082019050919050565b600060208201905081810360008301526137dd816137a1565b9050919050565b7f43616c6c696e672066726f6d206f7468657220636f6e7472616374206973206e60008201527f6f7420616c6c6f7765642e000000000000000000000000000000000000000000602082015250565b6000613840602b83612da2565b915061384b826137e4565b604082019050919050565b6000602082019050818103600083015261386f81613833565b9050919050565b7f496e76616c6964206d696e7420616d6f756e74206f72206d696e746564206d6160008201527f7820616d6f756e7420616c72656164792e000000000000000000000000000000602082015250565b60006138d2603183612da2565b91506138dd82613876565b604082019050919050565b60006020820190508181036000830152613901816138c5565b9050919050565b600061391382612e52565b915061391e83612e52565b9250828210156139315761393061351b565b5b828203905092915050565b7f496e73756666696369656e74206f7220696e636f72726563742066756e64732e600082015250565b6000613972602083612da2565b915061397d8261393c565b602082019050919050565b600060208201905081810360008301526139a181613965565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a04602f83612da2565b9150613a0f826139a8565b604082019050919050565b60006020820190508181036000830152613a33816139f7565b9050919050565b600081905092915050565b6000613a5082612d97565b613a5a8185613a3a565b9350613a6a818560208601612db3565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613a9881613411565b613aa28186613a3a565b94506001821660008114613abd5760018114613ace57613b01565b60ff19831686528186019350613b01565b613ad785613a76565b60005b83811015613af957815481890152600182019150602081019050613ada565b838801955050505b50505092915050565b6000613b168286613a45565b9150613b228285613a45565b9150613b2e8284613a8b565b9150819050949350505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613b71601483612da2565b9150613b7c82613b3b565b602082019050919050565b60006020820190508181036000830152613ba081613b64565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c03602683612da2565b9150613c0e82613ba7565b604082019050919050565b60006020820190508181036000830152613c3281613bf6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c6082613c39565b613c6a8185613c44565b9350613c7a818560208601612db3565b613c8381612de6565b840191505092915050565b6000608082019050613ca36000830187612ee7565b613cb06020830186612ee7565b613cbd6040830185612f7d565b8181036060830152613ccf8184613c55565b905095945050505050565b600081519050613ce981612d08565b92915050565b600060208284031215613d0557613d04612cd2565b5b6000613d1384828501613cda565b91505092915050565b6000613d2782612e52565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d5a57613d5961351b565b5b600182019050919050565b6000613d7082612e52565b9150613d7b83612e52565b925082613d8b57613d8a6135a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122038e6db64cf91ee2db4629b4b25af82d532a7d400647a38536621a7daed65d09164736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d436f7073202620526f62626572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003434e520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b697066733a2f2f6e696c2f000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102305760003560e01c80635c975abb1161012e578063a22cb465116100ab578063dc33e6811161006f578063dc33e681146107f6578063e0a8085314610833578063e985e9c51461085c578063efbd73f414610899578063f2fde38b146108c257610230565b8063a22cb46514610711578063a45ba8e71461073a578063b88d4fde14610765578063c87b56dd1461078e578063d5abeb01146107cb57610230565b80637ec4a659116100f25780637ec4a6591461064d5780638da5cb5b1461067657806391ae4534146106a157806395d89b41146106ca578063a0712d68146106f557610230565b80635c975abb1461056657806362b99ad4146105915780636352211e146105bc57806370a08231146105f9578063715018a61461063657610230565b806318160ddd116101bc57806342842e0e1161018057806342842e0e1461049557806344a0d68a146104be5780634fdd43cb146104e757806351830227146105105780635503a0e81461053b57610230565b806318160ddd146103d4578063239c70ae146103ff57806323b872dd1461042a5780633cb51994146104535780633ccfd60b1461047e57610230565b8063095ea7b311610203578063095ea7b314610303578063126fa6a91461032c57806313faede61461035757806316ba10e01461038257806316c38b3c146103ab57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063088a4ed0146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612d34565b6108eb565b6040516102699190612d7c565b60405180910390f35b34801561027e57600080fd5b5061028761097d565b6040516102949190612e30565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612e88565b610a0f565b6040516102d19190612ef6565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612e88565b610a8b565b005b34801561030f57600080fd5b5061032a60048036038101906103259190612f3d565b610b11565b005b34801561033857600080fd5b50610341610cb8565b60405161034e9190612f8c565b60405180910390f35b34801561036357600080fd5b5061036c610cbe565b6040516103799190612f8c565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906130dc565b610cc4565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190613151565b610d5a565b005b3480156103e057600080fd5b506103e9610df3565b6040516103f69190612f8c565b60405180910390f35b34801561040b57600080fd5b50610414610e0a565b6040516104219190612f8c565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c919061317e565b610e10565b005b34801561045f57600080fd5b50610468610e20565b6040516104759190612f8c565b60405180910390f35b34801561048a57600080fd5b50610493610e26565b005b3480156104a157600080fd5b506104bc60048036038101906104b7919061317e565b6110bb565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190612e88565b6110db565b005b3480156104f357600080fd5b5061050e600480360381019061050991906130dc565b611161565b005b34801561051c57600080fd5b506105256111f7565b6040516105329190612d7c565b60405180910390f35b34801561054757600080fd5b5061055061120a565b60405161055d9190612e30565b60405180910390f35b34801561057257600080fd5b5061057b611298565b6040516105889190612d7c565b60405180910390f35b34801561059d57600080fd5b506105a66112ab565b6040516105b39190612e30565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190612e88565b611339565b6040516105f09190612ef6565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b91906131d1565b61134b565b60405161062d9190612f8c565b60405180910390f35b34801561064257600080fd5b5061064b611404565b005b34801561065957600080fd5b50610674600480360381019061066f91906130dc565b61148c565b005b34801561068257600080fd5b5061068b611522565b6040516106989190612ef6565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190612e88565b61154c565b005b3480156106d657600080fd5b506106df6115d2565b6040516106ec9190612e30565b60405180910390f35b61070f600480360381019061070a9190612e88565b611664565b005b34801561071d57600080fd5b50610738600480360381019061073391906131fe565b6118e2565b005b34801561074657600080fd5b5061074f611a5a565b60405161075c9190612e30565b60405180910390f35b34801561077157600080fd5b5061078c600480360381019061078791906132df565b611ae8565b005b34801561079a57600080fd5b506107b560048036038101906107b09190612e88565b611b5b565b6040516107c29190612e30565b60405180910390f35b3480156107d757600080fd5b506107e0611cb4565b6040516107ed9190612f8c565b60405180910390f35b34801561080257600080fd5b5061081d600480360381019061081891906131d1565b611cba565b60405161082a9190612f8c565b60405180910390f35b34801561083f57600080fd5b5061085a60048036038101906108559190613151565b611ccc565b005b34801561086857600080fd5b50610883600480360381019061087e9190613362565b611d65565b6040516108909190612d7c565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb91906133a2565b611df9565b005b3480156108ce57600080fd5b506108e960048036038101906108e491906131d1565b611eda565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461098c90613411565b80601f01602080910402602001604051908101604052809291908181526020018280546109b890613411565b8015610a055780601f106109da57610100808354040283529160200191610a05565b820191906000526020600020905b8154815290600101906020018083116109e857829003601f168201915b5050505050905090565b6000610a1a82611fd2565b610a50576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a93612031565b73ffffffffffffffffffffffffffffffffffffffff16610ab1611522565b73ffffffffffffffffffffffffffffffffffffffff1614610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe9061348f565b60405180910390fd5b80600f8190555050565b6000610b1c82612039565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba3612107565b73ffffffffffffffffffffffffffffffffffffffff1614610c0657610bcf81610bca612107565b611d65565b610c05576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60115481565b600d5481565b610ccc612031565b73ffffffffffffffffffffffffffffffffffffffff16610cea611522565b73ffffffffffffffffffffffffffffffffffffffff1614610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d379061348f565b60405180910390fd5b80600b9080519060200190610d56929190612c25565b5050565b610d62612031565b73ffffffffffffffffffffffffffffffffffffffff16610d80611522565b73ffffffffffffffffffffffffffffffffffffffff1614610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd9061348f565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6000610dfd61210f565b6001546000540303905090565b600f5481565b610e1b838383612118565b505050565b60105481565b610e2e612031565b73ffffffffffffffffffffffffffffffffffffffff16610e4c611522565b73ffffffffffffffffffffffffffffffffffffffff1614610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e999061348f565b60405180910390fd5b60026009541415610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf906134fb565b60405180910390fd5b6002600981905550600061271061109a47610f03919061354a565b610f0d91906135d3565b90506000736f48d7a2ca89587b806b216b9ce4600549da2cf573ffffffffffffffffffffffffffffffffffffffff1682604051610f4990613635565b60006040518083038185875af1925050503d8060008114610f86576040519150601f19603f3d011682016040523d82523d6000602084013e610f8b565b606091505b5050905080610f9957600080fd5b6000731ff5bb08dbb39ad95920286bb8eeb65d15a6e1cc73ffffffffffffffffffffffffffffffffffffffff1683604051610fd390613635565b60006040518083038185875af1925050503d8060008114611010576040519150601f19603f3d011682016040523d82523d6000602084013e611015565b606091505b505090508061102357600080fd5b6000732c3a1748c0db5f073576cb6c84bc32607415077d73ffffffffffffffffffffffffffffffffffffffff164760405161105d90613635565b60006040518083038185875af1925050503d806000811461109a576040519150601f19603f3d011682016040523d82523d6000602084013e61109f565b606091505b50509050806110ad57600080fd5b505050506001600981905550565b6110d683838360405180602001604052806000815250611ae8565b505050565b6110e3612031565b73ffffffffffffffffffffffffffffffffffffffff16611101611522565b73ffffffffffffffffffffffffffffffffffffffff1614611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e9061348f565b60405180910390fd5b80600d8190555050565b611169612031565b73ffffffffffffffffffffffffffffffffffffffff16611187611522565b73ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d49061348f565b60405180910390fd5b80600c90805190602001906111f3929190612c25565b5050565b601260009054906101000a900460ff1681565b600b805461121790613411565b80601f016020809104026020016040519081016040528092919081815260200182805461124390613411565b80156112905780601f1061126557610100808354040283529160200191611290565b820191906000526020600020905b81548152906001019060200180831161127357829003601f168201915b505050505081565b601260019054906101000a900460ff1681565b600a80546112b890613411565b80601f01602080910402602001604051908101604052809291908181526020018280546112e490613411565b80156113315780601f1061130657610100808354040283529160200191611331565b820191906000526020600020905b81548152906001019060200180831161131457829003601f168201915b505050505081565b600061134482612039565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61140c612031565b73ffffffffffffffffffffffffffffffffffffffff1661142a611522565b73ffffffffffffffffffffffffffffffffffffffff1614611480576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114779061348f565b60405180910390fd5b61148a60006124c2565b565b611494612031565b73ffffffffffffffffffffffffffffffffffffffff166114b2611522565b73ffffffffffffffffffffffffffffffffffffffff1614611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff9061348f565b60405180910390fd5b80600a908051906020019061151e929190612c25565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611554612031565b73ffffffffffffffffffffffffffffffffffffffff16611572611522565b73ffffffffffffffffffffffffffffffffffffffff16146115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf9061348f565b60405180910390fd5b8060118190555050565b6060600380546115e190613411565b80601f016020809104026020016040519081016040528092919081815260200182805461160d90613411565b801561165a5780601f1061162f5761010080835404028352916020019161165a565b820191906000526020600020905b81548152906001019060200180831161163d57829003601f168201915b5050505050905090565b80601260019054906101000a900460ff16156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613696565b60405180910390fd5b600e54816116c1610df3565b6116cb91906136b6565b111561170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390613758565b60405180910390fd5b60008111801561171e57506010548111155b61175d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611754906137c4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290613856565b60405180910390fd5b6000811180156117f05750600f54816117e333611cba565b6117ed91906136b6565b11155b61182f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611826906138e8565b60405180910390fd5b81600060115461183e33611cba565b101561187057600061184f33611cba565b60115461185c9190613908565b905080600d5461186c919061354a565b9150505b8082600d5461187f919061354a565b6118899190613908565b3410156118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290613988565b60405180910390fd5b6118dc6118d6612031565b85612588565b50505050565b6118ea612107565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561194f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061195c612107565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a09612107565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a4e9190612d7c565b60405180910390a35050565b600c8054611a6790613411565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9390613411565b8015611ae05780601f10611ab557610100808354040283529160200191611ae0565b820191906000526020600020905b815481529060010190602001808311611ac357829003601f168201915b505050505081565b611af3848484612118565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b5557611b1e848484846125a6565b611b54576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b6682611fd2565b611ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9c90613a1a565b60405180910390fd5b60001515601260009054906101000a900460ff1615151415611c5357600c8054611bce90613411565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfa90613411565b8015611c475780601f10611c1c57610100808354040283529160200191611c47565b820191906000526020600020905b815481529060010190602001808311611c2a57829003601f168201915b50505050509050611caf565b6000611c5d612706565b90506000815111611c7d5760405180602001604052806000815250611cab565b80611c8784612798565b600b604051602001611c9b93929190613b0a565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000611cc5826128f9565b9050919050565b611cd4612031565b73ffffffffffffffffffffffffffffffffffffffff16611cf2611522565b73ffffffffffffffffffffffffffffffffffffffff1614611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f9061348f565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e01612031565b73ffffffffffffffffffffffffffffffffffffffff16611e1f611522565b73ffffffffffffffffffffffffffffffffffffffff1614611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c9061348f565b60405180910390fd5b600e5482611e81610df3565b611e8b91906136b6565b1115611ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec390613b87565b60405180910390fd5b611ed68183612588565b5050565b611ee2612031565b73ffffffffffffffffffffffffffffffffffffffff16611f00611522565b73ffffffffffffffffffffffffffffffffffffffff1614611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d9061348f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90613c19565b60405180910390fd5b611fcf816124c2565b50565b600081611fdd61210f565b11158015611fec575060005482105b801561202a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000808290508061204861210f565b116120d0576000548110156120cf5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156120cd575b60008114156120c3576004600083600190039350838152602001908152602001600020549050612098565b8092505050612102565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061212382612039565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461218a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121ab612107565b73ffffffffffffffffffffffffffffffffffffffff1614806121da57506121d9856121d4612107565b611d65565b5b8061221f57506121e8612107565b73ffffffffffffffffffffffffffffffffffffffff1661220784610a0f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612258576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122bf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122cc8585856001612950565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6123c986612956565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612453576000600184019050600060046000838152602001908152602001600020541415612451576000548114612450578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124bb8585856001612960565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125a2828260405180602001604052806000815250612966565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125cc612107565b8786866040518563ffffffff1660e01b81526004016125ee9493929190613c8e565b602060405180830381600087803b15801561260857600080fd5b505af192505050801561263957506040513d601f19601f820116820180604052508101906126369190613cef565b60015b6126b3573d8060008114612669576040519150601f19603f3d011682016040523d82523d6000602084013e61266e565b606091505b506000815114156126ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461271590613411565b80601f016020809104026020016040519081016040528092919081815260200182805461274190613411565b801561278e5780601f106127635761010080835404028352916020019161278e565b820191906000526020600020905b81548152906001019060200180831161277157829003601f168201915b5050505050905090565b606060008214156127e0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128f4565b600082905060005b600082146128125780806127fb90613d1c565b915050600a8261280b91906135d3565b91506127e8565b60008167ffffffffffffffff81111561282e5761282d612fb1565b5b6040519080825280601f01601f1916602001820160405280156128605781602001600182028036833780820191505090505b5090505b600085146128ed576001826128799190613908565b9150600a856128889190613d65565b603061289491906136b6565b60f81b8183815181106128aa576128a9613d96565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128e691906135d3565b9450612864565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129d3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612a0e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a1b6000858386612950565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612a8060018514612c1b565b901b60a042901b612a9086612956565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612b94575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b4460008784806001019550876125a6565b612b7a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612ad5578260005414612b8f57600080fd5b612bff565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612b95575b816000819055505050612c156000858386612960565b50505050565b6000819050919050565b828054612c3190613411565b90600052602060002090601f016020900481019282612c535760008555612c9a565b82601f10612c6c57805160ff1916838001178555612c9a565b82800160010185558215612c9a579182015b82811115612c99578251825591602001919060010190612c7e565b5b509050612ca79190612cab565b5090565b5b80821115612cc4576000816000905550600101612cac565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d1181612cdc565b8114612d1c57600080fd5b50565b600081359050612d2e81612d08565b92915050565b600060208284031215612d4a57612d49612cd2565b5b6000612d5884828501612d1f565b91505092915050565b60008115159050919050565b612d7681612d61565b82525050565b6000602082019050612d916000830184612d6d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612dd1578082015181840152602081019050612db6565b83811115612de0576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e0282612d97565b612e0c8185612da2565b9350612e1c818560208601612db3565b612e2581612de6565b840191505092915050565b60006020820190508181036000830152612e4a8184612df7565b905092915050565b6000819050919050565b612e6581612e52565b8114612e7057600080fd5b50565b600081359050612e8281612e5c565b92915050565b600060208284031215612e9e57612e9d612cd2565b5b6000612eac84828501612e73565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ee082612eb5565b9050919050565b612ef081612ed5565b82525050565b6000602082019050612f0b6000830184612ee7565b92915050565b612f1a81612ed5565b8114612f2557600080fd5b50565b600081359050612f3781612f11565b92915050565b60008060408385031215612f5457612f53612cd2565b5b6000612f6285828601612f28565b9250506020612f7385828601612e73565b9150509250929050565b612f8681612e52565b82525050565b6000602082019050612fa16000830184612f7d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fe982612de6565b810181811067ffffffffffffffff8211171561300857613007612fb1565b5b80604052505050565b600061301b612cc8565b90506130278282612fe0565b919050565b600067ffffffffffffffff82111561304757613046612fb1565b5b61305082612de6565b9050602081019050919050565b82818337600083830152505050565b600061307f61307a8461302c565b613011565b90508281526020810184848401111561309b5761309a612fac565b5b6130a684828561305d565b509392505050565b600082601f8301126130c3576130c2612fa7565b5b81356130d384826020860161306c565b91505092915050565b6000602082840312156130f2576130f1612cd2565b5b600082013567ffffffffffffffff8111156131105761310f612cd7565b5b61311c848285016130ae565b91505092915050565b61312e81612d61565b811461313957600080fd5b50565b60008135905061314b81613125565b92915050565b60006020828403121561316757613166612cd2565b5b60006131758482850161313c565b91505092915050565b60008060006060848603121561319757613196612cd2565b5b60006131a586828701612f28565b93505060206131b686828701612f28565b92505060406131c786828701612e73565b9150509250925092565b6000602082840312156131e7576131e6612cd2565b5b60006131f584828501612f28565b91505092915050565b6000806040838503121561321557613214612cd2565b5b600061322385828601612f28565b92505060206132348582860161313c565b9150509250929050565b600067ffffffffffffffff82111561325957613258612fb1565b5b61326282612de6565b9050602081019050919050565b600061328261327d8461323e565b613011565b90508281526020810184848401111561329e5761329d612fac565b5b6132a984828561305d565b509392505050565b600082601f8301126132c6576132c5612fa7565b5b81356132d684826020860161326f565b91505092915050565b600080600080608085870312156132f9576132f8612cd2565b5b600061330787828801612f28565b945050602061331887828801612f28565b935050604061332987828801612e73565b925050606085013567ffffffffffffffff81111561334a57613349612cd7565b5b613356878288016132b1565b91505092959194509250565b6000806040838503121561337957613378612cd2565b5b600061338785828601612f28565b925050602061339885828601612f28565b9150509250929050565b600080604083850312156133b9576133b8612cd2565b5b60006133c785828601612e73565b92505060206133d885828601612f28565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061342957607f821691505b6020821081141561343d5761343c6133e2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613479602083612da2565b915061348482613443565b602082019050919050565b600060208201905081810360008301526134a88161346c565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006134e5601f83612da2565b91506134f0826134af565b602082019050919050565b60006020820190508181036000830152613514816134d8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061355582612e52565b915061356083612e52565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135995761359861351b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135de82612e52565b91506135e983612e52565b9250826135f9576135f86135a4565b5b828204905092915050565b600081905092915050565b50565b600061361f600083613604565b915061362a8261360f565b600082019050919050565b600061364082613612565b9150819050919050565b7f4d696e74696e67207068617365206e6f7420737461727465642e000000000000600082015250565b6000613680601a83612da2565b915061368b8261364a565b602082019050919050565b600060208201905081810360008301526136af81613673565b9050919050565b60006136c182612e52565b91506136cc83612e52565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137015761370061351b565b5b828201905092915050565b7f416c6c20434e52206d696e7465642e0000000000000000000000000000000000600082015250565b6000613742600f83612da2565b915061374d8261370c565b602082019050919050565b6000602082019050818103600083015261377181613735565b9050919050565b7f3230206d6178206d696e7473207065722074786e2e0000000000000000000000600082015250565b60006137ae601583612da2565b91506137b982613778565b602082019050919050565b600060208201905081810360008301526137dd816137a1565b9050919050565b7f43616c6c696e672066726f6d206f7468657220636f6e7472616374206973206e60008201527f6f7420616c6c6f7765642e000000000000000000000000000000000000000000602082015250565b6000613840602b83612da2565b915061384b826137e4565b604082019050919050565b6000602082019050818103600083015261386f81613833565b9050919050565b7f496e76616c6964206d696e7420616d6f756e74206f72206d696e746564206d6160008201527f7820616d6f756e7420616c72656164792e000000000000000000000000000000602082015250565b60006138d2603183612da2565b91506138dd82613876565b604082019050919050565b60006020820190508181036000830152613901816138c5565b9050919050565b600061391382612e52565b915061391e83612e52565b9250828210156139315761393061351b565b5b828203905092915050565b7f496e73756666696369656e74206f7220696e636f72726563742066756e64732e600082015250565b6000613972602083612da2565b915061397d8261393c565b602082019050919050565b600060208201905081810360008301526139a181613965565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a04602f83612da2565b9150613a0f826139a8565b604082019050919050565b60006020820190508181036000830152613a33816139f7565b9050919050565b600081905092915050565b6000613a5082612d97565b613a5a8185613a3a565b9350613a6a818560208601612db3565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613a9881613411565b613aa28186613a3a565b94506001821660008114613abd5760018114613ace57613b01565b60ff19831686528186019350613b01565b613ad785613a76565b60005b83811015613af957815481890152600182019150602081019050613ada565b838801955050505b50505092915050565b6000613b168286613a45565b9150613b228285613a45565b9150613b2e8284613a8b565b9150819050949350505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613b71601483612da2565b9150613b7c82613b3b565b602082019050919050565b60006020820190508181036000830152613ba081613b64565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c03602683612da2565b9150613c0e82613ba7565b604082019050919050565b60006020820190508181036000830152613c3281613bf6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c6082613c39565b613c6a8185613c44565b9350613c7a818560208601612db3565b613c8381612de6565b840191505092915050565b6000608082019050613ca36000830187612ee7565b613cb06020830186612ee7565b613cbd6040830185612f7d565b8181036060830152613ccf8184613c55565b905095945050505050565b600081519050613ce981612d08565b92915050565b600060208284031215613d0557613d04612cd2565b5b6000613d1384828501613cda565b91505092915050565b6000613d2782612e52565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d5a57613d5961351b565b5b600182019050919050565b6000613d7082612e52565b9150613d7b83612e52565b925082613d8b57613d8a6135a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122038e6db64cf91ee2db4629b4b25af82d532a7d400647a38536621a7daed65d09164736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d436f7073202620526f62626572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003434e520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b697066733a2f2f6e696c2f000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): Cops & Robber
Arg [1] : _tokenSymbol (string): CNR
Arg [2] : _hiddenMetadataUri (string): ipfs://nil/
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 436f7073202620526f6262657200000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 434e520000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [8] : 697066733a2f2f6e696c2f000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46618:4163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13055:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18068:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20136:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49251:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19596:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46962:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46814:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49867:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49973:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12109:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46890:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21022:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46928:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50056:499;;;;;;;;;;;;;:::i;:::-;;21263:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49171:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49623:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47014:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46738:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47046:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46705:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17857:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13734:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45726:103;;;;;;;;;;;;;:::i;:::-;;49761:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45075:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49367:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18237:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48238:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20412:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46776:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21519:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48720:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46853:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50561:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49535:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20791:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48406:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45984:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13055:615;13140:4;13455:10;13440:25;;:11;:25;;;;:102;;;;13532:10;13517:25;;:11;:25;;;;13440:102;:179;;;;13609:10;13594:25;;:11;:25;;;;13440:179;13420:199;;13055:615;;;:::o;18068:100::-;18122:13;18155:5;18148:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18068:100;:::o;20136:204::-;20204:7;20229:16;20237:7;20229;:16::i;:::-;20224:64;;20254:34;;;;;;;;;;;;;;20224:64;20308:15;:24;20324:7;20308:24;;;;;;;;;;;;;;;;;;;;;20301:31;;20136:204;;;:::o;49251:110::-;45306:12;:10;:12::i;:::-;45295:23;;:7;:5;:7::i;:::-;:23;;;45287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49341:14:::1;49325:13;:30;;;;49251:110:::0;:::o;19596:474::-;19669:13;19701:27;19720:7;19701:18;:27::i;:::-;19669:61;;19751:5;19745:11;;:2;:11;;;19741:48;;;19765:24;;;;;;;;;;;;;;19741:48;19829:5;19806:28;;:19;:17;:19::i;:::-;:28;;;19802:175;;19854:44;19871:5;19878:19;:17;:19::i;:::-;19854:16;:44::i;:::-;19849:128;;19926:35;;;;;;;;;;;;;;19849:128;19802:175;20016:2;19989:15;:24;20005:7;19989:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20054:7;20050:2;20034:28;;20043:5;20034:28;;;;;;;;;;;;19658:412;19596:474;;:::o;46962:45::-;;;;:::o;46814:34::-;;;;:::o;49867:100::-;45306:12;:10;:12::i;:::-;45295:23;;:7;:5;:7::i;:::-;:23;;;45287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49951:10:::1;49939:9;:22;;;;;;;;;;;;:::i;:::-;;49867:100:::0;:::o;49973:77::-;45306:12;:10;:12::i;:::-;45295:23;;:7;:5;:7::i;:::-;:23;;;45287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50038:6:::1;50029;;:15;;;;;;;;;;;;;;;;;;49973:77:::0;:::o;12109:315::-;12162:7;12390:15;:13;:15::i;:::-;12375:12;;12359:13;;:28;:46;12352:53;;12109:315;:::o;46890:33::-;;;;:::o;21022:170::-;21156:28;21166:4;21172:2;21176:7;21156:9;:28::i;:::-;21022:170;;;:::o;46928:29::-;;;;:::o;50056:499::-;45306:12;:10;:12::i;:::-;45295:23;;:7;:5;:7::i;:::-;:23;;;45287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42218:1:::1;42816:7;;:19;;42808:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42218:1;42949:7;:18;;;;50113:12:::2;50159:5;50152:4;50128:21;:28;;;;:::i;:::-;:36;;;;:::i;:::-;50113:51;;50174:10;50198:42;50190:56;;50254:4;50190:73;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50173:90;;;50278:5;50270:14;;;::::0;::::2;;50294:10;50318:42;50310:56;;50374:4;50310:73;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50293:90;;;50398:5;50390:14;;;::::0;::::2;;50414;50442:42;50434:56;;50498:21;50434:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50413:111;;;50539:9;50531:18;;;::::0;::::2;;50106:449;;;;42174:1:::1;43128:7;:22;;;;50056:499::o:0;21263:185::-;21401:39;21418:4;21424:2;21428:7;21401:39;;;;;;;;;;;;:16;:39::i;:::-;21263:185;;;:::o;49171:74::-;45306:12;:10;:12::i;:::-;45295:23;;:7;:5;:7::i;:::-;:23;;;45287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49234:5:::1;49227:4;:12;;;;49171:74:::0;:::o;49623:132::-;45306:12;:10;:12::i;:::-;45295:23;;:7;:5;:7::i;:::-;:23;;;45287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49731:18:::1;49711:17;:38;;;;;;;;;;;;:::i;:::-;;49623:132:::0;:::o;47014:27::-;;;;;;;;;;;;;:::o;46738:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47046:25::-;;;;;;;;;;;;;:::o;46705:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17857:144::-;17921:7;17964:27;17983:7;17964:18;:27::i;:::-;17941:52;;17857:144;;;:::o;13734:224::-;13798:7;13839:1;13822:19;;:5;:19;;;13818:60;;;13850:28;;;;;;;;;;;;;;13818:60;9073:13;13896:18;:25;13915:5;13896:25;;;;;;;;;;;;;;;;:54;13889:61;;13734:224;;;:::o;45726:103::-;45306:12;:10;:12::i;:::-;45295:23;;:7;:5;:7::i;:::-;:23;;;45287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45791:30:::1;45818:1;45791:18;:30::i;:::-;45726:103::o:0;49761:100::-;45306:12;:10;:12::i;:::-;45295:23;;:7;:5;:7::i;:::-;:23;;;45287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49845:10:::1;49833:9;:22;;;;;;;;;;;;:::i;:::-;;49761:100:::0;:::o;45075:87::-;45121:7;45148:6;;;;;;;;;;;45141:13;;45075:87;:::o;49367:162::-;45306:12;:10;:12::i;:::-;45295:23;;:7;:5;:7::i;:::-;:23;;;45287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49496:27:::1;49467:26;:56;;;;49367:162:::0;:::o;18237:104::-;18293:13;18326:7;18319:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18237:104;:::o;48238:160::-;48303:11;47352:6;;;;;;;;;;;47351:7;47343:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;47435:9;;47420:11;47404:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;47396:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47493:1;47479:11;:15;:43;;;;;47513:9;;47498:11;:24;;47479:43;47471:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;47576:10;47563:23;;:9;:23;;;47555:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;47671:1;47657:11;:15;:74;;;;;47718:13;;47703:11;47676:24;47689:10;47676:12;:24::i;:::-;:38;;;;:::i;:::-;:55;;47657:74;47641:158;;;;;;;;;;;;:::i;:::-;;;;;;;;;48336:11:::1;47876:22;47946:26;;47919:24;47932:10;47919:12;:24::i;:::-;:53;47915:199;;;47983:21;48036:24;48049:10;48036:12;:24::i;:::-;48007:26;;:53;;;;:::i;:::-;47983:77;;48093:13;48086:4;;:20;;;;:::i;:::-;48069:37;;47974:140;47915:199;48167:14;48153:11;48146:4;;:18;;;;:::i;:::-;:35;;;;:::i;:::-;48133:9;:48;;48125:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;48356:36:::2;48366:12;:10;:12::i;:::-;48380:11;48356:9;:36::i;:::-;47869:363:::1;47806:1;48238:160:::0;;:::o;20412:308::-;20523:19;:17;:19::i;:::-;20511:31;;:8;:31;;;20507:61;;;20551:17;;;;;;;;;;;;;;20507:61;20633:8;20581:18;:39;20600:19;:17;:19::i;:::-;20581:39;;;;;;;;;;;;;;;:49;20621:8;20581:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20693:8;20657:55;;20672:19;:17;:19::i;:::-;20657:55;;;20703:8;20657:55;;;;;;:::i;:::-;;;;;;;;20412:308;;:::o;46776:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21519:396::-;21686:28;21696:4;21702:2;21706:7;21686:9;:28::i;:::-;21747:1;21729:2;:14;;;:19;21725:183;;21768:56;21799:4;21805:2;21809:7;21818:5;21768:30;:56::i;:::-;21763:145;;21852:40;;;;;;;;;;;;;;21763:145;21725:183;21519:396;;;;:::o;48720:445::-;48794:13;48824:17;48832:8;48824:7;:17::i;:::-;48816:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;48918:5;48906:17;;:8;;;;;;;;;;;:17;;;48902:64;;;48941:17;48934:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48902:64;48974:28;49005:10;:8;:10::i;:::-;48974:41;;49060:1;49035:14;49029:28;:32;:130;;;;;;;;;;;;;;;;;49097:14;49113:19;:8;:17;:19::i;:::-;49134:9;49080:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49029:130;49022:137;;;48720:445;;;;:::o;46853:32::-;;;;:::o;50561:107::-;50619:7;50642:20;50656:5;50642:13;:20::i;:::-;50635:27;;50561:107;;;:::o;49535:81::-;45306:12;:10;:12::i;:::-;45295:23;;:7;:5;:7::i;:::-;:23;;;45287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49604:6:::1;49593:8;;:17;;;;;;;;;;;;;;;;;;49535:81:::0;:::o;20791:164::-;20888:4;20912:18;:25;20931:5;20912:25;;;;;;;;;;;;;;;:35;20938:8;20912:35;;;;;;;;;;;;;;;;;;;;;;;;;20905:42;;20791:164;;;;:::o;48406:207::-;45306:12;:10;:12::i;:::-;45295:23;;:7;:5;:7::i;:::-;:23;;;45287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48533:9:::1;;48518:11;48502:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48494:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48574:33;48584:9;48595:11;48574:9;:33::i;:::-;48406:207:::0;;:::o;45984:201::-;45306:12;:10;:12::i;:::-;45295:23;;:7;:5;:7::i;:::-;:23;;;45287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46093:1:::1;46073:22;;:8;:22;;;;46065:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46149:28;46168:8;46149:18;:28::i;:::-;45984:201:::0;:::o;22170:273::-;22227:4;22283:7;22264:15;:13;:15::i;:::-;:26;;:66;;;;;22317:13;;22307:7;:23;22264:66;:152;;;;;22415:1;9843:8;22368:17;:26;22386:7;22368:26;;;;;;;;;;;;:43;:48;22264:152;22244:172;;22170:273;;;:::o;43822:98::-;43875:7;43902:10;43895:17;;43822:98;:::o;15372:1129::-;15439:7;15459:12;15474:7;15459:22;;15542:4;15523:15;:13;:15::i;:::-;:23;15519:915;;15576:13;;15569:4;:20;15565:869;;;15614:14;15631:17;:23;15649:4;15631:23;;;;;;;;;;;;15614:40;;15747:1;9843:8;15720:6;:23;:28;15716:699;;;16239:113;16256:1;16246:6;:11;16239:113;;;16299:17;:25;16317:6;;;;;;;16299:25;;;;;;;;;;;;16290:34;;16239:113;;;16385:6;16378:13;;;;;;15716:699;15591:843;15565:869;15519:915;16462:31;;;;;;;;;;;;;;15372:1129;;;;:::o;36152:105::-;36212:7;36239:10;36232:17;;36152:105;:::o;48619:95::-;48684:7;48707:1;48700:8;;48619:95;:::o;27409:2515::-;27524:27;27554;27573:7;27554:18;:27::i;:::-;27524:57;;27639:4;27598:45;;27614:19;27598:45;;;27594:86;;27652:28;;;;;;;;;;;;;;27594:86;27693:22;27742:4;27719:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27763:43;27780:4;27786:19;:17;:19::i;:::-;27763:16;:43::i;:::-;27719:87;:147;;;;27847:19;:17;:19::i;:::-;27823:43;;:20;27835:7;27823:11;:20::i;:::-;:43;;;27719:147;27693:174;;27885:17;27880:66;;27911:35;;;;;;;;;;;;;;27880:66;27975:1;27961:16;;:2;:16;;;27957:52;;;27986:23;;;;;;;;;;;;;;27957:52;28022:43;28044:4;28050:2;28054:7;28063:1;28022:21;:43::i;:::-;28138:15;:24;28154:7;28138:24;;;;;;;;;;;;28131:31;;;;;;;;;;;28530:18;:24;28549:4;28530:24;;;;;;;;;;;;;;;;28528:26;;;;;;;;;;;;28599:18;:22;28618:2;28599:22;;;;;;;;;;;;;;;;28597:24;;;;;;;;;;;10125:8;9727:3;28980:15;:41;;28938:21;28956:2;28938:17;:21::i;:::-;:84;:128;28892:17;:26;28910:7;28892:26;;;;;;;;;;;:174;;;;29236:1;10125:8;29186:19;:46;:51;29182:626;;;29258:19;29290:1;29280:7;:11;29258:33;;29447:1;29413:17;:30;29431:11;29413:30;;;;;;;;;;;;:35;29409:384;;;29551:13;;29536:11;:28;29532:242;;29731:19;29698:17;:30;29716:11;29698:30;;;;;;;;;;;:52;;;;29532:242;29409:384;29239:569;29182:626;29855:7;29851:2;29836:27;;29845:4;29836:27;;;;;;;;;;;;29874:42;29895:4;29901:2;29905:7;29914:1;29874:20;:42::i;:::-;27513:2411;;27409:2515;;;:::o;46345:191::-;46419:16;46438:6;;;;;;;;;;;46419:25;;46464:8;46455:6;;:17;;;;;;;;;;;;;;;;;;46519:8;46488:40;;46509:8;46488:40;;;;;;;;;;;;46408:128;46345:191;:::o;22527:104::-;22596:27;22606:2;22610:8;22596:27;;;;;;;;;;;;:9;:27::i;:::-;22527:104;;:::o;33621:716::-;33784:4;33830:2;33805:45;;;33851:19;:17;:19::i;:::-;33872:4;33878:7;33887:5;33805:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33801:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34105:1;34088:6;:13;:18;34084:235;;;34134:40;;;;;;;;;;;;;;34084:235;34277:6;34271:13;34262:6;34258:2;34254:15;34247:38;33801:529;33974:54;;;33964:64;;;:6;:64;;;;33957:71;;;33621:716;;;;;;:::o;50674:104::-;50734:13;50763:9;50756:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50674:104;:::o;38672:723::-;38728:13;38958:1;38949:5;:10;38945:53;;;38976:10;;;;;;;;;;;;;;;;;;;;;38945:53;39008:12;39023:5;39008:20;;39039:14;39064:78;39079:1;39071:4;:9;39064:78;;39097:8;;;;;:::i;:::-;;;;39128:2;39120:10;;;;;:::i;:::-;;;39064:78;;;39152:19;39184:6;39174:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39152:39;;39202:154;39218:1;39209:5;:10;39202:154;;39246:1;39236:11;;;;;:::i;:::-;;;39313:2;39305:5;:10;;;;:::i;:::-;39292:2;:24;;;;:::i;:::-;39279:39;;39262:6;39269;39262:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39342:2;39333:11;;;;;:::i;:::-;;;39202:154;;;39380:6;39366:21;;;;;38672:723;;;;:::o;14040:176::-;14101:7;9073:13;9210:2;14129:18;:25;14148:5;14129:25;;;;;;;;;;;;;;;;:49;;14128:80;14121:87;;14040:176;;;:::o;34985:159::-;;;;;:::o;19157:148::-;19221:14;19282:5;19272:15;;19157:148;;;:::o;35803:158::-;;;;;:::o;23004:2236::-;23127:20;23150:13;;23127:36;;23192:1;23178:16;;:2;:16;;;23174:48;;;23203:19;;;;;;;;;;;;;;23174:48;23249:1;23237:8;:13;23233:44;;;23259:18;;;;;;;;;;;;;;23233:44;23290:61;23320:1;23324:2;23328:12;23342:8;23290:21;:61::i;:::-;23894:1;9210:2;23865:1;:25;;23864:31;23852:8;:44;23826:18;:22;23845:2;23826:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;9990:3;24295:29;24322:1;24310:8;:13;24295:14;:29::i;:::-;:56;;9727:3;24232:15;:41;;24190:21;24208:2;24190:17;:21::i;:::-;:84;:162;24139:17;:31;24157:12;24139:31;;;;;;;;;;;:213;;;;24369:20;24392:12;24369:35;;24419:11;24448:8;24433:12;:23;24419:37;;24495:1;24477:2;:14;;;:19;24473:635;;24517:313;24573:12;24569:2;24548:38;;24565:1;24548:38;;;;;;;;;;;;24614:69;24653:1;24657:2;24661:14;;;;;;24677:5;24614:30;:69::i;:::-;24609:174;;24719:40;;;;;;;;;;;;;;24609:174;24825:3;24810:12;:18;24517:313;;24911:12;24894:13;;:29;24890:43;;24925:8;;;24890:43;24473:635;;;24974:119;25030:14;;;;;;25026:2;25005:40;;25022:1;25005:40;;;;;;;;;;;;25088:3;25073:12;:18;24974:119;;24473:635;25138:12;25122:13;:28;;;;23603:1559;;25172:60;25201:1;25205:2;25209:12;25223:8;25172:20;:60::i;:::-;23116:2124;23004:2236;;;:::o;19392:142::-;19450:14;19511:5;19501:15;;19392:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:182::-;13582:34;13578:1;13570:6;13566:14;13559:58;13442:182;:::o;13630:366::-;13772:3;13793:67;13857:2;13852:3;13793:67;:::i;:::-;13786:74;;13869:93;13958:3;13869:93;:::i;:::-;13987:2;13982:3;13978:12;13971:19;;13630:366;;;:::o;14002:419::-;14168:4;14206:2;14195:9;14191:18;14183:26;;14255:9;14249:4;14245:20;14241:1;14230:9;14226:17;14219:47;14283:131;14409:4;14283:131;:::i;:::-;14275:139;;14002:419;;;:::o;14427:181::-;14567:33;14563:1;14555:6;14551:14;14544:57;14427:181;:::o;14614:366::-;14756:3;14777:67;14841:2;14836:3;14777:67;:::i;:::-;14770:74;;14853:93;14942:3;14853:93;:::i;:::-;14971:2;14966:3;14962:12;14955:19;;14614:366;;;:::o;14986:419::-;15152:4;15190:2;15179:9;15175:18;15167:26;;15239:9;15233:4;15229:20;15225:1;15214:9;15210:17;15203:47;15267:131;15393:4;15267:131;:::i;:::-;15259:139;;14986:419;;;:::o;15411:180::-;15459:77;15456:1;15449:88;15556:4;15553:1;15546:15;15580:4;15577:1;15570:15;15597:348;15637:7;15660:20;15678:1;15660:20;:::i;:::-;15655:25;;15694:20;15712:1;15694:20;:::i;:::-;15689:25;;15882:1;15814:66;15810:74;15807:1;15804:81;15799:1;15792:9;15785:17;15781:105;15778:131;;;15889:18;;:::i;:::-;15778:131;15937:1;15934;15930:9;15919:20;;15597:348;;;;:::o;15951:180::-;15999:77;15996:1;15989:88;16096:4;16093:1;16086:15;16120:4;16117:1;16110:15;16137:185;16177:1;16194:20;16212:1;16194:20;:::i;:::-;16189:25;;16228:20;16246:1;16228:20;:::i;:::-;16223:25;;16267:1;16257:35;;16272:18;;:::i;:::-;16257:35;16314:1;16311;16307:9;16302:14;;16137:185;;;;:::o;16328:147::-;16429:11;16466:3;16451:18;;16328:147;;;;:::o;16481:114::-;;:::o;16601:398::-;16760:3;16781:83;16862:1;16857:3;16781:83;:::i;:::-;16774:90;;16873:93;16962:3;16873:93;:::i;:::-;16991:1;16986:3;16982:11;16975:18;;16601:398;;;:::o;17005:379::-;17189:3;17211:147;17354:3;17211:147;:::i;:::-;17204:154;;17375:3;17368:10;;17005:379;;;:::o;17390:176::-;17530:28;17526:1;17518:6;17514:14;17507:52;17390:176;:::o;17572:366::-;17714:3;17735:67;17799:2;17794:3;17735:67;:::i;:::-;17728:74;;17811:93;17900:3;17811:93;:::i;:::-;17929:2;17924:3;17920:12;17913:19;;17572:366;;;:::o;17944:419::-;18110:4;18148:2;18137:9;18133:18;18125:26;;18197:9;18191:4;18187:20;18183:1;18172:9;18168:17;18161:47;18225:131;18351:4;18225:131;:::i;:::-;18217:139;;17944:419;;;:::o;18369:305::-;18409:3;18428:20;18446:1;18428:20;:::i;:::-;18423:25;;18462:20;18480:1;18462:20;:::i;:::-;18457:25;;18616:1;18548:66;18544:74;18541:1;18538:81;18535:107;;;18622:18;;:::i;:::-;18535:107;18666:1;18663;18659:9;18652:16;;18369:305;;;;:::o;18680:165::-;18820:17;18816:1;18808:6;18804:14;18797:41;18680:165;:::o;18851:366::-;18993:3;19014:67;19078:2;19073:3;19014:67;:::i;:::-;19007:74;;19090:93;19179:3;19090:93;:::i;:::-;19208:2;19203:3;19199:12;19192:19;;18851:366;;;:::o;19223:419::-;19389:4;19427:2;19416:9;19412:18;19404:26;;19476:9;19470:4;19466:20;19462:1;19451:9;19447:17;19440:47;19504:131;19630:4;19504:131;:::i;:::-;19496:139;;19223:419;;;:::o;19648:171::-;19788:23;19784:1;19776:6;19772:14;19765:47;19648:171;:::o;19825:366::-;19967:3;19988:67;20052:2;20047:3;19988:67;:::i;:::-;19981:74;;20064:93;20153:3;20064:93;:::i;:::-;20182:2;20177:3;20173:12;20166:19;;19825:366;;;:::o;20197:419::-;20363:4;20401:2;20390:9;20386:18;20378:26;;20450:9;20444:4;20440:20;20436:1;20425:9;20421:17;20414:47;20478:131;20604:4;20478:131;:::i;:::-;20470:139;;20197:419;;;:::o;20622:230::-;20762:34;20758:1;20750:6;20746:14;20739:58;20831:13;20826:2;20818:6;20814:15;20807:38;20622:230;:::o;20858:366::-;21000:3;21021:67;21085:2;21080:3;21021:67;:::i;:::-;21014:74;;21097:93;21186:3;21097:93;:::i;:::-;21215:2;21210:3;21206:12;21199:19;;20858:366;;;:::o;21230:419::-;21396:4;21434:2;21423:9;21419:18;21411:26;;21483:9;21477:4;21473:20;21469:1;21458:9;21454:17;21447:47;21511:131;21637:4;21511:131;:::i;:::-;21503:139;;21230:419;;;:::o;21655:236::-;21795:34;21791:1;21783:6;21779:14;21772:58;21864:19;21859:2;21851:6;21847:15;21840:44;21655:236;:::o;21897:366::-;22039:3;22060:67;22124:2;22119:3;22060:67;:::i;:::-;22053:74;;22136:93;22225:3;22136:93;:::i;:::-;22254:2;22249:3;22245:12;22238:19;;21897:366;;;:::o;22269:419::-;22435:4;22473:2;22462:9;22458:18;22450:26;;22522:9;22516:4;22512:20;22508:1;22497:9;22493:17;22486:47;22550:131;22676:4;22550:131;:::i;:::-;22542:139;;22269:419;;;:::o;22694:191::-;22734:4;22754:20;22772:1;22754:20;:::i;:::-;22749:25;;22788:20;22806:1;22788:20;:::i;:::-;22783:25;;22827:1;22824;22821:8;22818:34;;;22832:18;;:::i;:::-;22818:34;22877:1;22874;22870:9;22862:17;;22694:191;;;;:::o;22891:182::-;23031:34;23027:1;23019:6;23015:14;23008:58;22891:182;:::o;23079:366::-;23221:3;23242:67;23306:2;23301:3;23242:67;:::i;:::-;23235:74;;23318:93;23407:3;23318:93;:::i;:::-;23436:2;23431:3;23427:12;23420:19;;23079:366;;;:::o;23451:419::-;23617:4;23655:2;23644:9;23640:18;23632:26;;23704:9;23698:4;23694:20;23690:1;23679:9;23675:17;23668:47;23732:131;23858:4;23732:131;:::i;:::-;23724:139;;23451:419;;;:::o;23876:234::-;24016:34;24012:1;24004:6;24000:14;23993:58;24085:17;24080:2;24072:6;24068:15;24061:42;23876:234;:::o;24116:366::-;24258:3;24279:67;24343:2;24338:3;24279:67;:::i;:::-;24272:74;;24355:93;24444:3;24355:93;:::i;:::-;24473:2;24468:3;24464:12;24457:19;;24116:366;;;:::o;24488:419::-;24654:4;24692:2;24681:9;24677:18;24669:26;;24741:9;24735:4;24731:20;24727:1;24716:9;24712:17;24705:47;24769:131;24895:4;24769:131;:::i;:::-;24761:139;;24488:419;;;:::o;24913:148::-;25015:11;25052:3;25037:18;;24913:148;;;;:::o;25067:377::-;25173:3;25201:39;25234:5;25201:39;:::i;:::-;25256:89;25338:6;25333:3;25256:89;:::i;:::-;25249:96;;25354:52;25399:6;25394:3;25387:4;25380:5;25376:16;25354:52;:::i;:::-;25431:6;25426:3;25422:16;25415:23;;25177:267;25067:377;;;;:::o;25450:141::-;25499:4;25522:3;25514:11;;25545:3;25542:1;25535:14;25579:4;25576:1;25566:18;25558:26;;25450:141;;;:::o;25621:845::-;25724:3;25761:5;25755:12;25790:36;25816:9;25790:36;:::i;:::-;25842:89;25924:6;25919:3;25842:89;:::i;:::-;25835:96;;25962:1;25951:9;25947:17;25978:1;25973:137;;;;26124:1;26119:341;;;;25940:520;;25973:137;26057:4;26053:9;26042;26038:25;26033:3;26026:38;26093:6;26088:3;26084:16;26077:23;;25973:137;;26119:341;26186:38;26218:5;26186:38;:::i;:::-;26246:1;26260:154;26274:6;26271:1;26268:13;26260:154;;;26348:7;26342:14;26338:1;26333:3;26329:11;26322:35;26398:1;26389:7;26385:15;26374:26;;26296:4;26293:1;26289:12;26284:17;;26260:154;;;26443:6;26438:3;26434:16;26427:23;;26126:334;;25940:520;;25728:738;;25621:845;;;;:::o;26472:589::-;26697:3;26719:95;26810:3;26801:6;26719:95;:::i;:::-;26712:102;;26831:95;26922:3;26913:6;26831:95;:::i;:::-;26824:102;;26943:92;27031:3;27022:6;26943:92;:::i;:::-;26936:99;;27052:3;27045:10;;26472:589;;;;;;:::o;27067:170::-;27207:22;27203:1;27195:6;27191:14;27184:46;27067:170;:::o;27243:366::-;27385:3;27406:67;27470:2;27465:3;27406:67;:::i;:::-;27399:74;;27482:93;27571:3;27482:93;:::i;:::-;27600:2;27595:3;27591:12;27584:19;;27243:366;;;:::o;27615:419::-;27781:4;27819:2;27808:9;27804:18;27796:26;;27868:9;27862:4;27858:20;27854:1;27843:9;27839:17;27832:47;27896:131;28022:4;27896:131;:::i;:::-;27888:139;;27615:419;;;:::o;28040:225::-;28180:34;28176:1;28168:6;28164:14;28157:58;28249:8;28244:2;28236:6;28232:15;28225:33;28040:225;:::o;28271:366::-;28413:3;28434:67;28498:2;28493:3;28434:67;:::i;:::-;28427:74;;28510:93;28599:3;28510:93;:::i;:::-;28628:2;28623:3;28619:12;28612:19;;28271:366;;;:::o;28643:419::-;28809:4;28847:2;28836:9;28832:18;28824:26;;28896:9;28890:4;28886:20;28882:1;28871:9;28867:17;28860:47;28924:131;29050:4;28924:131;:::i;:::-;28916:139;;28643:419;;;:::o;29068:98::-;29119:6;29153:5;29147:12;29137:22;;29068:98;;;:::o;29172:168::-;29255:11;29289:6;29284:3;29277:19;29329:4;29324:3;29320:14;29305:29;;29172:168;;;;:::o;29346:360::-;29432:3;29460:38;29492:5;29460:38;:::i;:::-;29514:70;29577:6;29572:3;29514:70;:::i;:::-;29507:77;;29593:52;29638:6;29633:3;29626:4;29619:5;29615:16;29593:52;:::i;:::-;29670:29;29692:6;29670:29;:::i;:::-;29665:3;29661:39;29654:46;;29436:270;29346:360;;;;:::o;29712:640::-;29907:4;29945:3;29934:9;29930:19;29922:27;;29959:71;30027:1;30016:9;30012:17;30003:6;29959:71;:::i;:::-;30040:72;30108:2;30097:9;30093:18;30084:6;30040:72;:::i;:::-;30122;30190:2;30179:9;30175:18;30166:6;30122:72;:::i;:::-;30241:9;30235:4;30231:20;30226:2;30215:9;30211:18;30204:48;30269:76;30340:4;30331:6;30269:76;:::i;:::-;30261:84;;29712:640;;;;;;;:::o;30358:141::-;30414:5;30445:6;30439:13;30430:22;;30461:32;30487:5;30461:32;:::i;:::-;30358:141;;;;:::o;30505:349::-;30574:6;30623:2;30611:9;30602:7;30598:23;30594:32;30591:119;;;30629:79;;:::i;:::-;30591:119;30749:1;30774:63;30829:7;30820:6;30809:9;30805:22;30774:63;:::i;:::-;30764:73;;30720:127;30505:349;;;;:::o;30860:233::-;30899:3;30922:24;30940:5;30922:24;:::i;:::-;30913:33;;30968:66;30961:5;30958:77;30955:103;;;31038:18;;:::i;:::-;30955:103;31085:1;31078:5;31074:13;31067:20;;30860:233;;;:::o;31099:176::-;31131:1;31148:20;31166:1;31148:20;:::i;:::-;31143:25;;31182:20;31200:1;31182:20;:::i;:::-;31177:25;;31221:1;31211:35;;31226:18;;:::i;:::-;31211:35;31267:1;31264;31260:9;31255:14;;31099:176;;;;:::o;31281:180::-;31329:77;31326:1;31319:88;31426:4;31423:1;31416:15;31450:4;31447:1;31440:15
Swarm Source
ipfs://38e6db64cf91ee2db4629b4b25af82d532a7d400647a38536621a7daed65d091
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.