ERC-721
NFT
Overview
Max Total Supply
0 BORP1
Holders
1,109
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BORP1Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Borpacasso
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract Borpacasso is ERC721, ERC721URIStorage, Ownable { using Counters for Counters.Counter; using SafeMath for uint256; string private _baseURIPrefix; mapping(address => bool) public whitelist; uint32 private constant maxTokensPerTransaction = 25; uint256 private tokenPrice = 75000000000000000; //0.075 ETH uint256 private constant nftsNumber = 2250; uint256 private constant nftsPublicNumber = 2225; address private constant borpFanOne = 0xb0e7d87fCB3d146d55EB694f9851833f18a7dB11; address private constant borpFanTwo = 0xCd2732220292022cC8Ab82173D213f4F51F99f76; bool public whitelistSaleActive = false; bool public mainSaleActive = false; bool public uriUnlocked = true; Counters.Counter private _tokenIdCounter; constructor() ERC721("Borpacasso", "BORP1") { _tokenIdCounter.increment(); } function setBaseURI(string memory baseURIPrefix) public onlyOwner { require(uriUnlocked, "Not happening."); _baseURIPrefix = baseURIPrefix; } function _baseURI() internal view override returns (string memory) { return _baseURIPrefix; } function lockURI() public onlyOwner { uriUnlocked = false; } function safeMint(address to) public onlyOwner { _safeMint(to, _tokenIdCounter.current()); _tokenIdCounter.increment(); } function howManyBorp() public view returns(uint256 a){ return Counters.current(_tokenIdCounter); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function withdraw() public onlyOwner { uint balance = address(this).balance; uint cut = balance.div(2); payable(borpFanOne).transfer(cut); payable(borpFanTwo).transfer(cut); } function mintGiveawayBorps(address to, uint256 tokenId) public onlyOwner { require(tokenId > nftsPublicNumber, "Wait for the sale to end first, stoopid"); _safeMint(to, tokenId); } function addToWhitelist(address[] memory _address)public onlyOwner { for(uint i = 0; i < _address.length; i++) { whitelist[_address[i]]=true; } } function removeFromWhitelist(address[] memory _address)public onlyOwner { for(uint i = 0; i < _address.length; i++) { whitelist[_address[i]]=false; } } function flipWhitelistSale() public onlyOwner { whitelistSaleActive = !whitelistSaleActive; } function flipMainSale() public onlyOwner { mainSaleActive = !mainSaleActive; } function buyWhitelistBorp() public payable { require(whitelistSaleActive, "Maybe later"); require(_tokenIdCounter.current().add(1) <= nftsPublicNumber, "Sry I dont have enough left ;("); require(tokenPrice <= msg.value, "That's not enough, sry ;("); require(whitelist[msg.sender]==true, "Who?"); whitelist[msg.sender]=false; _safeMint(msg.sender, _tokenIdCounter.current()); _tokenIdCounter.increment(); } function buyBorps(uint32 tokensNumber) public payable { require(mainSaleActive, "Maybe later"); require(tokensNumber > 0, "U cant mint zero borps bro"); require(tokensNumber <= maxTokensPerTransaction, "Save some for everyone else!"); require(_tokenIdCounter.current().add(tokensNumber) <= nftsPublicNumber, "Sry I dont have enough left ;("); require(tokenPrice.mul(tokensNumber) <= msg.value, "That's not enough, sry ;("); for(uint32 i = 0; i < tokensNumber; i++) { _safeMint(msg.sender, _tokenIdCounter.current()); _tokenIdCounter.increment(); } } }
// 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 "./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 "../../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 "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// 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; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// 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; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"tokensNumber","type":"uint32"}],"name":"buyBorps","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"buyWhitelistBorp","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipMainSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"howManyBorp","outputs":[{"internalType":"uint256","name":"a","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":"lockURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mainSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintGiveawayBorps","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURIPrefix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriUnlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267010a741a46278000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055503480156200006e57600080fd5b506040518060400160405280600a81526020017f426f727061636173736f000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f424f5250310000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f392919062000230565b5080600190805190602001906200010c92919062000230565b5050506200012f620001236200014c60201b60201c565b6200015460201b60201c565b62000146600c6200021a60201b62001ce81760201c565b62000345565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b8280546200023e90620002e0565b90600052602060002090601f016020900481019282620002625760008555620002ae565b82601f106200027d57805160ff1916838001178555620002ae565b82800160010185558215620002ae579182015b82811115620002ad57825182559160200191906001019062000290565b5b509050620002bd9190620002c1565b5090565b5b80821115620002dc576000816000905550600101620002c2565b5090565b60006002820490506001821680620002f957607f821691505b6020821081141562000310576200030f62000316565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6144c780620003556000396000f3fe6080604052600436106101e35760003560e01c80637ac2ee5411610102578063af8adedf11610095578063e072e16d11610064578063e072e16d14610660578063e985e9c51461068b578063f2fde38b146106c8578063f865339a146106f1576101e3565b8063af8adedf146105c7578063b775b4f3146105e3578063b88d4fde146105fa578063c87b56dd14610623576101e3565b80638e021c06116100d15780638e021c061461051f57806395d89b41146105365780639b19251a14610561578063a22cb4651461059e576101e3565b80637ac2ee54146104985780637f649783146104c1578063825a79cd146104ea5780638da5cb5b146104f4576101e3565b80633ccfd60b1161017a57806355f804b31161014957806355f804b3146103de5780636352211e1461040757806370a0823114610444578063715018a614610481576101e3565b80633ccfd60b1461034c57806340d097c31461036357806342842e0e1461038c578063548db174146103b5576101e3565b80630f5d66ad116101b65780630f5d66ad146102b657806323b872dd146102cd57806325e89283146102f65780633ad7f56c14610321576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612fde565b61071c565b60405161021c91906135a1565b60405180910390f35b34801561023157600080fd5b5061023a6107fe565b60405161024791906135bc565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613081565b610890565b604051610284919061353a565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612f55565b610915565b005b3480156102c257600080fd5b506102cb610a2d565b005b3480156102d957600080fd5b506102f460048036038101906102ef9190612e3f565b610ad5565b005b34801561030257600080fd5b5061030b610b35565b60405161031891906135a1565b60405180910390f35b34801561032d57600080fd5b50610336610b48565b60405161034391906135a1565b60405180910390f35b34801561035857600080fd5b50610361610b5b565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612dd2565b610cae565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612e3f565b610d4a565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190612f95565b610d6a565b005b3480156103ea57600080fd5b5061040560048036038101906104009190613038565b610e7b565b005b34801561041357600080fd5b5061042e60048036038101906104299190613081565b610f60565b60405161043b919061353a565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190612dd2565b611012565b60405161047891906138fe565b60405180910390f35b34801561048d57600080fd5b506104966110ca565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612f55565b611152565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190612f95565b611220565b005b6104f2611331565b005b34801561050057600080fd5b50610509611530565b604051610516919061353a565b60405180910390f35b34801561052b57600080fd5b5061053461155a565b005b34801561054257600080fd5b5061054b6115f3565b60405161055891906135bc565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190612dd2565b611685565b60405161059591906135a1565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612f15565b6116a5565b005b6105e160048036038101906105dc91906130ae565b611826565b005b3480156105ef57600080fd5b506105f8611a1c565b005b34801561060657600080fd5b50610621600480360381019061061c9190612e92565b611ac4565b005b34801561062f57600080fd5b5061064a60048036038101906106459190613081565b611b26565b60405161065791906135bc565b60405180910390f35b34801561066c57600080fd5b50610675611b38565b60405161068291906135a1565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad9190612dff565b611b4b565b6040516106bf91906135a1565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea9190612dd2565b611bdf565b005b3480156106fd57600080fd5b50610706611cd7565b60405161071391906138fe565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f757506107f682611cfe565b5b9050919050565b60606000805461080d90613bea565b80601f016020809104026020016040519081016040528092919081815260200182805461083990613bea565b80156108865780601f1061085b57610100808354040283529160200191610886565b820191906000526020600020905b81548152906001019060200180831161086957829003601f168201915b5050505050905090565b600061089b82611d68565b6108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d19061377e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092082610f60565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610991576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109889061383e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b0611dd4565b73ffffffffffffffffffffffffffffffffffffffff1614806109df57506109de816109d9611dd4565b611b4b565b5b610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a159061369e565b60405180910390fd5b610a288383611ddc565b505050565b610a35611dd4565b73ffffffffffffffffffffffffffffffffffffffff16610a53611530565b73ffffffffffffffffffffffffffffffffffffffff1614610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa0906137be565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b610ae6610ae0611dd4565b82611e95565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c9061385e565b60405180910390fd5b610b30838383611f73565b505050565b600b60019054906101000a900460ff1681565b600b60009054906101000a900460ff1681565b610b63611dd4565b73ffffffffffffffffffffffffffffffffffffffff16610b81611530565b73ffffffffffffffffffffffffffffffffffffffff1614610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce906137be565b60405180910390fd5b60004790506000610bf26002836121cf90919063ffffffff16565b905073b0e7d87fcb3d146d55eb694f9851833f18a7db1173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c4e573d6000803e3d6000fd5b5073cd2732220292022cc8ab82173d213f4f51f99f7673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ca9573d6000803e3d6000fd5b505050565b610cb6611dd4565b73ffffffffffffffffffffffffffffffffffffffff16610cd4611530565b73ffffffffffffffffffffffffffffffffffffffff1614610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d21906137be565b60405180910390fd5b610d3d81610d38600c6121e5565b6121f3565b610d47600c611ce8565b50565b610d6583838360405180602001604052806000815250611ac4565b505050565b610d72611dd4565b73ffffffffffffffffffffffffffffffffffffffff16610d90611530565b73ffffffffffffffffffffffffffffffffffffffff1614610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd906137be565b60405180910390fd5b60005b8151811015610e7757600060096000848481518110610e0b57610e0a613d81565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e6f90613c4d565b915050610de9565b5050565b610e83611dd4565b73ffffffffffffffffffffffffffffffffffffffff16610ea1611530565b73ffffffffffffffffffffffffffffffffffffffff1614610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee906137be565b60405180910390fd5b600b60029054906101000a900460ff16610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d9061379e565b60405180910390fd5b8060089080519060200190610f5c929190612b33565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611000906136fe565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906136de565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110d2611dd4565b73ffffffffffffffffffffffffffffffffffffffff166110f0611530565b73ffffffffffffffffffffffffffffffffffffffff1614611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d906137be565b60405180910390fd5b6111506000612211565b565b61115a611dd4565b73ffffffffffffffffffffffffffffffffffffffff16611178611530565b73ffffffffffffffffffffffffffffffffffffffff16146111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c5906137be565b60405180910390fd5b6108b18111611212576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112099061389e565b60405180910390fd5b61121c82826121f3565b5050565b611228611dd4565b73ffffffffffffffffffffffffffffffffffffffff16611246611530565b73ffffffffffffffffffffffffffffffffffffffff161461129c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611293906137be565b60405180910390fd5b60005b815181101561132d576001600960008484815181106112c1576112c0613d81565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061132590613c4d565b91505061129f565b5050565b600b60009054906101000a900460ff16611380576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113779061371e565b60405180910390fd5b6108b16113a06001611392600c6121e5565b6122d790919063ffffffff16565b11156113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d8906138de565b60405180910390fd5b34600a541115611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d9061381e565b60405180910390fd5b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b09061387e565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115243361151f600c6121e5565b6121f3565b61152e600c611ce8565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611562611dd4565b73ffffffffffffffffffffffffffffffffffffffff16611580611530565b73ffffffffffffffffffffffffffffffffffffffff16146115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd906137be565b60405180910390fd5b6000600b60026101000a81548160ff021916908315150217905550565b60606001805461160290613bea565b80601f016020809104026020016040519081016040528092919081815260200182805461162e90613bea565b801561167b5780601f106116505761010080835404028352916020019161167b565b820191906000526020600020905b81548152906001019060200180831161165e57829003601f168201915b5050505050905090565b60096020528060005260406000206000915054906101000a900460ff1681565b6116ad611dd4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117129061365e565b60405180910390fd5b8060056000611728611dd4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117d5611dd4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161181a91906135a1565b60405180910390a35050565b600b60019054906101000a900460ff16611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c9061371e565b60405180910390fd5b60008163ffffffff16116118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906138be565b60405180910390fd5b601963ffffffff168163ffffffff16111561190e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611905906136be565b60405180910390fd5b6108b16119338263ffffffff16611925600c6121e5565b6122d790919063ffffffff16565b1115611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b906138de565b60405180910390fd5b346119908263ffffffff16600a546122ed90919063ffffffff16565b11156119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c89061381e565b60405180910390fd5b60005b8163ffffffff168163ffffffff161015611a18576119fb336119f6600c6121e5565b6121f3565b611a05600c611ce8565b8080611a1090613c96565b9150506119d4565b5050565b611a24611dd4565b73ffffffffffffffffffffffffffffffffffffffff16611a42611530565b73ffffffffffffffffffffffffffffffffffffffff1614611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f906137be565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b611ad5611acf611dd4565b83611e95565b611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b9061385e565b60405180910390fd5b611b2084848484612303565b50505050565b6060611b318261235f565b9050919050565b600b60029054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611be7611dd4565b73ffffffffffffffffffffffffffffffffffffffff16611c05611530565b73ffffffffffffffffffffffffffffffffffffffff1614611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c52906137be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc2906135fe565b60405180910390fd5b611cd481612211565b50565b6000611ce3600c6121e5565b905090565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e4f83610f60565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ea082611d68565b611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed69061367e565b60405180910390fd5b6000611eea83610f60565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f5957508373ffffffffffffffffffffffffffffffffffffffff16611f4184610890565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f6a5750611f698185611b4b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f9382610f60565b73ffffffffffffffffffffffffffffffffffffffff1614611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe0906137de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612059576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120509061363e565b60405180910390fd5b6120648383836124b1565b61206f600082611ddc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120bf9190613af0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121169190613a0f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836121dd9190613a65565b905092915050565b600081600001549050919050565b61220d8282604051806020016040528060008152506124c1565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836122e59190613a0f565b905092915050565b600081836122fb9190613a96565b905092915050565b61230e848484611f73565b61231a8484848461251c565b612359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612350906135de565b60405180910390fd5b50505050565b606061236a82611d68565b6123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a09061375e565b60405180910390fd5b60006006600084815260200190815260200160002080546123c990613bea565b80601f01602080910402602001604051908101604052809291908181526020018280546123f590613bea565b80156124425780601f1061241757610100808354040283529160200191612442565b820191906000526020600020905b81548152906001019060200180831161242557829003601f168201915b5050505050905060006124536126b3565b90506000815114156124695781925050506124ac565b60008251111561249e578082604051602001612486929190613516565b604051602081830303815290604052925050506124ac565b6124a784612745565b925050505b919050565b6124bc8383836127ec565b505050565b6124cb83836127f1565b6124d8600084848461251c565b612517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250e906135de565b60405180910390fd5b505050565b600061253d8473ffffffffffffffffffffffffffffffffffffffff166129bf565b156126a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612566611dd4565b8786866040518563ffffffff1660e01b81526004016125889493929190613555565b602060405180830381600087803b1580156125a257600080fd5b505af19250505080156125d357506040513d601f19601f820116820180604052508101906125d0919061300b565b60015b612656573d8060008114612603576040519150601f19603f3d011682016040523d82523d6000602084013e612608565b606091505b5060008151141561264e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612645906135de565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126ab565b600190505b949350505050565b6060600880546126c290613bea565b80601f01602080910402602001604051908101604052809291908181526020018280546126ee90613bea565b801561273b5780601f106127105761010080835404028352916020019161273b565b820191906000526020600020905b81548152906001019060200180831161271e57829003601f168201915b5050505050905090565b606061275082611d68565b61278f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612786906137fe565b60405180910390fd5b60006127996126b3565b905060008151116127b957604051806020016040528060008152506127e4565b806127c3846129d2565b6040516020016127d4929190613516565b6040516020818303038152906040525b915050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612861576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128589061373e565b60405180910390fd5b61286a81611d68565b156128aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a19061361e565b60405180910390fd5b6128b6600083836124b1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129069190613a0f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415612a1a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b2e565b600082905060005b60008214612a4c578080612a3590613c4d565b915050600a82612a459190613a65565b9150612a22565b60008167ffffffffffffffff811115612a6857612a67613db0565b5b6040519080825280601f01601f191660200182016040528015612a9a5781602001600182028036833780820191505090505b5090505b60008514612b2757600182612ab39190613af0565b9150600a85612ac29190613cc3565b6030612ace9190613a0f565b60f81b818381518110612ae457612ae3613d81565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b209190613a65565b9450612a9e565b8093505050505b919050565b828054612b3f90613bea565b90600052602060002090601f016020900481019282612b615760008555612ba8565b82601f10612b7a57805160ff1916838001178555612ba8565b82800160010185558215612ba8579182015b82811115612ba7578251825591602001919060010190612b8c565b5b509050612bb59190612bb9565b5090565b5b80821115612bd2576000816000905550600101612bba565b5090565b6000612be9612be48461393e565b613919565b90508083825260208201905082856020860282011115612c0c57612c0b613de4565b5b60005b85811015612c3c5781612c228882612cca565b845260208401935060208301925050600181019050612c0f565b5050509392505050565b6000612c59612c548461396a565b613919565b905082815260208101848484011115612c7557612c74613de9565b5b612c80848285613ba8565b509392505050565b6000612c9b612c968461399b565b613919565b905082815260208101848484011115612cb757612cb6613de9565b5b612cc2848285613ba8565b509392505050565b600081359050612cd98161441e565b92915050565b600082601f830112612cf457612cf3613ddf565b5b8135612d04848260208601612bd6565b91505092915050565b600081359050612d1c81614435565b92915050565b600081359050612d318161444c565b92915050565b600081519050612d468161444c565b92915050565b600082601f830112612d6157612d60613ddf565b5b8135612d71848260208601612c46565b91505092915050565b600082601f830112612d8f57612d8e613ddf565b5b8135612d9f848260208601612c88565b91505092915050565b600081359050612db781614463565b92915050565b600081359050612dcc8161447a565b92915050565b600060208284031215612de857612de7613df3565b5b6000612df684828501612cca565b91505092915050565b60008060408385031215612e1657612e15613df3565b5b6000612e2485828601612cca565b9250506020612e3585828601612cca565b9150509250929050565b600080600060608486031215612e5857612e57613df3565b5b6000612e6686828701612cca565b9350506020612e7786828701612cca565b9250506040612e8886828701612da8565b9150509250925092565b60008060008060808587031215612eac57612eab613df3565b5b6000612eba87828801612cca565b9450506020612ecb87828801612cca565b9350506040612edc87828801612da8565b925050606085013567ffffffffffffffff811115612efd57612efc613dee565b5b612f0987828801612d4c565b91505092959194509250565b60008060408385031215612f2c57612f2b613df3565b5b6000612f3a85828601612cca565b9250506020612f4b85828601612d0d565b9150509250929050565b60008060408385031215612f6c57612f6b613df3565b5b6000612f7a85828601612cca565b9250506020612f8b85828601612da8565b9150509250929050565b600060208284031215612fab57612faa613df3565b5b600082013567ffffffffffffffff811115612fc957612fc8613dee565b5b612fd584828501612cdf565b91505092915050565b600060208284031215612ff457612ff3613df3565b5b600061300284828501612d22565b91505092915050565b60006020828403121561302157613020613df3565b5b600061302f84828501612d37565b91505092915050565b60006020828403121561304e5761304d613df3565b5b600082013567ffffffffffffffff81111561306c5761306b613dee565b5b61307884828501612d7a565b91505092915050565b60006020828403121561309757613096613df3565b5b60006130a584828501612da8565b91505092915050565b6000602082840312156130c4576130c3613df3565b5b60006130d284828501612dbd565b91505092915050565b6130e481613b24565b82525050565b6130f381613b36565b82525050565b6000613104826139cc565b61310e81856139e2565b935061311e818560208601613bb7565b61312781613df8565b840191505092915050565b600061313d826139d7565b61314781856139f3565b9350613157818560208601613bb7565b61316081613df8565b840191505092915050565b6000613176826139d7565b6131808185613a04565b9350613190818560208601613bb7565b80840191505092915050565b60006131a96032836139f3565b91506131b482613e09565b604082019050919050565b60006131cc6026836139f3565b91506131d782613e58565b604082019050919050565b60006131ef601c836139f3565b91506131fa82613ea7565b602082019050919050565b60006132126024836139f3565b915061321d82613ed0565b604082019050919050565b60006132356019836139f3565b915061324082613f1f565b602082019050919050565b6000613258602c836139f3565b915061326382613f48565b604082019050919050565b600061327b6038836139f3565b915061328682613f97565b604082019050919050565b600061329e601c836139f3565b91506132a982613fe6565b602082019050919050565b60006132c1602a836139f3565b91506132cc8261400f565b604082019050919050565b60006132e46029836139f3565b91506132ef8261405e565b604082019050919050565b6000613307600b836139f3565b9150613312826140ad565b602082019050919050565b600061332a6020836139f3565b9150613335826140d6565b602082019050919050565b600061334d6031836139f3565b9150613358826140ff565b604082019050919050565b6000613370602c836139f3565b915061337b8261414e565b604082019050919050565b6000613393600e836139f3565b915061339e8261419d565b602082019050919050565b60006133b66020836139f3565b91506133c1826141c6565b602082019050919050565b60006133d96029836139f3565b91506133e4826141ef565b604082019050919050565b60006133fc602f836139f3565b91506134078261423e565b604082019050919050565b600061341f6019836139f3565b915061342a8261428d565b602082019050919050565b60006134426021836139f3565b915061344d826142b6565b604082019050919050565b60006134656031836139f3565b915061347082614305565b604082019050919050565b60006134886004836139f3565b915061349382614354565b602082019050919050565b60006134ab6027836139f3565b91506134b68261437d565b604082019050919050565b60006134ce601a836139f3565b91506134d9826143cc565b602082019050919050565b60006134f1601e836139f3565b91506134fc826143f5565b602082019050919050565b61351081613b8e565b82525050565b6000613522828561316b565b915061352e828461316b565b91508190509392505050565b600060208201905061354f60008301846130db565b92915050565b600060808201905061356a60008301876130db565b61357760208301866130db565b6135846040830185613507565b818103606083015261359681846130f9565b905095945050505050565b60006020820190506135b660008301846130ea565b92915050565b600060208201905081810360008301526135d68184613132565b905092915050565b600060208201905081810360008301526135f78161319c565b9050919050565b60006020820190508181036000830152613617816131bf565b9050919050565b60006020820190508181036000830152613637816131e2565b9050919050565b6000602082019050818103600083015261365781613205565b9050919050565b6000602082019050818103600083015261367781613228565b9050919050565b600060208201905081810360008301526136978161324b565b9050919050565b600060208201905081810360008301526136b78161326e565b9050919050565b600060208201905081810360008301526136d781613291565b9050919050565b600060208201905081810360008301526136f7816132b4565b9050919050565b60006020820190508181036000830152613717816132d7565b9050919050565b60006020820190508181036000830152613737816132fa565b9050919050565b600060208201905081810360008301526137578161331d565b9050919050565b6000602082019050818103600083015261377781613340565b9050919050565b6000602082019050818103600083015261379781613363565b9050919050565b600060208201905081810360008301526137b781613386565b9050919050565b600060208201905081810360008301526137d7816133a9565b9050919050565b600060208201905081810360008301526137f7816133cc565b9050919050565b60006020820190508181036000830152613817816133ef565b9050919050565b6000602082019050818103600083015261383781613412565b9050919050565b6000602082019050818103600083015261385781613435565b9050919050565b6000602082019050818103600083015261387781613458565b9050919050565b600060208201905081810360008301526138978161347b565b9050919050565b600060208201905081810360008301526138b78161349e565b9050919050565b600060208201905081810360008301526138d7816134c1565b9050919050565b600060208201905081810360008301526138f7816134e4565b9050919050565b60006020820190506139136000830184613507565b92915050565b6000613923613934565b905061392f8282613c1c565b919050565b6000604051905090565b600067ffffffffffffffff82111561395957613958613db0565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561398557613984613db0565b5b61398e82613df8565b9050602081019050919050565b600067ffffffffffffffff8211156139b6576139b5613db0565b5b6139bf82613df8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a1a82613b8e565b9150613a2583613b8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a5a57613a59613cf4565b5b828201905092915050565b6000613a7082613b8e565b9150613a7b83613b8e565b925082613a8b57613a8a613d23565b5b828204905092915050565b6000613aa182613b8e565b9150613aac83613b8e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ae557613ae4613cf4565b5b828202905092915050565b6000613afb82613b8e565b9150613b0683613b8e565b925082821015613b1957613b18613cf4565b5b828203905092915050565b6000613b2f82613b6e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b83811015613bd5578082015181840152602081019050613bba565b83811115613be4576000848401525b50505050565b60006002820490506001821680613c0257607f821691505b60208210811415613c1657613c15613d52565b5b50919050565b613c2582613df8565b810181811067ffffffffffffffff82111715613c4457613c43613db0565b5b80604052505050565b6000613c5882613b8e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c8b57613c8a613cf4565b5b600182019050919050565b6000613ca182613b98565b915063ffffffff821415613cb857613cb7613cf4565b5b600182019050919050565b6000613cce82613b8e565b9150613cd983613b8e565b925082613ce957613ce8613d23565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f5361766520736f6d6520666f722065766572796f6e6520656c73652100000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d61796265206c61746572000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f742068617070656e696e672e000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f546861742773206e6f7420656e6f7567682c20737279203b2800000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f57686f3f00000000000000000000000000000000000000000000000000000000600082015250565b7f5761697420666f72207468652073616c6520746f20656e642066697273742c2060008201527f73746f6f70696400000000000000000000000000000000000000000000000000602082015250565b7f552063616e74206d696e74207a65726f20626f7270732062726f000000000000600082015250565b7f537279204920646f6e74206861766520656e6f756768206c656674203b280000600082015250565b61442781613b24565b811461443257600080fd5b50565b61443e81613b36565b811461444957600080fd5b50565b61445581613b42565b811461446057600080fd5b50565b61446c81613b8e565b811461447757600080fd5b50565b61448381613b98565b811461448e57600080fd5b5056fea2646970667358221220058bf7c4bacec4c042658fb449d12469f30cdc70f3006384b473d5f18dac9fd464736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80637ac2ee5411610102578063af8adedf11610095578063e072e16d11610064578063e072e16d14610660578063e985e9c51461068b578063f2fde38b146106c8578063f865339a146106f1576101e3565b8063af8adedf146105c7578063b775b4f3146105e3578063b88d4fde146105fa578063c87b56dd14610623576101e3565b80638e021c06116100d15780638e021c061461051f57806395d89b41146105365780639b19251a14610561578063a22cb4651461059e576101e3565b80637ac2ee54146104985780637f649783146104c1578063825a79cd146104ea5780638da5cb5b146104f4576101e3565b80633ccfd60b1161017a57806355f804b31161014957806355f804b3146103de5780636352211e1461040757806370a0823114610444578063715018a614610481576101e3565b80633ccfd60b1461034c57806340d097c31461036357806342842e0e1461038c578063548db174146103b5576101e3565b80630f5d66ad116101b65780630f5d66ad146102b657806323b872dd146102cd57806325e89283146102f65780633ad7f56c14610321576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612fde565b61071c565b60405161021c91906135a1565b60405180910390f35b34801561023157600080fd5b5061023a6107fe565b60405161024791906135bc565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613081565b610890565b604051610284919061353a565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612f55565b610915565b005b3480156102c257600080fd5b506102cb610a2d565b005b3480156102d957600080fd5b506102f460048036038101906102ef9190612e3f565b610ad5565b005b34801561030257600080fd5b5061030b610b35565b60405161031891906135a1565b60405180910390f35b34801561032d57600080fd5b50610336610b48565b60405161034391906135a1565b60405180910390f35b34801561035857600080fd5b50610361610b5b565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612dd2565b610cae565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612e3f565b610d4a565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190612f95565b610d6a565b005b3480156103ea57600080fd5b5061040560048036038101906104009190613038565b610e7b565b005b34801561041357600080fd5b5061042e60048036038101906104299190613081565b610f60565b60405161043b919061353a565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190612dd2565b611012565b60405161047891906138fe565b60405180910390f35b34801561048d57600080fd5b506104966110ca565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612f55565b611152565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190612f95565b611220565b005b6104f2611331565b005b34801561050057600080fd5b50610509611530565b604051610516919061353a565b60405180910390f35b34801561052b57600080fd5b5061053461155a565b005b34801561054257600080fd5b5061054b6115f3565b60405161055891906135bc565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190612dd2565b611685565b60405161059591906135a1565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612f15565b6116a5565b005b6105e160048036038101906105dc91906130ae565b611826565b005b3480156105ef57600080fd5b506105f8611a1c565b005b34801561060657600080fd5b50610621600480360381019061061c9190612e92565b611ac4565b005b34801561062f57600080fd5b5061064a60048036038101906106459190613081565b611b26565b60405161065791906135bc565b60405180910390f35b34801561066c57600080fd5b50610675611b38565b60405161068291906135a1565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad9190612dff565b611b4b565b6040516106bf91906135a1565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea9190612dd2565b611bdf565b005b3480156106fd57600080fd5b50610706611cd7565b60405161071391906138fe565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f757506107f682611cfe565b5b9050919050565b60606000805461080d90613bea565b80601f016020809104026020016040519081016040528092919081815260200182805461083990613bea565b80156108865780601f1061085b57610100808354040283529160200191610886565b820191906000526020600020905b81548152906001019060200180831161086957829003601f168201915b5050505050905090565b600061089b82611d68565b6108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d19061377e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092082610f60565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610991576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109889061383e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b0611dd4565b73ffffffffffffffffffffffffffffffffffffffff1614806109df57506109de816109d9611dd4565b611b4b565b5b610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a159061369e565b60405180910390fd5b610a288383611ddc565b505050565b610a35611dd4565b73ffffffffffffffffffffffffffffffffffffffff16610a53611530565b73ffffffffffffffffffffffffffffffffffffffff1614610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa0906137be565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b610ae6610ae0611dd4565b82611e95565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c9061385e565b60405180910390fd5b610b30838383611f73565b505050565b600b60019054906101000a900460ff1681565b600b60009054906101000a900460ff1681565b610b63611dd4565b73ffffffffffffffffffffffffffffffffffffffff16610b81611530565b73ffffffffffffffffffffffffffffffffffffffff1614610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce906137be565b60405180910390fd5b60004790506000610bf26002836121cf90919063ffffffff16565b905073b0e7d87fcb3d146d55eb694f9851833f18a7db1173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c4e573d6000803e3d6000fd5b5073cd2732220292022cc8ab82173d213f4f51f99f7673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ca9573d6000803e3d6000fd5b505050565b610cb6611dd4565b73ffffffffffffffffffffffffffffffffffffffff16610cd4611530565b73ffffffffffffffffffffffffffffffffffffffff1614610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d21906137be565b60405180910390fd5b610d3d81610d38600c6121e5565b6121f3565b610d47600c611ce8565b50565b610d6583838360405180602001604052806000815250611ac4565b505050565b610d72611dd4565b73ffffffffffffffffffffffffffffffffffffffff16610d90611530565b73ffffffffffffffffffffffffffffffffffffffff1614610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd906137be565b60405180910390fd5b60005b8151811015610e7757600060096000848481518110610e0b57610e0a613d81565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e6f90613c4d565b915050610de9565b5050565b610e83611dd4565b73ffffffffffffffffffffffffffffffffffffffff16610ea1611530565b73ffffffffffffffffffffffffffffffffffffffff1614610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee906137be565b60405180910390fd5b600b60029054906101000a900460ff16610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d9061379e565b60405180910390fd5b8060089080519060200190610f5c929190612b33565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611000906136fe565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906136de565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110d2611dd4565b73ffffffffffffffffffffffffffffffffffffffff166110f0611530565b73ffffffffffffffffffffffffffffffffffffffff1614611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d906137be565b60405180910390fd5b6111506000612211565b565b61115a611dd4565b73ffffffffffffffffffffffffffffffffffffffff16611178611530565b73ffffffffffffffffffffffffffffffffffffffff16146111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c5906137be565b60405180910390fd5b6108b18111611212576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112099061389e565b60405180910390fd5b61121c82826121f3565b5050565b611228611dd4565b73ffffffffffffffffffffffffffffffffffffffff16611246611530565b73ffffffffffffffffffffffffffffffffffffffff161461129c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611293906137be565b60405180910390fd5b60005b815181101561132d576001600960008484815181106112c1576112c0613d81565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061132590613c4d565b91505061129f565b5050565b600b60009054906101000a900460ff16611380576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113779061371e565b60405180910390fd5b6108b16113a06001611392600c6121e5565b6122d790919063ffffffff16565b11156113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d8906138de565b60405180910390fd5b34600a541115611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d9061381e565b60405180910390fd5b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b09061387e565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115243361151f600c6121e5565b6121f3565b61152e600c611ce8565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611562611dd4565b73ffffffffffffffffffffffffffffffffffffffff16611580611530565b73ffffffffffffffffffffffffffffffffffffffff16146115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd906137be565b60405180910390fd5b6000600b60026101000a81548160ff021916908315150217905550565b60606001805461160290613bea565b80601f016020809104026020016040519081016040528092919081815260200182805461162e90613bea565b801561167b5780601f106116505761010080835404028352916020019161167b565b820191906000526020600020905b81548152906001019060200180831161165e57829003601f168201915b5050505050905090565b60096020528060005260406000206000915054906101000a900460ff1681565b6116ad611dd4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117129061365e565b60405180910390fd5b8060056000611728611dd4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117d5611dd4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161181a91906135a1565b60405180910390a35050565b600b60019054906101000a900460ff16611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c9061371e565b60405180910390fd5b60008163ffffffff16116118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906138be565b60405180910390fd5b601963ffffffff168163ffffffff16111561190e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611905906136be565b60405180910390fd5b6108b16119338263ffffffff16611925600c6121e5565b6122d790919063ffffffff16565b1115611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b906138de565b60405180910390fd5b346119908263ffffffff16600a546122ed90919063ffffffff16565b11156119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c89061381e565b60405180910390fd5b60005b8163ffffffff168163ffffffff161015611a18576119fb336119f6600c6121e5565b6121f3565b611a05600c611ce8565b8080611a1090613c96565b9150506119d4565b5050565b611a24611dd4565b73ffffffffffffffffffffffffffffffffffffffff16611a42611530565b73ffffffffffffffffffffffffffffffffffffffff1614611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f906137be565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b611ad5611acf611dd4565b83611e95565b611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b9061385e565b60405180910390fd5b611b2084848484612303565b50505050565b6060611b318261235f565b9050919050565b600b60029054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611be7611dd4565b73ffffffffffffffffffffffffffffffffffffffff16611c05611530565b73ffffffffffffffffffffffffffffffffffffffff1614611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c52906137be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc2906135fe565b60405180910390fd5b611cd481612211565b50565b6000611ce3600c6121e5565b905090565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e4f83610f60565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ea082611d68565b611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed69061367e565b60405180910390fd5b6000611eea83610f60565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f5957508373ffffffffffffffffffffffffffffffffffffffff16611f4184610890565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f6a5750611f698185611b4b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f9382610f60565b73ffffffffffffffffffffffffffffffffffffffff1614611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe0906137de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612059576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120509061363e565b60405180910390fd5b6120648383836124b1565b61206f600082611ddc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120bf9190613af0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121169190613a0f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836121dd9190613a65565b905092915050565b600081600001549050919050565b61220d8282604051806020016040528060008152506124c1565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836122e59190613a0f565b905092915050565b600081836122fb9190613a96565b905092915050565b61230e848484611f73565b61231a8484848461251c565b612359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612350906135de565b60405180910390fd5b50505050565b606061236a82611d68565b6123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a09061375e565b60405180910390fd5b60006006600084815260200190815260200160002080546123c990613bea565b80601f01602080910402602001604051908101604052809291908181526020018280546123f590613bea565b80156124425780601f1061241757610100808354040283529160200191612442565b820191906000526020600020905b81548152906001019060200180831161242557829003601f168201915b5050505050905060006124536126b3565b90506000815114156124695781925050506124ac565b60008251111561249e578082604051602001612486929190613516565b604051602081830303815290604052925050506124ac565b6124a784612745565b925050505b919050565b6124bc8383836127ec565b505050565b6124cb83836127f1565b6124d8600084848461251c565b612517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250e906135de565b60405180910390fd5b505050565b600061253d8473ffffffffffffffffffffffffffffffffffffffff166129bf565b156126a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612566611dd4565b8786866040518563ffffffff1660e01b81526004016125889493929190613555565b602060405180830381600087803b1580156125a257600080fd5b505af19250505080156125d357506040513d601f19601f820116820180604052508101906125d0919061300b565b60015b612656573d8060008114612603576040519150601f19603f3d011682016040523d82523d6000602084013e612608565b606091505b5060008151141561264e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612645906135de565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126ab565b600190505b949350505050565b6060600880546126c290613bea565b80601f01602080910402602001604051908101604052809291908181526020018280546126ee90613bea565b801561273b5780601f106127105761010080835404028352916020019161273b565b820191906000526020600020905b81548152906001019060200180831161271e57829003601f168201915b5050505050905090565b606061275082611d68565b61278f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612786906137fe565b60405180910390fd5b60006127996126b3565b905060008151116127b957604051806020016040528060008152506127e4565b806127c3846129d2565b6040516020016127d4929190613516565b6040516020818303038152906040525b915050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612861576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128589061373e565b60405180910390fd5b61286a81611d68565b156128aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a19061361e565b60405180910390fd5b6128b6600083836124b1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129069190613a0f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415612a1a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b2e565b600082905060005b60008214612a4c578080612a3590613c4d565b915050600a82612a459190613a65565b9150612a22565b60008167ffffffffffffffff811115612a6857612a67613db0565b5b6040519080825280601f01601f191660200182016040528015612a9a5781602001600182028036833780820191505090505b5090505b60008514612b2757600182612ab39190613af0565b9150600a85612ac29190613cc3565b6030612ace9190613a0f565b60f81b818381518110612ae457612ae3613d81565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b209190613a65565b9450612a9e565b8093505050505b919050565b828054612b3f90613bea565b90600052602060002090601f016020900481019282612b615760008555612ba8565b82601f10612b7a57805160ff1916838001178555612ba8565b82800160010185558215612ba8579182015b82811115612ba7578251825591602001919060010190612b8c565b5b509050612bb59190612bb9565b5090565b5b80821115612bd2576000816000905550600101612bba565b5090565b6000612be9612be48461393e565b613919565b90508083825260208201905082856020860282011115612c0c57612c0b613de4565b5b60005b85811015612c3c5781612c228882612cca565b845260208401935060208301925050600181019050612c0f565b5050509392505050565b6000612c59612c548461396a565b613919565b905082815260208101848484011115612c7557612c74613de9565b5b612c80848285613ba8565b509392505050565b6000612c9b612c968461399b565b613919565b905082815260208101848484011115612cb757612cb6613de9565b5b612cc2848285613ba8565b509392505050565b600081359050612cd98161441e565b92915050565b600082601f830112612cf457612cf3613ddf565b5b8135612d04848260208601612bd6565b91505092915050565b600081359050612d1c81614435565b92915050565b600081359050612d318161444c565b92915050565b600081519050612d468161444c565b92915050565b600082601f830112612d6157612d60613ddf565b5b8135612d71848260208601612c46565b91505092915050565b600082601f830112612d8f57612d8e613ddf565b5b8135612d9f848260208601612c88565b91505092915050565b600081359050612db781614463565b92915050565b600081359050612dcc8161447a565b92915050565b600060208284031215612de857612de7613df3565b5b6000612df684828501612cca565b91505092915050565b60008060408385031215612e1657612e15613df3565b5b6000612e2485828601612cca565b9250506020612e3585828601612cca565b9150509250929050565b600080600060608486031215612e5857612e57613df3565b5b6000612e6686828701612cca565b9350506020612e7786828701612cca565b9250506040612e8886828701612da8565b9150509250925092565b60008060008060808587031215612eac57612eab613df3565b5b6000612eba87828801612cca565b9450506020612ecb87828801612cca565b9350506040612edc87828801612da8565b925050606085013567ffffffffffffffff811115612efd57612efc613dee565b5b612f0987828801612d4c565b91505092959194509250565b60008060408385031215612f2c57612f2b613df3565b5b6000612f3a85828601612cca565b9250506020612f4b85828601612d0d565b9150509250929050565b60008060408385031215612f6c57612f6b613df3565b5b6000612f7a85828601612cca565b9250506020612f8b85828601612da8565b9150509250929050565b600060208284031215612fab57612faa613df3565b5b600082013567ffffffffffffffff811115612fc957612fc8613dee565b5b612fd584828501612cdf565b91505092915050565b600060208284031215612ff457612ff3613df3565b5b600061300284828501612d22565b91505092915050565b60006020828403121561302157613020613df3565b5b600061302f84828501612d37565b91505092915050565b60006020828403121561304e5761304d613df3565b5b600082013567ffffffffffffffff81111561306c5761306b613dee565b5b61307884828501612d7a565b91505092915050565b60006020828403121561309757613096613df3565b5b60006130a584828501612da8565b91505092915050565b6000602082840312156130c4576130c3613df3565b5b60006130d284828501612dbd565b91505092915050565b6130e481613b24565b82525050565b6130f381613b36565b82525050565b6000613104826139cc565b61310e81856139e2565b935061311e818560208601613bb7565b61312781613df8565b840191505092915050565b600061313d826139d7565b61314781856139f3565b9350613157818560208601613bb7565b61316081613df8565b840191505092915050565b6000613176826139d7565b6131808185613a04565b9350613190818560208601613bb7565b80840191505092915050565b60006131a96032836139f3565b91506131b482613e09565b604082019050919050565b60006131cc6026836139f3565b91506131d782613e58565b604082019050919050565b60006131ef601c836139f3565b91506131fa82613ea7565b602082019050919050565b60006132126024836139f3565b915061321d82613ed0565b604082019050919050565b60006132356019836139f3565b915061324082613f1f565b602082019050919050565b6000613258602c836139f3565b915061326382613f48565b604082019050919050565b600061327b6038836139f3565b915061328682613f97565b604082019050919050565b600061329e601c836139f3565b91506132a982613fe6565b602082019050919050565b60006132c1602a836139f3565b91506132cc8261400f565b604082019050919050565b60006132e46029836139f3565b91506132ef8261405e565b604082019050919050565b6000613307600b836139f3565b9150613312826140ad565b602082019050919050565b600061332a6020836139f3565b9150613335826140d6565b602082019050919050565b600061334d6031836139f3565b9150613358826140ff565b604082019050919050565b6000613370602c836139f3565b915061337b8261414e565b604082019050919050565b6000613393600e836139f3565b915061339e8261419d565b602082019050919050565b60006133b66020836139f3565b91506133c1826141c6565b602082019050919050565b60006133d96029836139f3565b91506133e4826141ef565b604082019050919050565b60006133fc602f836139f3565b91506134078261423e565b604082019050919050565b600061341f6019836139f3565b915061342a8261428d565b602082019050919050565b60006134426021836139f3565b915061344d826142b6565b604082019050919050565b60006134656031836139f3565b915061347082614305565b604082019050919050565b60006134886004836139f3565b915061349382614354565b602082019050919050565b60006134ab6027836139f3565b91506134b68261437d565b604082019050919050565b60006134ce601a836139f3565b91506134d9826143cc565b602082019050919050565b60006134f1601e836139f3565b91506134fc826143f5565b602082019050919050565b61351081613b8e565b82525050565b6000613522828561316b565b915061352e828461316b565b91508190509392505050565b600060208201905061354f60008301846130db565b92915050565b600060808201905061356a60008301876130db565b61357760208301866130db565b6135846040830185613507565b818103606083015261359681846130f9565b905095945050505050565b60006020820190506135b660008301846130ea565b92915050565b600060208201905081810360008301526135d68184613132565b905092915050565b600060208201905081810360008301526135f78161319c565b9050919050565b60006020820190508181036000830152613617816131bf565b9050919050565b60006020820190508181036000830152613637816131e2565b9050919050565b6000602082019050818103600083015261365781613205565b9050919050565b6000602082019050818103600083015261367781613228565b9050919050565b600060208201905081810360008301526136978161324b565b9050919050565b600060208201905081810360008301526136b78161326e565b9050919050565b600060208201905081810360008301526136d781613291565b9050919050565b600060208201905081810360008301526136f7816132b4565b9050919050565b60006020820190508181036000830152613717816132d7565b9050919050565b60006020820190508181036000830152613737816132fa565b9050919050565b600060208201905081810360008301526137578161331d565b9050919050565b6000602082019050818103600083015261377781613340565b9050919050565b6000602082019050818103600083015261379781613363565b9050919050565b600060208201905081810360008301526137b781613386565b9050919050565b600060208201905081810360008301526137d7816133a9565b9050919050565b600060208201905081810360008301526137f7816133cc565b9050919050565b60006020820190508181036000830152613817816133ef565b9050919050565b6000602082019050818103600083015261383781613412565b9050919050565b6000602082019050818103600083015261385781613435565b9050919050565b6000602082019050818103600083015261387781613458565b9050919050565b600060208201905081810360008301526138978161347b565b9050919050565b600060208201905081810360008301526138b78161349e565b9050919050565b600060208201905081810360008301526138d7816134c1565b9050919050565b600060208201905081810360008301526138f7816134e4565b9050919050565b60006020820190506139136000830184613507565b92915050565b6000613923613934565b905061392f8282613c1c565b919050565b6000604051905090565b600067ffffffffffffffff82111561395957613958613db0565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561398557613984613db0565b5b61398e82613df8565b9050602081019050919050565b600067ffffffffffffffff8211156139b6576139b5613db0565b5b6139bf82613df8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a1a82613b8e565b9150613a2583613b8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a5a57613a59613cf4565b5b828201905092915050565b6000613a7082613b8e565b9150613a7b83613b8e565b925082613a8b57613a8a613d23565b5b828204905092915050565b6000613aa182613b8e565b9150613aac83613b8e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ae557613ae4613cf4565b5b828202905092915050565b6000613afb82613b8e565b9150613b0683613b8e565b925082821015613b1957613b18613cf4565b5b828203905092915050565b6000613b2f82613b6e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b83811015613bd5578082015181840152602081019050613bba565b83811115613be4576000848401525b50505050565b60006002820490506001821680613c0257607f821691505b60208210811415613c1657613c15613d52565b5b50919050565b613c2582613df8565b810181811067ffffffffffffffff82111715613c4457613c43613db0565b5b80604052505050565b6000613c5882613b8e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c8b57613c8a613cf4565b5b600182019050919050565b6000613ca182613b98565b915063ffffffff821415613cb857613cb7613cf4565b5b600182019050919050565b6000613cce82613b8e565b9150613cd983613b8e565b925082613ce957613ce8613d23565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f5361766520736f6d6520666f722065766572796f6e6520656c73652100000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d61796265206c61746572000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f742068617070656e696e672e000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f546861742773206e6f7420656e6f7567682c20737279203b2800000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f57686f3f00000000000000000000000000000000000000000000000000000000600082015250565b7f5761697420666f72207468652073616c6520746f20656e642066697273742c2060008201527f73746f6f70696400000000000000000000000000000000000000000000000000602082015250565b7f552063616e74206d696e74207a65726f20626f7270732062726f000000000000600082015250565b7f537279204920646f6e74206861766520656e6f756768206c656674203b280000600082015250565b61442781613b24565b811461443257600080fd5b50565b61443e81613b36565b811461444957600080fd5b50565b61445581613b42565b811461446057600080fd5b50565b61446c81613b8e565b811461447757600080fd5b50565b61448381613b98565b811461448e57600080fd5b5056fea2646970667358221220058bf7c4bacec4c042658fb449d12469f30cdc70f3006384b473d5f18dac9fd464736f6c63430008070033
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.