ERC-721
Overview
Max Total Supply
593 ALIAS
Holders
257
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 ALIASLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Alias
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./Accountable.sol"; pragma solidity ^0.8.0; contract Alias is ERC721Enumerable, Ownable, Accountable { string private _baseTokenURI; uint256 public constant MAX_SUPPLY = 8501; // One too high uint256 public constant RESERVES = 76; // One too high uint256 public priceWhitelist = 5 * 10 ** 16; // .05 ETH uint256 public pricePublic = 7 * 10 ** 16; // .07 ETH uint256 public saleTimeWhitelist = 1634421600; // Saturday, October 16, 2021 6:00:00 PM EST uint256 public saleTimePublic = 1634680800; // Tuesday, October 19, 2021 6:00:00 PM EST uint256 public maxPerTransaction = 6; // One too high mapping(address => uint256) addressToWhitelistMintsAvailable; constructor( string memory baseURI, address[] memory _splits, uint256[] memory _splitWeights ) ERC721("Alias", "ALIAS") Accountable(_splits, _splitWeights) { setBaseURI(baseURI); } modifier mintIsValid() { require(tx.origin == msg.sender, "Sender must call transaction directly."); _; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function setPriceWhitelist(uint256 _newWEIPrice) external onlyOwner { priceWhitelist = _newWEIPrice; } function setPricePublic(uint256 _newWEIPrice) external onlyOwner { pricePublic = _newWEIPrice; } function setSaleTimeWhitelist(uint256 _newTime) external onlyOwner { saleTimeWhitelist = _newTime; } function setSaleTimePublic(uint256 _newTime) external onlyOwner { saleTimePublic = _newTime; } function setMaxPerTransaction(uint256 _newMax) external onlyOwner { maxPerTransaction = _newMax; } /** * @dev When setting the integers of this function they need to be set one too high. */ function setWhitelistMints(address[] calldata _whitelistAddresses, uint256[] calldata _whitelistMints) external onlyOwner { for (uint256 i; i < _whitelistAddresses.length; i++) { addressToWhitelistMintsAvailable[_whitelistAddresses[i]] = _whitelistMints[i]; } } /** * NOTE: This function is super weird looking and we are actually subtracting one. * We are doing this because the value is always stored as one higher than it * really is to avoid gte calls for whitelist max cap management however if they are * not whitelisted 0 is still returned. */ function getWhitelistMints(address _whitelistAddress) public view returns (uint256) { uint256 mintsAvailable = addressToWhitelistMintsAvailable[_whitelistAddress]; if(mintsAvailable == 0) { return mintsAvailable; } return mintsAvailable - 1; } function _mint(uint256 totalSupply, uint256 _count) internal { uint256 tokenId; for (uint256 i; i < _count; i++) { tokenId = totalSupply + i; _safeMint(msg.sender, tokenId); } } /** * NOTE: This function allows the passing of count however a maximum cap of 40 is * recommended to prevent any unexpected issues like running out of gas. */ function collectReserves(uint256 _count) external onlyOwner { require(block.timestamp < saleTimeWhitelist, "Whitelist sale has already started." ); uint256 totalSupply = totalSupply(); require(totalSupply + _count < RESERVES, "Beyond max limit"); _mint(totalSupply, _count); } function mintWhitelist(uint256 _count) external payable mintIsValid { require(block.timestamp >= saleTimeWhitelist && block.timestamp < saleTimePublic, "Whitelist sale is not active." ); uint256 totalSupply = totalSupply(); require(totalSupply + _count < MAX_SUPPLY, "Exceeds max supply."); require(addressToWhitelistMintsAvailable[msg.sender] > _count, "Exceeds wallet whitelist mints." ); require(_count < maxPerTransaction, "Exceeds max per transaction."); require(priceWhitelist * _count == msg.value, "Transaction value incorrect."); addressToWhitelistMintsAvailable[msg.sender] -= _count; _mint(totalSupply, _count); tallySplits(); } function mint(uint256 _count) external payable mintIsValid { require(block.timestamp >= saleTimePublic, "Sale is not active."); uint256 totalSupply = totalSupply(); require(totalSupply + _count < MAX_SUPPLY, "Exceeds max supply."); require(_count < maxPerTransaction, "Exceeds max per transaction."); require(pricePublic * _count == msg.value, "Transaction value incorrect."); _mint(totalSupply, _count); tallySplits(); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { return new uint256[](0); } uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } }
// SPDX-License-Identifier: MIT 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public 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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @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 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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Context.sol"; abstract contract Accountable is Context { address[] private splits; uint256[] private splitWeights; mapping(address => uint256) private splitAmounts; event WithdrawProcessed( address indexed ownerWithdrawing, uint256 indexed amount ); constructor(address[] memory _splits, uint256[] memory _splitWeights) { splits = _splits; splitWeights = _splitWeights; } modifier hasSplits() { require(splits.length > 0, "Splits have not been set."); require(splitWeights.length > 0, "Split weights have not been set."); _; } // Returns the splitAmount in wei. function getSplitBalance(address _address) public view returns (uint256) { return splitAmounts[_address]; } // With this each team member can withdraw their cut at anytime they like. // Must be a real amount that is greater than zero and within their available balance. function withdrawSplit(uint256 _amount) external hasSplits { require(_amount > 0, "Withdrawals of 0 cannot take place."); require( splitAmounts[msg.sender] >= _amount, "This value is more than available to withdraw." ); splitAmounts[msg.sender] -= _amount; (bool success, ) = payable(msg.sender).call{value: _amount}(""); require(success, "Transfer failed."); emit WithdrawProcessed(msg.sender, _amount); } // This should be run in any function that is paying the contract. // At the time of minting we are crediting each team member with the proper amount. function tallySplits() internal hasSplits { uint256 each; for (uint256 i; i < splits.length; i++) { // ((value * (25 / 100)) / 100) each = ((msg.value * splitWeights[i] / 100)); splitAmounts[splits[i]] += each; } } }
// SPDX-License-Identifier: MIT 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 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 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 pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @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 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 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 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 pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address[]","name":"_splits","type":"address[]"},{"internalType":"uint256[]","name":"_splitWeights","type":"uint256[]"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"ownerWithdrawing","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawProcessed","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"collectReserves","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":"_address","type":"address"}],"name":"getSplitBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelistAddress","type":"address"}],"name":"getWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintWhitelist","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":"pricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleTimePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleTimeWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWEIPrice","type":"uint256"}],"name":"setPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWEIPrice","type":"uint256"}],"name":"setPriceWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTime","type":"uint256"}],"name":"setSaleTimePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTime","type":"uint256"}],"name":"setSaleTimeWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_whitelistMints","type":"uint256[]"}],"name":"setWhitelistMints","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawSplit","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266b1a2bc2ec50000600f5566f8b0a10e47000060105563616b4b6060115563616f3fe060125560066013553480156200003c57600080fd5b5060405162005c7f38038062005c7f83398181016040528101906200006291906200068a565b81816040518060400160405280600581526020017f416c6961730000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f414c4941530000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e892919062000315565b5080600190805190602001906200010192919062000315565b50505062000124620001186200017260201b60201c565b6200017a60201b60201c565b81600b90805190602001906200013c929190620003a6565b5080600c90805190602001906200015592919062000435565b50505062000169836200024060201b60201c565b505050620009a1565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002506200017260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000276620002eb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c6906200076d565b60405180910390fd5b80600e9080519060200190620002e792919062000315565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200032390620008d9565b90600052602060002090601f01602090048101928262000347576000855562000393565b82601f106200036257805160ff191683800117855562000393565b8280016001018555821562000393579182015b828111156200039257825182559160200191906001019062000375565b5b509050620003a2919062000487565b5090565b82805482825590600052602060002090810192821562000422579160200282015b82811115620004215782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190620003c7565b5b50905062000431919062000487565b5090565b82805482825590600052602060002090810192821562000474579160200282015b828111156200047357825182559160200191906001019062000456565b5b50905062000483919062000487565b5090565b5b80821115620004a257600081600090555060010162000488565b5090565b6000620004bd620004b784620007c3565b6200078f565b90508083825260208201905082856020860282011115620004dd57600080fd5b60005b85811015620005115781620004f68882620005d5565b845260208401935060208301925050600181019050620004e0565b5050509392505050565b6000620005326200052c84620007f2565b6200078f565b905080838252602082019050828560208602820111156200055257600080fd5b60005b858110156200058657816200056b888262000673565b84526020840193506020830192505060018101905062000555565b5050509392505050565b6000620005a7620005a18462000821565b6200078f565b905082815260208101848484011115620005c057600080fd5b620005cd848285620008a3565b509392505050565b600081519050620005e6816200096d565b92915050565b600082601f830112620005fe57600080fd5b815162000610848260208601620004a6565b91505092915050565b600082601f8301126200062b57600080fd5b81516200063d8482602086016200051b565b91505092915050565b600082601f8301126200065857600080fd5b81516200066a84826020860162000590565b91505092915050565b600081519050620006848162000987565b92915050565b600080600060608486031215620006a057600080fd5b600084015167ffffffffffffffff811115620006bb57600080fd5b620006c98682870162000646565b935050602084015167ffffffffffffffff811115620006e757600080fd5b620006f586828701620005ec565b925050604084015167ffffffffffffffff8111156200071357600080fd5b620007218682870162000619565b9150509250925092565b60006200073a60208362000854565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000602082019050818103600083015262000788816200072b565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620007b957620007b86200093e565b5b8060405250919050565b600067ffffffffffffffff821115620007e157620007e06200093e565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000810576200080f6200093e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156200083f576200083e6200093e565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620008728262000879565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620008c3578082015181840152602081019050620008a6565b83811115620008d3576000848401525b50505050565b60006002820490506001821680620008f257607f821691505b602082108114156200090957620009086200090f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620009788162000865565b81146200098457600080fd5b50565b620009928162000899565b81146200099e57600080fd5b50565b6152ce80620009b16000396000f3fe60806040526004361061023b5760003560e01c80634f6ccce71161012e578063a22cb465116100ab578063ccfdd2f81161006f578063ccfdd2f81461088d578063e5199b40146108b6578063e5d089ff146108df578063e985e9c514610908578063f2fde38b146109455761023b565b8063a22cb46514610798578063b88d4fde146107c1578063b8d63f45146107ea578063b95f8b5f14610827578063c87b56dd146108505761023b565b8063715018a6116100f2578063715018a6146106e45780637de8b986146106fb5780638da5cb5b1461072657806395d89b4114610751578063a0712d681461077c5761023b565b80634f6ccce7146105c757806355f804b3146106045780636352211e1461062d57806370954de61461066a57806370a08231146106a75761023b565b80632f745c59116101bc57806342842e0e1161018057806342842e0e146104f1578063438b63001461051a5780634530a832146105575780634618163e146105805780634b980d671461059c5761023b565b80632f745c591461040c5780632fff17961461044957806332cb6b0c14610474578063341408501461049f57806336d50e0a146104c85761023b565b8063095ea7b311610203578063095ea7b314610339578063102e766d1461036257806318160ddd1461038d57806323b872dd146103b8578063292dc99e146103e15761023b565b806301ffc9a71461024057806306fdde031461027d57806307affcdd146102a8578063081812fc146102d15780630922f9c51461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613bef565b61096e565b6040516102749190614988565b60405180910390f35b34801561028957600080fd5b506102926109e8565b60405161029f91906149a3565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613c82565b610a7a565b005b3480156102dd57600080fd5b506102f860048036038101906102f39190613c82565b610b00565b60405161030591906148ff565b60405180910390f35b34801561031a57600080fd5b50610323610b85565b6040516103309190614dc5565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613b3e565b610b8a565b005b34801561036e57600080fd5b50610377610ca2565b6040516103849190614dc5565b60405180910390f35b34801561039957600080fd5b506103a2610ca8565b6040516103af9190614dc5565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190613a38565b610cb5565b005b3480156103ed57600080fd5b506103f6610d15565b6040516104039190614dc5565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190613b3e565b610d1b565b6040516104409190614dc5565b60405180910390f35b34801561045557600080fd5b5061045e610dc0565b60405161046b9190614dc5565b60405180910390f35b34801561048057600080fd5b50610489610dc6565b6040516104969190614dc5565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613c82565b610dcc565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190613c82565b610e52565b005b3480156104fd57600080fd5b5061051860048036038101906105139190613a38565b6110f1565b005b34801561052657600080fd5b50610541600480360381019061053c91906139d3565b611111565b60405161054e9190614966565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190613c82565b61128d565b005b61059a60048036038101906105959190613c82565b611313565b005b3480156105a857600080fd5b506105b16115ae565b6040516105be9190614dc5565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613c82565b6115b4565b6040516105fb9190614dc5565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190613c41565b61164b565b005b34801561063957600080fd5b50610654600480360381019061064f9190613c82565b6116e1565b60405161066191906148ff565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c91906139d3565b611793565b60405161069e9190614dc5565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c991906139d3565b611800565b6040516106db9190614dc5565b60405180910390f35b3480156106f057600080fd5b506106f96118b8565b005b34801561070757600080fd5b50610710611940565b60405161071d9190614dc5565b60405180910390f35b34801561073257600080fd5b5061073b611946565b60405161074891906148ff565b60405180910390f35b34801561075d57600080fd5b50610766611970565b60405161077391906149a3565b60405180910390f35b61079660048036038101906107919190613c82565b611a02565b005b3480156107a457600080fd5b506107bf60048036038101906107ba9190613b02565b611bb9565b005b3480156107cd57600080fd5b506107e860048036038101906107e39190613a87565b611d3a565b005b3480156107f657600080fd5b50610811600480360381019061080c91906139d3565b611d9c565b60405161081e9190614dc5565b60405180910390f35b34801561083357600080fd5b5061084e60048036038101906108499190613c82565b611de5565b005b34801561085c57600080fd5b5061087760048036038101906108729190613c82565b611e6b565b60405161088491906149a3565b60405180910390f35b34801561089957600080fd5b506108b460048036038101906108af9190613c82565b611f12565b005b3480156108c257600080fd5b506108dd60048036038101906108d89190613b7a565b611f98565b005b3480156108eb57600080fd5b5061090660048036038101906109019190613c82565b61210c565b005b34801561091457600080fd5b5061092f600480360381019061092a91906139fc565b612234565b60405161093c9190614988565b60405180910390f35b34801561095157600080fd5b5061096c600480360381019061096791906139d3565b6122c8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e157506109e0826123c0565b5b9050919050565b6060600080546109f7906150c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a23906150c3565b8015610a705780601f10610a4557610100808354040283529160200191610a70565b820191906000526020600020905b815481529060010190602001808311610a5357829003601f168201915b5050505050905090565b610a826124a2565b73ffffffffffffffffffffffffffffffffffffffff16610aa0611946565b73ffffffffffffffffffffffffffffffffffffffff1614610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90614c25565b60405180910390fd5b8060118190555050565b6000610b0b826124aa565b610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4190614c05565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b604c81565b6000610b95826116e1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90614ce5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c256124a2565b73ffffffffffffffffffffffffffffffffffffffff161480610c545750610c5381610c4e6124a2565b612234565b5b610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90614b25565b60405180910390fd5b610c9d8383612516565b505050565b60105481565b6000600880549050905090565b610cc6610cc06124a2565b826125cf565b610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc90614d25565b60405180910390fd5b610d108383836126ad565b505050565b60125481565b6000610d2683611800565b8210610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e906149e5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f5481565b61213581565b610dd46124a2565b73ffffffffffffffffffffffffffffffffffffffff16610df2611946565b73ffffffffffffffffffffffffffffffffffffffff1614610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90614c25565b60405180910390fd5b8060128190555050565b6000600b8054905011610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190614ba5565b60405180910390fd5b6000600c8054905011610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990614a85565b60405180910390fd5b60008111610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c90614bc5565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90614b85565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff69190614fd9565b9250508190555060003373ffffffffffffffffffffffffffffffffffffffff1682604051611023906148ea565b60006040518083038185875af1925050503d8060008114611060576040519150601f19603f3d011682016040523d82523d6000602084013e611065565b606091505b50509050806110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090614d05565b60405180910390fd5b813373ffffffffffffffffffffffffffffffffffffffff167f44b2ff9ffcefe2052a8afdbed44a04bf3db4592ae90c6b96c818bd28573e41e860405160405180910390a35050565b61110c83838360405180602001604052806000815250611d3a565b505050565b6060600061111e83611800565b905060008114156111a157600067ffffffffffffffff81111561116a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111985781602001602082028036833780820191505090505b50915050611288565b60008167ffffffffffffffff8111156111e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112115781602001602082028036833780820191505090505b50905060005b82811015611281576112298582610d1b565b828281518110611262577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611279906150f5565b915050611217565b5080925050505b919050565b6112956124a2565b73ffffffffffffffffffffffffffffffffffffffff166112b3611946565b73ffffffffffffffffffffffffffffffffffffffff1614611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090614c25565b60405180910390fd5b8060108190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137890614a45565b60405180910390fd5b6011544210158015611394575060125442105b6113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca906149c5565b60405180910390fd5b60006113dd610ca8565b905061213582826113ee9190614ef8565b1061142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590614ca5565b60405180910390fd5b81601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690614aa5565b60405180910390fd5b60135482106114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea90614d45565b60405180910390fd5b3482600f546115029190614f7f565b14611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990614c65565b60405180910390fd5b81601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115919190614fd9565b925050819055506115a28183612909565b6115aa612946565b5050565b60135481565b60006115be610ca8565b82106115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690614d65565b60405180910390fd5b60088281548110611639577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6116536124a2565b73ffffffffffffffffffffffffffffffffffffffff16611671611946565b73ffffffffffffffffffffffffffffffffffffffff16146116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be90614c25565b60405180910390fd5b80600e90805190602001906116dd929190613763565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190614b65565b60405180910390fd5b80915050919050565b600080601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008114156117ea57809150506117fb565b6001816117f79190614fd9565b9150505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890614b45565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118c06124a2565b73ffffffffffffffffffffffffffffffffffffffff166118de611946565b73ffffffffffffffffffffffffffffffffffffffff1614611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b90614c25565b60405180910390fd5b61193e6000612b16565b565b60115481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461197f906150c3565b80601f01602080910402602001604051908101604052809291908181526020018280546119ab906150c3565b80156119f85780601f106119cd576101008083540402835291602001916119f8565b820191906000526020600020905b8154815290600101906020018083116119db57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6790614a45565b60405180910390fd5b601254421015611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac90614cc5565b60405180910390fd5b6000611abf610ca8565b90506121358282611ad09190614ef8565b10611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0790614ca5565b60405180910390fd5b6013548210611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90614d45565b60405180910390fd5b3482601054611b639190614f7f565b14611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a90614c65565b60405180910390fd5b611bad8183612909565b611bb5612946565b5050565b611bc16124a2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690614ae5565b60405180910390fd5b8060056000611c3c6124a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ce96124a2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2e9190614988565b60405180910390a35050565b611d4b611d456124a2565b836125cf565b611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8190614d25565b60405180910390fd5b611d9684848484612bdc565b50505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ded6124a2565b73ffffffffffffffffffffffffffffffffffffffff16611e0b611946565b73ffffffffffffffffffffffffffffffffffffffff1614611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890614c25565b60405180910390fd5b80600f8190555050565b6060611e76826124aa565b611eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eac90614c85565b60405180910390fd5b6000611ebf612c38565b90506000815111611edf5760405180602001604052806000815250611f0a565b80611ee984612cca565b604051602001611efa9291906148c6565b6040516020818303038152906040525b915050919050565b611f1a6124a2565b73ffffffffffffffffffffffffffffffffffffffff16611f38611946565b73ffffffffffffffffffffffffffffffffffffffff1614611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590614c25565b60405180910390fd5b8060138190555050565b611fa06124a2565b73ffffffffffffffffffffffffffffffffffffffff16611fbe611946565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90614c25565b60405180910390fd5b60005b848490508110156121055782828281811061205b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356014600087878581811061209f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906120b491906139d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806120fd906150f5565b915050612017565b5050505050565b6121146124a2565b73ffffffffffffffffffffffffffffffffffffffff16612132611946565b73ffffffffffffffffffffffffffffffffffffffff1614612188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217f90614c25565b60405180910390fd5b60115442106121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c390614d85565b60405180910390fd5b60006121d6610ca8565b9050604c82826121e69190614ef8565b10612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d90614da5565b60405180910390fd5b6122308183612909565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122d06124a2565b73ffffffffffffffffffffffffffffffffffffffff166122ee611946565b73ffffffffffffffffffffffffffffffffffffffff1614612344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233b90614c25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ab90614a25565b60405180910390fd5b6123bd81612b16565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061248b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061249b575061249a82612e77565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612589836116e1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125da826124aa565b612619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261090614b05565b60405180910390fd5b6000612624836116e1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061269357508373ffffffffffffffffffffffffffffffffffffffff1661267b84610b00565b73ffffffffffffffffffffffffffffffffffffffff16145b806126a457506126a38185612234565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126cd826116e1565b73ffffffffffffffffffffffffffffffffffffffff1614612723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271a90614c45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278a90614ac5565b60405180910390fd5b61279e838383612ee1565b6127a9600082612516565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127f99190614fd9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128509190614ef8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000805b828110156129405780846129219190614ef8565b915061292d3383612ff5565b8080612938906150f5565b91505061290d565b50505050565b6000600b805490501161298e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298590614ba5565b60405180910390fd5b6000600c80549050116129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd90614a85565b60405180910390fd5b6000805b600b80549050811015612b12576064600c8281548110612a23577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015434612a399190614f7f565b612a439190614f4e565b915081600d6000600b8481548110612a84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612af89190614ef8565b925050819055508080612b0a906150f5565b9150506129da565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612be78484846126ad565b612bf384848484613013565b612c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2990614a05565b60405180910390fd5b50505050565b6060600e8054612c47906150c3565b80601f0160208091040260200160405190810160405280929190818152602001828054612c73906150c3565b8015612cc05780601f10612c9557610100808354040283529160200191612cc0565b820191906000526020600020905b815481529060010190602001808311612ca357829003601f168201915b5050505050905090565b60606000821415612d12576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e72565b600082905060005b60008214612d44578080612d2d906150f5565b915050600a82612d3d9190614f4e565b9150612d1a565b60008167ffffffffffffffff811115612d86577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612db85781602001600182028036833780820191505090505b5090505b60008514612e6b57600182612dd19190614fd9565b9150600a85612de0919061513e565b6030612dec9190614ef8565b60f81b818381518110612e28577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e649190614f4e565b9450612dbc565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612eec8383836131aa565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f2f57612f2a816131af565b612f6e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f6d57612f6c83826131f8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fb157612fac81613365565b612ff0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612fef57612fee82826134a8565b5b5b505050565b61300f828260405180602001604052806000815250613527565b5050565b60006130348473ffffffffffffffffffffffffffffffffffffffff16613582565b1561319d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261305d6124a2565b8786866040518563ffffffff1660e01b815260040161307f949392919061491a565b602060405180830381600087803b15801561309957600080fd5b505af19250505080156130ca57506040513d601f19601f820116820180604052508101906130c79190613c18565b60015b61314d573d80600081146130fa576040519150601f19603f3d011682016040523d82523d6000602084013e6130ff565b606091505b50600081511415613145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313c90614a05565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131a2565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161320584611800565b61320f9190614fd9565b90506000600760008481526020019081526020016000205490508181146132f4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133799190614fd9565b90506000600960008481526020019081526020016000205490506000600883815481106133cf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613417577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061348c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006134b383611800565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6135318383613595565b61353e6000848484613013565b61357d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357490614a05565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fc90614be5565b60405180910390fd5b61360e816124aa565b1561364e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161364590614a65565b60405180910390fd5b61365a60008383612ee1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136aa9190614ef8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461376f906150c3565b90600052602060002090601f01602090048101928261379157600085556137d8565b82601f106137aa57805160ff19168380011785556137d8565b828001600101855582156137d8579182015b828111156137d75782518255916020019190600101906137bc565b5b5090506137e591906137e9565b5090565b5b808211156138025760008160009055506001016137ea565b5090565b600061381961381484614e11565b614de0565b90508281526020810184848401111561383157600080fd5b61383c848285615081565b509392505050565b600061385761385284614e41565b614de0565b90508281526020810184848401111561386f57600080fd5b61387a848285615081565b509392505050565b6000813590506138918161523c565b92915050565b60008083601f8401126138a957600080fd5b8235905067ffffffffffffffff8111156138c257600080fd5b6020830191508360208202830111156138da57600080fd5b9250929050565b60008083601f8401126138f357600080fd5b8235905067ffffffffffffffff81111561390c57600080fd5b60208301915083602082028301111561392457600080fd5b9250929050565b60008135905061393a81615253565b92915050565b60008135905061394f8161526a565b92915050565b6000815190506139648161526a565b92915050565b600082601f83011261397b57600080fd5b813561398b848260208601613806565b91505092915050565b600082601f8301126139a557600080fd5b81356139b5848260208601613844565b91505092915050565b6000813590506139cd81615281565b92915050565b6000602082840312156139e557600080fd5b60006139f384828501613882565b91505092915050565b60008060408385031215613a0f57600080fd5b6000613a1d85828601613882565b9250506020613a2e85828601613882565b9150509250929050565b600080600060608486031215613a4d57600080fd5b6000613a5b86828701613882565b9350506020613a6c86828701613882565b9250506040613a7d868287016139be565b9150509250925092565b60008060008060808587031215613a9d57600080fd5b6000613aab87828801613882565b9450506020613abc87828801613882565b9350506040613acd878288016139be565b925050606085013567ffffffffffffffff811115613aea57600080fd5b613af68782880161396a565b91505092959194509250565b60008060408385031215613b1557600080fd5b6000613b2385828601613882565b9250506020613b348582860161392b565b9150509250929050565b60008060408385031215613b5157600080fd5b6000613b5f85828601613882565b9250506020613b70858286016139be565b9150509250929050565b60008060008060408587031215613b9057600080fd5b600085013567ffffffffffffffff811115613baa57600080fd5b613bb687828801613897565b9450945050602085013567ffffffffffffffff811115613bd557600080fd5b613be1878288016138e1565b925092505092959194509250565b600060208284031215613c0157600080fd5b6000613c0f84828501613940565b91505092915050565b600060208284031215613c2a57600080fd5b6000613c3884828501613955565b91505092915050565b600060208284031215613c5357600080fd5b600082013567ffffffffffffffff811115613c6d57600080fd5b613c7984828501613994565b91505092915050565b600060208284031215613c9457600080fd5b6000613ca2848285016139be565b91505092915050565b6000613cb783836148a8565b60208301905092915050565b613ccc8161500d565b82525050565b6000613cdd82614e81565b613ce78185614eaf565b9350613cf283614e71565b8060005b83811015613d23578151613d0a8882613cab565b9750613d1583614ea2565b925050600181019050613cf6565b5085935050505092915050565b613d398161501f565b82525050565b6000613d4a82614e8c565b613d548185614ec0565b9350613d64818560208601615090565b613d6d8161522b565b840191505092915050565b6000613d8382614e97565b613d8d8185614edc565b9350613d9d818560208601615090565b613da68161522b565b840191505092915050565b6000613dbc82614e97565b613dc68185614eed565b9350613dd6818560208601615090565b80840191505092915050565b6000613def601d83614edc565b91507f57686974656c6973742073616c65206973206e6f74206163746976652e0000006000830152602082019050919050565b6000613e2f602b83614edc565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613e95603283614edc565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613efb602683614edc565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f61602683614edc565b91507f53656e646572206d7573742063616c6c207472616e73616374696f6e2064697260008301527f6563746c792e00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fc7601c83614edc565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614007602083614edc565b91507f53706c697420776569676874732068617665206e6f74206265656e207365742e6000830152602082019050919050565b6000614047601f83614edc565b91507f457863656564732077616c6c65742077686974656c697374206d696e74732e006000830152602082019050919050565b6000614087602483614edc565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140ed601983614edc565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061412d602c83614edc565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614193603883614edc565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006141f9602a83614edc565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061425f602983614edc565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006142c5602e83614edc565b91507f546869732076616c7565206973206d6f7265207468616e20617661696c61626c60008301527f6520746f2077697468647261772e0000000000000000000000000000000000006020830152604082019050919050565b600061432b601983614edc565b91507f53706c6974732068617665206e6f74206265656e207365742e000000000000006000830152602082019050919050565b600061436b602383614edc565b91507f5769746864726177616c73206f6620302063616e6e6f742074616b6520706c6160008301527f63652e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143d1602083614edc565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614411602c83614edc565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614477602083614edc565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006144b7602983614edc565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061451d601c83614edc565b91507f5472616e73616374696f6e2076616c756520696e636f72726563742e000000006000830152602082019050919050565b600061455d602f83614edc565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006145c3601383614edc565b91507f45786365656473206d617820737570706c792e000000000000000000000000006000830152602082019050919050565b6000614603601383614edc565b91507f53616c65206973206e6f74206163746976652e000000000000000000000000006000830152602082019050919050565b6000614643602183614edc565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146a9600083614ed1565b9150600082019050919050565b60006146c3601083614edc565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000614703603183614edc565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614769601c83614edc565b91507f45786365656473206d617820706572207472616e73616374696f6e2e000000006000830152602082019050919050565b60006147a9602c83614edc565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061480f602383614edc565b91507f57686974656c6973742073616c652068617320616c726561647920737461727460008301527f65642e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614875601083614edc565b91507f4265796f6e64206d6178206c696d6974000000000000000000000000000000006000830152602082019050919050565b6148b181615077565b82525050565b6148c081615077565b82525050565b60006148d28285613db1565b91506148de8284613db1565b91508190509392505050565b60006148f58261469c565b9150819050919050565b60006020820190506149146000830184613cc3565b92915050565b600060808201905061492f6000830187613cc3565b61493c6020830186613cc3565b61494960408301856148b7565b818103606083015261495b8184613d3f565b905095945050505050565b600060208201905081810360008301526149808184613cd2565b905092915050565b600060208201905061499d6000830184613d30565b92915050565b600060208201905081810360008301526149bd8184613d78565b905092915050565b600060208201905081810360008301526149de81613de2565b9050919050565b600060208201905081810360008301526149fe81613e22565b9050919050565b60006020820190508181036000830152614a1e81613e88565b9050919050565b60006020820190508181036000830152614a3e81613eee565b9050919050565b60006020820190508181036000830152614a5e81613f54565b9050919050565b60006020820190508181036000830152614a7e81613fba565b9050919050565b60006020820190508181036000830152614a9e81613ffa565b9050919050565b60006020820190508181036000830152614abe8161403a565b9050919050565b60006020820190508181036000830152614ade8161407a565b9050919050565b60006020820190508181036000830152614afe816140e0565b9050919050565b60006020820190508181036000830152614b1e81614120565b9050919050565b60006020820190508181036000830152614b3e81614186565b9050919050565b60006020820190508181036000830152614b5e816141ec565b9050919050565b60006020820190508181036000830152614b7e81614252565b9050919050565b60006020820190508181036000830152614b9e816142b8565b9050919050565b60006020820190508181036000830152614bbe8161431e565b9050919050565b60006020820190508181036000830152614bde8161435e565b9050919050565b60006020820190508181036000830152614bfe816143c4565b9050919050565b60006020820190508181036000830152614c1e81614404565b9050919050565b60006020820190508181036000830152614c3e8161446a565b9050919050565b60006020820190508181036000830152614c5e816144aa565b9050919050565b60006020820190508181036000830152614c7e81614510565b9050919050565b60006020820190508181036000830152614c9e81614550565b9050919050565b60006020820190508181036000830152614cbe816145b6565b9050919050565b60006020820190508181036000830152614cde816145f6565b9050919050565b60006020820190508181036000830152614cfe81614636565b9050919050565b60006020820190508181036000830152614d1e816146b6565b9050919050565b60006020820190508181036000830152614d3e816146f6565b9050919050565b60006020820190508181036000830152614d5e8161475c565b9050919050565b60006020820190508181036000830152614d7e8161479c565b9050919050565b60006020820190508181036000830152614d9e81614802565b9050919050565b60006020820190508181036000830152614dbe81614868565b9050919050565b6000602082019050614dda60008301846148b7565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614e0757614e066151fc565b5b8060405250919050565b600067ffffffffffffffff821115614e2c57614e2b6151fc565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614e5c57614e5b6151fc565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f0382615077565b9150614f0e83615077565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f4357614f4261516f565b5b828201905092915050565b6000614f5982615077565b9150614f6483615077565b925082614f7457614f7361519e565b5b828204905092915050565b6000614f8a82615077565b9150614f9583615077565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614fce57614fcd61516f565b5b828202905092915050565b6000614fe482615077565b9150614fef83615077565b9250828210156150025761500161516f565b5b828203905092915050565b600061501882615057565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156150ae578082015181840152602081019050615093565b838111156150bd576000848401525b50505050565b600060028204905060018216806150db57607f821691505b602082108114156150ef576150ee6151cd565b5b50919050565b600061510082615077565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151335761513261516f565b5b600182019050919050565b600061514982615077565b915061515483615077565b9250826151645761516361519e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6152458161500d565b811461525057600080fd5b50565b61525c8161501f565b811461526757600080fd5b50565b6152738161502b565b811461527e57600080fd5b50565b61528a81615077565b811461529557600080fd5b5056fea264697066735822122029a4350c3febaf055da69de0aae6cb69fcfc77122babf476bd58ae9a6b0291f264736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f616c6961736e66742e696f2f6170692f6d657461646174612f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000062180042606624f02d8a130da8a3171e9b33894d0000000000000000000000009c0ed287a87bdfd9c9e720bc1f024797033af68e000000000000000000000000a4754ba84ce571a91ad5fa8bffc8ae299883e6cf0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000001700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000045
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80634f6ccce71161012e578063a22cb465116100ab578063ccfdd2f81161006f578063ccfdd2f81461088d578063e5199b40146108b6578063e5d089ff146108df578063e985e9c514610908578063f2fde38b146109455761023b565b8063a22cb46514610798578063b88d4fde146107c1578063b8d63f45146107ea578063b95f8b5f14610827578063c87b56dd146108505761023b565b8063715018a6116100f2578063715018a6146106e45780637de8b986146106fb5780638da5cb5b1461072657806395d89b4114610751578063a0712d681461077c5761023b565b80634f6ccce7146105c757806355f804b3146106045780636352211e1461062d57806370954de61461066a57806370a08231146106a75761023b565b80632f745c59116101bc57806342842e0e1161018057806342842e0e146104f1578063438b63001461051a5780634530a832146105575780634618163e146105805780634b980d671461059c5761023b565b80632f745c591461040c5780632fff17961461044957806332cb6b0c14610474578063341408501461049f57806336d50e0a146104c85761023b565b8063095ea7b311610203578063095ea7b314610339578063102e766d1461036257806318160ddd1461038d57806323b872dd146103b8578063292dc99e146103e15761023b565b806301ffc9a71461024057806306fdde031461027d57806307affcdd146102a8578063081812fc146102d15780630922f9c51461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613bef565b61096e565b6040516102749190614988565b60405180910390f35b34801561028957600080fd5b506102926109e8565b60405161029f91906149a3565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613c82565b610a7a565b005b3480156102dd57600080fd5b506102f860048036038101906102f39190613c82565b610b00565b60405161030591906148ff565b60405180910390f35b34801561031a57600080fd5b50610323610b85565b6040516103309190614dc5565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613b3e565b610b8a565b005b34801561036e57600080fd5b50610377610ca2565b6040516103849190614dc5565b60405180910390f35b34801561039957600080fd5b506103a2610ca8565b6040516103af9190614dc5565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190613a38565b610cb5565b005b3480156103ed57600080fd5b506103f6610d15565b6040516104039190614dc5565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190613b3e565b610d1b565b6040516104409190614dc5565b60405180910390f35b34801561045557600080fd5b5061045e610dc0565b60405161046b9190614dc5565b60405180910390f35b34801561048057600080fd5b50610489610dc6565b6040516104969190614dc5565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613c82565b610dcc565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190613c82565b610e52565b005b3480156104fd57600080fd5b5061051860048036038101906105139190613a38565b6110f1565b005b34801561052657600080fd5b50610541600480360381019061053c91906139d3565b611111565b60405161054e9190614966565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190613c82565b61128d565b005b61059a60048036038101906105959190613c82565b611313565b005b3480156105a857600080fd5b506105b16115ae565b6040516105be9190614dc5565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613c82565b6115b4565b6040516105fb9190614dc5565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190613c41565b61164b565b005b34801561063957600080fd5b50610654600480360381019061064f9190613c82565b6116e1565b60405161066191906148ff565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c91906139d3565b611793565b60405161069e9190614dc5565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c991906139d3565b611800565b6040516106db9190614dc5565b60405180910390f35b3480156106f057600080fd5b506106f96118b8565b005b34801561070757600080fd5b50610710611940565b60405161071d9190614dc5565b60405180910390f35b34801561073257600080fd5b5061073b611946565b60405161074891906148ff565b60405180910390f35b34801561075d57600080fd5b50610766611970565b60405161077391906149a3565b60405180910390f35b61079660048036038101906107919190613c82565b611a02565b005b3480156107a457600080fd5b506107bf60048036038101906107ba9190613b02565b611bb9565b005b3480156107cd57600080fd5b506107e860048036038101906107e39190613a87565b611d3a565b005b3480156107f657600080fd5b50610811600480360381019061080c91906139d3565b611d9c565b60405161081e9190614dc5565b60405180910390f35b34801561083357600080fd5b5061084e60048036038101906108499190613c82565b611de5565b005b34801561085c57600080fd5b5061087760048036038101906108729190613c82565b611e6b565b60405161088491906149a3565b60405180910390f35b34801561089957600080fd5b506108b460048036038101906108af9190613c82565b611f12565b005b3480156108c257600080fd5b506108dd60048036038101906108d89190613b7a565b611f98565b005b3480156108eb57600080fd5b5061090660048036038101906109019190613c82565b61210c565b005b34801561091457600080fd5b5061092f600480360381019061092a91906139fc565b612234565b60405161093c9190614988565b60405180910390f35b34801561095157600080fd5b5061096c600480360381019061096791906139d3565b6122c8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e157506109e0826123c0565b5b9050919050565b6060600080546109f7906150c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a23906150c3565b8015610a705780601f10610a4557610100808354040283529160200191610a70565b820191906000526020600020905b815481529060010190602001808311610a5357829003601f168201915b5050505050905090565b610a826124a2565b73ffffffffffffffffffffffffffffffffffffffff16610aa0611946565b73ffffffffffffffffffffffffffffffffffffffff1614610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90614c25565b60405180910390fd5b8060118190555050565b6000610b0b826124aa565b610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4190614c05565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b604c81565b6000610b95826116e1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90614ce5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c256124a2565b73ffffffffffffffffffffffffffffffffffffffff161480610c545750610c5381610c4e6124a2565b612234565b5b610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90614b25565b60405180910390fd5b610c9d8383612516565b505050565b60105481565b6000600880549050905090565b610cc6610cc06124a2565b826125cf565b610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc90614d25565b60405180910390fd5b610d108383836126ad565b505050565b60125481565b6000610d2683611800565b8210610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e906149e5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f5481565b61213581565b610dd46124a2565b73ffffffffffffffffffffffffffffffffffffffff16610df2611946565b73ffffffffffffffffffffffffffffffffffffffff1614610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90614c25565b60405180910390fd5b8060128190555050565b6000600b8054905011610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190614ba5565b60405180910390fd5b6000600c8054905011610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990614a85565b60405180910390fd5b60008111610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c90614bc5565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90614b85565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff69190614fd9565b9250508190555060003373ffffffffffffffffffffffffffffffffffffffff1682604051611023906148ea565b60006040518083038185875af1925050503d8060008114611060576040519150601f19603f3d011682016040523d82523d6000602084013e611065565b606091505b50509050806110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090614d05565b60405180910390fd5b813373ffffffffffffffffffffffffffffffffffffffff167f44b2ff9ffcefe2052a8afdbed44a04bf3db4592ae90c6b96c818bd28573e41e860405160405180910390a35050565b61110c83838360405180602001604052806000815250611d3a565b505050565b6060600061111e83611800565b905060008114156111a157600067ffffffffffffffff81111561116a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111985781602001602082028036833780820191505090505b50915050611288565b60008167ffffffffffffffff8111156111e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112115781602001602082028036833780820191505090505b50905060005b82811015611281576112298582610d1b565b828281518110611262577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611279906150f5565b915050611217565b5080925050505b919050565b6112956124a2565b73ffffffffffffffffffffffffffffffffffffffff166112b3611946565b73ffffffffffffffffffffffffffffffffffffffff1614611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090614c25565b60405180910390fd5b8060108190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137890614a45565b60405180910390fd5b6011544210158015611394575060125442105b6113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca906149c5565b60405180910390fd5b60006113dd610ca8565b905061213582826113ee9190614ef8565b1061142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590614ca5565b60405180910390fd5b81601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690614aa5565b60405180910390fd5b60135482106114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea90614d45565b60405180910390fd5b3482600f546115029190614f7f565b14611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990614c65565b60405180910390fd5b81601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115919190614fd9565b925050819055506115a28183612909565b6115aa612946565b5050565b60135481565b60006115be610ca8565b82106115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690614d65565b60405180910390fd5b60088281548110611639577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6116536124a2565b73ffffffffffffffffffffffffffffffffffffffff16611671611946565b73ffffffffffffffffffffffffffffffffffffffff16146116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be90614c25565b60405180910390fd5b80600e90805190602001906116dd929190613763565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190614b65565b60405180910390fd5b80915050919050565b600080601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008114156117ea57809150506117fb565b6001816117f79190614fd9565b9150505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890614b45565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118c06124a2565b73ffffffffffffffffffffffffffffffffffffffff166118de611946565b73ffffffffffffffffffffffffffffffffffffffff1614611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b90614c25565b60405180910390fd5b61193e6000612b16565b565b60115481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461197f906150c3565b80601f01602080910402602001604051908101604052809291908181526020018280546119ab906150c3565b80156119f85780601f106119cd576101008083540402835291602001916119f8565b820191906000526020600020905b8154815290600101906020018083116119db57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6790614a45565b60405180910390fd5b601254421015611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac90614cc5565b60405180910390fd5b6000611abf610ca8565b90506121358282611ad09190614ef8565b10611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0790614ca5565b60405180910390fd5b6013548210611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90614d45565b60405180910390fd5b3482601054611b639190614f7f565b14611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a90614c65565b60405180910390fd5b611bad8183612909565b611bb5612946565b5050565b611bc16124a2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690614ae5565b60405180910390fd5b8060056000611c3c6124a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ce96124a2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2e9190614988565b60405180910390a35050565b611d4b611d456124a2565b836125cf565b611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8190614d25565b60405180910390fd5b611d9684848484612bdc565b50505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ded6124a2565b73ffffffffffffffffffffffffffffffffffffffff16611e0b611946565b73ffffffffffffffffffffffffffffffffffffffff1614611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890614c25565b60405180910390fd5b80600f8190555050565b6060611e76826124aa565b611eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eac90614c85565b60405180910390fd5b6000611ebf612c38565b90506000815111611edf5760405180602001604052806000815250611f0a565b80611ee984612cca565b604051602001611efa9291906148c6565b6040516020818303038152906040525b915050919050565b611f1a6124a2565b73ffffffffffffffffffffffffffffffffffffffff16611f38611946565b73ffffffffffffffffffffffffffffffffffffffff1614611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590614c25565b60405180910390fd5b8060138190555050565b611fa06124a2565b73ffffffffffffffffffffffffffffffffffffffff16611fbe611946565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90614c25565b60405180910390fd5b60005b848490508110156121055782828281811061205b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356014600087878581811061209f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906120b491906139d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806120fd906150f5565b915050612017565b5050505050565b6121146124a2565b73ffffffffffffffffffffffffffffffffffffffff16612132611946565b73ffffffffffffffffffffffffffffffffffffffff1614612188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217f90614c25565b60405180910390fd5b60115442106121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c390614d85565b60405180910390fd5b60006121d6610ca8565b9050604c82826121e69190614ef8565b10612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d90614da5565b60405180910390fd5b6122308183612909565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122d06124a2565b73ffffffffffffffffffffffffffffffffffffffff166122ee611946565b73ffffffffffffffffffffffffffffffffffffffff1614612344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233b90614c25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ab90614a25565b60405180910390fd5b6123bd81612b16565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061248b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061249b575061249a82612e77565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612589836116e1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125da826124aa565b612619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261090614b05565b60405180910390fd5b6000612624836116e1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061269357508373ffffffffffffffffffffffffffffffffffffffff1661267b84610b00565b73ffffffffffffffffffffffffffffffffffffffff16145b806126a457506126a38185612234565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126cd826116e1565b73ffffffffffffffffffffffffffffffffffffffff1614612723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271a90614c45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278a90614ac5565b60405180910390fd5b61279e838383612ee1565b6127a9600082612516565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127f99190614fd9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128509190614ef8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000805b828110156129405780846129219190614ef8565b915061292d3383612ff5565b8080612938906150f5565b91505061290d565b50505050565b6000600b805490501161298e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298590614ba5565b60405180910390fd5b6000600c80549050116129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd90614a85565b60405180910390fd5b6000805b600b80549050811015612b12576064600c8281548110612a23577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015434612a399190614f7f565b612a439190614f4e565b915081600d6000600b8481548110612a84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612af89190614ef8565b925050819055508080612b0a906150f5565b9150506129da565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612be78484846126ad565b612bf384848484613013565b612c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2990614a05565b60405180910390fd5b50505050565b6060600e8054612c47906150c3565b80601f0160208091040260200160405190810160405280929190818152602001828054612c73906150c3565b8015612cc05780601f10612c9557610100808354040283529160200191612cc0565b820191906000526020600020905b815481529060010190602001808311612ca357829003601f168201915b5050505050905090565b60606000821415612d12576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e72565b600082905060005b60008214612d44578080612d2d906150f5565b915050600a82612d3d9190614f4e565b9150612d1a565b60008167ffffffffffffffff811115612d86577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612db85781602001600182028036833780820191505090505b5090505b60008514612e6b57600182612dd19190614fd9565b9150600a85612de0919061513e565b6030612dec9190614ef8565b60f81b818381518110612e28577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e649190614f4e565b9450612dbc565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612eec8383836131aa565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f2f57612f2a816131af565b612f6e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f6d57612f6c83826131f8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fb157612fac81613365565b612ff0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612fef57612fee82826134a8565b5b5b505050565b61300f828260405180602001604052806000815250613527565b5050565b60006130348473ffffffffffffffffffffffffffffffffffffffff16613582565b1561319d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261305d6124a2565b8786866040518563ffffffff1660e01b815260040161307f949392919061491a565b602060405180830381600087803b15801561309957600080fd5b505af19250505080156130ca57506040513d601f19601f820116820180604052508101906130c79190613c18565b60015b61314d573d80600081146130fa576040519150601f19603f3d011682016040523d82523d6000602084013e6130ff565b606091505b50600081511415613145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313c90614a05565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131a2565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161320584611800565b61320f9190614fd9565b90506000600760008481526020019081526020016000205490508181146132f4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133799190614fd9565b90506000600960008481526020019081526020016000205490506000600883815481106133cf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613417577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061348c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006134b383611800565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6135318383613595565b61353e6000848484613013565b61357d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357490614a05565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fc90614be5565b60405180910390fd5b61360e816124aa565b1561364e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161364590614a65565b60405180910390fd5b61365a60008383612ee1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136aa9190614ef8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461376f906150c3565b90600052602060002090601f01602090048101928261379157600085556137d8565b82601f106137aa57805160ff19168380011785556137d8565b828001600101855582156137d8579182015b828111156137d75782518255916020019190600101906137bc565b5b5090506137e591906137e9565b5090565b5b808211156138025760008160009055506001016137ea565b5090565b600061381961381484614e11565b614de0565b90508281526020810184848401111561383157600080fd5b61383c848285615081565b509392505050565b600061385761385284614e41565b614de0565b90508281526020810184848401111561386f57600080fd5b61387a848285615081565b509392505050565b6000813590506138918161523c565b92915050565b60008083601f8401126138a957600080fd5b8235905067ffffffffffffffff8111156138c257600080fd5b6020830191508360208202830111156138da57600080fd5b9250929050565b60008083601f8401126138f357600080fd5b8235905067ffffffffffffffff81111561390c57600080fd5b60208301915083602082028301111561392457600080fd5b9250929050565b60008135905061393a81615253565b92915050565b60008135905061394f8161526a565b92915050565b6000815190506139648161526a565b92915050565b600082601f83011261397b57600080fd5b813561398b848260208601613806565b91505092915050565b600082601f8301126139a557600080fd5b81356139b5848260208601613844565b91505092915050565b6000813590506139cd81615281565b92915050565b6000602082840312156139e557600080fd5b60006139f384828501613882565b91505092915050565b60008060408385031215613a0f57600080fd5b6000613a1d85828601613882565b9250506020613a2e85828601613882565b9150509250929050565b600080600060608486031215613a4d57600080fd5b6000613a5b86828701613882565b9350506020613a6c86828701613882565b9250506040613a7d868287016139be565b9150509250925092565b60008060008060808587031215613a9d57600080fd5b6000613aab87828801613882565b9450506020613abc87828801613882565b9350506040613acd878288016139be565b925050606085013567ffffffffffffffff811115613aea57600080fd5b613af68782880161396a565b91505092959194509250565b60008060408385031215613b1557600080fd5b6000613b2385828601613882565b9250506020613b348582860161392b565b9150509250929050565b60008060408385031215613b5157600080fd5b6000613b5f85828601613882565b9250506020613b70858286016139be565b9150509250929050565b60008060008060408587031215613b9057600080fd5b600085013567ffffffffffffffff811115613baa57600080fd5b613bb687828801613897565b9450945050602085013567ffffffffffffffff811115613bd557600080fd5b613be1878288016138e1565b925092505092959194509250565b600060208284031215613c0157600080fd5b6000613c0f84828501613940565b91505092915050565b600060208284031215613c2a57600080fd5b6000613c3884828501613955565b91505092915050565b600060208284031215613c5357600080fd5b600082013567ffffffffffffffff811115613c6d57600080fd5b613c7984828501613994565b91505092915050565b600060208284031215613c9457600080fd5b6000613ca2848285016139be565b91505092915050565b6000613cb783836148a8565b60208301905092915050565b613ccc8161500d565b82525050565b6000613cdd82614e81565b613ce78185614eaf565b9350613cf283614e71565b8060005b83811015613d23578151613d0a8882613cab565b9750613d1583614ea2565b925050600181019050613cf6565b5085935050505092915050565b613d398161501f565b82525050565b6000613d4a82614e8c565b613d548185614ec0565b9350613d64818560208601615090565b613d6d8161522b565b840191505092915050565b6000613d8382614e97565b613d8d8185614edc565b9350613d9d818560208601615090565b613da68161522b565b840191505092915050565b6000613dbc82614e97565b613dc68185614eed565b9350613dd6818560208601615090565b80840191505092915050565b6000613def601d83614edc565b91507f57686974656c6973742073616c65206973206e6f74206163746976652e0000006000830152602082019050919050565b6000613e2f602b83614edc565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613e95603283614edc565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613efb602683614edc565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f61602683614edc565b91507f53656e646572206d7573742063616c6c207472616e73616374696f6e2064697260008301527f6563746c792e00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fc7601c83614edc565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614007602083614edc565b91507f53706c697420776569676874732068617665206e6f74206265656e207365742e6000830152602082019050919050565b6000614047601f83614edc565b91507f457863656564732077616c6c65742077686974656c697374206d696e74732e006000830152602082019050919050565b6000614087602483614edc565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140ed601983614edc565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061412d602c83614edc565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614193603883614edc565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006141f9602a83614edc565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061425f602983614edc565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006142c5602e83614edc565b91507f546869732076616c7565206973206d6f7265207468616e20617661696c61626c60008301527f6520746f2077697468647261772e0000000000000000000000000000000000006020830152604082019050919050565b600061432b601983614edc565b91507f53706c6974732068617665206e6f74206265656e207365742e000000000000006000830152602082019050919050565b600061436b602383614edc565b91507f5769746864726177616c73206f6620302063616e6e6f742074616b6520706c6160008301527f63652e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143d1602083614edc565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614411602c83614edc565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614477602083614edc565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006144b7602983614edc565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061451d601c83614edc565b91507f5472616e73616374696f6e2076616c756520696e636f72726563742e000000006000830152602082019050919050565b600061455d602f83614edc565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006145c3601383614edc565b91507f45786365656473206d617820737570706c792e000000000000000000000000006000830152602082019050919050565b6000614603601383614edc565b91507f53616c65206973206e6f74206163746976652e000000000000000000000000006000830152602082019050919050565b6000614643602183614edc565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146a9600083614ed1565b9150600082019050919050565b60006146c3601083614edc565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000614703603183614edc565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614769601c83614edc565b91507f45786365656473206d617820706572207472616e73616374696f6e2e000000006000830152602082019050919050565b60006147a9602c83614edc565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061480f602383614edc565b91507f57686974656c6973742073616c652068617320616c726561647920737461727460008301527f65642e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614875601083614edc565b91507f4265796f6e64206d6178206c696d6974000000000000000000000000000000006000830152602082019050919050565b6148b181615077565b82525050565b6148c081615077565b82525050565b60006148d28285613db1565b91506148de8284613db1565b91508190509392505050565b60006148f58261469c565b9150819050919050565b60006020820190506149146000830184613cc3565b92915050565b600060808201905061492f6000830187613cc3565b61493c6020830186613cc3565b61494960408301856148b7565b818103606083015261495b8184613d3f565b905095945050505050565b600060208201905081810360008301526149808184613cd2565b905092915050565b600060208201905061499d6000830184613d30565b92915050565b600060208201905081810360008301526149bd8184613d78565b905092915050565b600060208201905081810360008301526149de81613de2565b9050919050565b600060208201905081810360008301526149fe81613e22565b9050919050565b60006020820190508181036000830152614a1e81613e88565b9050919050565b60006020820190508181036000830152614a3e81613eee565b9050919050565b60006020820190508181036000830152614a5e81613f54565b9050919050565b60006020820190508181036000830152614a7e81613fba565b9050919050565b60006020820190508181036000830152614a9e81613ffa565b9050919050565b60006020820190508181036000830152614abe8161403a565b9050919050565b60006020820190508181036000830152614ade8161407a565b9050919050565b60006020820190508181036000830152614afe816140e0565b9050919050565b60006020820190508181036000830152614b1e81614120565b9050919050565b60006020820190508181036000830152614b3e81614186565b9050919050565b60006020820190508181036000830152614b5e816141ec565b9050919050565b60006020820190508181036000830152614b7e81614252565b9050919050565b60006020820190508181036000830152614b9e816142b8565b9050919050565b60006020820190508181036000830152614bbe8161431e565b9050919050565b60006020820190508181036000830152614bde8161435e565b9050919050565b60006020820190508181036000830152614bfe816143c4565b9050919050565b60006020820190508181036000830152614c1e81614404565b9050919050565b60006020820190508181036000830152614c3e8161446a565b9050919050565b60006020820190508181036000830152614c5e816144aa565b9050919050565b60006020820190508181036000830152614c7e81614510565b9050919050565b60006020820190508181036000830152614c9e81614550565b9050919050565b60006020820190508181036000830152614cbe816145b6565b9050919050565b60006020820190508181036000830152614cde816145f6565b9050919050565b60006020820190508181036000830152614cfe81614636565b9050919050565b60006020820190508181036000830152614d1e816146b6565b9050919050565b60006020820190508181036000830152614d3e816146f6565b9050919050565b60006020820190508181036000830152614d5e8161475c565b9050919050565b60006020820190508181036000830152614d7e8161479c565b9050919050565b60006020820190508181036000830152614d9e81614802565b9050919050565b60006020820190508181036000830152614dbe81614868565b9050919050565b6000602082019050614dda60008301846148b7565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614e0757614e066151fc565b5b8060405250919050565b600067ffffffffffffffff821115614e2c57614e2b6151fc565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614e5c57614e5b6151fc565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f0382615077565b9150614f0e83615077565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f4357614f4261516f565b5b828201905092915050565b6000614f5982615077565b9150614f6483615077565b925082614f7457614f7361519e565b5b828204905092915050565b6000614f8a82615077565b9150614f9583615077565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614fce57614fcd61516f565b5b828202905092915050565b6000614fe482615077565b9150614fef83615077565b9250828210156150025761500161516f565b5b828203905092915050565b600061501882615057565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156150ae578082015181840152602081019050615093565b838111156150bd576000848401525b50505050565b600060028204905060018216806150db57607f821691505b602082108114156150ef576150ee6151cd565b5b50919050565b600061510082615077565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151335761513261516f565b5b600182019050919050565b600061514982615077565b915061515483615077565b9250826151645761516361519e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6152458161500d565b811461525057600080fd5b50565b61525c8161501f565b811461526757600080fd5b50565b6152738161502b565b811461527e57600080fd5b50565b61528a81615077565b811461529557600080fd5b5056fea264697066735822122029a4350c3febaf055da69de0aae6cb69fcfc77122babf476bd58ae9a6b0291f264736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f616c6961736e66742e696f2f6170692f6d657461646174612f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000062180042606624f02d8a130da8a3171e9b33894d0000000000000000000000009c0ed287a87bdfd9c9e720bc1f024797033af68e000000000000000000000000a4754ba84ce571a91ad5fa8bffc8ae299883e6cf0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000001700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000045
-----Decoded View---------------
Arg [0] : baseURI (string): https://aliasnft.io/api/metadata/
Arg [1] : _splits (address[]): 0x62180042606624f02D8A130dA8A3171e9b33894d,0x9c0Ed287a87BdfD9C9e720bC1f024797033aF68e,0xa4754ba84cE571A91ad5fa8bFfc8AE299883e6cf
Arg [2] : _splitWeights (uint256[]): 23,8,69
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [4] : 68747470733a2f2f616c6961736e66742e696f2f6170692f6d65746164617461
Arg [5] : 2f00000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 00000000000000000000000062180042606624f02d8a130da8a3171e9b33894d
Arg [8] : 0000000000000000000000009c0ed287a87bdfd9c9e720bc1f024797033af68e
Arg [9] : 000000000000000000000000a4754ba84ce571a91ad5fa8bffc8ae299883e6cf
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000045
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.