NFT
Art
Overview
TokenID
6293
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ShibaArmy
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contract ShibaArmy is ERC721, Ownable { using Strings for uint256; enum saleTypes {WHITELIST, PRESALE, PUBLICSALE} struct saleConfig { uint256 price; uint256 maxAvailable; uint256 maxPerWallet; uint256 maxPerDogeArmy; saleTypes saleType; } saleConfig private publicSale = saleConfig( .25 ether, 10000, 10000, 10000, saleTypes.PUBLICSALE ); saleConfig private preSale = saleConfig( .2 ether, 10000, 10000, 1, saleTypes.PRESALE ); saleConfig private whitelistSale = saleConfig( .15 ether, 2000, 10, 1, saleTypes.WHITELIST ); IERC721 immutable private DOGE_ARMY; uint256 constant public MAX_SHIBA = 10000; uint256 public totalSupply; bool public isURIFrozen; bool public revealed; mapping(uint256 => bool) public isDogeArmyMintClaimed; // presale mapping(address => uint256) public numDogeArmyHolderMintClaimed; // whitelist uint256[] public provenanceIds; string public unrevealedURI = "ipfs://QmRYAGJoQ55vykWG4uGVJUt5jCddUP3p2zChs3KXnsNQrM"; string public baseURI; event DogeArmyMintClaimed(uint256 id); event totalDogeArmyHolderMinted(address holder, uint256 numMinted); constructor(ERC721 _dogeArmy) ERC721("ShibaArmy", "SA") { DOGE_ARMY = _dogeArmy; } uint256 public tokensSold; uint256 public launchTime; bool public saleActive; bool public publicSaleStarted; event saleLaunched(uint256 launchTime); function mint(uint256 numTokensToMint, uint256[] calldata dogeArmyClaimIDs) external payable { // check that sale is active require(saleActive); require(!isSalePaused, "Sale has been paused by owner"); // determine what sale type we are currently in saleConfig memory config = getSaleConfig(); require(config.maxAvailable >= tokensSold + numTokensToMint, "Not enough available tokens to mint"); require(MAX_SHIBA >= tokensSold + numTokensToMint, "Not enough available tokens to mint"); if(config.maxPerWallet != MAX_SHIBA) { require(config.maxPerWallet >= numDogeArmyHolderMintClaimed[msg.sender] + numTokensToMint, "Wallet has already claimed maximum mints"); numDogeArmyHolderMintClaimed[msg.sender] += numTokensToMint; emit totalDogeArmyHolderMinted(msg.sender, numDogeArmyHolderMintClaimed[msg.sender]); } bool isDogeArmyMatch = false; if(config.maxPerDogeArmy != MAX_SHIBA){ isDogeArmyMatch = true; require(dogeArmyClaimIDs.length == numTokensToMint); } for (uint256 i = 0; i < numTokensToMint; i++) { if(isDogeArmyMatch){ require(!isDogeArmyMintClaimed[dogeArmyClaimIDs[i]], "DogeArmy Mint already claimed"); // has the Doge Army token already been used to claim a mint require(DOGE_ARMY.ownerOf(dogeArmyClaimIDs[i]) == msg.sender, "Caller not the owner of Doge Army Token"); isDogeArmyMintClaimed[dogeArmyClaimIDs[i]] = true; emit DogeArmyMintClaimed(dogeArmyClaimIDs[i]); } _safeMint(msg.sender, ++totalSupply); tokensSold++; } } // returns the current sale config function getSaleConfig() public view returns (saleConfig memory currentConfig) { if(publicSaleStarted) { return publicSale; } uint256 daysSinceSaleStarted = (block.timestamp - launchTime) / 60 / 60 / 24; if(daysSinceSaleStarted < 4){ // check for whitelist sale window // 500 per day of whitelist sale uint256 currentMaxAvailable = (daysSinceSaleStarted + 1) * 500; currentConfig = saleConfig( whitelistSale.price, currentMaxAvailable, whitelistSale.maxPerWallet, whitelistSale.maxPerDogeArmy, saleTypes.WHITELIST ); return currentConfig; } else if (daysSinceSaleStarted < 7){ // check for presale window return preSale; } } // Owner functions function launchSale() external onlyOwner { require(!saleActive); launchTime = block.timestamp; saleActive = true; emit saleLaunched(launchTime); } function launchPublicSale() external onlyOwner { uint256 daysSinceSaleStarted = (block.timestamp - launchTime) % (1 days); require(saleActive); require(daysSinceSaleStarted > 7); publicSaleStarted = true; } bool isSalePaused = false; event salePauseToggled(bool isSalePaused); function toggleSalePaused() external onlyOwner { isSalePaused = !isSalePaused; emit salePauseToggled(isSalePaused); } function reserve(uint256 amount, address destination) external onlyOwner { require(amount > 0, "cannot mint 0"); require(totalSupply + amount <= MAX_SHIBA, "Sold Out"); for (uint256 i = 0; i < amount; i++) { _safeMint(destination, ++totalSupply); } } function freezeURI() external onlyOwner { isURIFrozen = true; // emit PermanentURI(string ""_value"", uint256 indexed 0); } function withdraw() external onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function reveal() external onlyOwner { revealed = true; } function setUnrevealedURI(string calldata _unrevealedURI) external onlyOwner { unrevealedURI = _unrevealedURI; } function setBaseURI(string calldata _newBaseURI) external onlyOwner { require(!isURIFrozen, "URI is Frozen"); baseURI = _newBaseURI; } function addProvenance(uint256 id) external onlyOwner { provenanceIds.push(id); } // view/pure functions function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(revealed == false) { return unrevealedURI; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : ""; } function _baseURI() internal view override returns (string memory) { return baseURI; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract ERC721","name":"_dogeArmy","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"DogeArmyMintClaimed","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"launchTime","type":"uint256"}],"name":"saleLaunched","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isSalePaused","type":"bool"}],"name":"salePauseToggled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"numMinted","type":"uint256"}],"name":"totalDogeArmyHolderMinted","type":"event"},{"inputs":[],"name":"MAX_SHIBA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"addProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleConfig","outputs":[{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxAvailable","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"},{"internalType":"uint256","name":"maxPerDogeArmy","type":"uint256"},{"internalType":"enum ShibaArmy.saleTypes","name":"saleType","type":"uint8"}],"internalType":"struct ShibaArmy.saleConfig","name":"currentConfig","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isDogeArmyMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isURIFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokensToMint","type":"uint256"},{"internalType":"uint256[]","name":"dogeArmyClaimIDs","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numDogeArmyHolderMintClaimed","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"provenanceIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_unrevealedURI","type":"string"}],"name":"setUnrevealedURI","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":"toggleSalePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526040518060a001604052806703782dace9d9000081526020016127108152602001612710815260200161271081526020016002808111156200004b576200004a620005c1565b5b81525060076000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548160ff02191690836002811115620000a657620000a5620005c1565b5b021790555050506040518060a001604052806702c68af0bb1400008152602001612710815260200161271081526020016001815260200160016002811115620000f457620000f3620005c1565b5b815250600c6000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548160ff021916908360028111156200014f576200014e620005c1565b5b021790555050506040518060a00160405280670214e8348c4f000081526020016107d08152602001600a815260200160018152602001600060028111156200019c576200019b620005c1565b5b81525060116000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548160ff02191690836002811115620001f757620001f6620005c1565b5b021790555050506040518060600160405280603581526020016200522d60359139601b90805190602001906200022f9291906200044a565b506000601f60026101000a81548160ff0219169083151502179055503480156200025857600080fd5b50604051620052623803806200526283398181016040528101906200027e919062000511565b6040518060400160405280600981526020017f536869626141726d7900000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f53410000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620003029291906200044a565b5080600190805190602001906200031b9291906200044a565b5050506200033e620003326200037c60201b60201c565b6200038460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050506200063e565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000458906200058b565b90600052602060002090601f0160209004810192826200047c5760008555620004c8565b82601f106200049757805160ff1916838001178555620004c8565b82800160010185558215620004c8579182015b82811115620004c7578251825591602001919060010190620004aa565b5b509050620004d79190620004db565b5090565b5b80821115620004f6576000816000905550600101620004dc565b5090565b6000815190506200050b8162000624565b92915050565b6000602082840312156200052a57620005296200061f565b5b60006200053a84828501620004fa565b91505092915050565b600062000550826200056b565b9050919050565b6000620005648262000543565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620005a457607f821691505b60208210811415620005bb57620005ba620005f0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6200062f8162000557565b81146200063b57600080fd5b50565b60805160601c614bd06200065d60003960006111390152614bd06000f3fe6080604052600436106102465760003560e01c80637035bf1811610139578063b88d4fde116100b6578063cadd3e0c1161007a578063cadd3e0c14610825578063cea943ee1461083c578063e985e9c514610867578063f2fde38b146108a4578063fcd4b212146108cd578063fe2c7fee146108f857610246565b8063b88d4fde14610754578063c0d3b9e91461077d578063c61caf90146107ba578063c793803c146107d1578063c87b56dd146107e857610246565b80638da5cb5b116100fd5780638da5cb5b1461069357806395d89b41146106be578063a22cb465146106e9578063a2e9147714610712578063a475b5dd1461073d57610246565b80637035bf18146105d257806370a08231146105fd578063715018a61461063a578063790ca413146106515780637f7376e81461067c57610246565b80633f870cc8116101c757806355f804b31161018b57806355f804b3146104d95780636352211e1461050257806366aa92331461053f57806368428a1b1461057c5780636c0360eb146105a757610246565b80633f870cc8146103f257806342842e0e1461042f5780635183022714610458578063518ab2a814610483578063537707bc146104ae57610246565b806318160ddd1161020e57806318160ddd1461034257806323b872dd1461036d5780632d69044f146103965780632f085eec146103b25780633ccfd60b146103db57610246565b806301ffc9a71461024b57806303339bcb1461028857806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906135ea565b610921565b60405161027f9190613ce8565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa91906136be565b610a03565b005b3480156102bd57600080fd5b506102c6610b55565b6040516102d39190613d03565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613691565b610be7565b6040516103109190613c58565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b91906135aa565b610c6c565b005b34801561034e57600080fd5b50610357610d84565b6040516103649190614040565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190613494565b610d8a565b005b6103b060048036038101906103ab91906136fe565b610dea565b005b3480156103be57600080fd5b506103d960048036038101906103d49190613691565b611336565b005b3480156103e757600080fd5b506103f06113de565b005b3480156103fe57600080fd5b5061041960048036038101906104149190613691565b6114da565b6040516104269190614040565b60405180910390f35b34801561043b57600080fd5b5061045660048036038101906104519190613494565b6114fe565b005b34801561046457600080fd5b5061046d61151e565b60405161047a9190613ce8565b60405180910390f35b34801561048f57600080fd5b50610498611531565b6040516104a59190614040565b60405180910390f35b3480156104ba57600080fd5b506104c3611537565b6040516104d09190614040565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190613644565b61153d565b005b34801561050e57600080fd5b5061052960048036038101906105249190613691565b61161f565b6040516105369190613c58565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906133fa565b6116d1565b6040516105739190614040565b60405180910390f35b34801561058857600080fd5b506105916116e9565b60405161059e9190613ce8565b60405180910390f35b3480156105b357600080fd5b506105bc6116fc565b6040516105c99190613d03565b60405180910390f35b3480156105de57600080fd5b506105e761178a565b6040516105f49190613d03565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f91906133fa565b611818565b6040516106319190614040565b60405180910390f35b34801561064657600080fd5b5061064f6118d0565b005b34801561065d57600080fd5b50610666611958565b6040516106739190614040565b60405180910390f35b34801561068857600080fd5b5061069161195e565b005b34801561069f57600080fd5b506106a8611a51565b6040516106b59190613c58565b60405180910390f35b3480156106ca57600080fd5b506106d3611a7b565b6040516106e09190613d03565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b919061356a565b611b0d565b005b34801561071e57600080fd5b50610727611b23565b6040516107349190613ce8565b60405180910390f35b34801561074957600080fd5b50610752611b36565b005b34801561076057600080fd5b5061077b600480360381019061077691906134e7565b611bcf565b005b34801561078957600080fd5b506107a4600480360381019061079f9190613691565b611c31565b6040516107b19190613ce8565b60405180910390f35b3480156107c657600080fd5b506107cf611c51565b005b3480156107dd57600080fd5b506107e6611d3f565b005b3480156107f457600080fd5b5061080f600480360381019061080a9190613691565b611dd8565b60405161081c9190613d03565b60405180910390f35b34801561083157600080fd5b5061083a611f2e565b005b34801561084857600080fd5b5061085161200e565b60405161085e9190614025565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190613454565b6121d6565b60405161089b9190613ce8565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c691906133fa565b61226a565b005b3480156108d957600080fd5b506108e2612362565b6040516108ef9190613ce8565b60405180910390f35b34801561090457600080fd5b5061091f600480360381019061091a9190613644565b612375565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fc57506109fb82612407565b5b9050919050565b610a0b612471565b73ffffffffffffffffffffffffffffffffffffffff16610a29611a51565b73ffffffffffffffffffffffffffffffffffffffff1614610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7690613f65565b60405180910390fd5b60008211610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab990613fe5565b60405180910390fd5b61271082601654610ad391906140ff565b1115610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90613d85565b60405180910390fd5b60005b82811015610b5057610b3d82601660008154610b3290614352565b919050819055612479565b8080610b4890614352565b915050610b17565b505050565b606060008054610b64906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610b90906142ef565b8015610bdd5780601f10610bb257610100808354040283529160200191610bdd565b820191906000526020600020905b815481529060010190602001808311610bc057829003601f168201915b5050505050905090565b6000610bf282612497565b610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890613f45565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c778261161f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90613fa5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d07612471565b73ffffffffffffffffffffffffffffffffffffffff161480610d365750610d3581610d30612471565b6121d6565b5b610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90613ec5565b60405180910390fd5b610d7f8383612503565b505050565b60165481565b610d9b610d95612471565b826125bc565b610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190613fc5565b60405180910390fd5b610de583838361269a565b505050565b601f60009054906101000a900460ff16610e0357600080fd5b601f60029054906101000a900460ff1615610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90613e65565b60405180910390fd5b6000610e5d61200e565b905083601d54610e6d91906140ff565b81602001511015610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613d45565b60405180910390fd5b83601d54610ec191906140ff565b6127101015610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90613d45565b60405180910390fd5b6127108160400151146110725783601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f5d91906140ff565b81604001511015610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90613d25565b60405180910390fd5b83601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff291906140ff565b925050819055507f2b7037a04723079a9e4a2cc2170197efd67a8f2ba73c6d70dfb112bfdaa0fc4b33601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051611069929190613cbf565b60405180910390a15b6000612710826060015114611095576001905084848490501461109457600080fd5b5b60005b8581101561132e5781156112e557601860008686848181106110bd576110bc614488565b5b90506020020135815260200190815260200160002060009054906101000a900460ff1615611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790614005565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16636352211e87878581811061118657611185614488565b5b905060200201356040518263ffffffff1660e01b81526004016111a99190614040565b60206040518083038186803b1580156111c157600080fd5b505afa1580156111d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f99190613427565b73ffffffffffffffffffffffffffffffffffffffff161461124f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124690613e45565b60405180910390fd5b60016018600087878581811061126857611267614488565b5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055507f370816993d66faf9c3780089493fda4721dadc3c4bbe4ca98cb1fa5c2521d1528585838181106112c8576112c7614488565b5b905060200201356040516112dc9190614040565b60405180910390a15b611303336016600081546112f890614352565b919050819055612479565b601d600081548092919061131690614352565b9190505550808061132690614352565b915050611098565b505050505050565b61133e612471565b73ffffffffffffffffffffffffffffffffffffffff1661135c611a51565b73ffffffffffffffffffffffffffffffffffffffff16146113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a990613f65565b60405180910390fd5b601a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b6113e6612471565b73ffffffffffffffffffffffffffffffffffffffff16611404611a51565b73ffffffffffffffffffffffffffffffffffffffff161461145a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145190613f65565b60405180910390fd5b6000611464611a51565b73ffffffffffffffffffffffffffffffffffffffff164760405161148790613c43565b60006040518083038185875af1925050503d80600081146114c4576040519150601f19603f3d011682016040523d82523d6000602084013e6114c9565b606091505b50509050806114d757600080fd5b50565b601a81815481106114ea57600080fd5b906000526020600020016000915090505481565b61151983838360405180602001604052806000815250611bcf565b505050565b601760019054906101000a900460ff1681565b601d5481565b61271081565b611545612471565b73ffffffffffffffffffffffffffffffffffffffff16611563611a51565b73ffffffffffffffffffffffffffffffffffffffff16146115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090613f65565b60405180910390fd5b601760009054906101000a900460ff1615611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160090613ea5565b60405180910390fd5b8181601c919061161a92919061317c565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90613f05565b60405180910390fd5b80915050919050565b60196020528060005260406000206000915090505481565b601f60009054906101000a900460ff1681565b601c8054611709906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611735906142ef565b80156117825780601f1061175757610100808354040283529160200191611782565b820191906000526020600020905b81548152906001019060200180831161176557829003601f168201915b505050505081565b601b8054611797906142ef565b80601f01602080910402602001604051908101604052809291908181526020018280546117c3906142ef565b80156118105780601f106117e557610100808354040283529160200191611810565b820191906000526020600020905b8154815290600101906020018083116117f357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090613ee5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118d8612471565b73ffffffffffffffffffffffffffffffffffffffff166118f6611a51565b73ffffffffffffffffffffffffffffffffffffffff161461194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390613f65565b60405180910390fd5b6119566000612901565b565b601e5481565b611966612471565b73ffffffffffffffffffffffffffffffffffffffff16611984611a51565b73ffffffffffffffffffffffffffffffffffffffff16146119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190613f65565b60405180910390fd5b601f60009054906101000a900460ff16156119f457600080fd5b42601e819055506001601f60006101000a81548160ff0219169083151502179055507fe7b8bf7acc285459df6b77232eb91e928c7c34e51f57a65de486a9a9e80dba2b601e54604051611a479190614040565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611a8a906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab6906142ef565b8015611b035780601f10611ad857610100808354040283529160200191611b03565b820191906000526020600020905b815481529060010190602001808311611ae657829003601f168201915b5050505050905090565b611b1f611b18612471565b83836129c7565b5050565b601f60019054906101000a900460ff1681565b611b3e612471565b73ffffffffffffffffffffffffffffffffffffffff16611b5c611a51565b73ffffffffffffffffffffffffffffffffffffffff1614611bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba990613f65565b60405180910390fd5b6001601760016101000a81548160ff021916908315150217905550565b611be0611bda612471565b836125bc565b611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690613fc5565b60405180910390fd5b611c2b84848484612b34565b50505050565b60186020528060005260406000206000915054906101000a900460ff1681565b611c59612471565b73ffffffffffffffffffffffffffffffffffffffff16611c77611a51565b73ffffffffffffffffffffffffffffffffffffffff1614611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490613f65565b60405180910390fd5b601f60029054906101000a900460ff1615601f60026101000a81548160ff0219169083151502179055507fb8302d060648830cfc856bfe834195403d66ae761547b284e7fe8414b4d3ea90601f60029054906101000a900460ff16604051611d359190613ce8565b60405180910390a1565b611d47612471565b73ffffffffffffffffffffffffffffffffffffffff16611d65611a51565b73ffffffffffffffffffffffffffffffffffffffff1614611dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db290613f65565b60405180910390fd5b6001601760006101000a81548160ff021916908315150217905550565b6060611de382612497565b611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613f85565b60405180910390fd5b60001515601760019054906101000a900460ff1615151415611ed057601b8054611e4b906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611e77906142ef565b8015611ec45780601f10611e9957610100808354040283529160200191611ec4565b820191906000526020600020905b815481529060010190602001808311611ea757829003601f168201915b50505050509050611f29565b6000611eda612b90565b90506000815111611efa5760405180602001604052806000815250611f25565b80611f0484612c22565b604051602001611f15929190613c1f565b6040516020818303038152906040525b9150505b919050565b611f36612471565b73ffffffffffffffffffffffffffffffffffffffff16611f54611a51565b73ffffffffffffffffffffffffffffffffffffffff1614611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190613f65565b60405180910390fd5b600062015180601e5442611fbe91906141e0565b611fc8919061439b565b9050601f60009054906101000a900460ff16611fe357600080fd5b60078111611ff057600080fd5b6001601f60016101000a81548160ff02191690831515021790555050565b612016613202565b601f60019054906101000a900460ff16156120a25760076040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900460ff1660028111156120855761208461442a565b5b60028111156120975761209661442a565b5b8152505090506121d3565b60006018603c80601e54426120b791906141e0565b6120c19190614155565b6120cb9190614155565b6120d59190614155565b905060048110156121505760006101f46001836120f291906140ff565b6120fc9190614186565b90506040518060a00160405280601160000154815260200182815260200160116002015481526020016011600301548152602001600060028111156121445761214361442a565b5b815250925050506121d3565b60078110156121d157600c6040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900460ff1660028111156121b3576121b261442a565b5b60028111156121c5576121c461442a565b5b815250509150506121d3565b505b90565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612272612471565b73ffffffffffffffffffffffffffffffffffffffff16612290611a51565b73ffffffffffffffffffffffffffffffffffffffff16146122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90613f65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234d90613da5565b60405180910390fd5b61235f81612901565b50565b601760009054906101000a900460ff1681565b61237d612471565b73ffffffffffffffffffffffffffffffffffffffff1661239b611a51565b73ffffffffffffffffffffffffffffffffffffffff16146123f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e890613f65565b60405180910390fd5b8181601b919061240292919061317c565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b612493828260405180602001604052806000815250612d83565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125768361161f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125c782612497565b612606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fd90613e85565b60405180910390fd5b60006126118361161f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061268057508373ffffffffffffffffffffffffffffffffffffffff1661266884610be7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612691575061269081856121d6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126ba8261161f565b73ffffffffffffffffffffffffffffffffffffffff1614612710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270790613dc5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277790613e05565b60405180910390fd5b61278b838383612dde565b612796600082612503565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127e691906141e0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461283d91906140ff565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128fc838383612de3565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2d90613e25565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b279190613ce8565b60405180910390a3505050565b612b3f84848461269a565b612b4b84848484612de8565b612b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8190613d65565b60405180910390fd5b50505050565b6060601c8054612b9f906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054612bcb906142ef565b8015612c185780601f10612bed57610100808354040283529160200191612c18565b820191906000526020600020905b815481529060010190602001808311612bfb57829003601f168201915b5050505050905090565b60606000821415612c6a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d7e565b600082905060005b60008214612c9c578080612c8590614352565b915050600a82612c959190614155565b9150612c72565b60008167ffffffffffffffff811115612cb857612cb76144b7565b5b6040519080825280601f01601f191660200182016040528015612cea5781602001600182028036833780820191505090505b5090505b60008514612d7757600182612d0391906141e0565b9150600a85612d12919061439b565b6030612d1e91906140ff565b60f81b818381518110612d3457612d33614488565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d709190614155565b9450612cee565b8093505050505b919050565b612d8d8383612f7f565b612d9a6000848484612de8565b612dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd090613d65565b60405180910390fd5b505050565b505050565b505050565b6000612e098473ffffffffffffffffffffffffffffffffffffffff16613159565b15612f72578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e32612471565b8786866040518563ffffffff1660e01b8152600401612e549493929190613c73565b602060405180830381600087803b158015612e6e57600080fd5b505af1925050508015612e9f57506040513d601f19601f82011682018060405250810190612e9c9190613617565b60015b612f22573d8060008114612ecf576040519150601f19603f3d011682016040523d82523d6000602084013e612ed4565b606091505b50600081511415612f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1190613d65565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f77565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe690613f25565b60405180910390fd5b612ff881612497565b15613038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302f90613de5565b60405180910390fd5b61304460008383612dde565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461309491906140ff565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461315560008383612de3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613188906142ef565b90600052602060002090601f0160209004810192826131aa57600085556131f1565b82601f106131c357803560ff19168380011785556131f1565b828001600101855582156131f1579182015b828111156131f05782358255916020019190600101906131d5565b5b5090506131fe9190613243565b5090565b6040518060a00160405280600081526020016000815260200160008152602001600081526020016000600281111561323d5761323c61442a565b5b81525090565b5b8082111561325c576000816000905550600101613244565b5090565b600061327361326e84614080565b61405b565b90508281526020810184848401111561328f5761328e6144f5565b5b61329a8482856142ad565b509392505050565b6000813590506132b181614b3e565b92915050565b6000815190506132c681614b3e565b92915050565b60008083601f8401126132e2576132e16144eb565b5b8235905067ffffffffffffffff8111156132ff576132fe6144e6565b5b60208301915083602082028301111561331b5761331a6144f0565b5b9250929050565b60008135905061333181614b55565b92915050565b60008135905061334681614b6c565b92915050565b60008151905061335b81614b6c565b92915050565b600082601f830112613376576133756144eb565b5b8135613386848260208601613260565b91505092915050565b60008083601f8401126133a5576133a46144eb565b5b8235905067ffffffffffffffff8111156133c2576133c16144e6565b5b6020830191508360018202830111156133de576133dd6144f0565b5b9250929050565b6000813590506133f481614b83565b92915050565b6000602082840312156134105761340f6144ff565b5b600061341e848285016132a2565b91505092915050565b60006020828403121561343d5761343c6144ff565b5b600061344b848285016132b7565b91505092915050565b6000806040838503121561346b5761346a6144ff565b5b6000613479858286016132a2565b925050602061348a858286016132a2565b9150509250929050565b6000806000606084860312156134ad576134ac6144ff565b5b60006134bb868287016132a2565b93505060206134cc868287016132a2565b92505060406134dd868287016133e5565b9150509250925092565b60008060008060808587031215613501576135006144ff565b5b600061350f878288016132a2565b9450506020613520878288016132a2565b9350506040613531878288016133e5565b925050606085013567ffffffffffffffff811115613552576135516144fa565b5b61355e87828801613361565b91505092959194509250565b60008060408385031215613581576135806144ff565b5b600061358f858286016132a2565b92505060206135a085828601613322565b9150509250929050565b600080604083850312156135c1576135c06144ff565b5b60006135cf858286016132a2565b92505060206135e0858286016133e5565b9150509250929050565b600060208284031215613600576135ff6144ff565b5b600061360e84828501613337565b91505092915050565b60006020828403121561362d5761362c6144ff565b5b600061363b8482850161334c565b91505092915050565b6000806020838503121561365b5761365a6144ff565b5b600083013567ffffffffffffffff811115613679576136786144fa565b5b6136858582860161338f565b92509250509250929050565b6000602082840312156136a7576136a66144ff565b5b60006136b5848285016133e5565b91505092915050565b600080604083850312156136d5576136d46144ff565b5b60006136e3858286016133e5565b92505060206136f4858286016132a2565b9150509250929050565b600080600060408486031215613717576137166144ff565b5b6000613725868287016133e5565b935050602084013567ffffffffffffffff811115613746576137456144fa565b5b613752868287016132cc565b92509250509250925092565b61376781614214565b82525050565b61377681614226565b82525050565b6000613787826140b1565b61379181856140c7565b93506137a18185602086016142bc565b6137aa81614504565b840191505092915050565b6137be8161429b565b82525050565b60006137cf826140bc565b6137d981856140e3565b93506137e98185602086016142bc565b6137f281614504565b840191505092915050565b6000613808826140bc565b61381281856140f4565b93506138228185602086016142bc565b80840191505092915050565b600061383b6028836140e3565b915061384682614515565b604082019050919050565b600061385e6023836140e3565b915061386982614564565b604082019050919050565b60006138816032836140e3565b915061388c826145b3565b604082019050919050565b60006138a46008836140e3565b91506138af82614602565b602082019050919050565b60006138c76026836140e3565b91506138d28261462b565b604082019050919050565b60006138ea6025836140e3565b91506138f58261467a565b604082019050919050565b600061390d601c836140e3565b9150613918826146c9565b602082019050919050565b60006139306024836140e3565b915061393b826146f2565b604082019050919050565b60006139536019836140e3565b915061395e82614741565b602082019050919050565b60006139766027836140e3565b91506139818261476a565b604082019050919050565b6000613999601d836140e3565b91506139a4826147b9565b602082019050919050565b60006139bc602c836140e3565b91506139c7826147e2565b604082019050919050565b60006139df600d836140e3565b91506139ea82614831565b602082019050919050565b6000613a026038836140e3565b9150613a0d8261485a565b604082019050919050565b6000613a25602a836140e3565b9150613a30826148a9565b604082019050919050565b6000613a486029836140e3565b9150613a53826148f8565b604082019050919050565b6000613a6b6020836140e3565b9150613a7682614947565b602082019050919050565b6000613a8e602c836140e3565b9150613a9982614970565b604082019050919050565b6000613ab16020836140e3565b9150613abc826149bf565b602082019050919050565b6000613ad4602f836140e3565b9150613adf826149e8565b604082019050919050565b6000613af76021836140e3565b9150613b0282614a37565b604082019050919050565b6000613b1a6000836140d8565b9150613b2582614a86565b600082019050919050565b6000613b3d6031836140e3565b9150613b4882614a89565b604082019050919050565b6000613b60600d836140e3565b9150613b6b82614ad8565b602082019050919050565b6000613b83601d836140e3565b9150613b8e82614b01565b602082019050919050565b60a082016000820151613baf6000850182613c01565b506020820151613bc26020850182613c01565b506040820151613bd56040850182613c01565b506060820151613be86060850182613c01565b506080820151613bfb60808501826137b5565b50505050565b613c0a81614291565b82525050565b613c1981614291565b82525050565b6000613c2b82856137fd565b9150613c3782846137fd565b91508190509392505050565b6000613c4e82613b0d565b9150819050919050565b6000602082019050613c6d600083018461375e565b92915050565b6000608082019050613c88600083018761375e565b613c95602083018661375e565b613ca26040830185613c10565b8181036060830152613cb4818461377c565b905095945050505050565b6000604082019050613cd4600083018561375e565b613ce16020830184613c10565b9392505050565b6000602082019050613cfd600083018461376d565b92915050565b60006020820190508181036000830152613d1d81846137c4565b905092915050565b60006020820190508181036000830152613d3e8161382e565b9050919050565b60006020820190508181036000830152613d5e81613851565b9050919050565b60006020820190508181036000830152613d7e81613874565b9050919050565b60006020820190508181036000830152613d9e81613897565b9050919050565b60006020820190508181036000830152613dbe816138ba565b9050919050565b60006020820190508181036000830152613dde816138dd565b9050919050565b60006020820190508181036000830152613dfe81613900565b9050919050565b60006020820190508181036000830152613e1e81613923565b9050919050565b60006020820190508181036000830152613e3e81613946565b9050919050565b60006020820190508181036000830152613e5e81613969565b9050919050565b60006020820190508181036000830152613e7e8161398c565b9050919050565b60006020820190508181036000830152613e9e816139af565b9050919050565b60006020820190508181036000830152613ebe816139d2565b9050919050565b60006020820190508181036000830152613ede816139f5565b9050919050565b60006020820190508181036000830152613efe81613a18565b9050919050565b60006020820190508181036000830152613f1e81613a3b565b9050919050565b60006020820190508181036000830152613f3e81613a5e565b9050919050565b60006020820190508181036000830152613f5e81613a81565b9050919050565b60006020820190508181036000830152613f7e81613aa4565b9050919050565b60006020820190508181036000830152613f9e81613ac7565b9050919050565b60006020820190508181036000830152613fbe81613aea565b9050919050565b60006020820190508181036000830152613fde81613b30565b9050919050565b60006020820190508181036000830152613ffe81613b53565b9050919050565b6000602082019050818103600083015261401e81613b76565b9050919050565b600060a08201905061403a6000830184613b99565b92915050565b60006020820190506140556000830184613c10565b92915050565b6000614065614076565b90506140718282614321565b919050565b6000604051905090565b600067ffffffffffffffff82111561409b5761409a6144b7565b5b6140a482614504565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061410a82614291565b915061411583614291565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561414a576141496143cc565b5b828201905092915050565b600061416082614291565b915061416b83614291565b92508261417b5761417a6143fb565b5b828204905092915050565b600061419182614291565b915061419c83614291565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141d5576141d46143cc565b5b828202905092915050565b60006141eb82614291565b91506141f683614291565b925082821015614209576142086143cc565b5b828203905092915050565b600061421f82614271565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061426c82614b2a565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006142a68261425e565b9050919050565b82818337600083830152505050565b60005b838110156142da5780820151818401526020810190506142bf565b838111156142e9576000848401525b50505050565b6000600282049050600182168061430757607f821691505b6020821081141561431b5761431a614459565b5b50919050565b61432a82614504565b810181811067ffffffffffffffff82111715614349576143486144b7565b5b80604052505050565b600061435d82614291565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143905761438f6143cc565b5b600182019050919050565b60006143a682614291565b91506143b183614291565b9250826143c1576143c06143fb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f57616c6c65742068617320616c726561647920636c61696d6564206d6178696d60008201527f756d206d696e7473000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820617661696c61626c6520746f6b656e7320746f206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616c6c6572206e6f7420746865206f776e6572206f6620446f67652041726d60008201527f7920546f6b656e00000000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173206265656e20706175736564206279206f776e6572000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5552492069732046726f7a656e00000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f63616e6e6f74206d696e74203000000000000000000000000000000000000000600082015250565b7f446f676541726d79204d696e7420616c726561647920636c61696d6564000000600082015250565b60038110614b3b57614b3a61442a565b5b50565b614b4781614214565b8114614b5257600080fd5b50565b614b5e81614226565b8114614b6957600080fd5b50565b614b7581614232565b8114614b8057600080fd5b50565b614b8c81614291565b8114614b9757600080fd5b5056fea26469706673582212206d74777a97e0c5ecf04d868a0d798c75aba126d36f806ba2af99dab927b97a5264736f6c63430008070033697066733a2f2f516d525941474a6f51353576796b5747347547564a5574356a43646455503370327a436873334b586e734e51724d00000000000000000000000021177c97be40b52b002fbee000a03212708bcf47
Deployed Bytecode
0x6080604052600436106102465760003560e01c80637035bf1811610139578063b88d4fde116100b6578063cadd3e0c1161007a578063cadd3e0c14610825578063cea943ee1461083c578063e985e9c514610867578063f2fde38b146108a4578063fcd4b212146108cd578063fe2c7fee146108f857610246565b8063b88d4fde14610754578063c0d3b9e91461077d578063c61caf90146107ba578063c793803c146107d1578063c87b56dd146107e857610246565b80638da5cb5b116100fd5780638da5cb5b1461069357806395d89b41146106be578063a22cb465146106e9578063a2e9147714610712578063a475b5dd1461073d57610246565b80637035bf18146105d257806370a08231146105fd578063715018a61461063a578063790ca413146106515780637f7376e81461067c57610246565b80633f870cc8116101c757806355f804b31161018b57806355f804b3146104d95780636352211e1461050257806366aa92331461053f57806368428a1b1461057c5780636c0360eb146105a757610246565b80633f870cc8146103f257806342842e0e1461042f5780635183022714610458578063518ab2a814610483578063537707bc146104ae57610246565b806318160ddd1161020e57806318160ddd1461034257806323b872dd1461036d5780632d69044f146103965780632f085eec146103b25780633ccfd60b146103db57610246565b806301ffc9a71461024b57806303339bcb1461028857806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906135ea565b610921565b60405161027f9190613ce8565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa91906136be565b610a03565b005b3480156102bd57600080fd5b506102c6610b55565b6040516102d39190613d03565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613691565b610be7565b6040516103109190613c58565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b91906135aa565b610c6c565b005b34801561034e57600080fd5b50610357610d84565b6040516103649190614040565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190613494565b610d8a565b005b6103b060048036038101906103ab91906136fe565b610dea565b005b3480156103be57600080fd5b506103d960048036038101906103d49190613691565b611336565b005b3480156103e757600080fd5b506103f06113de565b005b3480156103fe57600080fd5b5061041960048036038101906104149190613691565b6114da565b6040516104269190614040565b60405180910390f35b34801561043b57600080fd5b5061045660048036038101906104519190613494565b6114fe565b005b34801561046457600080fd5b5061046d61151e565b60405161047a9190613ce8565b60405180910390f35b34801561048f57600080fd5b50610498611531565b6040516104a59190614040565b60405180910390f35b3480156104ba57600080fd5b506104c3611537565b6040516104d09190614040565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190613644565b61153d565b005b34801561050e57600080fd5b5061052960048036038101906105249190613691565b61161f565b6040516105369190613c58565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906133fa565b6116d1565b6040516105739190614040565b60405180910390f35b34801561058857600080fd5b506105916116e9565b60405161059e9190613ce8565b60405180910390f35b3480156105b357600080fd5b506105bc6116fc565b6040516105c99190613d03565b60405180910390f35b3480156105de57600080fd5b506105e761178a565b6040516105f49190613d03565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f91906133fa565b611818565b6040516106319190614040565b60405180910390f35b34801561064657600080fd5b5061064f6118d0565b005b34801561065d57600080fd5b50610666611958565b6040516106739190614040565b60405180910390f35b34801561068857600080fd5b5061069161195e565b005b34801561069f57600080fd5b506106a8611a51565b6040516106b59190613c58565b60405180910390f35b3480156106ca57600080fd5b506106d3611a7b565b6040516106e09190613d03565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b919061356a565b611b0d565b005b34801561071e57600080fd5b50610727611b23565b6040516107349190613ce8565b60405180910390f35b34801561074957600080fd5b50610752611b36565b005b34801561076057600080fd5b5061077b600480360381019061077691906134e7565b611bcf565b005b34801561078957600080fd5b506107a4600480360381019061079f9190613691565b611c31565b6040516107b19190613ce8565b60405180910390f35b3480156107c657600080fd5b506107cf611c51565b005b3480156107dd57600080fd5b506107e6611d3f565b005b3480156107f457600080fd5b5061080f600480360381019061080a9190613691565b611dd8565b60405161081c9190613d03565b60405180910390f35b34801561083157600080fd5b5061083a611f2e565b005b34801561084857600080fd5b5061085161200e565b60405161085e9190614025565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190613454565b6121d6565b60405161089b9190613ce8565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c691906133fa565b61226a565b005b3480156108d957600080fd5b506108e2612362565b6040516108ef9190613ce8565b60405180910390f35b34801561090457600080fd5b5061091f600480360381019061091a9190613644565b612375565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fc57506109fb82612407565b5b9050919050565b610a0b612471565b73ffffffffffffffffffffffffffffffffffffffff16610a29611a51565b73ffffffffffffffffffffffffffffffffffffffff1614610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7690613f65565b60405180910390fd5b60008211610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab990613fe5565b60405180910390fd5b61271082601654610ad391906140ff565b1115610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90613d85565b60405180910390fd5b60005b82811015610b5057610b3d82601660008154610b3290614352565b919050819055612479565b8080610b4890614352565b915050610b17565b505050565b606060008054610b64906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610b90906142ef565b8015610bdd5780601f10610bb257610100808354040283529160200191610bdd565b820191906000526020600020905b815481529060010190602001808311610bc057829003601f168201915b5050505050905090565b6000610bf282612497565b610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890613f45565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c778261161f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90613fa5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d07612471565b73ffffffffffffffffffffffffffffffffffffffff161480610d365750610d3581610d30612471565b6121d6565b5b610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90613ec5565b60405180910390fd5b610d7f8383612503565b505050565b60165481565b610d9b610d95612471565b826125bc565b610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190613fc5565b60405180910390fd5b610de583838361269a565b505050565b601f60009054906101000a900460ff16610e0357600080fd5b601f60029054906101000a900460ff1615610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90613e65565b60405180910390fd5b6000610e5d61200e565b905083601d54610e6d91906140ff565b81602001511015610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613d45565b60405180910390fd5b83601d54610ec191906140ff565b6127101015610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90613d45565b60405180910390fd5b6127108160400151146110725783601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f5d91906140ff565b81604001511015610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90613d25565b60405180910390fd5b83601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff291906140ff565b925050819055507f2b7037a04723079a9e4a2cc2170197efd67a8f2ba73c6d70dfb112bfdaa0fc4b33601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051611069929190613cbf565b60405180910390a15b6000612710826060015114611095576001905084848490501461109457600080fd5b5b60005b8581101561132e5781156112e557601860008686848181106110bd576110bc614488565b5b90506020020135815260200190815260200160002060009054906101000a900460ff1615611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790614005565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f00000000000000000000000021177c97be40b52b002fbee000a03212708bcf4773ffffffffffffffffffffffffffffffffffffffff16636352211e87878581811061118657611185614488565b5b905060200201356040518263ffffffff1660e01b81526004016111a99190614040565b60206040518083038186803b1580156111c157600080fd5b505afa1580156111d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f99190613427565b73ffffffffffffffffffffffffffffffffffffffff161461124f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124690613e45565b60405180910390fd5b60016018600087878581811061126857611267614488565b5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055507f370816993d66faf9c3780089493fda4721dadc3c4bbe4ca98cb1fa5c2521d1528585838181106112c8576112c7614488565b5b905060200201356040516112dc9190614040565b60405180910390a15b611303336016600081546112f890614352565b919050819055612479565b601d600081548092919061131690614352565b9190505550808061132690614352565b915050611098565b505050505050565b61133e612471565b73ffffffffffffffffffffffffffffffffffffffff1661135c611a51565b73ffffffffffffffffffffffffffffffffffffffff16146113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a990613f65565b60405180910390fd5b601a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b6113e6612471565b73ffffffffffffffffffffffffffffffffffffffff16611404611a51565b73ffffffffffffffffffffffffffffffffffffffff161461145a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145190613f65565b60405180910390fd5b6000611464611a51565b73ffffffffffffffffffffffffffffffffffffffff164760405161148790613c43565b60006040518083038185875af1925050503d80600081146114c4576040519150601f19603f3d011682016040523d82523d6000602084013e6114c9565b606091505b50509050806114d757600080fd5b50565b601a81815481106114ea57600080fd5b906000526020600020016000915090505481565b61151983838360405180602001604052806000815250611bcf565b505050565b601760019054906101000a900460ff1681565b601d5481565b61271081565b611545612471565b73ffffffffffffffffffffffffffffffffffffffff16611563611a51565b73ffffffffffffffffffffffffffffffffffffffff16146115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090613f65565b60405180910390fd5b601760009054906101000a900460ff1615611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160090613ea5565b60405180910390fd5b8181601c919061161a92919061317c565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90613f05565b60405180910390fd5b80915050919050565b60196020528060005260406000206000915090505481565b601f60009054906101000a900460ff1681565b601c8054611709906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611735906142ef565b80156117825780601f1061175757610100808354040283529160200191611782565b820191906000526020600020905b81548152906001019060200180831161176557829003601f168201915b505050505081565b601b8054611797906142ef565b80601f01602080910402602001604051908101604052809291908181526020018280546117c3906142ef565b80156118105780601f106117e557610100808354040283529160200191611810565b820191906000526020600020905b8154815290600101906020018083116117f357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090613ee5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118d8612471565b73ffffffffffffffffffffffffffffffffffffffff166118f6611a51565b73ffffffffffffffffffffffffffffffffffffffff161461194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390613f65565b60405180910390fd5b6119566000612901565b565b601e5481565b611966612471565b73ffffffffffffffffffffffffffffffffffffffff16611984611a51565b73ffffffffffffffffffffffffffffffffffffffff16146119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190613f65565b60405180910390fd5b601f60009054906101000a900460ff16156119f457600080fd5b42601e819055506001601f60006101000a81548160ff0219169083151502179055507fe7b8bf7acc285459df6b77232eb91e928c7c34e51f57a65de486a9a9e80dba2b601e54604051611a479190614040565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611a8a906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab6906142ef565b8015611b035780601f10611ad857610100808354040283529160200191611b03565b820191906000526020600020905b815481529060010190602001808311611ae657829003601f168201915b5050505050905090565b611b1f611b18612471565b83836129c7565b5050565b601f60019054906101000a900460ff1681565b611b3e612471565b73ffffffffffffffffffffffffffffffffffffffff16611b5c611a51565b73ffffffffffffffffffffffffffffffffffffffff1614611bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba990613f65565b60405180910390fd5b6001601760016101000a81548160ff021916908315150217905550565b611be0611bda612471565b836125bc565b611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690613fc5565b60405180910390fd5b611c2b84848484612b34565b50505050565b60186020528060005260406000206000915054906101000a900460ff1681565b611c59612471565b73ffffffffffffffffffffffffffffffffffffffff16611c77611a51565b73ffffffffffffffffffffffffffffffffffffffff1614611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490613f65565b60405180910390fd5b601f60029054906101000a900460ff1615601f60026101000a81548160ff0219169083151502179055507fb8302d060648830cfc856bfe834195403d66ae761547b284e7fe8414b4d3ea90601f60029054906101000a900460ff16604051611d359190613ce8565b60405180910390a1565b611d47612471565b73ffffffffffffffffffffffffffffffffffffffff16611d65611a51565b73ffffffffffffffffffffffffffffffffffffffff1614611dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db290613f65565b60405180910390fd5b6001601760006101000a81548160ff021916908315150217905550565b6060611de382612497565b611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613f85565b60405180910390fd5b60001515601760019054906101000a900460ff1615151415611ed057601b8054611e4b906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611e77906142ef565b8015611ec45780601f10611e9957610100808354040283529160200191611ec4565b820191906000526020600020905b815481529060010190602001808311611ea757829003601f168201915b50505050509050611f29565b6000611eda612b90565b90506000815111611efa5760405180602001604052806000815250611f25565b80611f0484612c22565b604051602001611f15929190613c1f565b6040516020818303038152906040525b9150505b919050565b611f36612471565b73ffffffffffffffffffffffffffffffffffffffff16611f54611a51565b73ffffffffffffffffffffffffffffffffffffffff1614611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190613f65565b60405180910390fd5b600062015180601e5442611fbe91906141e0565b611fc8919061439b565b9050601f60009054906101000a900460ff16611fe357600080fd5b60078111611ff057600080fd5b6001601f60016101000a81548160ff02191690831515021790555050565b612016613202565b601f60019054906101000a900460ff16156120a25760076040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900460ff1660028111156120855761208461442a565b5b60028111156120975761209661442a565b5b8152505090506121d3565b60006018603c80601e54426120b791906141e0565b6120c19190614155565b6120cb9190614155565b6120d59190614155565b905060048110156121505760006101f46001836120f291906140ff565b6120fc9190614186565b90506040518060a00160405280601160000154815260200182815260200160116002015481526020016011600301548152602001600060028111156121445761214361442a565b5b815250925050506121d3565b60078110156121d157600c6040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900460ff1660028111156121b3576121b261442a565b5b60028111156121c5576121c461442a565b5b815250509150506121d3565b505b90565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612272612471565b73ffffffffffffffffffffffffffffffffffffffff16612290611a51565b73ffffffffffffffffffffffffffffffffffffffff16146122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90613f65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234d90613da5565b60405180910390fd5b61235f81612901565b50565b601760009054906101000a900460ff1681565b61237d612471565b73ffffffffffffffffffffffffffffffffffffffff1661239b611a51565b73ffffffffffffffffffffffffffffffffffffffff16146123f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e890613f65565b60405180910390fd5b8181601b919061240292919061317c565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b612493828260405180602001604052806000815250612d83565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125768361161f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125c782612497565b612606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fd90613e85565b60405180910390fd5b60006126118361161f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061268057508373ffffffffffffffffffffffffffffffffffffffff1661266884610be7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612691575061269081856121d6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126ba8261161f565b73ffffffffffffffffffffffffffffffffffffffff1614612710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270790613dc5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277790613e05565b60405180910390fd5b61278b838383612dde565b612796600082612503565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127e691906141e0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461283d91906140ff565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128fc838383612de3565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2d90613e25565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b279190613ce8565b60405180910390a3505050565b612b3f84848461269a565b612b4b84848484612de8565b612b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8190613d65565b60405180910390fd5b50505050565b6060601c8054612b9f906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054612bcb906142ef565b8015612c185780601f10612bed57610100808354040283529160200191612c18565b820191906000526020600020905b815481529060010190602001808311612bfb57829003601f168201915b5050505050905090565b60606000821415612c6a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d7e565b600082905060005b60008214612c9c578080612c8590614352565b915050600a82612c959190614155565b9150612c72565b60008167ffffffffffffffff811115612cb857612cb76144b7565b5b6040519080825280601f01601f191660200182016040528015612cea5781602001600182028036833780820191505090505b5090505b60008514612d7757600182612d0391906141e0565b9150600a85612d12919061439b565b6030612d1e91906140ff565b60f81b818381518110612d3457612d33614488565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d709190614155565b9450612cee565b8093505050505b919050565b612d8d8383612f7f565b612d9a6000848484612de8565b612dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd090613d65565b60405180910390fd5b505050565b505050565b505050565b6000612e098473ffffffffffffffffffffffffffffffffffffffff16613159565b15612f72578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e32612471565b8786866040518563ffffffff1660e01b8152600401612e549493929190613c73565b602060405180830381600087803b158015612e6e57600080fd5b505af1925050508015612e9f57506040513d601f19601f82011682018060405250810190612e9c9190613617565b60015b612f22573d8060008114612ecf576040519150601f19603f3d011682016040523d82523d6000602084013e612ed4565b606091505b50600081511415612f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1190613d65565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f77565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe690613f25565b60405180910390fd5b612ff881612497565b15613038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302f90613de5565b60405180910390fd5b61304460008383612dde565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461309491906140ff565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461315560008383612de3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613188906142ef565b90600052602060002090601f0160209004810192826131aa57600085556131f1565b82601f106131c357803560ff19168380011785556131f1565b828001600101855582156131f1579182015b828111156131f05782358255916020019190600101906131d5565b5b5090506131fe9190613243565b5090565b6040518060a00160405280600081526020016000815260200160008152602001600081526020016000600281111561323d5761323c61442a565b5b81525090565b5b8082111561325c576000816000905550600101613244565b5090565b600061327361326e84614080565b61405b565b90508281526020810184848401111561328f5761328e6144f5565b5b61329a8482856142ad565b509392505050565b6000813590506132b181614b3e565b92915050565b6000815190506132c681614b3e565b92915050565b60008083601f8401126132e2576132e16144eb565b5b8235905067ffffffffffffffff8111156132ff576132fe6144e6565b5b60208301915083602082028301111561331b5761331a6144f0565b5b9250929050565b60008135905061333181614b55565b92915050565b60008135905061334681614b6c565b92915050565b60008151905061335b81614b6c565b92915050565b600082601f830112613376576133756144eb565b5b8135613386848260208601613260565b91505092915050565b60008083601f8401126133a5576133a46144eb565b5b8235905067ffffffffffffffff8111156133c2576133c16144e6565b5b6020830191508360018202830111156133de576133dd6144f0565b5b9250929050565b6000813590506133f481614b83565b92915050565b6000602082840312156134105761340f6144ff565b5b600061341e848285016132a2565b91505092915050565b60006020828403121561343d5761343c6144ff565b5b600061344b848285016132b7565b91505092915050565b6000806040838503121561346b5761346a6144ff565b5b6000613479858286016132a2565b925050602061348a858286016132a2565b9150509250929050565b6000806000606084860312156134ad576134ac6144ff565b5b60006134bb868287016132a2565b93505060206134cc868287016132a2565b92505060406134dd868287016133e5565b9150509250925092565b60008060008060808587031215613501576135006144ff565b5b600061350f878288016132a2565b9450506020613520878288016132a2565b9350506040613531878288016133e5565b925050606085013567ffffffffffffffff811115613552576135516144fa565b5b61355e87828801613361565b91505092959194509250565b60008060408385031215613581576135806144ff565b5b600061358f858286016132a2565b92505060206135a085828601613322565b9150509250929050565b600080604083850312156135c1576135c06144ff565b5b60006135cf858286016132a2565b92505060206135e0858286016133e5565b9150509250929050565b600060208284031215613600576135ff6144ff565b5b600061360e84828501613337565b91505092915050565b60006020828403121561362d5761362c6144ff565b5b600061363b8482850161334c565b91505092915050565b6000806020838503121561365b5761365a6144ff565b5b600083013567ffffffffffffffff811115613679576136786144fa565b5b6136858582860161338f565b92509250509250929050565b6000602082840312156136a7576136a66144ff565b5b60006136b5848285016133e5565b91505092915050565b600080604083850312156136d5576136d46144ff565b5b60006136e3858286016133e5565b92505060206136f4858286016132a2565b9150509250929050565b600080600060408486031215613717576137166144ff565b5b6000613725868287016133e5565b935050602084013567ffffffffffffffff811115613746576137456144fa565b5b613752868287016132cc565b92509250509250925092565b61376781614214565b82525050565b61377681614226565b82525050565b6000613787826140b1565b61379181856140c7565b93506137a18185602086016142bc565b6137aa81614504565b840191505092915050565b6137be8161429b565b82525050565b60006137cf826140bc565b6137d981856140e3565b93506137e98185602086016142bc565b6137f281614504565b840191505092915050565b6000613808826140bc565b61381281856140f4565b93506138228185602086016142bc565b80840191505092915050565b600061383b6028836140e3565b915061384682614515565b604082019050919050565b600061385e6023836140e3565b915061386982614564565b604082019050919050565b60006138816032836140e3565b915061388c826145b3565b604082019050919050565b60006138a46008836140e3565b91506138af82614602565b602082019050919050565b60006138c76026836140e3565b91506138d28261462b565b604082019050919050565b60006138ea6025836140e3565b91506138f58261467a565b604082019050919050565b600061390d601c836140e3565b9150613918826146c9565b602082019050919050565b60006139306024836140e3565b915061393b826146f2565b604082019050919050565b60006139536019836140e3565b915061395e82614741565b602082019050919050565b60006139766027836140e3565b91506139818261476a565b604082019050919050565b6000613999601d836140e3565b91506139a4826147b9565b602082019050919050565b60006139bc602c836140e3565b91506139c7826147e2565b604082019050919050565b60006139df600d836140e3565b91506139ea82614831565b602082019050919050565b6000613a026038836140e3565b9150613a0d8261485a565b604082019050919050565b6000613a25602a836140e3565b9150613a30826148a9565b604082019050919050565b6000613a486029836140e3565b9150613a53826148f8565b604082019050919050565b6000613a6b6020836140e3565b9150613a7682614947565b602082019050919050565b6000613a8e602c836140e3565b9150613a9982614970565b604082019050919050565b6000613ab16020836140e3565b9150613abc826149bf565b602082019050919050565b6000613ad4602f836140e3565b9150613adf826149e8565b604082019050919050565b6000613af76021836140e3565b9150613b0282614a37565b604082019050919050565b6000613b1a6000836140d8565b9150613b2582614a86565b600082019050919050565b6000613b3d6031836140e3565b9150613b4882614a89565b604082019050919050565b6000613b60600d836140e3565b9150613b6b82614ad8565b602082019050919050565b6000613b83601d836140e3565b9150613b8e82614b01565b602082019050919050565b60a082016000820151613baf6000850182613c01565b506020820151613bc26020850182613c01565b506040820151613bd56040850182613c01565b506060820151613be86060850182613c01565b506080820151613bfb60808501826137b5565b50505050565b613c0a81614291565b82525050565b613c1981614291565b82525050565b6000613c2b82856137fd565b9150613c3782846137fd565b91508190509392505050565b6000613c4e82613b0d565b9150819050919050565b6000602082019050613c6d600083018461375e565b92915050565b6000608082019050613c88600083018761375e565b613c95602083018661375e565b613ca26040830185613c10565b8181036060830152613cb4818461377c565b905095945050505050565b6000604082019050613cd4600083018561375e565b613ce16020830184613c10565b9392505050565b6000602082019050613cfd600083018461376d565b92915050565b60006020820190508181036000830152613d1d81846137c4565b905092915050565b60006020820190508181036000830152613d3e8161382e565b9050919050565b60006020820190508181036000830152613d5e81613851565b9050919050565b60006020820190508181036000830152613d7e81613874565b9050919050565b60006020820190508181036000830152613d9e81613897565b9050919050565b60006020820190508181036000830152613dbe816138ba565b9050919050565b60006020820190508181036000830152613dde816138dd565b9050919050565b60006020820190508181036000830152613dfe81613900565b9050919050565b60006020820190508181036000830152613e1e81613923565b9050919050565b60006020820190508181036000830152613e3e81613946565b9050919050565b60006020820190508181036000830152613e5e81613969565b9050919050565b60006020820190508181036000830152613e7e8161398c565b9050919050565b60006020820190508181036000830152613e9e816139af565b9050919050565b60006020820190508181036000830152613ebe816139d2565b9050919050565b60006020820190508181036000830152613ede816139f5565b9050919050565b60006020820190508181036000830152613efe81613a18565b9050919050565b60006020820190508181036000830152613f1e81613a3b565b9050919050565b60006020820190508181036000830152613f3e81613a5e565b9050919050565b60006020820190508181036000830152613f5e81613a81565b9050919050565b60006020820190508181036000830152613f7e81613aa4565b9050919050565b60006020820190508181036000830152613f9e81613ac7565b9050919050565b60006020820190508181036000830152613fbe81613aea565b9050919050565b60006020820190508181036000830152613fde81613b30565b9050919050565b60006020820190508181036000830152613ffe81613b53565b9050919050565b6000602082019050818103600083015261401e81613b76565b9050919050565b600060a08201905061403a6000830184613b99565b92915050565b60006020820190506140556000830184613c10565b92915050565b6000614065614076565b90506140718282614321565b919050565b6000604051905090565b600067ffffffffffffffff82111561409b5761409a6144b7565b5b6140a482614504565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061410a82614291565b915061411583614291565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561414a576141496143cc565b5b828201905092915050565b600061416082614291565b915061416b83614291565b92508261417b5761417a6143fb565b5b828204905092915050565b600061419182614291565b915061419c83614291565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141d5576141d46143cc565b5b828202905092915050565b60006141eb82614291565b91506141f683614291565b925082821015614209576142086143cc565b5b828203905092915050565b600061421f82614271565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061426c82614b2a565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006142a68261425e565b9050919050565b82818337600083830152505050565b60005b838110156142da5780820151818401526020810190506142bf565b838111156142e9576000848401525b50505050565b6000600282049050600182168061430757607f821691505b6020821081141561431b5761431a614459565b5b50919050565b61432a82614504565b810181811067ffffffffffffffff82111715614349576143486144b7565b5b80604052505050565b600061435d82614291565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143905761438f6143cc565b5b600182019050919050565b60006143a682614291565b91506143b183614291565b9250826143c1576143c06143fb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f57616c6c65742068617320616c726561647920636c61696d6564206d6178696d60008201527f756d206d696e7473000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820617661696c61626c6520746f6b656e7320746f206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616c6c6572206e6f7420746865206f776e6572206f6620446f67652041726d60008201527f7920546f6b656e00000000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173206265656e20706175736564206279206f776e6572000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5552492069732046726f7a656e00000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f63616e6e6f74206d696e74203000000000000000000000000000000000000000600082015250565b7f446f676541726d79204d696e7420616c726561647920636c61696d6564000000600082015250565b60038110614b3b57614b3a61442a565b5b50565b614b4781614214565b8114614b5257600080fd5b50565b614b5e81614226565b8114614b6957600080fd5b50565b614b7581614232565b8114614b8057600080fd5b50565b614b8c81614291565b8114614b9757600080fd5b5056fea26469706673582212206d74777a97e0c5ecf04d868a0d798c75aba126d36f806ba2af99dab927b97a5264736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000021177c97be40b52b002fbee000a03212708bcf47
-----Decoded View---------------
Arg [0] : _dogeArmy (address): 0x21177C97Be40b52b002fbeE000a03212708BCf47
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000021177c97be40b52b002fbee000a03212708bcf47
Loading...
Loading
Loading...
Loading
[ 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.