Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
192 RoP
Holders
64
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 RoPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
nftcontract
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-25 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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 make 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; } } interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable{ using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } 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); } } contract nftcontract is Ownable, ERC721A, ReentrancyGuard { uint256 public adoptionLimit = 50; using Strings for uint256; mapping(uint256 => string) private _tokenURIs; bool public publicSaleOpen = false; string private baseURI = ""; string public _extension = ""; uint256 public price = 0.05 ether; uint256 public maxSupply = 7200; address public partner_address = 0x7917bEeA24D86719017eC29fdcC35B8F4b734c94; constructor(string memory name, string memory symbol) ERC721A(name, symbol, 20, maxSupply) {} function mintNFT(uint256 _quantity) public payable { require(_quantity > 0 && _quantity <= 10, "Wrong Quantity."); require(totalSupply() + _quantity < maxSupply, "Reaching max supply"); require(msg.value == price * _quantity, "Needs to send more eth"); require(getMintedCount(msg.sender) + _quantity <= adoptionLimit, "Exceed max adoption amount"); require(publicSaleOpen, "Public Sale Not Started Yet!"); _safeMint(msg.sender, _quantity); } function sendGifts(address _reciever, uint256 _quantity) public onlyOwner { _safeMint(_reciever, _quantity); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI set of nonexistent token" ); return string(abi.encodePacked(baseURI, _tokenId.toString(), _extension)); } function updateBaseURI(string memory _newBaseURI) onlyOwner public { baseURI = _newBaseURI; } function updateExtension(string memory _temp) onlyOwner public { _extension = _temp; } function getBaseURI() external view returns(string memory) { return baseURI; } function setPrice(uint256 _price) public onlyOwner() { price = _price; } function setAdoptionlimit(uint256 _temp) public onlyOwner() { adoptionLimit = _temp; } function updatePartnerAddress(address _temp) public onlyOwner() { partner_address = _temp; } function setmaxSupply(uint256 _supply) public onlyOwner() { require(_supply > maxSupply, "Provide a valid supply i.e. greater than current supply and less than/equal to max supply"); maxSupply = _supply; } function toggleSale() public onlyOwner() { publicSaleOpen = !publicSaleOpen; } function getBalance() public view returns(uint) { return address(this).balance; } function getMintedCount(address owner) public view returns (uint256) { return _numberMinted(owner); } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(partner_address).transfer(_balance * 25 / 100); //Partner payable(msg.sender).transfer(_balance * 75 / 100); //Owner } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_extension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","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":"partner_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_reciever","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_temp","type":"uint256"}],"name":"setAdoptionlimit","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":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setmaxSupply","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_temp","type":"string"}],"name":"updateExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_temp","type":"address"}],"name":"updatePartnerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6000600181905560088190556032600a55600c805460ff1916905560e0604081905260c08290526200003591600d919062000247565b506040805160208101918290526000908190526200005691600e9162000247565b5066b1a2bc2ec50000600f55611c20601055601180546001600160a01b031916737917beea24d86719017ec29fdcc35b8f4b734c941790553480156200009b57600080fd5b5060405162002bdb38038062002bdb833981016040819052620000be91620003a4565b81816014601054620000df620000d9620001f360201b60201c565b620001f7565b600081116200014c5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001ae5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000143565b8351620001c390600290602087019062000247565b508251620001d990600390602086019062000247565b5060a0919091526080525050600160095550620004619050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000255906200040e565b90600052602060002090601f016020900481019282620002795760008555620002c4565b82601f106200029457805160ff1916838001178555620002c4565b82800160010185558215620002c4579182015b82811115620002c4578251825591602001919060010190620002a7565b50620002d2929150620002d6565b5090565b5b80821115620002d25760008155600101620002d7565b600082601f830112620002ff57600080fd5b81516001600160401b03808211156200031c576200031c6200044b565b604051601f8301601f19908116603f011681019082821181831017156200034757620003476200044b565b816040528381526020925086838588010111156200036457600080fd5b600091505b8382101562000388578582018301518183018401529082019062000369565b838211156200039a5760008385830101525b9695505050505050565b60008060408385031215620003b857600080fd5b82516001600160401b0380821115620003d057600080fd5b620003de86838701620002ed565b93506020850151915080821115620003f557600080fd5b506200040485828601620002ed565b9150509250929050565b600181811c908216806200042357607f821691505b602082108114156200044557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05161274962000492600039600081816119440152818161196e0152611e230152600050506127496000f3fe60806040526004361061023e5760003560e01c80637e6182d91161012e578063a22cb465116100ab578063d7224ba01161006f578063d7224ba014610696578063e917a28c146106ac578063e985e9c5146106c2578063f2fde38b1461070b578063f9e237991461072b57600080fd5b8063a22cb46514610600578063b46a57e414610620578063b88d4fde14610640578063c87b56dd14610660578063d5abeb011461068057600080fd5b806392642744116100f25780639264274414610582578063931688cb1461059557806395d89b41146105b557806397d6696b146105ca578063a035b1fe146105ea57600080fd5b80637e6182d9146104b6578063876f2390146104d65780638da5cb5b146104f657806391b7f5ed146105145780639231ab2a1461053457600080fd5b80633ae1dd9d116101bc5780636352211e116101805780636352211e1461043757806370a0823114610457578063714c539814610477578063715018a61461048c5780637d8966e4146104a157600080fd5b80633ae1dd9d146103ad5780633ccfd60b146103c257806342842e0e146103d757806344a71fbb146103f75780634f6ccce71461041757600080fd5b806312065fe01161020357806312065fe01461031b57806318160ddd14610338578063228025e81461034d57806323b872dd1461036d5780632f745c591461038d57600080fd5b806247c7451461024a57806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57600080fd5b3661024557005b600080fd5b34801561025657600080fd5b5061026a6102653660046122ac565b610745565b005b34801561027857600080fd5b5061028c6102873660046122d6565b610786565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b66107f3565b60405161029891906124a8565b3480156102cf57600080fd5b506102e36102de366004612359565b610885565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061026a6103163660046122ac565b610910565b34801561032757600080fd5b50475b604051908152602001610298565b34801561034457600080fd5b5060015461032a565b34801561035957600080fd5b5061026a610368366004612359565b610a28565b34801561037957600080fd5b5061026a6103883660046121b8565b610af4565b34801561039957600080fd5b5061032a6103a83660046122ac565b610aff565b3480156103b957600080fd5b506102b6610c78565b3480156103ce57600080fd5b5061026a610d06565b3480156103e357600080fd5b5061026a6103f23660046121b8565b610dc4565b34801561040357600080fd5b5061026a610412366004612163565b610ddf565b34801561042357600080fd5b5061032a610432366004612359565b610e2b565b34801561044357600080fd5b506102e3610452366004612359565b610e94565b34801561046357600080fd5b5061032a610472366004612163565b610ea6565b34801561048357600080fd5b506102b6610f37565b34801561049857600080fd5b5061026a610f46565b3480156104ad57600080fd5b5061026a610f7c565b3480156104c257600080fd5b5061026a6104d1366004612310565b610fba565b3480156104e257600080fd5b5061026a6104f1366004612359565b610ff7565b34801561050257600080fd5b506000546001600160a01b03166102e3565b34801561052057600080fd5b5061026a61052f366004612359565b611026565b34801561054057600080fd5b5061055461054f366004612359565b611055565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610298565b61026a610590366004612359565b611072565b3480156105a157600080fd5b5061026a6105b0366004612310565b611234565b3480156105c157600080fd5b506102b6611271565b3480156105d657600080fd5b5061032a6105e5366004612163565b611280565b3480156105f657600080fd5b5061032a600f5481565b34801561060c57600080fd5b5061026a61061b366004612270565b61128b565b34801561062c57600080fd5b506011546102e3906001600160a01b031681565b34801561064c57600080fd5b5061026a61065b3660046121f4565b611350565b34801561066c57600080fd5b506102b661067b366004612359565b611389565b34801561068c57600080fd5b5061032a60105481565b3480156106a257600080fd5b5061032a60085481565b3480156106b857600080fd5b5061032a600a5481565b3480156106ce57600080fd5b5061028c6106dd366004612185565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561071757600080fd5b5061026a610726366004612163565b61142c565b34801561073757600080fd5b50600c5461028c9060ff1681565b6000546001600160a01b031633146107785760405162461bcd60e51b815260040161076f906124bb565b60405180910390fd5b61078282826114c4565b5050565b60006001600160e01b031982166380ac58cd60e01b14806107b757506001600160e01b03198216635b5e139f60e01b145b806107d257506001600160e01b0319821663780e9d6360e01b145b806107ed57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108029061263b565b80601f016020809104026020016040519081016040528092919081815260200182805461082e9061263b565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610892826001541190565b6108f45760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161076f565b506000908152600660205260409020546001600160a01b031690565b600061091b82610e94565b9050806001600160a01b0316836001600160a01b0316141561098a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161076f565b336001600160a01b03821614806109a657506109a681336106dd565b610a185760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161076f565b610a238383836114de565b505050565b6000546001600160a01b03163314610a525760405162461bcd60e51b815260040161076f906124bb565b6010548111610aef5760405162461bcd60e51b815260206004820152605960248201527f50726f7669646520612076616c696420737570706c7920692e652e206772656160448201527f746572207468616e2063757272656e7420737570706c7920616e64206c65737360648201527f207468616e2f657175616c20746f206d617820737570706c7900000000000000608482015260a40161076f565b601055565b610a2383838361153a565b6000610b0a83610ea6565b8210610b635760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161076f565b6000610b6e60015490565b905060008060005b83811015610c18576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bc957805192505b876001600160a01b0316836001600160a01b03161415610c055786841415610bf7575093506107ed92505050565b83610c0181612676565b9450505b5080610c1081612676565b915050610b76565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161076f565b600e8054610c859061263b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb19061263b565b8015610cfe5780601f10610cd357610100808354040283529160200191610cfe565b820191906000526020600020905b815481529060010190602001808311610ce157829003601f168201915b505050505081565b6000546001600160a01b03163314610d305760405162461bcd60e51b815260040161076f906124bb565b60115447906001600160a01b03166108fc6064610d4e84601961259a565b610d589190612586565b6040518115909202916000818181858888f19350505050158015610d80573d6000803e3d6000fd5b50336108fc6064610d9284604b61259a565b610d9c9190612586565b6040518115909202916000818181858888f19350505050158015610782573d6000803e3d6000fd5b610a2383838360405180602001604052806000815250611350565b6000546001600160a01b03163314610e095760405162461bcd60e51b815260040161076f906124bb565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e3660015490565b8210610e905760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161076f565b5090565b6000610e9f826118c2565b5192915050565b60006001600160a01b038216610f125760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161076f565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6060600d80546108029061263b565b6000546001600160a01b03163314610f705760405162461bcd60e51b815260040161076f906124bb565b610f7a6000611a6c565b565b6000546001600160a01b03163314610fa65760405162461bcd60e51b815260040161076f906124bb565b600c805460ff19811660ff90911615179055565b6000546001600160a01b03163314610fe45760405162461bcd60e51b815260040161076f906124bb565b805161078290600e906020840190612041565b6000546001600160a01b031633146110215760405162461bcd60e51b815260040161076f906124bb565b600a55565b6000546001600160a01b031633146110505760405162461bcd60e51b815260040161076f906124bb565b600f55565b60408051808201909152600080825260208201526107ed826118c2565b6000811180156110835750600a8111155b6110c15760405162461bcd60e51b815260206004820152600f60248201526e2bb937b7339028bab0b73a34ba3c9760891b604482015260640161076f565b601054816110ce60015490565b6110d8919061256e565b1061111b5760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b604482015260640161076f565b80600f54611129919061259a565b34146111705760405162461bcd60e51b815260206004820152601660248201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b604482015260640161076f565b600a548161117d33611280565b611187919061256e565b11156111d55760405162461bcd60e51b815260206004820152601a60248201527f457863656564206d61782061646f7074696f6e20616d6f756e74000000000000604482015260640161076f565b600c5460ff166112275760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65204e6f742053746172746564205965742100000000604482015260640161076f565b61123133826114c4565b50565b6000546001600160a01b0316331461125e5760405162461bcd60e51b815260040161076f906124bb565b805161078290600d906020840190612041565b6060600380546108029061263b565b60006107ed82611abc565b6001600160a01b0382163314156112e45760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161076f565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61135b84848461153a565b61136784848484611b5a565b6113835760405162461bcd60e51b815260040161076f906124f0565b50505050565b6060611396826001541190565b6113f75760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076f565b600d61140283611c68565b600e60405160200161141693929190612438565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146114565760405162461bcd60e51b815260040161076f906124bb565b6001600160a01b0381166114bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076f565b61123181611a6c565b610782828260405180602001604052806000815250611d66565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611545826118c2565b80519091506000906001600160a01b0316336001600160a01b0316148061157c57503361157184610885565b6001600160a01b0316145b8061158e5750815161158e90336106dd565b9050806115f85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161076f565b846001600160a01b031682600001516001600160a01b03161461166c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161076f565b6001600160a01b0384166116d05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161076f565b6116e060008484600001516114de565b6001600160a01b03851660009081526005602052604081208054600192906117129084906001600160801b03166125b9565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261175e91859116612543565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556117e684600161256e565b6000818152600460205260409020549091506001600160a01b031661187857611810816001541190565b156118785760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526118e1826001541190565b6119405760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161076f565b60007f000000000000000000000000000000000000000000000000000000000000000083106119a1576119937f0000000000000000000000000000000000000000000000000000000000000000846125e1565b61199e90600161256e565b90505b825b818110611a0b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119f857949350505050565b5080611a0381612624565b9150506119a3565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161076f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b038216611b2e5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161076f565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b60006001600160a01b0384163b15611c5c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b9e90339089908890889060040161246b565b602060405180830381600087803b158015611bb857600080fd5b505af1925050508015611be8575060408051601f3d908101601f19168201909252611be5918101906122f3565b60015b611c42573d808015611c16576040519150601f19603f3d011682016040523d82523d6000602084013e611c1b565b606091505b508051611c3a5760405162461bcd60e51b815260040161076f906124f0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c60565b5060015b949350505050565b606081611c8c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cb65780611ca081612676565b9150611caf9050600a83612586565b9150611c90565b60008167ffffffffffffffff811115611cd157611cd16126e7565b6040519080825280601f01601f191660200182016040528015611cfb576020820181803683370190505b5090505b8415611c6057611d106001836125e1565b9150611d1d600a86612691565b611d2890603061256e565b60f81b818381518110611d3d57611d3d6126d1565b60200101906001600160f81b031916908160001a905350611d5f600a86612586565b9450611cff565b6001546001600160a01b038416611dc95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161076f565b611dd4816001541190565b15611e215760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161076f565b7f0000000000000000000000000000000000000000000000000000000000000000831115611e9c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161076f565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611ef8908790612543565b6001600160801b03168152602001858360200151611f169190612543565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156120365760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ffa6000888488611b5a565b6120165760405162461bcd60e51b815260040161076f906124f0565b8161202081612676565b925050808061202e90612676565b915050611fad565b5060018190556118ba565b82805461204d9061263b565b90600052602060002090601f01602090048101928261206f57600085556120b5565b82601f1061208857805160ff19168380011785556120b5565b828001600101855582156120b5579182015b828111156120b557825182559160200191906001019061209a565b50610e909291505b80821115610e9057600081556001016120bd565b600067ffffffffffffffff808411156120ec576120ec6126e7565b604051601f8501601f19908116603f01168101908282118183101715612114576121146126e7565b8160405280935085815286868601111561212d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461215e57600080fd5b919050565b60006020828403121561217557600080fd5b61217e82612147565b9392505050565b6000806040838503121561219857600080fd5b6121a183612147565b91506121af60208401612147565b90509250929050565b6000806000606084860312156121cd57600080fd5b6121d684612147565b92506121e460208501612147565b9150604084013590509250925092565b6000806000806080858703121561220a57600080fd5b61221385612147565b935061222160208601612147565b925060408501359150606085013567ffffffffffffffff81111561224457600080fd5b8501601f8101871361225557600080fd5b612264878235602084016120d1565b91505092959194509250565b6000806040838503121561228357600080fd5b61228c83612147565b9150602083013580151581146122a157600080fd5b809150509250929050565b600080604083850312156122bf57600080fd5b6122c883612147565b946020939093013593505050565b6000602082840312156122e857600080fd5b813561217e816126fd565b60006020828403121561230557600080fd5b815161217e816126fd565b60006020828403121561232257600080fd5b813567ffffffffffffffff81111561233957600080fd5b8201601f8101841361234a57600080fd5b611c60848235602084016120d1565b60006020828403121561236b57600080fd5b5035919050565b6000815180845261238a8160208601602086016125f8565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806123b857607f831692505b60208084108214156123da57634e487b7160e01b600052602260045260246000fd5b8180156123ee57600181146123ff5761242c565b60ff1986168952848901965061242c565b60008881526020902060005b868110156124245781548b82015290850190830161240b565b505084890196505b50505050505092915050565b6000612444828661239e565b84516124548183602089016125f8565b6124608183018661239e565b979650505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061249e90830184612372565b9695505050505050565b60208152600061217e6020830184612372565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612565576125656126a5565b01949350505050565b60008219821115612581576125816126a5565b500190565b600082612595576125956126bb565b500490565b60008160001904831182151516156125b4576125b46126a5565b500290565b60006001600160801b03838116908316818110156125d9576125d96126a5565b039392505050565b6000828210156125f3576125f36126a5565b500390565b60005b838110156126135781810151838201526020016125fb565b838111156113835750506000910152565b600081612633576126336126a5565b506000190190565b600181811c9082168061264f57607f821691505b6020821081141561267057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561268a5761268a6126a5565b5060010190565b6000826126a0576126a06126bb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461123157600080fdfea2646970667358221220d9a01f32c3f3ba7f2d3ff14bfd9286f1dedb9625489221c6ca78e156121f7ac064736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000175468652052657075626c6963206f6620506972617465730000000000000000000000000000000000000000000000000000000000000000000000000000000003526f500000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061023e5760003560e01c80637e6182d91161012e578063a22cb465116100ab578063d7224ba01161006f578063d7224ba014610696578063e917a28c146106ac578063e985e9c5146106c2578063f2fde38b1461070b578063f9e237991461072b57600080fd5b8063a22cb46514610600578063b46a57e414610620578063b88d4fde14610640578063c87b56dd14610660578063d5abeb011461068057600080fd5b806392642744116100f25780639264274414610582578063931688cb1461059557806395d89b41146105b557806397d6696b146105ca578063a035b1fe146105ea57600080fd5b80637e6182d9146104b6578063876f2390146104d65780638da5cb5b146104f657806391b7f5ed146105145780639231ab2a1461053457600080fd5b80633ae1dd9d116101bc5780636352211e116101805780636352211e1461043757806370a0823114610457578063714c539814610477578063715018a61461048c5780637d8966e4146104a157600080fd5b80633ae1dd9d146103ad5780633ccfd60b146103c257806342842e0e146103d757806344a71fbb146103f75780634f6ccce71461041757600080fd5b806312065fe01161020357806312065fe01461031b57806318160ddd14610338578063228025e81461034d57806323b872dd1461036d5780632f745c591461038d57600080fd5b806247c7451461024a57806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57600080fd5b3661024557005b600080fd5b34801561025657600080fd5b5061026a6102653660046122ac565b610745565b005b34801561027857600080fd5b5061028c6102873660046122d6565b610786565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b66107f3565b60405161029891906124a8565b3480156102cf57600080fd5b506102e36102de366004612359565b610885565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061026a6103163660046122ac565b610910565b34801561032757600080fd5b50475b604051908152602001610298565b34801561034457600080fd5b5060015461032a565b34801561035957600080fd5b5061026a610368366004612359565b610a28565b34801561037957600080fd5b5061026a6103883660046121b8565b610af4565b34801561039957600080fd5b5061032a6103a83660046122ac565b610aff565b3480156103b957600080fd5b506102b6610c78565b3480156103ce57600080fd5b5061026a610d06565b3480156103e357600080fd5b5061026a6103f23660046121b8565b610dc4565b34801561040357600080fd5b5061026a610412366004612163565b610ddf565b34801561042357600080fd5b5061032a610432366004612359565b610e2b565b34801561044357600080fd5b506102e3610452366004612359565b610e94565b34801561046357600080fd5b5061032a610472366004612163565b610ea6565b34801561048357600080fd5b506102b6610f37565b34801561049857600080fd5b5061026a610f46565b3480156104ad57600080fd5b5061026a610f7c565b3480156104c257600080fd5b5061026a6104d1366004612310565b610fba565b3480156104e257600080fd5b5061026a6104f1366004612359565b610ff7565b34801561050257600080fd5b506000546001600160a01b03166102e3565b34801561052057600080fd5b5061026a61052f366004612359565b611026565b34801561054057600080fd5b5061055461054f366004612359565b611055565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610298565b61026a610590366004612359565b611072565b3480156105a157600080fd5b5061026a6105b0366004612310565b611234565b3480156105c157600080fd5b506102b6611271565b3480156105d657600080fd5b5061032a6105e5366004612163565b611280565b3480156105f657600080fd5b5061032a600f5481565b34801561060c57600080fd5b5061026a61061b366004612270565b61128b565b34801561062c57600080fd5b506011546102e3906001600160a01b031681565b34801561064c57600080fd5b5061026a61065b3660046121f4565b611350565b34801561066c57600080fd5b506102b661067b366004612359565b611389565b34801561068c57600080fd5b5061032a60105481565b3480156106a257600080fd5b5061032a60085481565b3480156106b857600080fd5b5061032a600a5481565b3480156106ce57600080fd5b5061028c6106dd366004612185565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561071757600080fd5b5061026a610726366004612163565b61142c565b34801561073757600080fd5b50600c5461028c9060ff1681565b6000546001600160a01b031633146107785760405162461bcd60e51b815260040161076f906124bb565b60405180910390fd5b61078282826114c4565b5050565b60006001600160e01b031982166380ac58cd60e01b14806107b757506001600160e01b03198216635b5e139f60e01b145b806107d257506001600160e01b0319821663780e9d6360e01b145b806107ed57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108029061263b565b80601f016020809104026020016040519081016040528092919081815260200182805461082e9061263b565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610892826001541190565b6108f45760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161076f565b506000908152600660205260409020546001600160a01b031690565b600061091b82610e94565b9050806001600160a01b0316836001600160a01b0316141561098a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161076f565b336001600160a01b03821614806109a657506109a681336106dd565b610a185760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161076f565b610a238383836114de565b505050565b6000546001600160a01b03163314610a525760405162461bcd60e51b815260040161076f906124bb565b6010548111610aef5760405162461bcd60e51b815260206004820152605960248201527f50726f7669646520612076616c696420737570706c7920692e652e206772656160448201527f746572207468616e2063757272656e7420737570706c7920616e64206c65737360648201527f207468616e2f657175616c20746f206d617820737570706c7900000000000000608482015260a40161076f565b601055565b610a2383838361153a565b6000610b0a83610ea6565b8210610b635760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161076f565b6000610b6e60015490565b905060008060005b83811015610c18576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bc957805192505b876001600160a01b0316836001600160a01b03161415610c055786841415610bf7575093506107ed92505050565b83610c0181612676565b9450505b5080610c1081612676565b915050610b76565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161076f565b600e8054610c859061263b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb19061263b565b8015610cfe5780601f10610cd357610100808354040283529160200191610cfe565b820191906000526020600020905b815481529060010190602001808311610ce157829003601f168201915b505050505081565b6000546001600160a01b03163314610d305760405162461bcd60e51b815260040161076f906124bb565b60115447906001600160a01b03166108fc6064610d4e84601961259a565b610d589190612586565b6040518115909202916000818181858888f19350505050158015610d80573d6000803e3d6000fd5b50336108fc6064610d9284604b61259a565b610d9c9190612586565b6040518115909202916000818181858888f19350505050158015610782573d6000803e3d6000fd5b610a2383838360405180602001604052806000815250611350565b6000546001600160a01b03163314610e095760405162461bcd60e51b815260040161076f906124bb565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e3660015490565b8210610e905760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161076f565b5090565b6000610e9f826118c2565b5192915050565b60006001600160a01b038216610f125760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161076f565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6060600d80546108029061263b565b6000546001600160a01b03163314610f705760405162461bcd60e51b815260040161076f906124bb565b610f7a6000611a6c565b565b6000546001600160a01b03163314610fa65760405162461bcd60e51b815260040161076f906124bb565b600c805460ff19811660ff90911615179055565b6000546001600160a01b03163314610fe45760405162461bcd60e51b815260040161076f906124bb565b805161078290600e906020840190612041565b6000546001600160a01b031633146110215760405162461bcd60e51b815260040161076f906124bb565b600a55565b6000546001600160a01b031633146110505760405162461bcd60e51b815260040161076f906124bb565b600f55565b60408051808201909152600080825260208201526107ed826118c2565b6000811180156110835750600a8111155b6110c15760405162461bcd60e51b815260206004820152600f60248201526e2bb937b7339028bab0b73a34ba3c9760891b604482015260640161076f565b601054816110ce60015490565b6110d8919061256e565b1061111b5760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b604482015260640161076f565b80600f54611129919061259a565b34146111705760405162461bcd60e51b815260206004820152601660248201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b604482015260640161076f565b600a548161117d33611280565b611187919061256e565b11156111d55760405162461bcd60e51b815260206004820152601a60248201527f457863656564206d61782061646f7074696f6e20616d6f756e74000000000000604482015260640161076f565b600c5460ff166112275760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65204e6f742053746172746564205965742100000000604482015260640161076f565b61123133826114c4565b50565b6000546001600160a01b0316331461125e5760405162461bcd60e51b815260040161076f906124bb565b805161078290600d906020840190612041565b6060600380546108029061263b565b60006107ed82611abc565b6001600160a01b0382163314156112e45760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161076f565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61135b84848461153a565b61136784848484611b5a565b6113835760405162461bcd60e51b815260040161076f906124f0565b50505050565b6060611396826001541190565b6113f75760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076f565b600d61140283611c68565b600e60405160200161141693929190612438565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146114565760405162461bcd60e51b815260040161076f906124bb565b6001600160a01b0381166114bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076f565b61123181611a6c565b610782828260405180602001604052806000815250611d66565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611545826118c2565b80519091506000906001600160a01b0316336001600160a01b0316148061157c57503361157184610885565b6001600160a01b0316145b8061158e5750815161158e90336106dd565b9050806115f85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161076f565b846001600160a01b031682600001516001600160a01b03161461166c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161076f565b6001600160a01b0384166116d05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161076f565b6116e060008484600001516114de565b6001600160a01b03851660009081526005602052604081208054600192906117129084906001600160801b03166125b9565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261175e91859116612543565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556117e684600161256e565b6000818152600460205260409020549091506001600160a01b031661187857611810816001541190565b156118785760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526118e1826001541190565b6119405760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161076f565b60007f000000000000000000000000000000000000000000000000000000000000001483106119a1576119937f0000000000000000000000000000000000000000000000000000000000000014846125e1565b61199e90600161256e565b90505b825b818110611a0b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119f857949350505050565b5080611a0381612624565b9150506119a3565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161076f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b038216611b2e5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161076f565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b60006001600160a01b0384163b15611c5c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b9e90339089908890889060040161246b565b602060405180830381600087803b158015611bb857600080fd5b505af1925050508015611be8575060408051601f3d908101601f19168201909252611be5918101906122f3565b60015b611c42573d808015611c16576040519150601f19603f3d011682016040523d82523d6000602084013e611c1b565b606091505b508051611c3a5760405162461bcd60e51b815260040161076f906124f0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c60565b5060015b949350505050565b606081611c8c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cb65780611ca081612676565b9150611caf9050600a83612586565b9150611c90565b60008167ffffffffffffffff811115611cd157611cd16126e7565b6040519080825280601f01601f191660200182016040528015611cfb576020820181803683370190505b5090505b8415611c6057611d106001836125e1565b9150611d1d600a86612691565b611d2890603061256e565b60f81b818381518110611d3d57611d3d6126d1565b60200101906001600160f81b031916908160001a905350611d5f600a86612586565b9450611cff565b6001546001600160a01b038416611dc95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161076f565b611dd4816001541190565b15611e215760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161076f565b7f0000000000000000000000000000000000000000000000000000000000000014831115611e9c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161076f565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611ef8908790612543565b6001600160801b03168152602001858360200151611f169190612543565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156120365760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ffa6000888488611b5a565b6120165760405162461bcd60e51b815260040161076f906124f0565b8161202081612676565b925050808061202e90612676565b915050611fad565b5060018190556118ba565b82805461204d9061263b565b90600052602060002090601f01602090048101928261206f57600085556120b5565b82601f1061208857805160ff19168380011785556120b5565b828001600101855582156120b5579182015b828111156120b557825182559160200191906001019061209a565b50610e909291505b80821115610e9057600081556001016120bd565b600067ffffffffffffffff808411156120ec576120ec6126e7565b604051601f8501601f19908116603f01168101908282118183101715612114576121146126e7565b8160405280935085815286868601111561212d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461215e57600080fd5b919050565b60006020828403121561217557600080fd5b61217e82612147565b9392505050565b6000806040838503121561219857600080fd5b6121a183612147565b91506121af60208401612147565b90509250929050565b6000806000606084860312156121cd57600080fd5b6121d684612147565b92506121e460208501612147565b9150604084013590509250925092565b6000806000806080858703121561220a57600080fd5b61221385612147565b935061222160208601612147565b925060408501359150606085013567ffffffffffffffff81111561224457600080fd5b8501601f8101871361225557600080fd5b612264878235602084016120d1565b91505092959194509250565b6000806040838503121561228357600080fd5b61228c83612147565b9150602083013580151581146122a157600080fd5b809150509250929050565b600080604083850312156122bf57600080fd5b6122c883612147565b946020939093013593505050565b6000602082840312156122e857600080fd5b813561217e816126fd565b60006020828403121561230557600080fd5b815161217e816126fd565b60006020828403121561232257600080fd5b813567ffffffffffffffff81111561233957600080fd5b8201601f8101841361234a57600080fd5b611c60848235602084016120d1565b60006020828403121561236b57600080fd5b5035919050565b6000815180845261238a8160208601602086016125f8565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806123b857607f831692505b60208084108214156123da57634e487b7160e01b600052602260045260246000fd5b8180156123ee57600181146123ff5761242c565b60ff1986168952848901965061242c565b60008881526020902060005b868110156124245781548b82015290850190830161240b565b505084890196505b50505050505092915050565b6000612444828661239e565b84516124548183602089016125f8565b6124608183018661239e565b979650505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061249e90830184612372565b9695505050505050565b60208152600061217e6020830184612372565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612565576125656126a5565b01949350505050565b60008219821115612581576125816126a5565b500190565b600082612595576125956126bb565b500490565b60008160001904831182151516156125b4576125b46126a5565b500290565b60006001600160801b03838116908316818110156125d9576125d96126a5565b039392505050565b6000828210156125f3576125f36126a5565b500390565b60005b838110156126135781810151838201526020016125fb565b838111156113835750506000910152565b600081612633576126336126a5565b506000190190565b600181811c9082168061264f57607f821691505b6020821081141561267057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561268a5761268a6126a5565b5060010190565b6000826126a0576126a06126bb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461123157600080fdfea2646970667358221220d9a01f32c3f3ba7f2d3ff14bfd9286f1dedb9625489221c6ca78e156121f7ac064736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000175468652052657075626c6963206f6620506972617465730000000000000000000000000000000000000000000000000000000000000000000000000000000003526f500000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): The Republic of Pirates
Arg [1] : symbol (string): RoP
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [3] : 5468652052657075626c6963206f662050697261746573000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 526f500000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
36300:3180:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37411:124;;;;;;;;;;-1:-1:-1;37411:124:0;;;;;:::i;:::-;;:::i;:::-;;22049:370;;;;;;;;;;-1:-1:-1;22049:370:0;;;;;:::i;:::-;;:::i;:::-;;;6610:14:1;;6603:22;6585:41;;6573:2;6558:18;22049:370:0;;;;;;;;23775:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25300:204::-;;;;;;;;;;-1:-1:-1;25300:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5908:32:1;;;5890:51;;5878:2;5863:18;25300:204:0;5744:203:1;24863:379:0;;;;;;;;;;-1:-1:-1;24863:379:0;;;;;:::i;:::-;;:::i;38827:95::-;;;;;;;;;;-1:-1:-1;38893:21:0;38827:95;;;18098:25:1;;;18086:2;18071:18;38827:95:0;17952:177:1;20610:94:0;;;;;;;;;;-1:-1:-1;20686:12:0;;20610:94;;38491:228;;;;;;;;;;-1:-1:-1;38491:228:0;;;;;:::i;:::-;;:::i;26150:142::-;;;;;;;;;;-1:-1:-1;26150:142:0;;;;;:::i;:::-;;:::i;21241:744::-;;;;;;;;;;-1:-1:-1;21241:744:0;;;;;:::i;:::-;;:::i;36570:29::-;;;;;;;;;;;;;:::i;39047:238::-;;;;;;;;;;;;;:::i;26355:157::-;;;;;;;;;;-1:-1:-1;26355:157:0;;;;;:::i;:::-;;:::i;38377:106::-;;;;;;;;;;-1:-1:-1;38377:106:0;;;;;:::i;:::-;;:::i;20773:177::-;;;;;;;;;;-1:-1:-1;20773:177:0;;;;;:::i;:::-;;:::i;23598:118::-;;;;;;;;;;-1:-1:-1;23598:118:0;;;;;:::i;:::-;;:::i;22475:211::-;;;;;;;;;;-1:-1:-1;22475:211:0;;;;;:::i;:::-;;:::i;38079:92::-;;;;;;;;;;;;;:::i;1363:94::-;;;;;;;;;;;;;:::i;38727:92::-;;;;;;;;;;;;;:::i;37971:100::-;;;;;;;;;;-1:-1:-1;37971:100:0;;;;;:::i;:::-;;:::i;38271:::-;;;;;;;;;;-1:-1:-1;38271:100:0;;;;;:::i;:::-;;:::i;712:87::-;;;;;;;;;;-1:-1:-1;758:7:0;785:6;-1:-1:-1;;;;;785:6:0;712:87;;38179:86;;;;;;;;;;-1:-1:-1;38179:86:0;;;;;:::i;:::-;;:::i;39293:147::-;;;;;;;;;;-1:-1:-1;39293:147:0;;;;;:::i;:::-;;:::i;:::-;;;;17817:13:1;;-1:-1:-1;;;;;17813:39:1;17795:58;;17913:4;17901:17;;;17895:24;17921:18;17891:49;17869:20;;;17862:79;;;;17768:18;39293:147:0;17587:360:1;36899:504:0;;;;;;:::i;:::-;;:::i;37858:107::-;;;;;;;;;;-1:-1:-1;37858:107:0;;;;;:::i;:::-;;:::i;23930:98::-;;;;;;;;;;;;;:::i;38930:109::-;;;;;;;;;;-1:-1:-1;38930:109:0;;;;;:::i;:::-;;:::i;36608:33::-;;;;;;;;;;;;;;;;25568:274;;;;;;;;;;-1:-1:-1;25568:274:0;;;;;:::i;:::-;;:::i;36686:75::-;;;;;;;;;;-1:-1:-1;36686:75:0;;;;-1:-1:-1;;;;;36686:75:0;;;26575:311;;;;;;;;;;-1:-1:-1;26575:311:0;;;;;:::i;:::-;;:::i;37545:307::-;;;;;;;;;;-1:-1:-1;37545:307:0;;;;;:::i;:::-;;:::i;36648:31::-;;;;;;;;;;;;;;;;30990:43;;;;;;;;;;;;;;;;36365:33;;;;;;;;;;;;;;;;25905:186;;;;;;;;;;-1:-1:-1;25905:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;26050:25:0;;;26027:4;26050:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25905:186;1612:192;;;;;;;;;;-1:-1:-1;1612:192:0;;;;;:::i;:::-;;:::i;36493:34::-;;;;;;;;;;-1:-1:-1;36493:34:0;;;;;;;;37411:124;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;;;;;;;;;37496:31:::1;37506:9;37517;37496;:31::i;:::-;37411:124:::0;;:::o;22049:370::-;22176:4;-1:-1:-1;;;;;;22206:40:0;;-1:-1:-1;;;22206:40:0;;:99;;-1:-1:-1;;;;;;;22257:48:0;;-1:-1:-1;;;22257:48:0;22206:99;:160;;;-1:-1:-1;;;;;;;22316:50:0;;-1:-1:-1;;;22316:50:0;22206:160;:207;;;-1:-1:-1;;;;;;;;;;18775:40:0;;;22377:36;22192:221;22049:370;-1:-1:-1;;22049:370:0:o;23775:94::-;23829:13;23858:5;23851:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23775:94;:::o;25300:204::-;25368:7;25392:16;25400:7;27212:12;;-1:-1:-1;27202:22:0;27125:105;25392:16;25384:74;;;;-1:-1:-1;;;25384:74:0;;16972:2:1;25384:74:0;;;16954:21:1;17011:2;16991:18;;;16984:30;17050:34;17030:18;;;17023:62;-1:-1:-1;;;17101:18:1;;;17094:43;17154:19;;25384:74:0;16770:409:1;25384:74:0;-1:-1:-1;25474:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25474:24:0;;25300:204::o;24863:379::-;24932:13;24948:24;24964:7;24948:15;:24::i;:::-;24932:40;;24993:5;-1:-1:-1;;;;;24987:11:0;:2;-1:-1:-1;;;;;24987:11:0;;;24979:58;;;;-1:-1:-1;;;24979:58:0;;13502:2:1;24979:58:0;;;13484:21:1;13541:2;13521:18;;;13514:30;13580:34;13560:18;;;13553:62;-1:-1:-1;;;13631:18:1;;;13624:32;13673:19;;24979:58:0;13300:398:1;24979:58:0;175:10;-1:-1:-1;;;;;25062:21:0;;;;:62;;-1:-1:-1;25087:37:0;25104:5;175:10;25905:186;:::i;25087:37::-;25046:153;;;;-1:-1:-1;;;25046:153:0;;10709:2:1;25046:153:0;;;10691:21:1;10748:2;10728:18;;;10721:30;10787:34;10767:18;;;10760:62;10858:27;10838:18;;;10831:55;10903:19;;25046:153:0;10507:421:1;25046:153:0;25208:28;25217:2;25221:7;25230:5;25208:8;:28::i;:::-;24925:317;24863:379;;:::o;38491:228::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;38578:9:::1;;38568:7;:19;38560:121;;;::::0;-1:-1:-1;;;38560:121:0;;7466:2:1;38560:121:0::1;::::0;::::1;7448:21:1::0;7505:2;7485:18;;;7478:30;7544:34;7524:18;;;7517:62;7615:34;7595:18;;;7588:62;7687:27;7666:19;;;7659:56;7732:19;;38560:121:0::1;7264:493:1::0;38560:121:0::1;38692:9;:19:::0;38491:228::o;26150:142::-;26258:28;26268:4;26274:2;26278:7;26258:9;:28::i;21241:744::-;21350:7;21385:16;21395:5;21385:9;:16::i;:::-;21377:5;:24;21369:71;;;;-1:-1:-1;;;21369:71:0;;7063:2:1;21369:71:0;;;7045:21:1;7102:2;7082:18;;;7075:30;7141:34;7121:18;;;7114:62;-1:-1:-1;;;7192:18:1;;;7185:32;7234:19;;21369:71:0;6861:398:1;21369:71:0;21447:22;21472:13;20686:12;;;20610:94;21472:13;21447:38;;21492:19;21522:25;21572:9;21567:350;21591:14;21587:1;:18;21567:350;;;21621:31;21655:14;;;:11;:14;;;;;;;;;21621:48;;;;;;;;;-1:-1:-1;;;;;21621:48:0;;;;;-1:-1:-1;;;21621:48:0;;;;;;;;;;;;21682:28;21678:89;;21743:14;;;-1:-1:-1;21678:89:0;21800:5;-1:-1:-1;;;;;21779:26:0;:17;-1:-1:-1;;;;;21779:26:0;;21775:135;;;21837:5;21822:11;:20;21818:59;;;-1:-1:-1;21864:1:0;-1:-1:-1;21857:8:0;;-1:-1:-1;;;21857:8:0;21818:59;21887:13;;;;:::i;:::-;;;;21775:135;-1:-1:-1;21607:3:0;;;;:::i;:::-;;;;21567:350;;;-1:-1:-1;21923:56:0;;-1:-1:-1;;;21923:56:0;;15793:2:1;21923:56:0;;;15775:21:1;15832:2;15812:18;;;15805:30;15871:34;15851:18;;;15844:62;-1:-1:-1;;;15922:18:1;;;15915:44;15976:19;;21923:56:0;15591:410:1;36570:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39047:238::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;39153:15:::1;::::0;39113:21:::1;::::0;-1:-1:-1;;;;;39153:15:0::1;39145:54;39195:3;39179:13;39113:21:::0;39190:2:::1;39179:13;:::i;:::-;:19;;;;:::i;:::-;39145:54;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39228:10:0::1;39220:49;39265:3;39249:13;:8:::0;39260:2:::1;39249:13;:::i;:::-;:19;;;;:::i;:::-;39220:49;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;26355:157:::0;26467:39;26484:4;26490:2;26494:7;26467:39;;;;;;;;;;;;:16;:39::i;38377:106::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;38452:15:::1;:23:::0;;-1:-1:-1;;;;;;38452:23:0::1;-1:-1:-1::0;;;;;38452:23:0;;;::::1;::::0;;;::::1;::::0;;38377:106::o;20773:177::-;20840:7;20872:13;20686:12;;;20610:94;20872:13;20864:5;:21;20856:69;;;;-1:-1:-1;;;20856:69:0;;8782:2:1;20856:69:0;;;8764:21:1;8821:2;8801:18;;;8794:30;8860:34;8840:18;;;8833:62;-1:-1:-1;;;8911:18:1;;;8904:33;8954:19;;20856:69:0;8580:399:1;20856:69:0;-1:-1:-1;20939:5:0;20773:177::o;23598:118::-;23662:7;23685:20;23697:7;23685:11;:20::i;:::-;:25;;23598:118;-1:-1:-1;;23598:118:0:o;22475:211::-;22539:7;-1:-1:-1;;;;;22563:19:0;;22555:75;;;;-1:-1:-1;;;22555:75:0;;11135:2:1;22555:75:0;;;11117:21:1;11174:2;11154:18;;;11147:30;11213:34;11193:18;;;11186:62;-1:-1:-1;;;11264:18:1;;;11257:41;11315:19;;22555:75:0;10933:407:1;22555:75:0;-1:-1:-1;;;;;;22652:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;22652:27:0;;22475:211::o;38079:92::-;38123:13;38156:7;38149:14;;;;;:::i;1363:94::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;1428:21:::1;1446:1;1428:9;:21::i;:::-;1363:94::o:0;38727:92::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;38797:14:::1;::::0;;-1:-1:-1;;38779:32:0;::::1;38797:14;::::0;;::::1;38796:15;38779:32;::::0;;38727:92::o;37971:100::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;38045:18;;::::1;::::0;:10:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;38271:100::-:0;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;38342:13:::1;:21:::0;38271:100::o;38179:86::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;38243:5:::1;:14:::0;38179:86::o;39293:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;39414:20:0;39426:7;39414:11;:20::i;36899:504::-;36981:1;36969:9;:13;:32;;;;;36999:2;36986:9;:15;;36969:32;36961:60;;;;-1:-1:-1;;;36961:60:0;;10010:2:1;36961:60:0;;;9992:21:1;10049:2;10029:18;;;10022:30;-1:-1:-1;;;10068:18:1;;;10061:45;10123:18;;36961:60:0;9808:339:1;36961:60:0;37068:9;;37056;37040:13;20686:12;;;20610:94;37040:13;:25;;;;:::i;:::-;:37;37032:69;;;;-1:-1:-1;;;37032:69:0;;16208:2:1;37032:69:0;;;16190:21:1;16247:2;16227:18;;;16220:30;-1:-1:-1;;;16266:18:1;;;16259:49;16325:18;;37032:69:0;16006:343:1;37032:69:0;37141:9;37133:5;;:17;;;;:::i;:::-;37120:9;:30;37112:65;;;;-1:-1:-1;;;37112:65:0;;14683:2:1;37112:65:0;;;14665:21:1;14722:2;14702:18;;;14695:30;-1:-1:-1;;;14741:18:1;;;14734:52;14803:18;;37112:65:0;14481:346:1;37112:65:0;37238:13;;37225:9;37196:26;37211:10;37196:14;:26::i;:::-;:38;;;;:::i;:::-;:55;;37188:94;;;;-1:-1:-1;;;37188:94:0;;10354:2:1;37188:94:0;;;10336:21:1;10393:2;10373:18;;;10366:30;10432:28;10412:18;;;10405:56;10478:18;;37188:94:0;10152:350:1;37188:94:0;37301:14;;;;37293:55;;;;-1:-1:-1;;;37293:55:0;;15436:2:1;37293:55:0;;;15418:21:1;15475:2;15455:18;;;15448:30;15514;15494:18;;;15487:58;15562:18;;37293:55:0;15234:352:1;37293:55:0;37361:32;37371:10;37383:9;37361;:32::i;:::-;36899:504;:::o;37858:107::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;37936:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;23930:98::-:0;23986:13;24015:7;24008:14;;;;;:::i;38930:109::-;38990:7;39013:20;39027:5;39013:13;:20::i;25568:274::-;-1:-1:-1;;;;;25659:24:0;;175:10;25659:24;;25651:63;;;;-1:-1:-1;;;25651:63:0;;12728:2:1;25651:63:0;;;12710:21:1;12767:2;12747:18;;;12740:30;12806:28;12786:18;;;12779:56;12852:18;;25651:63:0;12526:350:1;25651:63:0;175:10;25723:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25723:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25723:53:0;;;;;;;;;;25788:48;;6585:41:1;;;25723:42:0;;175:10;25788:48;;6558:18:1;25788:48:0;;;;;;;25568:274;;:::o;26575:311::-;26712:28;26722:4;26728:2;26732:7;26712:9;:28::i;:::-;26763:48;26786:4;26792:2;26796:7;26805:5;26763:22;:48::i;:::-;26747:133;;;;-1:-1:-1;;;26747:133:0;;;;;;;:::i;:::-;26575:311;;;;:::o;37545:307::-;37619:13;37667:17;37675:8;27212:12;;-1:-1:-1;27202:22:0;27125:105;37667:17;37645:111;;;;-1:-1:-1;;;37645:111:0;;11954:2:1;37645:111:0;;;11936:21:1;11993:2;11973:18;;;11966:30;12032:34;12012:18;;;12005:62;-1:-1:-1;;;12083:18:1;;;12076:42;12135:19;;37645:111:0;11752:408:1;37645:111:0;37800:7;37809:19;:8;:17;:19::i;:::-;37830:10;37783:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37769:73;;37545:307;;;:::o;1612:192::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1701:22:0;::::1;1693:73;;;::::0;-1:-1:-1;;;1693:73:0;;7964:2:1;1693:73:0::1;::::0;::::1;7946:21:1::0;8003:2;7983:18;;;7976:30;8042:34;8022:18;;;8015:62;-1:-1:-1;;;8093:18:1;;;8086:36;8139:19;;1693:73:0::1;7762:402:1::0;1693:73:0::1;1777:19;1787:8;1777:9;:19::i;27236:98::-:0;27301:27;27311:2;27315:8;27301:27;;;;;;;;;;;;:9;:27::i;30812:172::-;30909:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;30909:29:0;-1:-1:-1;;;;;30909:29:0;;;;;;;;;30950:28;;30909:24;;30950:28;;;;;;;30812:172;;;:::o;29177:1529::-;29274:35;29312:20;29324:7;29312:11;:20::i;:::-;29383:18;;29274:58;;-1:-1:-1;29341:22:0;;-1:-1:-1;;;;;29367:34:0;175:10;-1:-1:-1;;;;;29367:34:0;;:81;;;-1:-1:-1;175:10:0;29412:20;29424:7;29412:11;:20::i;:::-;-1:-1:-1;;;;;29412:36:0;;29367:81;:142;;;-1:-1:-1;29476:18:0;;29459:50;;175:10;25905:186;:::i;29459:50::-;29341:169;;29535:17;29519:101;;;;-1:-1:-1;;;29519:101:0;;13083:2:1;29519:101:0;;;13065:21:1;13122:2;13102:18;;;13095:30;13161:34;13141:18;;;13134:62;-1:-1:-1;;;13212:18:1;;;13205:48;13270:19;;29519:101:0;12881:414:1;29519:101:0;29667:4;-1:-1:-1;;;;;29645:26:0;:13;:18;;;-1:-1:-1;;;;;29645:26:0;;29629:98;;;;-1:-1:-1;;;29629:98:0;;11547:2:1;29629:98:0;;;11529:21:1;11586:2;11566:18;;;11559:30;11625:34;11605:18;;;11598:62;-1:-1:-1;;;11676:18:1;;;11669:36;11722:19;;29629:98:0;11345:402:1;29629:98:0;-1:-1:-1;;;;;29742:16:0;;29734:66;;;;-1:-1:-1;;;29734:66:0;;9186:2:1;29734:66:0;;;9168:21:1;9225:2;9205:18;;;9198:30;9264:34;9244:18;;;9237:62;-1:-1:-1;;;9315:18:1;;;9308:35;9360:19;;29734:66:0;8984:401:1;29734:66:0;29909:49;29926:1;29930:7;29939:13;:18;;;29909:8;:49::i;:::-;-1:-1:-1;;;;;29967:18:0;;;;;;:12;:18;;;;;:31;;29997:1;;29967:18;:31;;29997:1;;-1:-1:-1;;;;;29967:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;29967:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;30005:16:0;;-1:-1:-1;30005:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;30005:16:0;;:29;;-1:-1:-1;;30005:29:0;;:::i;:::-;;;-1:-1:-1;;;;;30005:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30064:43:0;;;;;;;;-1:-1:-1;;;;;30064:43:0;;;;;;30090:15;30064:43;;;;;;;;;-1:-1:-1;30041:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;30041:66:0;-1:-1:-1;;;;;;30041:66:0;;;;;;;;;;;30357:11;30053:7;-1:-1:-1;30357:11:0;:::i;:::-;30420:1;30379:24;;;:11;:24;;;;;:29;30335:33;;-1:-1:-1;;;;;;30379:29:0;30375:236;;30437:20;30445:11;27212:12;;-1:-1:-1;27202:22:0;27125:105;30437:20;30433:171;;;30497:97;;;;;;;;30524:18;;-1:-1:-1;;;;;30497:97:0;;;;;;30555:28;;;;30497:97;;;;;;;;;;-1:-1:-1;30470:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;30470:124:0;-1:-1:-1;;;;;;30470:124:0;;;;;;;;;;;;30433:171;30643:7;30639:2;-1:-1:-1;;;;;30624:27:0;30633:4;-1:-1:-1;;;;;30624:27:0;;;;;;;;;;;30658:42;29267:1439;;;29177:1529;;;:::o;22938:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;23055:16:0;23063:7;27212:12;;-1:-1:-1;27202:22:0;27125:105;23055:16;23047:71;;;;-1:-1:-1;;;23047:71:0;;8371:2:1;23047:71:0;;;8353:21:1;8410:2;8390:18;;;8383:30;8449:34;8429:18;;;8422:62;-1:-1:-1;;;8500:18:1;;;8493:40;8550:19;;23047:71:0;8169:406:1;23047:71:0;23127:26;23175:12;23164:7;:23;23160:93;;23219:22;23229:12;23219:7;:22;:::i;:::-;:26;;23244:1;23219:26;:::i;:::-;23198:47;;23160:93;23281:7;23261:212;23298:18;23290:4;:26;23261:212;;23335:31;23369:17;;;:11;:17;;;;;;;;;23335:51;;;;;;;;;-1:-1:-1;;;;;23335:51:0;;;;;-1:-1:-1;;;23335:51:0;;;;;;;;;;;;23399:28;23395:71;;23447:9;22938:606;-1:-1:-1;;;;22938:606:0:o;23395:71::-;-1:-1:-1;23318:6:0;;;;:::i;:::-;;;;23261:212;;;-1:-1:-1;23481:57:0;;-1:-1:-1;;;23481:57:0;;16556:2:1;23481:57:0;;;16538:21:1;16595:2;16575:18;;;16568:30;16634:34;16614:18;;;16607:62;-1:-1:-1;;;16685:18:1;;;16678:45;16740:19;;23481:57:0;16354:411:1;1812:173:0;1868:16;1887:6;;-1:-1:-1;;;;;1904:17:0;;;-1:-1:-1;;;;;;1904:17:0;;;;;;1937:40;;1887:6;;;;;;;1937:40;;1868:16;1937:40;1857:128;1812:173;:::o;22692:240::-;22753:7;-1:-1:-1;;;;;22785:19:0;;22769:102;;;;-1:-1:-1;;;22769:102:0;;9592:2:1;22769:102:0;;;9574:21:1;9631:2;9611:18;;;9604:30;9670:34;9650:18;;;9643:62;-1:-1:-1;;;9721:18:1;;;9714:47;9778:19;;22769:102:0;9390:413:1;22769:102:0;-1:-1:-1;;;;;;22893:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;22893:32:0;;-1:-1:-1;;;;;22893:32:0;;22692:240::o;32527:690::-;32664:4;-1:-1:-1;;;;;32681:13:0;;11770:20;11818:8;32677:535;;32720:72;;-1:-1:-1;;;32720:72:0;;-1:-1:-1;;;;;32720:36:0;;;;;:72;;175:10;;32771:4;;32777:7;;32786:5;;32720:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32720:72:0;;;;;;;;-1:-1:-1;;32720:72:0;;;;;;;;;;;;:::i;:::-;;;32707:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32951:13:0;;32947:215;;32984:61;;-1:-1:-1;;;32984:61:0;;;;;;;:::i;32947:215::-;33130:6;33124:13;33115:6;33111:2;33107:15;33100:38;32707:464;-1:-1:-1;;;;;;32842:55:0;-1:-1:-1;;;32842:55:0;;-1:-1:-1;32835:62:0;;32677:535;-1:-1:-1;33200:4:0;32677:535;32527:690;;;;;;:::o;34541:723::-;34597:13;34818:10;34814:53;;-1:-1:-1;;34845:10:0;;;;;;;;;;;;-1:-1:-1;;;34845:10:0;;;;;34541:723::o;34814:53::-;34892:5;34877:12;34933:78;34940:9;;34933:78;;34966:8;;;;:::i;:::-;;-1:-1:-1;34989:10:0;;-1:-1:-1;34997:2:0;34989:10;;:::i;:::-;;;34933:78;;;35021:19;35053:6;35043:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35043:17:0;;35021:39;;35071:154;35078:10;;35071:154;;35105:11;35115:1;35105:11;;:::i;:::-;;-1:-1:-1;35174:10:0;35182:2;35174:5;:10;:::i;:::-;35161:24;;:2;:24;:::i;:::-;35148:39;;35131:6;35138;35131:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;35131:56:0;;;;;;;;-1:-1:-1;35202:11:0;35211:2;35202:11;;:::i;:::-;;;35071:154;;27673:1272;27801:12;;-1:-1:-1;;;;;27828:16:0;;27820:62;;;;-1:-1:-1;;;27820:62:0;;15034:2:1;27820:62:0;;;15016:21:1;15073:2;15053:18;;;15046:30;15112:34;15092:18;;;15085:62;-1:-1:-1;;;15163:18:1;;;15156:31;15204:19;;27820:62:0;14832:397:1;27820:62:0;28019:21;28027:12;27212;;-1:-1:-1;27202:22:0;27125:105;28019:21;28018:22;28010:64;;;;-1:-1:-1;;;28010:64:0;;14325:2:1;28010:64:0;;;14307:21:1;14364:2;14344:18;;;14337:30;14403:31;14383:18;;;14376:59;14452:18;;28010:64:0;14123:353:1;28010:64:0;28101:12;28089:8;:24;;28081:71;;;;-1:-1:-1;;;28081:71:0;;17386:2:1;28081:71:0;;;17368:21:1;17425:2;17405:18;;;17398:30;17464:34;17444:18;;;17437:62;-1:-1:-1;;;17515:18:1;;;17508:32;17557:19;;28081:71:0;17184:398:1;28081:71:0;-1:-1:-1;;;;;28264:16:0;;28231:30;28264:16;;;:12;:16;;;;;;;;;28231:49;;;;;;;;;-1:-1:-1;;;;;28231:49:0;;;;;-1:-1:-1;;;28231:49:0;;;;;;;;;;;28306:119;;;;;;;;28326:19;;28231:49;;28306:119;;;28326:39;;28356:8;;28326:39;:::i;:::-;-1:-1:-1;;;;;28306:119:0;;;;;28409:8;28374:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;28306:119:0;;;;;;-1:-1:-1;;;;;28287:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;28287:138:0;;;;;;;;;;;;28460:43;;;;;;;;;;;28486:15;28460:43;;;;;;;;28432:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;28432:71:0;-1:-1:-1;;;;;;28432:71:0;;;;;;;;;;;;;;;;;;28444:12;;28556:281;28580:8;28576:1;:12;28556:281;;;28609:38;;28634:12;;-1:-1:-1;;;;;28609:38:0;;;28626:1;;28609:38;;28626:1;;28609:38;28674:59;28705:1;28709:2;28713:12;28727:5;28674:22;:59::i;:::-;28656:150;;;;-1:-1:-1;;;28656:150:0;;;;;;;:::i;:::-;28815:14;;;;:::i;:::-;;;;28590:3;;;;;:::i;:::-;;;;28556:281;;;-1:-1:-1;28845:12:0;:27;;;28879:60;26575:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:973::-;4390:12;;4355:3;;4445:1;4465:18;;;;4518;;;;4545:61;;4599:4;4591:6;4587:17;4577:27;;4545:61;4625:2;4673;4665:6;4662:14;4642:18;4639:38;4636:161;;;4719:10;4714:3;4710:20;4707:1;4700:31;4754:4;4751:1;4744:15;4782:4;4779:1;4772:15;4636:161;4813:18;4840:104;;;;4958:1;4953:319;;;;4806:466;;4840:104;-1:-1:-1;;4873:24:1;;4861:37;;4918:16;;;;-1:-1:-1;4840:104:1;;4953:319;18207:1;18200:14;;;18244:4;18231:18;;5047:1;5061:165;5075:6;5072:1;5069:13;5061:165;;;5153:14;;5140:11;;;5133:35;5196:16;;;;5090:10;;5061:165;;;5065:3;;5255:6;5250:3;5246:16;5239:23;;4806:466;;;;;;;4305:973;;;;:::o;5283:456::-;5504:3;5532:38;5566:3;5558:6;5532:38;:::i;:::-;5599:6;5593:13;5615:52;5660:6;5656:2;5649:4;5641:6;5637:17;5615:52;:::i;:::-;5683:50;5725:6;5721:2;5717:15;5709:6;5683:50;:::i;:::-;5676:57;5283:456;-1:-1:-1;;;;;;;5283:456:1:o;5952:488::-;-1:-1:-1;;;;;6221:15:1;;;6203:34;;6273:15;;6268:2;6253:18;;6246:43;6320:2;6305:18;;6298:34;;;6368:3;6363:2;6348:18;;6341:31;;;6146:4;;6389:45;;6414:19;;6406:6;6389:45;:::i;:::-;6381:53;5952:488;-1:-1:-1;;;;;;5952:488:1:o;6637:219::-;6786:2;6775:9;6768:21;6749:4;6806:44;6846:2;6835:9;6831:18;6823:6;6806:44;:::i;12165:356::-;12367:2;12349:21;;;12386:18;;;12379:30;12445:34;12440:2;12425:18;;12418:62;12512:2;12497:18;;12165:356::o;13703:415::-;13905:2;13887:21;;;13944:2;13924:18;;;13917:30;13983:34;13978:2;13963:18;;13956:62;-1:-1:-1;;;14049:2:1;14034:18;;14027:49;14108:3;14093:19;;13703:415::o;18260:253::-;18300:3;-1:-1:-1;;;;;18389:2:1;18386:1;18382:10;18419:2;18416:1;18412:10;18450:3;18446:2;18442:12;18437:3;18434:21;18431:47;;;18458:18;;:::i;:::-;18494:13;;18260:253;-1:-1:-1;;;;18260:253:1:o;18518:128::-;18558:3;18589:1;18585:6;18582:1;18579:13;18576:39;;;18595:18;;:::i;:::-;-1:-1:-1;18631:9:1;;18518:128::o;18651:120::-;18691:1;18717;18707:35;;18722:18;;:::i;:::-;-1:-1:-1;18756:9:1;;18651:120::o;18776:168::-;18816:7;18882:1;18878;18874:6;18870:14;18867:1;18864:21;18859:1;18852:9;18845:17;18841:45;18838:71;;;18889:18;;:::i;:::-;-1:-1:-1;18929:9:1;;18776:168::o;18949:246::-;18989:4;-1:-1:-1;;;;;19102:10:1;;;;19072;;19124:12;;;19121:38;;;19139:18;;:::i;:::-;19176:13;;18949:246;-1:-1:-1;;;18949:246:1:o;19200:125::-;19240:4;19268:1;19265;19262:8;19259:34;;;19273:18;;:::i;:::-;-1:-1:-1;19310:9:1;;19200:125::o;19330:258::-;19402:1;19412:113;19426:6;19423:1;19420:13;19412:113;;;19502:11;;;19496:18;19483:11;;;19476:39;19448:2;19441:10;19412:113;;;19543:6;19540:1;19537:13;19534:48;;;-1:-1:-1;;19578:1:1;19560:16;;19553:27;19330:258::o;19593:136::-;19632:3;19660:5;19650:39;;19669:18;;:::i;:::-;-1:-1:-1;;;19705:18:1;;19593:136::o;19734:380::-;19813:1;19809:12;;;;19856;;;19877:61;;19931:4;19923:6;19919:17;19909:27;;19877:61;19984:2;19976:6;19973:14;19953:18;19950:38;19947:161;;;20030:10;20025:3;20021:20;20018:1;20011:31;20065:4;20062:1;20055:15;20093:4;20090:1;20083:15;19947:161;;19734:380;;;:::o;20119:135::-;20158:3;-1:-1:-1;;20179:17:1;;20176:43;;;20199:18;;:::i;:::-;-1:-1:-1;20246:1:1;20235:13;;20119:135::o;20259:112::-;20291:1;20317;20307:35;;20322:18;;:::i;:::-;-1:-1:-1;20356:9:1;;20259:112::o;20376:127::-;20437:10;20432:3;20428:20;20425:1;20418:31;20468:4;20465:1;20458:15;20492:4;20489:1;20482:15;20508:127;20569:10;20564:3;20560:20;20557:1;20550:31;20600:4;20597:1;20590:15;20624:4;20621:1;20614:15;20640:127;20701:10;20696:3;20692:20;20689:1;20682:31;20732:4;20729:1;20722:15;20756:4;20753:1;20746:15;20772:127;20833:10;20828:3;20824:20;20821:1;20814:31;20864:4;20861:1;20854:15;20888:4;20885:1;20878:15;20904:131;-1:-1:-1;;;;;;20978:32:1;;20968:43;;20958:71;;21025:1;21022;21015:12
Swarm Source
ipfs://d9a01f32c3f3ba7f2d3ff14bfd9286f1dedb9625489221c6ca78e156121f7ac0
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.