ERC-721
Overview
Max Total Supply
1,625 STICKMAN
Holders
488
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 STICKMANLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
StickmanERC721
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: AGPL-3.0-only pragma solidity >=0.8.0; /// @author AC import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract StickmanERC721 is ERC721, Ownable { constructor(string memory _name, string memory _symbol) ERC721(_name, _symbol) {} /** uri methods */ string private _uri = "https://gateway.pinata.cloud/ipfs/QmXTYJrQDat98hAMRchontp98Xi2mNCENWamkm4Rwpfgae/"; function tokenURI(uint256 id) public view override returns (string memory) { return string(abi.encodePacked(_uri, toString(id), ".json")); } function setURI(string memory uri) external onlyOwner { _uri = uri; } /** contract permissions */ address private _crossmint_address; /// TODO set this to the crossmint minter address function setCrossmintAddress(address addr) external onlyOwner { _crossmint_address = addr; } modifier onlyCrossmint() { require (msg.sender == _crossmint_address); _; } /** mint enabling */ bool private allow_list_enabled; bool private mint_enabled; function enableAllowList() external onlyOwner { allow_list_enabled = true; } function enableMint() external onlyOwner { mint_enabled = true; } modifier allowListEnabled() { require (allow_list_enabled, "allow list not enabled."); _; } modifier mintEnabled() { require (mint_enabled, "minting not enabled."); _; } /** mint limits per-wallet */ uint256 public constant MAX_PER_WALLET = 3; modifier enforceMintLimit(address to, uint256 num_to_mint) { require (balanceOf(to) + num_to_mint <= MAX_PER_WALLET, "too many tokens minted to this wallet."); _; } /** mint price */ uint256 public constant PRICE = 55000000000000000; // 0.055 ether modifier ensurePayment(uint256 num_to_mint) { require (msg.value >= num_to_mint * PRICE, "not enough ether paid."); _; } /** minting allowlist logic */ mapping (address => uint256) private _allowList; function setAllowList(address[] calldata vips) external { uint256 num_vips = vips.length; for (uint256 i; i < num_vips;) { _allowList[vips[i]] = MAX_PER_WALLET; unchecked { i++; } } } modifier enforcePremintLimit(address to, uint256 num_to_mint) { uint256 amount_left = _allowList[to]; require (num_to_mint <= amount_left, "exceeding premint limit."); _; _allowList[to] = amount_left - num_to_mint; } /** reentrancy */ uint256 private guard = 1; modifier reentrancyGuard() { require (guard == 1, "reentrancy failure."); guard = 2; _; guard = 1; } /** supply limits */ uint256 public constant MAX_SUPPLY = 5555; uint256 public totalSupply; function _internal_mint(address to, uint256 num_to_mint) internal { uint256 total_supply = totalSupply; require (total_supply + num_to_mint <= MAX_SUPPLY, "minting error, attempting to exceed supply."); for (uint256 i; i < num_to_mint;) { _safeMint(to, ++total_supply); unchecked { i++; } } totalSupply = total_supply; } /** public mint functions */ function allowlistMint(uint256 num_to_mint) external payable allowListEnabled enforcePremintLimit(msg.sender, num_to_mint) ensurePayment(num_to_mint) reentrancyGuard { _internal_mint(msg.sender, num_to_mint); } function mint(uint256 num_to_mint) external payable mintEnabled enforceMintLimit(msg.sender, num_to_mint) ensurePayment(num_to_mint) reentrancyGuard { _internal_mint(msg.sender, num_to_mint); } function crossmintTo(address to, uint256 _count) external onlyCrossmint enforceMintLimit(to, _count) reentrancyGuard { if (!mint_enabled) { require (allow_list_enabled, "allow list and minting both not enabled, crossmint disabled."); uint256 amount_left = _allowList[to]; require (_count <= amount_left, "attempting to mint too many during allow list mint."); _allowList[to] = amount_left - _count; } _internal_mint(to, _count); } /** developer payment */ address payable constant A = payable(0xAd75E32b0603D4a2b7E89A23eDD3228E5cD0699A); /** TODO set this to the atc address */ address payable constant T = payable(0xAECE4959fa2e70e9210D6755B25F73A225C4F956); /** TODO set this to the atc address */ address payable constant C = payable(0x0E25e1A23378ece3C304b930b5B42727E6D249F9); /** TODO set this to the atc address */ function disburse() external onlyOwner { uint256 total = address(this).balance; uint256 ATC = (total * 8) / 100; A.transfer(ATC / 3); T.transfer(ATC / 3); C.transfer(ATC / 3); payable(owner()).transfer(total - ((total * 8) / 100)); } } function toString(uint256 value) 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); }
// 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 (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 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); }
// 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 (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 (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 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/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/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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num_to_mint","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"crossmintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disburse","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableMint","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":[{"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":"num_to_mint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"vips","type":"address[]"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setCrossmintAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806080016040528060518152602001620045ac6051913960079080519060200190620000359291906200019a565b506001600a553480156200004857600080fd5b50604051620045fd380380620045fd83398181016040528101906200006e9190620002c8565b81818160009080519060200190620000889291906200019a565b508060019080519060200190620000a19291906200019a565b505050620000c4620000b8620000cc60201b60201c565b620000d460201b60201c565b5050620004d1565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001a890620003e2565b90600052602060002090601f016020900481019282620001cc576000855562000218565b82601f10620001e757805160ff191683800117855562000218565b8280016001018555821562000218579182015b8281111562000217578251825591602001919060010190620001fa565b5b5090506200022791906200022b565b5090565b5b80821115620002465760008160009055506001016200022c565b5090565b6000620002616200025b8462000376565b6200034d565b90508281526020810184848401111562000280576200027f620004b1565b5b6200028d848285620003ac565b509392505050565b600082601f830112620002ad57620002ac620004ac565b5b8151620002bf8482602086016200024a565b91505092915050565b60008060408385031215620002e257620002e1620004bb565b5b600083015167ffffffffffffffff811115620003035762000302620004b6565b5b620003118582860162000295565b925050602083015167ffffffffffffffff811115620003355762000334620004b6565b5b620003438582860162000295565b9150509250929050565b6000620003596200036c565b905062000367828262000418565b919050565b6000604051905090565b600067ffffffffffffffff8211156200039457620003936200047d565b5b6200039f82620004c0565b9050602081019050919050565b60005b83811015620003cc578082015181840152602081019050620003af565b83811115620003dc576000848401525b50505050565b60006002820490506001821680620003fb57607f821691505b602082108114156200041257620004116200044e565b5b50919050565b6200042382620004c0565b810181811067ffffffffffffffff821117156200044557620004446200047d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6140cb80620004e16000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063abc6fd0b11610095578063dc2fbaee11610064578063dc2fbaee146105ea578063e67c03e214610601578063e985e9c51461062a578063f2fde38b14610667576101c2565b8063abc6fd0b14610551578063b88d4fde14610568578063c180526a14610591578063c87b56dd146105ad576101c2565b806395d89b41116100d157806395d89b41146104b857806399755624146104e3578063a0712d681461050c578063a22cb46514610528576101c2565b8063715018a61461044b5780638d859f3e146104625780638da5cb5b1461048d576101c2565b806323b872dd1161016457806344b28d591161013e57806344b28d59146103915780636352211e146103a85780636447c35d146103e557806370a082311461040e576101c2565b806323b872dd1461031457806332cb6b0c1461033d57806342842e0e14610368576101c2565b8063081812fc116101a0578063081812fc14610258578063095ea7b3146102955780630f2cdd6c146102be57806318160ddd146102e9576101c2565b806301ffc9a7146101c757806302fe53051461020457806306fdde031461022d575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612be5565b610690565b6040516101fb9190613205565b60405180910390f35b34801561021057600080fd5b5061022b60048036038101906102269190612c3f565b610772565b005b34801561023957600080fd5b50610242610808565b60405161024f9190613220565b60405180910390f35b34801561026457600080fd5b5061027f600480360381019061027a9190612c88565b61089a565b60405161028c919061319e565b60405180910390f35b3480156102a157600080fd5b506102bc60048036038101906102b79190612b58565b61091f565b005b3480156102ca57600080fd5b506102d3610a37565b6040516102e09190613542565b60405180910390f35b3480156102f557600080fd5b506102fe610a3c565b60405161030b9190613542565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190612a42565b610a42565b005b34801561034957600080fd5b50610352610aa2565b60405161035f9190613542565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190612a42565b610aa8565b005b34801561039d57600080fd5b506103a6610ac8565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612c88565b610b61565b6040516103dc919061319e565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190612b98565b610c13565b005b34801561041a57600080fd5b50610435600480360381019061043091906129d5565b610ca5565b6040516104429190613542565b60405180910390f35b34801561045757600080fd5b50610460610d5d565b005b34801561046e57600080fd5b50610477610de5565b6040516104849190613542565b60405180910390f35b34801561049957600080fd5b506104a2610df0565b6040516104af919061319e565b60405180910390f35b3480156104c457600080fd5b506104cd610e1a565b6040516104da9190613220565b60405180910390f35b3480156104ef57600080fd5b5061050a600480360381019061050591906129d5565b610eac565b005b61052660048036038101906105219190612c88565b610f6c565b005b34801561053457600080fd5b5061054f600480360381019061054a9190612b18565b6110cf565b005b34801561055d57600080fd5b506105666110e5565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612a95565b61132d565b005b6105ab60048036038101906105a69190612c88565b61138f565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190612c88565b611572565b6040516105e19190613220565b60405180910390f35b3480156105f657600080fd5b506105ff6115a6565b005b34801561060d57600080fd5b5061062860048036038101906106239190612b58565b61163f565b005b34801561063657600080fd5b50610651600480360381019061064c9190612a02565b611892565b60405161065e9190613205565b60405180910390f35b34801561067357600080fd5b5061068e600480360381019061068991906129d5565b611926565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076b575061076a82611a1e565b5b9050919050565b61077a611a88565b73ffffffffffffffffffffffffffffffffffffffff16610798610df0565b73ffffffffffffffffffffffffffffffffffffffff16146107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e590613442565b60405180910390fd5b8060079080519060200190610804929190612793565b5050565b60606000805461081790613807565b80601f016020809104026020016040519081016040528092919081815260200182805461084390613807565b80156108905780601f1061086557610100808354040283529160200191610890565b820191906000526020600020905b81548152906001019060200180831161087357829003601f168201915b5050505050905090565b60006108a582611a90565b6108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db90613422565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092a82610b61565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610992906134c2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ba611a88565b73ffffffffffffffffffffffffffffffffffffffff1614806109e957506109e8816109e3611a88565b611892565b5b610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90613382565b60405180910390fd5b610a328383611afc565b505050565b600381565b600b5481565b610a53610a4d611a88565b82611bb5565b610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990613502565b60405180910390fd5b610a9d838383611c93565b505050565b6115b381565b610ac38383836040518060200160405280600081525061132d565b505050565b610ad0611a88565b73ffffffffffffffffffffffffffffffffffffffff16610aee610df0565b73ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90613442565b60405180910390fd5b6001600860156101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c01906133c2565b60405180910390fd5b80915050919050565b600082829050905060005b81811015610c9f57600360096000868685818110610c3f57610c3e613971565b5b9050602002016020810190610c5491906129d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080600101915050610c1e565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d906133a2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d65611a88565b73ffffffffffffffffffffffffffffffffffffffff16610d83610df0565b73ffffffffffffffffffffffffffffffffffffffff1614610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090613442565b60405180910390fd5b610de36000611efa565b565b66c3663566a5800081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e2990613807565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5590613807565b8015610ea25780601f10610e7757610100808354040283529160200191610ea2565b820191906000526020600020905b815481529060010190602001808311610e8557829003601f168201915b5050505050905090565b610eb4611a88565b73ffffffffffffffffffffffffffffffffffffffff16610ed2610df0565b73ffffffffffffffffffffffffffffffffffffffff1614610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90613442565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860159054906101000a900460ff16610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb2906133e2565b60405180910390fd5b3381600381610fc984610ca5565b610fd3919061363c565b1115611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b906134e2565b60405180910390fd5b8266c3663566a580008161102891906136c3565b34101561106a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611061906134a2565b60405180910390fd5b6001600a54146110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690613462565b60405180910390fd5b6002600a819055506110c13385611fc0565b6001600a8190555050505050565b6110e16110da611a88565b8383612052565b5050565b6110ed611a88565b73ffffffffffffffffffffffffffffffffffffffff1661110b610df0565b73ffffffffffffffffffffffffffffffffffffffff1614611161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115890613442565b60405180910390fd5b60004790506000606460088361117791906136c3565b6111819190613692565b905073ad75e32b0603d4a2b7e89a23edd3228e5cd0699a73ffffffffffffffffffffffffffffffffffffffff166108fc6003836111be9190613692565b9081150290604051600060405180830381858888f193505050501580156111e9573d6000803e3d6000fd5b5073aece4959fa2e70e9210d6755b25f73a225c4f95673ffffffffffffffffffffffffffffffffffffffff166108fc6003836112259190613692565b9081150290604051600060405180830381858888f19350505050158015611250573d6000803e3d6000fd5b50730e25e1a23378ece3c304b930b5b42727e6d249f973ffffffffffffffffffffffffffffffffffffffff166108fc60038361128c9190613692565b9081150290604051600060405180830381858888f193505050501580156112b7573d6000803e3d6000fd5b506112c0610df0565b73ffffffffffffffffffffffffffffffffffffffff166108fc60646008856112e891906136c3565b6112f29190613692565b846112fd919061371d565b9081150290604051600060405180830381858888f19350505050158015611328573d6000803e3d6000fd5b505050565b61133e611338611a88565b83611bb5565b61137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613502565b60405180910390fd5b611389848484846121bf565b50505050565b600860149054906101000a900460ff166113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590613522565b60405180910390fd5b33816000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080821115611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90613482565b60405180910390fd5b8366c3663566a580008161147b91906136c3565b3410156114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b4906134a2565b60405180910390fd5b6001600a5414611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f990613462565b60405180910390fd5b6002600a819055506115143386611fc0565b6001600a81905550508181611529919061371d565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b6060600761157f8361221b565b60405160200161159092919061316f565b6040516020818303038152906040529050919050565b6115ae611a88565b73ffffffffffffffffffffffffffffffffffffffff166115cc610df0565b73ffffffffffffffffffffffffffffffffffffffff1614611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990613442565b60405180910390fd5b6001600860146101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461169957600080fd5b81816003816116a784610ca5565b6116b1919061363c565b11156116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e9906134e2565b60405180910390fd5b6001600a5414611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90613462565b60405180910390fd5b6002600a81905550600860159054906101000a900460ff1661187a57600860149054906101000a900460ff166117a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179990613342565b60405180910390fd5b6000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080841115611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090613262565b60405180910390fd5b8381611835919061371d565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b6118848484611fc0565b6001600a8190555050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61192e611a88565b73ffffffffffffffffffffffffffffffffffffffff1661194c610df0565b73ffffffffffffffffffffffffffffffffffffffff16146119a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199990613442565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a09906132a2565b60405180910390fd5b611a1b81611efa565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b6f83610b61565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bc082611a90565b611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690613362565b60405180910390fd5b6000611c0a83610b61565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c7957508373ffffffffffffffffffffffffffffffffffffffff16611c618461089a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c8a5750611c898185611892565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cb382610b61565b73ffffffffffffffffffffffffffffffffffffffff1614611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d00906132c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7090613302565b60405180910390fd5b611d8483838361237c565b611d8f600082611afc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ddf919061371d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e36919061363c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ef5838383612381565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600b5490506115b38282611fd6919061363c565b1115612017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200e90613242565b60405180910390fd5b60005b828110156120455761203884836120309061386a565b935083612386565b808060010191505061201a565b5080600b81905550505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b890613322565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121b29190613205565b60405180910390a3505050565b6121ca848484611c93565b6121d6848484846123a4565b612215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c90613282565b60405180910390fd5b50505050565b60606000821415612263576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612377565b600082905060005b6000821461229557808061227e9061386a565b915050600a8261228e9190613692565b915061226b565b60008167ffffffffffffffff8111156122b1576122b06139a0565b5b6040519080825280601f01601f1916602001820160405280156122e35781602001600182028036833780820191505090505b5090505b60008514612370576001826122fc919061371d565b9150600a8561230b91906138b3565b6030612317919061363c565b60f81b81838151811061232d5761232c613971565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123699190613692565b94506122e7565b8093505050505b919050565b505050565b505050565b6123a082826040518060200160405280600081525061253b565b5050565b60006123c58473ffffffffffffffffffffffffffffffffffffffff16612596565b1561252e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123ee611a88565b8786866040518563ffffffff1660e01b815260040161241094939291906131b9565b602060405180830381600087803b15801561242a57600080fd5b505af192505050801561245b57506040513d601f19601f820116820180604052508101906124589190612c12565b60015b6124de573d806000811461248b576040519150601f19603f3d011682016040523d82523d6000602084013e612490565b606091505b506000815114156124d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cd90613282565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612533565b600190505b949350505050565b61254583836125b9565b61255260008484846123a4565b612591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258890613282565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262090613402565b60405180910390fd5b61263281611a90565b15612672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612669906132e2565b60405180910390fd5b61267e6000838361237c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126ce919061363c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461278f60008383612381565b5050565b82805461279f90613807565b90600052602060002090601f0160209004810192826127c15760008555612808565b82601f106127da57805160ff1916838001178555612808565b82800160010185558215612808579182015b828111156128075782518255916020019190600101906127ec565b5b5090506128159190612819565b5090565b5b8082111561283257600081600090555060010161281a565b5090565b600061284961284484613582565b61355d565b905082815260208101848484011115612865576128646139de565b5b6128708482856137c5565b509392505050565b600061288b612886846135b3565b61355d565b9050828152602081018484840111156128a7576128a66139de565b5b6128b28482856137c5565b509392505050565b6000813590506128c981614039565b92915050565b60008083601f8401126128e5576128e46139d4565b5b8235905067ffffffffffffffff811115612902576129016139cf565b5b60208301915083602082028301111561291e5761291d6139d9565b5b9250929050565b60008135905061293481614050565b92915050565b60008135905061294981614067565b92915050565b60008151905061295e81614067565b92915050565b600082601f830112612979576129786139d4565b5b8135612989848260208601612836565b91505092915050565b600082601f8301126129a7576129a66139d4565b5b81356129b7848260208601612878565b91505092915050565b6000813590506129cf8161407e565b92915050565b6000602082840312156129eb576129ea6139e8565b5b60006129f9848285016128ba565b91505092915050565b60008060408385031215612a1957612a186139e8565b5b6000612a27858286016128ba565b9250506020612a38858286016128ba565b9150509250929050565b600080600060608486031215612a5b57612a5a6139e8565b5b6000612a69868287016128ba565b9350506020612a7a868287016128ba565b9250506040612a8b868287016129c0565b9150509250925092565b60008060008060808587031215612aaf57612aae6139e8565b5b6000612abd878288016128ba565b9450506020612ace878288016128ba565b9350506040612adf878288016129c0565b925050606085013567ffffffffffffffff811115612b0057612aff6139e3565b5b612b0c87828801612964565b91505092959194509250565b60008060408385031215612b2f57612b2e6139e8565b5b6000612b3d858286016128ba565b9250506020612b4e85828601612925565b9150509250929050565b60008060408385031215612b6f57612b6e6139e8565b5b6000612b7d858286016128ba565b9250506020612b8e858286016129c0565b9150509250929050565b60008060208385031215612baf57612bae6139e8565b5b600083013567ffffffffffffffff811115612bcd57612bcc6139e3565b5b612bd9858286016128cf565b92509250509250929050565b600060208284031215612bfb57612bfa6139e8565b5b6000612c098482850161293a565b91505092915050565b600060208284031215612c2857612c276139e8565b5b6000612c368482850161294f565b91505092915050565b600060208284031215612c5557612c546139e8565b5b600082013567ffffffffffffffff811115612c7357612c726139e3565b5b612c7f84828501612992565b91505092915050565b600060208284031215612c9e57612c9d6139e8565b5b6000612cac848285016129c0565b91505092915050565b612cbe81613751565b82525050565b612ccd81613763565b82525050565b6000612cde826135f9565b612ce8818561360f565b9350612cf88185602086016137d4565b612d01816139ed565b840191505092915050565b6000612d1782613604565b612d218185613620565b9350612d318185602086016137d4565b612d3a816139ed565b840191505092915050565b6000612d5082613604565b612d5a8185613631565b9350612d6a8185602086016137d4565b80840191505092915050565b60008154612d8381613807565b612d8d8186613631565b94506001821660008114612da85760018114612db957612dec565b60ff19831686528186019350612dec565b612dc2856135e4565b60005b83811015612de457815481890152600182019150602081019050612dc5565b838801955050505b50505092915050565b6000612e02602b83613620565b9150612e0d826139fe565b604082019050919050565b6000612e25603383613620565b9150612e3082613a4d565b604082019050919050565b6000612e48603283613620565b9150612e5382613a9c565b604082019050919050565b6000612e6b602683613620565b9150612e7682613aeb565b604082019050919050565b6000612e8e602583613620565b9150612e9982613b3a565b604082019050919050565b6000612eb1601c83613620565b9150612ebc82613b89565b602082019050919050565b6000612ed4602483613620565b9150612edf82613bb2565b604082019050919050565b6000612ef7601983613620565b9150612f0282613c01565b602082019050919050565b6000612f1a603c83613620565b9150612f2582613c2a565b604082019050919050565b6000612f3d602c83613620565b9150612f4882613c79565b604082019050919050565b6000612f60603883613620565b9150612f6b82613cc8565b604082019050919050565b6000612f83602a83613620565b9150612f8e82613d17565b604082019050919050565b6000612fa6602983613620565b9150612fb182613d66565b604082019050919050565b6000612fc9601483613620565b9150612fd482613db5565b602082019050919050565b6000612fec602083613620565b9150612ff782613dde565b602082019050919050565b600061300f602c83613620565b915061301a82613e07565b604082019050919050565b6000613032600583613631565b915061303d82613e56565b600582019050919050565b6000613055602083613620565b915061306082613e7f565b602082019050919050565b6000613078601383613620565b915061308382613ea8565b602082019050919050565b600061309b601883613620565b91506130a682613ed1565b602082019050919050565b60006130be601683613620565b91506130c982613efa565b602082019050919050565b60006130e1602183613620565b91506130ec82613f23565b604082019050919050565b6000613104602683613620565b915061310f82613f72565b604082019050919050565b6000613127603183613620565b915061313282613fc1565b604082019050919050565b600061314a601783613620565b915061315582614010565b602082019050919050565b613169816137bb565b82525050565b600061317b8285612d76565b91506131878284612d45565b915061319282613025565b91508190509392505050565b60006020820190506131b36000830184612cb5565b92915050565b60006080820190506131ce6000830187612cb5565b6131db6020830186612cb5565b6131e86040830185613160565b81810360608301526131fa8184612cd3565b905095945050505050565b600060208201905061321a6000830184612cc4565b92915050565b6000602082019050818103600083015261323a8184612d0c565b905092915050565b6000602082019050818103600083015261325b81612df5565b9050919050565b6000602082019050818103600083015261327b81612e18565b9050919050565b6000602082019050818103600083015261329b81612e3b565b9050919050565b600060208201905081810360008301526132bb81612e5e565b9050919050565b600060208201905081810360008301526132db81612e81565b9050919050565b600060208201905081810360008301526132fb81612ea4565b9050919050565b6000602082019050818103600083015261331b81612ec7565b9050919050565b6000602082019050818103600083015261333b81612eea565b9050919050565b6000602082019050818103600083015261335b81612f0d565b9050919050565b6000602082019050818103600083015261337b81612f30565b9050919050565b6000602082019050818103600083015261339b81612f53565b9050919050565b600060208201905081810360008301526133bb81612f76565b9050919050565b600060208201905081810360008301526133db81612f99565b9050919050565b600060208201905081810360008301526133fb81612fbc565b9050919050565b6000602082019050818103600083015261341b81612fdf565b9050919050565b6000602082019050818103600083015261343b81613002565b9050919050565b6000602082019050818103600083015261345b81613048565b9050919050565b6000602082019050818103600083015261347b8161306b565b9050919050565b6000602082019050818103600083015261349b8161308e565b9050919050565b600060208201905081810360008301526134bb816130b1565b9050919050565b600060208201905081810360008301526134db816130d4565b9050919050565b600060208201905081810360008301526134fb816130f7565b9050919050565b6000602082019050818103600083015261351b8161311a565b9050919050565b6000602082019050818103600083015261353b8161313d565b9050919050565b60006020820190506135576000830184613160565b92915050565b6000613567613578565b90506135738282613839565b919050565b6000604051905090565b600067ffffffffffffffff82111561359d5761359c6139a0565b5b6135a6826139ed565b9050602081019050919050565b600067ffffffffffffffff8211156135ce576135cd6139a0565b5b6135d7826139ed565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613647826137bb565b9150613652836137bb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613687576136866138e4565b5b828201905092915050565b600061369d826137bb565b91506136a8836137bb565b9250826136b8576136b7613913565b5b828204905092915050565b60006136ce826137bb565b91506136d9836137bb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613712576137116138e4565b5b828202905092915050565b6000613728826137bb565b9150613733836137bb565b925082821015613746576137456138e4565b5b828203905092915050565b600061375c8261379b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137f25780820151818401526020810190506137d7565b83811115613801576000848401525b50505050565b6000600282049050600182168061381f57607f821691505b6020821081141561383357613832613942565b5b50919050565b613842826139ed565b810181811067ffffffffffffffff82111715613861576138606139a0565b5b80604052505050565b6000613875826137bb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138a8576138a76138e4565b5b600182019050919050565b60006138be826137bb565b91506138c9836137bb565b9250826138d9576138d8613913565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6d696e74696e67206572726f722c20617474656d7074696e6720746f2065786360008201527f65656420737570706c792e000000000000000000000000000000000000000000602082015250565b7f617474656d7074696e6720746f206d696e7420746f6f206d616e79206475726960008201527f6e6720616c6c6f77206c697374206d696e742e00000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f616c6c6f77206c69737420616e64206d696e74696e6720626f7468206e6f742060008201527f656e61626c65642c2063726f73736d696e742064697361626c65642e00000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d696e74696e67206e6f7420656e61626c65642e000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7265656e7472616e6379206661696c7572652e00000000000000000000000000600082015250565b7f657863656564696e67207072656d696e74206c696d69742e0000000000000000600082015250565b7f6e6f7420656e6f75676820657468657220706169642e00000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f746f6f206d616e7920746f6b656e73206d696e74656420746f2074686973207760008201527f616c6c65742e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f616c6c6f77206c697374206e6f7420656e61626c65642e000000000000000000600082015250565b61404281613751565b811461404d57600080fd5b50565b61405981613763565b811461406457600080fd5b50565b6140708161376f565b811461407b57600080fd5b50565b614087816137bb565b811461409257600080fd5b5056fea2646970667358221220301d9cce2470d712950bca5a57d502bb7bde6a1219ce1832f14849979fcf506f64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5854594a7251446174393868414d5263686f6e747039385869326d4e43454e57616d6b6d34527770666761652f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d537469636b6d616e2053616761000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008535449434b4d414e000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063abc6fd0b11610095578063dc2fbaee11610064578063dc2fbaee146105ea578063e67c03e214610601578063e985e9c51461062a578063f2fde38b14610667576101c2565b8063abc6fd0b14610551578063b88d4fde14610568578063c180526a14610591578063c87b56dd146105ad576101c2565b806395d89b41116100d157806395d89b41146104b857806399755624146104e3578063a0712d681461050c578063a22cb46514610528576101c2565b8063715018a61461044b5780638d859f3e146104625780638da5cb5b1461048d576101c2565b806323b872dd1161016457806344b28d591161013e57806344b28d59146103915780636352211e146103a85780636447c35d146103e557806370a082311461040e576101c2565b806323b872dd1461031457806332cb6b0c1461033d57806342842e0e14610368576101c2565b8063081812fc116101a0578063081812fc14610258578063095ea7b3146102955780630f2cdd6c146102be57806318160ddd146102e9576101c2565b806301ffc9a7146101c757806302fe53051461020457806306fdde031461022d575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612be5565b610690565b6040516101fb9190613205565b60405180910390f35b34801561021057600080fd5b5061022b60048036038101906102269190612c3f565b610772565b005b34801561023957600080fd5b50610242610808565b60405161024f9190613220565b60405180910390f35b34801561026457600080fd5b5061027f600480360381019061027a9190612c88565b61089a565b60405161028c919061319e565b60405180910390f35b3480156102a157600080fd5b506102bc60048036038101906102b79190612b58565b61091f565b005b3480156102ca57600080fd5b506102d3610a37565b6040516102e09190613542565b60405180910390f35b3480156102f557600080fd5b506102fe610a3c565b60405161030b9190613542565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190612a42565b610a42565b005b34801561034957600080fd5b50610352610aa2565b60405161035f9190613542565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190612a42565b610aa8565b005b34801561039d57600080fd5b506103a6610ac8565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612c88565b610b61565b6040516103dc919061319e565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190612b98565b610c13565b005b34801561041a57600080fd5b50610435600480360381019061043091906129d5565b610ca5565b6040516104429190613542565b60405180910390f35b34801561045757600080fd5b50610460610d5d565b005b34801561046e57600080fd5b50610477610de5565b6040516104849190613542565b60405180910390f35b34801561049957600080fd5b506104a2610df0565b6040516104af919061319e565b60405180910390f35b3480156104c457600080fd5b506104cd610e1a565b6040516104da9190613220565b60405180910390f35b3480156104ef57600080fd5b5061050a600480360381019061050591906129d5565b610eac565b005b61052660048036038101906105219190612c88565b610f6c565b005b34801561053457600080fd5b5061054f600480360381019061054a9190612b18565b6110cf565b005b34801561055d57600080fd5b506105666110e5565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612a95565b61132d565b005b6105ab60048036038101906105a69190612c88565b61138f565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190612c88565b611572565b6040516105e19190613220565b60405180910390f35b3480156105f657600080fd5b506105ff6115a6565b005b34801561060d57600080fd5b5061062860048036038101906106239190612b58565b61163f565b005b34801561063657600080fd5b50610651600480360381019061064c9190612a02565b611892565b60405161065e9190613205565b60405180910390f35b34801561067357600080fd5b5061068e600480360381019061068991906129d5565b611926565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076b575061076a82611a1e565b5b9050919050565b61077a611a88565b73ffffffffffffffffffffffffffffffffffffffff16610798610df0565b73ffffffffffffffffffffffffffffffffffffffff16146107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e590613442565b60405180910390fd5b8060079080519060200190610804929190612793565b5050565b60606000805461081790613807565b80601f016020809104026020016040519081016040528092919081815260200182805461084390613807565b80156108905780601f1061086557610100808354040283529160200191610890565b820191906000526020600020905b81548152906001019060200180831161087357829003601f168201915b5050505050905090565b60006108a582611a90565b6108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db90613422565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092a82610b61565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610992906134c2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ba611a88565b73ffffffffffffffffffffffffffffffffffffffff1614806109e957506109e8816109e3611a88565b611892565b5b610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90613382565b60405180910390fd5b610a328383611afc565b505050565b600381565b600b5481565b610a53610a4d611a88565b82611bb5565b610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990613502565b60405180910390fd5b610a9d838383611c93565b505050565b6115b381565b610ac38383836040518060200160405280600081525061132d565b505050565b610ad0611a88565b73ffffffffffffffffffffffffffffffffffffffff16610aee610df0565b73ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90613442565b60405180910390fd5b6001600860156101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c01906133c2565b60405180910390fd5b80915050919050565b600082829050905060005b81811015610c9f57600360096000868685818110610c3f57610c3e613971565b5b9050602002016020810190610c5491906129d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080600101915050610c1e565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d906133a2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d65611a88565b73ffffffffffffffffffffffffffffffffffffffff16610d83610df0565b73ffffffffffffffffffffffffffffffffffffffff1614610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090613442565b60405180910390fd5b610de36000611efa565b565b66c3663566a5800081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e2990613807565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5590613807565b8015610ea25780601f10610e7757610100808354040283529160200191610ea2565b820191906000526020600020905b815481529060010190602001808311610e8557829003601f168201915b5050505050905090565b610eb4611a88565b73ffffffffffffffffffffffffffffffffffffffff16610ed2610df0565b73ffffffffffffffffffffffffffffffffffffffff1614610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90613442565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860159054906101000a900460ff16610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb2906133e2565b60405180910390fd5b3381600381610fc984610ca5565b610fd3919061363c565b1115611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b906134e2565b60405180910390fd5b8266c3663566a580008161102891906136c3565b34101561106a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611061906134a2565b60405180910390fd5b6001600a54146110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690613462565b60405180910390fd5b6002600a819055506110c13385611fc0565b6001600a8190555050505050565b6110e16110da611a88565b8383612052565b5050565b6110ed611a88565b73ffffffffffffffffffffffffffffffffffffffff1661110b610df0565b73ffffffffffffffffffffffffffffffffffffffff1614611161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115890613442565b60405180910390fd5b60004790506000606460088361117791906136c3565b6111819190613692565b905073ad75e32b0603d4a2b7e89a23edd3228e5cd0699a73ffffffffffffffffffffffffffffffffffffffff166108fc6003836111be9190613692565b9081150290604051600060405180830381858888f193505050501580156111e9573d6000803e3d6000fd5b5073aece4959fa2e70e9210d6755b25f73a225c4f95673ffffffffffffffffffffffffffffffffffffffff166108fc6003836112259190613692565b9081150290604051600060405180830381858888f19350505050158015611250573d6000803e3d6000fd5b50730e25e1a23378ece3c304b930b5b42727e6d249f973ffffffffffffffffffffffffffffffffffffffff166108fc60038361128c9190613692565b9081150290604051600060405180830381858888f193505050501580156112b7573d6000803e3d6000fd5b506112c0610df0565b73ffffffffffffffffffffffffffffffffffffffff166108fc60646008856112e891906136c3565b6112f29190613692565b846112fd919061371d565b9081150290604051600060405180830381858888f19350505050158015611328573d6000803e3d6000fd5b505050565b61133e611338611a88565b83611bb5565b61137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613502565b60405180910390fd5b611389848484846121bf565b50505050565b600860149054906101000a900460ff166113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590613522565b60405180910390fd5b33816000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080821115611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90613482565b60405180910390fd5b8366c3663566a580008161147b91906136c3565b3410156114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b4906134a2565b60405180910390fd5b6001600a5414611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f990613462565b60405180910390fd5b6002600a819055506115143386611fc0565b6001600a81905550508181611529919061371d565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b6060600761157f8361221b565b60405160200161159092919061316f565b6040516020818303038152906040529050919050565b6115ae611a88565b73ffffffffffffffffffffffffffffffffffffffff166115cc610df0565b73ffffffffffffffffffffffffffffffffffffffff1614611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990613442565b60405180910390fd5b6001600860146101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461169957600080fd5b81816003816116a784610ca5565b6116b1919061363c565b11156116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e9906134e2565b60405180910390fd5b6001600a5414611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90613462565b60405180910390fd5b6002600a81905550600860159054906101000a900460ff1661187a57600860149054906101000a900460ff166117a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179990613342565b60405180910390fd5b6000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080841115611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090613262565b60405180910390fd5b8381611835919061371d565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b6118848484611fc0565b6001600a8190555050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61192e611a88565b73ffffffffffffffffffffffffffffffffffffffff1661194c610df0565b73ffffffffffffffffffffffffffffffffffffffff16146119a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199990613442565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a09906132a2565b60405180910390fd5b611a1b81611efa565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b6f83610b61565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bc082611a90565b611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690613362565b60405180910390fd5b6000611c0a83610b61565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c7957508373ffffffffffffffffffffffffffffffffffffffff16611c618461089a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c8a5750611c898185611892565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cb382610b61565b73ffffffffffffffffffffffffffffffffffffffff1614611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d00906132c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7090613302565b60405180910390fd5b611d8483838361237c565b611d8f600082611afc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ddf919061371d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e36919061363c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ef5838383612381565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600b5490506115b38282611fd6919061363c565b1115612017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200e90613242565b60405180910390fd5b60005b828110156120455761203884836120309061386a565b935083612386565b808060010191505061201a565b5080600b81905550505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b890613322565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121b29190613205565b60405180910390a3505050565b6121ca848484611c93565b6121d6848484846123a4565b612215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c90613282565b60405180910390fd5b50505050565b60606000821415612263576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612377565b600082905060005b6000821461229557808061227e9061386a565b915050600a8261228e9190613692565b915061226b565b60008167ffffffffffffffff8111156122b1576122b06139a0565b5b6040519080825280601f01601f1916602001820160405280156122e35781602001600182028036833780820191505090505b5090505b60008514612370576001826122fc919061371d565b9150600a8561230b91906138b3565b6030612317919061363c565b60f81b81838151811061232d5761232c613971565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123699190613692565b94506122e7565b8093505050505b919050565b505050565b505050565b6123a082826040518060200160405280600081525061253b565b5050565b60006123c58473ffffffffffffffffffffffffffffffffffffffff16612596565b1561252e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123ee611a88565b8786866040518563ffffffff1660e01b815260040161241094939291906131b9565b602060405180830381600087803b15801561242a57600080fd5b505af192505050801561245b57506040513d601f19601f820116820180604052508101906124589190612c12565b60015b6124de573d806000811461248b576040519150601f19603f3d011682016040523d82523d6000602084013e612490565b606091505b506000815114156124d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cd90613282565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612533565b600190505b949350505050565b61254583836125b9565b61255260008484846123a4565b612591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258890613282565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262090613402565b60405180910390fd5b61263281611a90565b15612672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612669906132e2565b60405180910390fd5b61267e6000838361237c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126ce919061363c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461278f60008383612381565b5050565b82805461279f90613807565b90600052602060002090601f0160209004810192826127c15760008555612808565b82601f106127da57805160ff1916838001178555612808565b82800160010185558215612808579182015b828111156128075782518255916020019190600101906127ec565b5b5090506128159190612819565b5090565b5b8082111561283257600081600090555060010161281a565b5090565b600061284961284484613582565b61355d565b905082815260208101848484011115612865576128646139de565b5b6128708482856137c5565b509392505050565b600061288b612886846135b3565b61355d565b9050828152602081018484840111156128a7576128a66139de565b5b6128b28482856137c5565b509392505050565b6000813590506128c981614039565b92915050565b60008083601f8401126128e5576128e46139d4565b5b8235905067ffffffffffffffff811115612902576129016139cf565b5b60208301915083602082028301111561291e5761291d6139d9565b5b9250929050565b60008135905061293481614050565b92915050565b60008135905061294981614067565b92915050565b60008151905061295e81614067565b92915050565b600082601f830112612979576129786139d4565b5b8135612989848260208601612836565b91505092915050565b600082601f8301126129a7576129a66139d4565b5b81356129b7848260208601612878565b91505092915050565b6000813590506129cf8161407e565b92915050565b6000602082840312156129eb576129ea6139e8565b5b60006129f9848285016128ba565b91505092915050565b60008060408385031215612a1957612a186139e8565b5b6000612a27858286016128ba565b9250506020612a38858286016128ba565b9150509250929050565b600080600060608486031215612a5b57612a5a6139e8565b5b6000612a69868287016128ba565b9350506020612a7a868287016128ba565b9250506040612a8b868287016129c0565b9150509250925092565b60008060008060808587031215612aaf57612aae6139e8565b5b6000612abd878288016128ba565b9450506020612ace878288016128ba565b9350506040612adf878288016129c0565b925050606085013567ffffffffffffffff811115612b0057612aff6139e3565b5b612b0c87828801612964565b91505092959194509250565b60008060408385031215612b2f57612b2e6139e8565b5b6000612b3d858286016128ba565b9250506020612b4e85828601612925565b9150509250929050565b60008060408385031215612b6f57612b6e6139e8565b5b6000612b7d858286016128ba565b9250506020612b8e858286016129c0565b9150509250929050565b60008060208385031215612baf57612bae6139e8565b5b600083013567ffffffffffffffff811115612bcd57612bcc6139e3565b5b612bd9858286016128cf565b92509250509250929050565b600060208284031215612bfb57612bfa6139e8565b5b6000612c098482850161293a565b91505092915050565b600060208284031215612c2857612c276139e8565b5b6000612c368482850161294f565b91505092915050565b600060208284031215612c5557612c546139e8565b5b600082013567ffffffffffffffff811115612c7357612c726139e3565b5b612c7f84828501612992565b91505092915050565b600060208284031215612c9e57612c9d6139e8565b5b6000612cac848285016129c0565b91505092915050565b612cbe81613751565b82525050565b612ccd81613763565b82525050565b6000612cde826135f9565b612ce8818561360f565b9350612cf88185602086016137d4565b612d01816139ed565b840191505092915050565b6000612d1782613604565b612d218185613620565b9350612d318185602086016137d4565b612d3a816139ed565b840191505092915050565b6000612d5082613604565b612d5a8185613631565b9350612d6a8185602086016137d4565b80840191505092915050565b60008154612d8381613807565b612d8d8186613631565b94506001821660008114612da85760018114612db957612dec565b60ff19831686528186019350612dec565b612dc2856135e4565b60005b83811015612de457815481890152600182019150602081019050612dc5565b838801955050505b50505092915050565b6000612e02602b83613620565b9150612e0d826139fe565b604082019050919050565b6000612e25603383613620565b9150612e3082613a4d565b604082019050919050565b6000612e48603283613620565b9150612e5382613a9c565b604082019050919050565b6000612e6b602683613620565b9150612e7682613aeb565b604082019050919050565b6000612e8e602583613620565b9150612e9982613b3a565b604082019050919050565b6000612eb1601c83613620565b9150612ebc82613b89565b602082019050919050565b6000612ed4602483613620565b9150612edf82613bb2565b604082019050919050565b6000612ef7601983613620565b9150612f0282613c01565b602082019050919050565b6000612f1a603c83613620565b9150612f2582613c2a565b604082019050919050565b6000612f3d602c83613620565b9150612f4882613c79565b604082019050919050565b6000612f60603883613620565b9150612f6b82613cc8565b604082019050919050565b6000612f83602a83613620565b9150612f8e82613d17565b604082019050919050565b6000612fa6602983613620565b9150612fb182613d66565b604082019050919050565b6000612fc9601483613620565b9150612fd482613db5565b602082019050919050565b6000612fec602083613620565b9150612ff782613dde565b602082019050919050565b600061300f602c83613620565b915061301a82613e07565b604082019050919050565b6000613032600583613631565b915061303d82613e56565b600582019050919050565b6000613055602083613620565b915061306082613e7f565b602082019050919050565b6000613078601383613620565b915061308382613ea8565b602082019050919050565b600061309b601883613620565b91506130a682613ed1565b602082019050919050565b60006130be601683613620565b91506130c982613efa565b602082019050919050565b60006130e1602183613620565b91506130ec82613f23565b604082019050919050565b6000613104602683613620565b915061310f82613f72565b604082019050919050565b6000613127603183613620565b915061313282613fc1565b604082019050919050565b600061314a601783613620565b915061315582614010565b602082019050919050565b613169816137bb565b82525050565b600061317b8285612d76565b91506131878284612d45565b915061319282613025565b91508190509392505050565b60006020820190506131b36000830184612cb5565b92915050565b60006080820190506131ce6000830187612cb5565b6131db6020830186612cb5565b6131e86040830185613160565b81810360608301526131fa8184612cd3565b905095945050505050565b600060208201905061321a6000830184612cc4565b92915050565b6000602082019050818103600083015261323a8184612d0c565b905092915050565b6000602082019050818103600083015261325b81612df5565b9050919050565b6000602082019050818103600083015261327b81612e18565b9050919050565b6000602082019050818103600083015261329b81612e3b565b9050919050565b600060208201905081810360008301526132bb81612e5e565b9050919050565b600060208201905081810360008301526132db81612e81565b9050919050565b600060208201905081810360008301526132fb81612ea4565b9050919050565b6000602082019050818103600083015261331b81612ec7565b9050919050565b6000602082019050818103600083015261333b81612eea565b9050919050565b6000602082019050818103600083015261335b81612f0d565b9050919050565b6000602082019050818103600083015261337b81612f30565b9050919050565b6000602082019050818103600083015261339b81612f53565b9050919050565b600060208201905081810360008301526133bb81612f76565b9050919050565b600060208201905081810360008301526133db81612f99565b9050919050565b600060208201905081810360008301526133fb81612fbc565b9050919050565b6000602082019050818103600083015261341b81612fdf565b9050919050565b6000602082019050818103600083015261343b81613002565b9050919050565b6000602082019050818103600083015261345b81613048565b9050919050565b6000602082019050818103600083015261347b8161306b565b9050919050565b6000602082019050818103600083015261349b8161308e565b9050919050565b600060208201905081810360008301526134bb816130b1565b9050919050565b600060208201905081810360008301526134db816130d4565b9050919050565b600060208201905081810360008301526134fb816130f7565b9050919050565b6000602082019050818103600083015261351b8161311a565b9050919050565b6000602082019050818103600083015261353b8161313d565b9050919050565b60006020820190506135576000830184613160565b92915050565b6000613567613578565b90506135738282613839565b919050565b6000604051905090565b600067ffffffffffffffff82111561359d5761359c6139a0565b5b6135a6826139ed565b9050602081019050919050565b600067ffffffffffffffff8211156135ce576135cd6139a0565b5b6135d7826139ed565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613647826137bb565b9150613652836137bb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613687576136866138e4565b5b828201905092915050565b600061369d826137bb565b91506136a8836137bb565b9250826136b8576136b7613913565b5b828204905092915050565b60006136ce826137bb565b91506136d9836137bb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613712576137116138e4565b5b828202905092915050565b6000613728826137bb565b9150613733836137bb565b925082821015613746576137456138e4565b5b828203905092915050565b600061375c8261379b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137f25780820151818401526020810190506137d7565b83811115613801576000848401525b50505050565b6000600282049050600182168061381f57607f821691505b6020821081141561383357613832613942565b5b50919050565b613842826139ed565b810181811067ffffffffffffffff82111715613861576138606139a0565b5b80604052505050565b6000613875826137bb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138a8576138a76138e4565b5b600182019050919050565b60006138be826137bb565b91506138c9836137bb565b9250826138d9576138d8613913565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6d696e74696e67206572726f722c20617474656d7074696e6720746f2065786360008201527f65656420737570706c792e000000000000000000000000000000000000000000602082015250565b7f617474656d7074696e6720746f206d696e7420746f6f206d616e79206475726960008201527f6e6720616c6c6f77206c697374206d696e742e00000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f616c6c6f77206c69737420616e64206d696e74696e6720626f7468206e6f742060008201527f656e61626c65642c2063726f73736d696e742064697361626c65642e00000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d696e74696e67206e6f7420656e61626c65642e000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7265656e7472616e6379206661696c7572652e00000000000000000000000000600082015250565b7f657863656564696e67207072656d696e74206c696d69742e0000000000000000600082015250565b7f6e6f7420656e6f75676820657468657220706169642e00000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f746f6f206d616e7920746f6b656e73206d696e74656420746f2074686973207760008201527f616c6c65742e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f616c6c6f77206c697374206e6f7420656e61626c65642e000000000000000000600082015250565b61404281613751565b811461404d57600080fd5b50565b61405981613763565b811461406457600080fd5b50565b6140708161376f565b811461407b57600080fd5b50565b614087816137bb565b811461409257600080fd5b5056fea2646970667358221220301d9cce2470d712950bca5a57d502bb7bde6a1219ce1832f14849979fcf506f64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d537469636b6d616e2053616761000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008535449434b4d414e000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Stickman Saga
Arg [1] : _symbol (string): STICKMAN
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 537469636b6d616e205361676100000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 535449434b4d414e000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.