Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
9,999 A$$
Holders
5,353
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 A$$Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AlienSecretSociety
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "./ERC721.sol"; import "./ERC721Enumerable.sol"; import "./ERC721URIStorage.sol"; import "./Pausable.sol"; import "./Ownable.sol"; import "./Counters.sol"; import "./SafeMath.sol"; import "./MerkleProof.sol"; contract AlienSecretSociety is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; uint256 public MAX_SUPPLY; uint256 public WL_SUPPLY; // Whitelist mapping(address => uint) public whitelistRedeemed; bool public whitelistSaleEnabled; // flags if whitelist sale is enabled or not. // Whitelist One bytes32 public whitelist; uint256 public whitelistPrice; uint256 public whitelistMaxAmount; uint256 public redeemedCount; // Dutch Auction mapping(address => uint) public dutchAuctionPurchased; bool public dutchAuctionEnabled; // flags if the dutch auction is enabled or not. uint256 public dutchAuctionStartPrice; // stores the start price of the token. uint256 public dutchAuctionFloorPrice; // stores the min price settable. uint256 public dutchAuctionStartTimestamp; // stores timestamp of start of auction. resets after each sale. uint256 public dutchAuctionPriceDecreaseBy; // store the value by which to decrease price every tick. uint256 public dutchAuctionChangeTick; // (stored: seconds, constructed: minutes) Holds the tick value at which we need to decrease price. uint256 public dutchAuctionLimitPerWallet; // stores limit of tokens allowed to be minted per address/wallet. // State variables. bool public revealed; // flags nfts being revealed string baseURI; // initially set to unrevealed URI. Updated on reveal. string unreveleadTokenURI; // stores the unrevealed URI. event DutchAuctionPurchased(uint256 tokenId); constructor( uint256 whitelistPrice_, uint256 whitelistMaxAmount_, uint256 dutchAuctionStartPrice_, uint256 dutchAuctionFloorPrice_, uint256 dutchAuctionPriceDecreaseBy_, uint256 dutchAuctionLimitPerWallet_, uint256 dutchAuctionChangeTick_, string memory unrevealedBaseURI_, string memory unrevealedTokenURI_ ) ERC721("Alien Secret Society", "A$$"){ MAX_SUPPLY = 9999; WL_SUPPLY = 3000; // Whitelist whitelistSaleEnabled = true; whitelistPrice = whitelistPrice_; whitelistMaxAmount = whitelistMaxAmount_; // // Dutch Auction dutchAuctionEnabled = false; dutchAuctionStartPrice = dutchAuctionStartPrice_; dutchAuctionFloorPrice = dutchAuctionFloorPrice_; dutchAuctionPriceDecreaseBy = dutchAuctionPriceDecreaseBy_; dutchAuctionChangeTick = dutchAuctionChangeTick_.mul(60); // storing in seconds. dutchAuctionLimitPerWallet = dutchAuctionLimitPerWallet_; // URIs baseURI = unrevealedBaseURI_; unreveleadTokenURI = unrevealedTokenURI_; } /********************* * Public Functions *********************/ function dutchAuctionCurrentPrice() public view returns (uint256) { uint256 delta = block.timestamp - dutchAuctionStartTimestamp; uint256 ticks = delta.div(dutchAuctionChangeTick); uint256 decrement = dutchAuctionPriceDecreaseBy.mul(ticks); if (decrement > dutchAuctionStartPrice) { return dutchAuctionFloorPrice; // cannot go lower than the floor price. } uint256 price = dutchAuctionStartPrice.sub(decrement); if (price < dutchAuctionFloorPrice) { price = dutchAuctionFloorPrice; } return price; } function buyNow(uint256 amount) external payable whenNotPaused { require(amount >= 1 , "cannot mint 0"); require(dutchAuctionEnabled == true, "auction is closed"); require(MAX_SUPPLY >= totalSupply().add(amount), "cannot mint token. maxSupply was reached"); require(dutchAuctionPurchased[msg.sender].add(amount) <= dutchAuctionLimitPerWallet, "wallet limit reached"); uint256 priceMultiple=dutchAuctionStartPrice.mul(amount.sub(1)); uint256 price = dutchAuctionCurrentPrice().add(priceMultiple); require(price <= msg.value, "not enough ETH sent"); dutchAuctionPurchased[msg.sender] = dutchAuctionPurchased[msg.sender].add(amount); for (uint i = 0; i < amount; i++) { safeMint(msg.sender); emit DutchAuctionPurchased(_tokenIdCounter.current()); } } function redeem(uint256 amount, bytes32[] calldata proof) external payable whenNotPaused { require(whitelistSaleEnabled == true, "whitelist sale has ended"); require(amount > 0, "need to mint at least one token"); require(msg.value != 0, "cannot mint for free"); require(MAX_SUPPLY >= totalSupply().add(amount), "cannot mint tokens. will go over maxSupply limit"); require(WL_SUPPLY >= redeemedCount.add(amount), "cannot mint tokens. will go over wlSupply limit"); // Verify caller is on at least one whitelist. bool isOnWhitelist = _verify(_leaf(msg.sender, 0), proof); require(isOnWhitelist, "address not verified on the whitelist"); uint256 price = whitelistPrice; uint256 maxAmount = whitelistMaxAmount; uint256 alreadyRedeemed = whitelistRedeemed[msg.sender]; require(price != 0, "failed to get token price"); require(maxAmount != 0, "failed to get caller maxAmount"); require(alreadyRedeemed.add(amount) <= maxAmount, "tokens minted will go over user limit"); require(price.mul(amount) <= msg.value, "not enough ETH sent for requested amount of tokens"); //redeemedCount incrementation redeemedCount=redeemedCount.add(amount); for (uint i = 0; i < amount; i++) { whitelistRedeemed[msg.sender] = whitelistRedeemed[msg.sender] + 1; safeMint(msg.sender); } } /*************************** * Owner Protected Functions ***************************/ function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function setPresaleLimit(uint256 amount) public onlyOwner { WL_SUPPLY = amount; } function setWhitelist(bytes32 whitelist_) public onlyOwner { whitelist = whitelist_; } function setWhitelistSaleEnabled(bool value) public onlyOwner { whitelistSaleEnabled = value; } function setDutchAuctionEnabled(bool value) public onlyOwner { require(whitelistSaleEnabled == false, "whitelist sale needs to be disabled first"); dutchAuctionStartTimestamp = block.timestamp; dutchAuctionEnabled = value; } function reveal(string memory revealedBaseURI) public onlyOwner { //require(revealed == false, "already revealed."); baseURI = revealedBaseURI; revealed = true; } function mintByOwner(address to, uint256 amount) public onlyOwner { require(MAX_SUPPLY >= totalSupply().add(amount), "cannot mint tokens. will go over maxSupply limit"); for (uint i = 0; i < amount; i++) { safeMint(to); } } /* * Function to mint all NFTs for giveaway and partnerships */ function mintMultipleByOwner( address[] memory _to ) public onlyOwner { require(MAX_SUPPLY >= totalSupply().add(_to.length), "cannot mint tokens. will go over maxSupply limit"); for(uint256 i = 0; i < _to.length; i++){ safeMint(_to[i]); } } /********************* * Internal Functions *********************/ function safeMint(address to) internal whenNotPaused { require(MAX_SUPPLY >= totalSupply().add(1), "cannot mint so many tokens. limit will be reached"); uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(to, tokenId); string memory uri = string(abi.encodePacked(uintToString(tokenId), ".json")); _setTokenURI(tokenId, uri); } function _leaf(address account, uint256 amount) internal pure returns (bytes32) { return keccak256(abi.encodePacked(account, amount)); } function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) { return MerkleProof.verify(proof, whitelist, leaf); } function uintToString(uint256 v) internal pure returns (string memory str) { if (v == 0) { return "0"; } uint256 maxlength = 100; bytes memory reversed = new bytes(maxlength); uint256 i = 0; while (v != 0) { uint256 remainder = v % 10; v = v / 10; reversed[i++] = bytes1(uint8(48 + remainder)); } bytes memory s = new bytes(i); for (uint256 j = 0; j < i; j++) { s[j] = reversed[i - 1 - j]; } str = string(s); } function _baseURI() internal view override returns (string memory) { return baseURI; } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } /************************************************************* * The following functions are overrides required by Solidity. *************************************************************/ function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { if (revealed) { string memory uri = super.tokenURI(tokenId); return uri; } else { return unreveleadTokenURI; } } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
// 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; 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; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./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; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./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; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// 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; /** * @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; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./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 "./Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// 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; } } }
// 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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"whitelistPrice_","type":"uint256"},{"internalType":"uint256","name":"whitelistMaxAmount_","type":"uint256"},{"internalType":"uint256","name":"dutchAuctionStartPrice_","type":"uint256"},{"internalType":"uint256","name":"dutchAuctionFloorPrice_","type":"uint256"},{"internalType":"uint256","name":"dutchAuctionPriceDecreaseBy_","type":"uint256"},{"internalType":"uint256","name":"dutchAuctionLimitPerWallet_","type":"uint256"},{"internalType":"uint256","name":"dutchAuctionChangeTick_","type":"uint256"},{"internalType":"string","name":"unrevealedBaseURI_","type":"string"},{"internalType":"string","name":"unrevealedTokenURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"DutchAuctionPurchased","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buyNow","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"dutchAuctionChangeTick","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dutchAuctionCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dutchAuctionEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dutchAuctionFloorPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dutchAuctionLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dutchAuctionPriceDecreaseBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"dutchAuctionPurchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dutchAuctionStartPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dutchAuctionStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"mintMultipleByOwner","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"redeem","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"redeemedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setDutchAuctionEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPresaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"whitelist_","type":"bytes32"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setWhitelistSaleEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelist","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMaxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistRedeemed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200392c3803806200392c833981016040819052620000349162000328565b604080518082018252601481527f416c69656e2053656372657420536f636965747900000000000000000000000060208083019182528351808501909452600384526210490960ea1b9084015281519192916200009491600091620001cb565b508051620000aa906001906020840190620001cb565b5050600b805460ff1916905550620000c2336200015c565b61270f600d55610bb8600e5560108054600160ff199182161790915560128a9055601389905560168054909116905560178790556018869055601a8590556200011983603c620001b6602090811b62001b2217901c565b601b55601c84905581516200013690601e906020850190620001cb565b5080516200014c90601f906020840190620001cb565b5050505050505050505062000456565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000620001c48284620003d5565b9392505050565b828054620001d99062000403565b90600052602060002090601f016020900481019282620001fd576000855562000248565b82601f106200021857805160ff191683800117855562000248565b8280016001018555821562000248579182015b82811115620002485782518255916020019190600101906200022b565b50620002569291506200025a565b5090565b5b808211156200025657600081556001016200025b565b600082601f8301126200028357600080fd5b81516001600160401b0380821115620002a057620002a062000440565b604051601f8301601f19908116603f01168101908282118183101715620002cb57620002cb62000440565b81604052838152602092508683858801011115620002e857600080fd5b600091505b838210156200030c5785820183015181830184015290820190620002ed565b838211156200031e5760008385830101525b9695505050505050565b60008060008060008060008060006101208a8c0312156200034857600080fd5b8951985060208a0151975060408a0151965060608a0151955060808a0151945060a08a0151935060c08a0151925060e08a015160018060401b03808211156200039057600080fd5b6200039e8d838e0162000271565b93506101008c0151915080821115620003b657600080fd5b50620003c58c828d0162000271565b9150509295985092959850929598565b6000816000190483118215151615620003fe57634e487b7160e01b600052601160045260246000fd5b500290565b600181811c908216806200041857607f821691505b602082108114156200043a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6134c680620004666000396000f3fe6080604052600436106102c95760003560e01c80635c975abb11610175578063a22cb465116100dc578063c87b56dd11610095578063e8b2aea01161006f578063e8b2aea014610805578063e985e9c51461081b578063f2fde38b14610864578063fc1a1c361461088457600080fd5b8063c87b56dd14610798578063c88a96cc146107b8578063e28da3b7146107e557600080fd5b8063a22cb465146106e5578063a96cd71f14610705578063ab52be791461071f578063afe2e1fa1461074c578063b6052ec214610762578063b88d4fde1461077857600080fd5b80638456cb591161012e5780638456cb591461065957806388470ef01461066e5780638da5cb5b1461068157806393e59dc1146106a457806395d89b41146106ba578063a0a928a2146106cf57600080fd5b80635c975abb146105b65780636336dd72146105ce5780636352211e146105e457806370a0823114610604578063715018a6146106245780637fd255f11461063957600080fd5b80632f745c591161023457806342842e0e116101ed5780634cdb4400116101c75780634cdb4400146105465780634f6ccce714610566578063518302271461058657806352aa3e6c146105a057600080fd5b806342842e0e146104e6578063440bc7f3146105065780634c2612471461052657600080fd5b80632f745c591461045057806332cb6b0c146104705780633542aee21461048657806339165f37146104a65780633ccfd60b146104bc5780633f4ba83a146104d157600080fd5b8063095ea7b311610286578063095ea7b3146103b057806310352867146103d057806318160ddd146103f05780631d824a07146104055780631ddf074f1461041a57806323b872dd1461043057600080fd5b806301ffc9a7146102ce578063026c0cfa146103035780630694d6c51461032757806306fdde0314610341578063081812fc1461036357806308a0f32f1461039b575b600080fd5b3480156102da57600080fd5b506102ee6102e9366004612fbb565b61089a565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b50610319601a5481565b6040519081526020016102fa565b34801561033357600080fd5b506010546102ee9060ff1681565b34801561034d57600080fd5b506103566108ab565b6040516102fa919061317e565b34801561036f57600080fd5b5061038361037e366004612fa2565b61093d565b6040516001600160a01b0390911681526020016102fa565b6103ae6103a9366004612fa2565b6109ca565b005b3480156103bc57600080fd5b506103ae6103cb366004612ea9565b610c53565b3480156103dc57600080fd5b506103ae6103eb366004612f87565b610d69565b3480156103fc57600080fd5b50600854610319565b34801561041157600080fd5b50610319610e15565b34801561042657600080fd5b5061031960135481565b34801561043c57600080fd5b506103ae61044b366004612dc7565b610e98565b34801561045c57600080fd5b5061031961046b366004612ea9565b610ec9565b34801561047c57600080fd5b50610319600d5481565b34801561049257600080fd5b506103ae6104a1366004612ea9565b610f5f565b3480156104b257600080fd5b5061031960175481565b3480156104c857600080fd5b506103ae610fe3565b3480156104dd57600080fd5b506103ae611046565b3480156104f257600080fd5b506103ae610501366004612dc7565b611080565b34801561051257600080fd5b506103ae610521366004612fa2565b61109b565b34801561053257600080fd5b506103ae610541366004612ff5565b6110d0565b34801561055257600080fd5b506103ae610561366004612ed3565b611124565b34801561057257600080fd5b50610319610581366004612fa2565b6111c3565b34801561059257600080fd5b50601d546102ee9060ff1681565b3480156105ac57600080fd5b5061031960145481565b3480156105c257600080fd5b50600b5460ff166102ee565b3480156105da57600080fd5b50610319601b5481565b3480156105f057600080fd5b506103836105ff366004612fa2565b611256565b34801561061057600080fd5b5061031961061f366004612d79565b6112cd565b34801561063057600080fd5b506103ae611354565b34801561064557600080fd5b506103ae610654366004612fa2565b61138e565b34801561066557600080fd5b506103ae6113c3565b6103ae61067c36600461303e565b6113fb565b34801561068d57600080fd5b50600b5461010090046001600160a01b0316610383565b3480156106b057600080fd5b5061031960115481565b3480156106c657600080fd5b50610356611881565b3480156106db57600080fd5b50610319601c5481565b3480156106f157600080fd5b506103ae610700366004612e7f565b611890565b34801561071157600080fd5b506016546102ee9060ff1681565b34801561072b57600080fd5b5061031961073a366004612d79565b600f6020526000908152604090205481565b34801561075857600080fd5b50610319600e5481565b34801561076e57600080fd5b5061031960195481565b34801561078457600080fd5b506103ae610793366004612e03565b611955565b3480156107a457600080fd5b506103566107b3366004612fa2565b611987565b3480156107c457600080fd5b506103196107d3366004612d79565b60156020526000908152604090205481565b3480156107f157600080fd5b506103ae610800366004612f87565b611a3e565b34801561081157600080fd5b5061031960185481565b34801561082757600080fd5b506102ee610836366004612d94565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561087057600080fd5b506103ae61087f366004612d79565b611a81565b34801561089057600080fd5b5061031960125481565b60006108a582611b2e565b92915050565b6060600080546108ba906133a2565b80601f01602080910402602001604051908101604052809291908181526020018280546108e6906133a2565b80156109335780601f1061090857610100808354040283529160200191610933565b820191906000526020600020905b81548152906001019060200180831161091657829003601f168201915b5050505050905090565b600061094882611b53565b6109ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600b5460ff16156109ed5760405162461bcd60e51b81526004016109a5906131e3565b6001811015610a2e5760405162461bcd60e51b815260206004820152600d60248201526c063616e6e6f74206d696e74203609c1b60448201526064016109a5565b60165460ff161515600114610a795760405162461bcd60e51b8152602060048201526011602482015270185d58dd1a5bdb881a5cc818db1bdcd959607a1b60448201526064016109a5565b610a8c81610a8660085490565b90611b70565b600d541015610aee5760405162461bcd60e51b815260206004820152602860248201527f63616e6e6f74206d696e7420746f6b656e2e206d6178537570706c7920776173604482015267081c995858da195960c21b60648201526084016109a5565b601c5433600090815260156020526040902054610b0b9083611b70565b1115610b505760405162461bcd60e51b81526020600482015260146024820152731dd85b1b195d081b1a5b5a5d081c995858da195960621b60448201526064016109a5565b6000610b69610b60836001611b7c565b60175490611b22565b90506000610b7982610a86610e15565b905034811115610bc15760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da08115512081cd95b9d606a1b60448201526064016109a5565b33600090815260156020526040902054610bdb9084611b70565b336000908152601560205260408120919091555b83811015610c4d57610c0033611b88565b7f57124a249988ca1a9e1e122198b2e23b3e6620dbe0aef426f4c43433df9fcc53610c2a600c5490565b60405190815260200160405180910390a180610c45816133dd565b915050610bef565b50505050565b6000610c5e82611256565b9050806001600160a01b0316836001600160a01b03161415610ccc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109a5565b336001600160a01b0382161480610ce85750610ce88133610836565b610d5a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109a5565b610d648383611c7f565b505050565b600b546001600160a01b03610100909104163314610d995760405162461bcd60e51b81526004016109a59061320d565b60105460ff1615610dfe5760405162461bcd60e51b815260206004820152602960248201527f77686974656c6973742073616c65206e6565647320746f2062652064697361626044820152681b195908199a5c9cdd60ba1b60648201526084016109a5565b426019556016805460ff1916911515919091179055565b60008060195442610e26919061335f565b90506000610e3f601b5483611ced90919063ffffffff16565b90506000610e5882601a54611b2290919063ffffffff16565b9050601754811115610e6f57601854935050505090565b601754600090610e7f9083611b7c565b9050601854811015610e9057506018545b949350505050565b610ea23382611cf9565b610ebe5760405162461bcd60e51b81526004016109a590613242565b610d64838383611ddf565b6000610ed4836112cd565b8210610f365760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109a5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610f8f5760405162461bcd60e51b81526004016109a59061320d565b610f9c81610a8660085490565b600d541015610fbd5760405162461bcd60e51b81526004016109a590613293565b60005b81811015610d6457610fd183611b88565b80610fdb816133dd565b915050610fc0565b600b546001600160a01b036101009091041633146110135760405162461bcd60e51b81526004016109a59061320d565b6040514790339082156108fc029083906000818181858888f19350505050158015611042573d6000803e3d6000fd5b5050565b600b546001600160a01b036101009091041633146110765760405162461bcd60e51b81526004016109a59061320d565b61107e611f8a565b565b610d6483838360405180602001604052806000815250611955565b600b546001600160a01b036101009091041633146110cb5760405162461bcd60e51b81526004016109a59061320d565b601155565b600b546001600160a01b036101009091041633146111005760405162461bcd60e51b81526004016109a59061320d565b805161111390601e906020840190612c61565b5050601d805460ff19166001179055565b600b546001600160a01b036101009091041633146111545760405162461bcd60e51b81526004016109a59061320d565b6111628151610a8660085490565b600d5410156111835760405162461bcd60e51b81526004016109a590613293565b60005b8151811015611042576111b18282815181106111a4576111a461344e565b6020026020010151611b88565b806111bb816133dd565b915050611186565b60006111ce60085490565b82106112315760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109a5565b600882815481106112445761124461344e565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806108a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109a5565b60006001600160a01b0382166113385760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109a5565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b036101009091041633146113845760405162461bcd60e51b81526004016109a59061320d565b61107e600061201d565b600b546001600160a01b036101009091041633146113be5760405162461bcd60e51b81526004016109a59061320d565b600e55565b600b546001600160a01b036101009091041633146113f35760405162461bcd60e51b81526004016109a59061320d565b61107e612077565b600b5460ff161561141e5760405162461bcd60e51b81526004016109a5906131e3565b60105460ff1615156001146114755760405162461bcd60e51b815260206004820152601860248201527f77686974656c6973742073616c652068617320656e646564000000000000000060448201526064016109a5565b600083116114c55760405162461bcd60e51b815260206004820152601f60248201527f6e65656420746f206d696e74206174206c65617374206f6e6520746f6b656e0060448201526064016109a5565b346115095760405162461bcd60e51b815260206004820152601460248201527363616e6e6f74206d696e7420666f72206672656560601b60448201526064016109a5565b61151683610a8660085490565b600d5410156115375760405162461bcd60e51b81526004016109a590613293565b6014546115449084611b70565b600e5410156115ad5760405162461bcd60e51b815260206004820152602f60248201527f63616e6e6f74206d696e7420746f6b656e732e2077696c6c20676f206f76657260448201526e081ddb14dd5c1c1b1e481b1a5b5a5d608a1b60648201526084016109a5565b604080513360601b6bffffffffffffffffffffffff191660208083019190915260006034808401829052845180850390910181526054909301909352815191012061162b908484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506120cf92505050565b9050806116885760405162461bcd60e51b815260206004820152602560248201527f61646472657373206e6f74207665726966696564206f6e207468652077686974604482015264195b1a5cdd60da1b60648201526084016109a5565b601254601354336000908152600f6020526040902054826116eb5760405162461bcd60e51b815260206004820152601960248201527f6661696c656420746f2067657420746f6b656e2070726963650000000000000060448201526064016109a5565b816117385760405162461bcd60e51b815260206004820152601e60248201527f6661696c656420746f206765742063616c6c6572206d6178416d6f756e74000060448201526064016109a5565b816117438289611b70565b111561179f5760405162461bcd60e51b815260206004820152602560248201527f746f6b656e73206d696e7465642077696c6c20676f206f7665722075736572206044820152641b1a5b5a5d60da1b60648201526084016109a5565b346117aa8489611b22565b11156118135760405162461bcd60e51b815260206004820152603260248201527f6e6f7420656e6f756768204554482073656e7420666f722072657175657374656044820152716420616d6f756e74206f6620746f6b656e7360701b60648201526084016109a5565b6014546118209088611b70565b60145560005b8781101561187757336000908152600f6020526040902054611849906001613314565b336000818152600f602052604090209190915561186590611b88565b8061186f816133dd565b915050611826565b5050505050505050565b6060600180546108ba906133a2565b6001600160a01b0382163314156118e95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109a5565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61195f3383611cf9565b61197b5760405162461bcd60e51b81526004016109a590613242565b610c4d848484846120de565b601d5460609060ff16156119a75760006119a083612111565b9392505050565b601f80546119b4906133a2565b80601f01602080910402602001604051908101604052809291908181526020018280546119e0906133a2565b8015611a2d5780601f10611a0257610100808354040283529160200191611a2d565b820191906000526020600020905b815481529060010190602001808311611a1057829003601f168201915b50505050509050919050565b919050565b600b546001600160a01b03610100909104163314611a6e5760405162461bcd60e51b81526004016109a59061320d565b6010805460ff1916911515919091179055565b600b546001600160a01b03610100909104163314611ab15760405162461bcd60e51b81526004016109a59061320d565b6001600160a01b038116611b165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a5565b611b1f8161201d565b50565b60006119a08284613340565b60006001600160e01b0319821663780e9d6360e01b14806108a557506108a582612273565b6000908152600260205260409020546001600160a01b0316151590565b60006119a08284613314565b60006119a0828461335f565b600b5460ff1615611bab5760405162461bcd60e51b81526004016109a5906131e3565b611bb96001610a8660085490565b600d541015611c245760405162461bcd60e51b815260206004820152603160248201527f63616e6e6f74206d696e7420736f206d616e7920746f6b656e732e206c696d696044820152701d081dda5b1b081899481c995858da1959607a1b60648201526084016109a5565b6000611c2f600c5490565b9050611c3f600c80546001019055565b611c4982826122c3565b6000611c54826122dd565b604051602001611c649190613118565b6040516020818303038152906040529050610d64828261245b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cb482611256565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119a0828461332c565b6000611d0482611b53565b611d655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a5565b6000611d7083611256565b9050806001600160a01b0316846001600160a01b03161480611dab5750836001600160a01b0316611da08461093d565b6001600160a01b0316145b80610e9057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610e90565b826001600160a01b0316611df282611256565b6001600160a01b031614611e5a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109a5565b6001600160a01b038216611ebc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109a5565b611ec78383836124e6565b611ed2600082611c7f565b6001600160a01b0383166000908152600360205260408120805460019290611efb90849061335f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f29908490613314565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff16611fd35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109a5565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460ff161561209a5760405162461bcd60e51b81526004016109a5906131e3565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120003390565b60006119a08260115485612514565b6120e9848484611ddf565b6120f5848484846125c3565b610c4d5760405162461bcd60e51b81526004016109a590613191565b606061211c82611b53565b6121825760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016109a5565b6000828152600a60205260408120805461219b906133a2565b80601f01602080910402602001604051908101604052809291908181526020018280546121c7906133a2565b80156122145780601f106121e957610100808354040283529160200191612214565b820191906000526020600020905b8154815290600101906020018083116121f757829003601f168201915b5050505050905060006122256126d0565b9050805160001415612238575092915050565b81511561226a5780826040516020016122529291906130e9565b60405160208183030381529060405292505050919050565b610e90846126df565b60006001600160e01b031982166380ac58cd60e01b14806122a457506001600160e01b03198216635b5e139f60e01b145b806108a557506301ffc9a760e01b6001600160e01b03198316146108a5565b6110428282604051806020016040528060008152506127a9565b6060816123015750506040805180820190915260018152600360fc1b602082015290565b60408051606480825260a082019092526000908260208201818036833701905050905060005b841561239157600061233a600a876133f8565b9050612347600a8761332c565b9550612354816030613314565b60f81b8383612362816133dd565b9450815181106123745761237461344e565b60200101906001600160f81b031916908160001a90535050612327565b60008167ffffffffffffffff8111156123ac576123ac613464565b6040519080825280601f01601f1916602001820160405280156123d6576020820181803683370190505b50905060005b828110156124515783816123f160018661335f565b6123fb919061335f565b8151811061240b5761240b61344e565b602001015160f81c60f81b8282815181106124285761242861344e565b60200101906001600160f81b031916908160001a90535080612449816133dd565b9150506123dc565b5095945050505050565b61246482611b53565b6124c75760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016109a5565b6000828152600a602090815260409091208251610d6492840190612c61565b600b5460ff16156125095760405162461bcd60e51b81526004016109a5906131e3565b610d648383836127dc565b600081815b85518110156125b85760008682815181106125365761253661344e565b602002602001015190508083116125785760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506125a5565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806125b0816133dd565b915050612519565b509092149392505050565b60006001600160a01b0384163b156126c557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612607903390899088908890600401613141565b602060405180830381600087803b15801561262157600080fd5b505af1925050508015612651575060408051601f3d908101601f1916820190925261264e91810190612fd8565b60015b6126ab573d80801561267f576040519150601f19603f3d011682016040523d82523d6000602084013e612684565b606091505b5080516126a35760405162461bcd60e51b81526004016109a590613191565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e90565b506001949350505050565b6060601e80546108ba906133a2565b60606126ea82611b53565b61274e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a5565b60006127586126d0565b9050600081511161277857604051806020016040528060008152506119a0565b8061278284612894565b6040516020016127939291906130e9565b6040516020818303038152906040529392505050565b6127b38383612992565b6127c060008484846125c3565b610d645760405162461bcd60e51b81526004016109a590613191565b6001600160a01b0383166128375761283281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61285a565b816001600160a01b0316836001600160a01b03161461285a5761285a8382612ad1565b6001600160a01b03821661287157610d6481612b6e565b826001600160a01b0316826001600160a01b031614610d6457610d648282612c1d565b6060816128b85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128e257806128cc816133dd565b91506128db9050600a8361332c565b91506128bc565b60008167ffffffffffffffff8111156128fd576128fd613464565b6040519080825280601f01601f191660200182016040528015612927576020820181803683370190505b5090505b8415610e905761293c60018361335f565b9150612949600a866133f8565b612954906030613314565b60f81b8183815181106129695761296961344e565b60200101906001600160f81b031916908160001a90535061298b600a8661332c565b945061292b565b6001600160a01b0382166129e85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109a5565b6129f181611b53565b15612a3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109a5565b612a4a600083836124e6565b6001600160a01b0382166000908152600360205260408120805460019290612a73908490613314565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612ade846112cd565b612ae8919061335f565b600083815260076020526040902054909150808214612b3b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b809060019061335f565b60008381526009602052604081205460088054939450909284908110612ba857612ba861344e565b906000526020600020015490508060088381548110612bc957612bc961344e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c0157612c01613438565b6001900381819060005260206000200160009055905550505050565b6000612c28836112cd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612c6d906133a2565b90600052602060002090601f016020900481019282612c8f5760008555612cd5565b82601f10612ca857805160ff1916838001178555612cd5565b82800160010185558215612cd5579182015b82811115612cd5578251825591602001919060010190612cba565b50612ce1929150612ce5565b5090565b5b80821115612ce15760008155600101612ce6565b600067ffffffffffffffff831115612d1457612d14613464565b612d27601f8401601f19166020016132e3565b9050828152838383011115612d3b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a3957600080fd5b80358015158114611a3957600080fd5b600060208284031215612d8b57600080fd5b6119a082612d52565b60008060408385031215612da757600080fd5b612db083612d52565b9150612dbe60208401612d52565b90509250929050565b600080600060608486031215612ddc57600080fd5b612de584612d52565b9250612df360208501612d52565b9150604084013590509250925092565b60008060008060808587031215612e1957600080fd5b612e2285612d52565b9350612e3060208601612d52565b925060408501359150606085013567ffffffffffffffff811115612e5357600080fd5b8501601f81018713612e6457600080fd5b612e7387823560208401612cfa565b91505092959194509250565b60008060408385031215612e9257600080fd5b612e9b83612d52565b9150612dbe60208401612d69565b60008060408385031215612ebc57600080fd5b612ec583612d52565b946020939093013593505050565b60006020808385031215612ee657600080fd5b823567ffffffffffffffff80821115612efe57600080fd5b818501915085601f830112612f1257600080fd5b813581811115612f2457612f24613464565b8060051b9150612f358483016132e3565b8181528481019084860184860187018a1015612f5057600080fd5b600095505b83861015612f7a57612f6681612d52565b835260019590950194918601918601612f55565b5098975050505050505050565b600060208284031215612f9957600080fd5b6119a082612d69565b600060208284031215612fb457600080fd5b5035919050565b600060208284031215612fcd57600080fd5b81356119a08161347a565b600060208284031215612fea57600080fd5b81516119a08161347a565b60006020828403121561300757600080fd5b813567ffffffffffffffff81111561301e57600080fd5b8201601f8101841361302f57600080fd5b610e9084823560208401612cfa565b60008060006040848603121561305357600080fd5b83359250602084013567ffffffffffffffff8082111561307257600080fd5b818601915086601f83011261308657600080fd5b81358181111561309557600080fd5b8760208260051b85010111156130aa57600080fd5b6020830194508093505050509250925092565b600081518084526130d5816020860160208601613376565b601f01601f19169290920160200192915050565b600083516130fb818460208801613376565b83519083019061310f818360208801613376565b01949350505050565b6000825161312a818460208701613376565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613174908301846130bd565b9695505050505050565b6020815260006119a060208301846130bd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526030908201527f63616e6e6f74206d696e7420746f6b656e732e2077696c6c20676f206f76657260408201526f081b585e14dd5c1c1b1e481b1a5b5a5d60821b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561330c5761330c613464565b604052919050565b600082198211156133275761332761340c565b500190565b60008261333b5761333b613422565b500490565b600081600019048311821515161561335a5761335a61340c565b500290565b6000828210156133715761337161340c565b500390565b60005b83811015613391578181015183820152602001613379565b83811115610c4d5750506000910152565b600181811c908216806133b657607f821691505b602082108114156133d757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133f1576133f161340c565b5060010190565b60008261340757613407613422565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611b1f57600080fdfea26469706673582212206c5d97eeff08947a7da634a99050aea4195a753664cf3aa16ba9bf560ef1266f64736f6c63430008070033000000000000000000000000000000000000000000000000016345785d8a0000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000003782dace9d900000000000000000000000000000000000000000000000000000214e8348c4f000000000000000000000000000000000000000000000000000000b1a2bc2ec5000000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000168000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d566f576f47416150376873414444394856753742516843636435685437696f746d61695357674646546e48772f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d566f576f47416150376873414444394856753742516843636435685437696f746d61695357674646546e48772f00000000000000000000
Deployed Bytecode
0x6080604052600436106102c95760003560e01c80635c975abb11610175578063a22cb465116100dc578063c87b56dd11610095578063e8b2aea01161006f578063e8b2aea014610805578063e985e9c51461081b578063f2fde38b14610864578063fc1a1c361461088457600080fd5b8063c87b56dd14610798578063c88a96cc146107b8578063e28da3b7146107e557600080fd5b8063a22cb465146106e5578063a96cd71f14610705578063ab52be791461071f578063afe2e1fa1461074c578063b6052ec214610762578063b88d4fde1461077857600080fd5b80638456cb591161012e5780638456cb591461065957806388470ef01461066e5780638da5cb5b1461068157806393e59dc1146106a457806395d89b41146106ba578063a0a928a2146106cf57600080fd5b80635c975abb146105b65780636336dd72146105ce5780636352211e146105e457806370a0823114610604578063715018a6146106245780637fd255f11461063957600080fd5b80632f745c591161023457806342842e0e116101ed5780634cdb4400116101c75780634cdb4400146105465780634f6ccce714610566578063518302271461058657806352aa3e6c146105a057600080fd5b806342842e0e146104e6578063440bc7f3146105065780634c2612471461052657600080fd5b80632f745c591461045057806332cb6b0c146104705780633542aee21461048657806339165f37146104a65780633ccfd60b146104bc5780633f4ba83a146104d157600080fd5b8063095ea7b311610286578063095ea7b3146103b057806310352867146103d057806318160ddd146103f05780631d824a07146104055780631ddf074f1461041a57806323b872dd1461043057600080fd5b806301ffc9a7146102ce578063026c0cfa146103035780630694d6c51461032757806306fdde0314610341578063081812fc1461036357806308a0f32f1461039b575b600080fd5b3480156102da57600080fd5b506102ee6102e9366004612fbb565b61089a565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b50610319601a5481565b6040519081526020016102fa565b34801561033357600080fd5b506010546102ee9060ff1681565b34801561034d57600080fd5b506103566108ab565b6040516102fa919061317e565b34801561036f57600080fd5b5061038361037e366004612fa2565b61093d565b6040516001600160a01b0390911681526020016102fa565b6103ae6103a9366004612fa2565b6109ca565b005b3480156103bc57600080fd5b506103ae6103cb366004612ea9565b610c53565b3480156103dc57600080fd5b506103ae6103eb366004612f87565b610d69565b3480156103fc57600080fd5b50600854610319565b34801561041157600080fd5b50610319610e15565b34801561042657600080fd5b5061031960135481565b34801561043c57600080fd5b506103ae61044b366004612dc7565b610e98565b34801561045c57600080fd5b5061031961046b366004612ea9565b610ec9565b34801561047c57600080fd5b50610319600d5481565b34801561049257600080fd5b506103ae6104a1366004612ea9565b610f5f565b3480156104b257600080fd5b5061031960175481565b3480156104c857600080fd5b506103ae610fe3565b3480156104dd57600080fd5b506103ae611046565b3480156104f257600080fd5b506103ae610501366004612dc7565b611080565b34801561051257600080fd5b506103ae610521366004612fa2565b61109b565b34801561053257600080fd5b506103ae610541366004612ff5565b6110d0565b34801561055257600080fd5b506103ae610561366004612ed3565b611124565b34801561057257600080fd5b50610319610581366004612fa2565b6111c3565b34801561059257600080fd5b50601d546102ee9060ff1681565b3480156105ac57600080fd5b5061031960145481565b3480156105c257600080fd5b50600b5460ff166102ee565b3480156105da57600080fd5b50610319601b5481565b3480156105f057600080fd5b506103836105ff366004612fa2565b611256565b34801561061057600080fd5b5061031961061f366004612d79565b6112cd565b34801561063057600080fd5b506103ae611354565b34801561064557600080fd5b506103ae610654366004612fa2565b61138e565b34801561066557600080fd5b506103ae6113c3565b6103ae61067c36600461303e565b6113fb565b34801561068d57600080fd5b50600b5461010090046001600160a01b0316610383565b3480156106b057600080fd5b5061031960115481565b3480156106c657600080fd5b50610356611881565b3480156106db57600080fd5b50610319601c5481565b3480156106f157600080fd5b506103ae610700366004612e7f565b611890565b34801561071157600080fd5b506016546102ee9060ff1681565b34801561072b57600080fd5b5061031961073a366004612d79565b600f6020526000908152604090205481565b34801561075857600080fd5b50610319600e5481565b34801561076e57600080fd5b5061031960195481565b34801561078457600080fd5b506103ae610793366004612e03565b611955565b3480156107a457600080fd5b506103566107b3366004612fa2565b611987565b3480156107c457600080fd5b506103196107d3366004612d79565b60156020526000908152604090205481565b3480156107f157600080fd5b506103ae610800366004612f87565b611a3e565b34801561081157600080fd5b5061031960185481565b34801561082757600080fd5b506102ee610836366004612d94565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561087057600080fd5b506103ae61087f366004612d79565b611a81565b34801561089057600080fd5b5061031960125481565b60006108a582611b2e565b92915050565b6060600080546108ba906133a2565b80601f01602080910402602001604051908101604052809291908181526020018280546108e6906133a2565b80156109335780601f1061090857610100808354040283529160200191610933565b820191906000526020600020905b81548152906001019060200180831161091657829003601f168201915b5050505050905090565b600061094882611b53565b6109ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600b5460ff16156109ed5760405162461bcd60e51b81526004016109a5906131e3565b6001811015610a2e5760405162461bcd60e51b815260206004820152600d60248201526c063616e6e6f74206d696e74203609c1b60448201526064016109a5565b60165460ff161515600114610a795760405162461bcd60e51b8152602060048201526011602482015270185d58dd1a5bdb881a5cc818db1bdcd959607a1b60448201526064016109a5565b610a8c81610a8660085490565b90611b70565b600d541015610aee5760405162461bcd60e51b815260206004820152602860248201527f63616e6e6f74206d696e7420746f6b656e2e206d6178537570706c7920776173604482015267081c995858da195960c21b60648201526084016109a5565b601c5433600090815260156020526040902054610b0b9083611b70565b1115610b505760405162461bcd60e51b81526020600482015260146024820152731dd85b1b195d081b1a5b5a5d081c995858da195960621b60448201526064016109a5565b6000610b69610b60836001611b7c565b60175490611b22565b90506000610b7982610a86610e15565b905034811115610bc15760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da08115512081cd95b9d606a1b60448201526064016109a5565b33600090815260156020526040902054610bdb9084611b70565b336000908152601560205260408120919091555b83811015610c4d57610c0033611b88565b7f57124a249988ca1a9e1e122198b2e23b3e6620dbe0aef426f4c43433df9fcc53610c2a600c5490565b60405190815260200160405180910390a180610c45816133dd565b915050610bef565b50505050565b6000610c5e82611256565b9050806001600160a01b0316836001600160a01b03161415610ccc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109a5565b336001600160a01b0382161480610ce85750610ce88133610836565b610d5a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109a5565b610d648383611c7f565b505050565b600b546001600160a01b03610100909104163314610d995760405162461bcd60e51b81526004016109a59061320d565b60105460ff1615610dfe5760405162461bcd60e51b815260206004820152602960248201527f77686974656c6973742073616c65206e6565647320746f2062652064697361626044820152681b195908199a5c9cdd60ba1b60648201526084016109a5565b426019556016805460ff1916911515919091179055565b60008060195442610e26919061335f565b90506000610e3f601b5483611ced90919063ffffffff16565b90506000610e5882601a54611b2290919063ffffffff16565b9050601754811115610e6f57601854935050505090565b601754600090610e7f9083611b7c565b9050601854811015610e9057506018545b949350505050565b610ea23382611cf9565b610ebe5760405162461bcd60e51b81526004016109a590613242565b610d64838383611ddf565b6000610ed4836112cd565b8210610f365760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109a5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610f8f5760405162461bcd60e51b81526004016109a59061320d565b610f9c81610a8660085490565b600d541015610fbd5760405162461bcd60e51b81526004016109a590613293565b60005b81811015610d6457610fd183611b88565b80610fdb816133dd565b915050610fc0565b600b546001600160a01b036101009091041633146110135760405162461bcd60e51b81526004016109a59061320d565b6040514790339082156108fc029083906000818181858888f19350505050158015611042573d6000803e3d6000fd5b5050565b600b546001600160a01b036101009091041633146110765760405162461bcd60e51b81526004016109a59061320d565b61107e611f8a565b565b610d6483838360405180602001604052806000815250611955565b600b546001600160a01b036101009091041633146110cb5760405162461bcd60e51b81526004016109a59061320d565b601155565b600b546001600160a01b036101009091041633146111005760405162461bcd60e51b81526004016109a59061320d565b805161111390601e906020840190612c61565b5050601d805460ff19166001179055565b600b546001600160a01b036101009091041633146111545760405162461bcd60e51b81526004016109a59061320d565b6111628151610a8660085490565b600d5410156111835760405162461bcd60e51b81526004016109a590613293565b60005b8151811015611042576111b18282815181106111a4576111a461344e565b6020026020010151611b88565b806111bb816133dd565b915050611186565b60006111ce60085490565b82106112315760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109a5565b600882815481106112445761124461344e565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806108a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109a5565b60006001600160a01b0382166113385760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109a5565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b036101009091041633146113845760405162461bcd60e51b81526004016109a59061320d565b61107e600061201d565b600b546001600160a01b036101009091041633146113be5760405162461bcd60e51b81526004016109a59061320d565b600e55565b600b546001600160a01b036101009091041633146113f35760405162461bcd60e51b81526004016109a59061320d565b61107e612077565b600b5460ff161561141e5760405162461bcd60e51b81526004016109a5906131e3565b60105460ff1615156001146114755760405162461bcd60e51b815260206004820152601860248201527f77686974656c6973742073616c652068617320656e646564000000000000000060448201526064016109a5565b600083116114c55760405162461bcd60e51b815260206004820152601f60248201527f6e65656420746f206d696e74206174206c65617374206f6e6520746f6b656e0060448201526064016109a5565b346115095760405162461bcd60e51b815260206004820152601460248201527363616e6e6f74206d696e7420666f72206672656560601b60448201526064016109a5565b61151683610a8660085490565b600d5410156115375760405162461bcd60e51b81526004016109a590613293565b6014546115449084611b70565b600e5410156115ad5760405162461bcd60e51b815260206004820152602f60248201527f63616e6e6f74206d696e7420746f6b656e732e2077696c6c20676f206f76657260448201526e081ddb14dd5c1c1b1e481b1a5b5a5d608a1b60648201526084016109a5565b604080513360601b6bffffffffffffffffffffffff191660208083019190915260006034808401829052845180850390910181526054909301909352815191012061162b908484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506120cf92505050565b9050806116885760405162461bcd60e51b815260206004820152602560248201527f61646472657373206e6f74207665726966696564206f6e207468652077686974604482015264195b1a5cdd60da1b60648201526084016109a5565b601254601354336000908152600f6020526040902054826116eb5760405162461bcd60e51b815260206004820152601960248201527f6661696c656420746f2067657420746f6b656e2070726963650000000000000060448201526064016109a5565b816117385760405162461bcd60e51b815260206004820152601e60248201527f6661696c656420746f206765742063616c6c6572206d6178416d6f756e74000060448201526064016109a5565b816117438289611b70565b111561179f5760405162461bcd60e51b815260206004820152602560248201527f746f6b656e73206d696e7465642077696c6c20676f206f7665722075736572206044820152641b1a5b5a5d60da1b60648201526084016109a5565b346117aa8489611b22565b11156118135760405162461bcd60e51b815260206004820152603260248201527f6e6f7420656e6f756768204554482073656e7420666f722072657175657374656044820152716420616d6f756e74206f6620746f6b656e7360701b60648201526084016109a5565b6014546118209088611b70565b60145560005b8781101561187757336000908152600f6020526040902054611849906001613314565b336000818152600f602052604090209190915561186590611b88565b8061186f816133dd565b915050611826565b5050505050505050565b6060600180546108ba906133a2565b6001600160a01b0382163314156118e95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109a5565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61195f3383611cf9565b61197b5760405162461bcd60e51b81526004016109a590613242565b610c4d848484846120de565b601d5460609060ff16156119a75760006119a083612111565b9392505050565b601f80546119b4906133a2565b80601f01602080910402602001604051908101604052809291908181526020018280546119e0906133a2565b8015611a2d5780601f10611a0257610100808354040283529160200191611a2d565b820191906000526020600020905b815481529060010190602001808311611a1057829003601f168201915b50505050509050919050565b919050565b600b546001600160a01b03610100909104163314611a6e5760405162461bcd60e51b81526004016109a59061320d565b6010805460ff1916911515919091179055565b600b546001600160a01b03610100909104163314611ab15760405162461bcd60e51b81526004016109a59061320d565b6001600160a01b038116611b165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a5565b611b1f8161201d565b50565b60006119a08284613340565b60006001600160e01b0319821663780e9d6360e01b14806108a557506108a582612273565b6000908152600260205260409020546001600160a01b0316151590565b60006119a08284613314565b60006119a0828461335f565b600b5460ff1615611bab5760405162461bcd60e51b81526004016109a5906131e3565b611bb96001610a8660085490565b600d541015611c245760405162461bcd60e51b815260206004820152603160248201527f63616e6e6f74206d696e7420736f206d616e7920746f6b656e732e206c696d696044820152701d081dda5b1b081899481c995858da1959607a1b60648201526084016109a5565b6000611c2f600c5490565b9050611c3f600c80546001019055565b611c4982826122c3565b6000611c54826122dd565b604051602001611c649190613118565b6040516020818303038152906040529050610d64828261245b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cb482611256565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119a0828461332c565b6000611d0482611b53565b611d655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a5565b6000611d7083611256565b9050806001600160a01b0316846001600160a01b03161480611dab5750836001600160a01b0316611da08461093d565b6001600160a01b0316145b80610e9057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610e90565b826001600160a01b0316611df282611256565b6001600160a01b031614611e5a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109a5565b6001600160a01b038216611ebc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109a5565b611ec78383836124e6565b611ed2600082611c7f565b6001600160a01b0383166000908152600360205260408120805460019290611efb90849061335f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f29908490613314565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff16611fd35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109a5565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460ff161561209a5760405162461bcd60e51b81526004016109a5906131e3565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120003390565b60006119a08260115485612514565b6120e9848484611ddf565b6120f5848484846125c3565b610c4d5760405162461bcd60e51b81526004016109a590613191565b606061211c82611b53565b6121825760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016109a5565b6000828152600a60205260408120805461219b906133a2565b80601f01602080910402602001604051908101604052809291908181526020018280546121c7906133a2565b80156122145780601f106121e957610100808354040283529160200191612214565b820191906000526020600020905b8154815290600101906020018083116121f757829003601f168201915b5050505050905060006122256126d0565b9050805160001415612238575092915050565b81511561226a5780826040516020016122529291906130e9565b60405160208183030381529060405292505050919050565b610e90846126df565b60006001600160e01b031982166380ac58cd60e01b14806122a457506001600160e01b03198216635b5e139f60e01b145b806108a557506301ffc9a760e01b6001600160e01b03198316146108a5565b6110428282604051806020016040528060008152506127a9565b6060816123015750506040805180820190915260018152600360fc1b602082015290565b60408051606480825260a082019092526000908260208201818036833701905050905060005b841561239157600061233a600a876133f8565b9050612347600a8761332c565b9550612354816030613314565b60f81b8383612362816133dd565b9450815181106123745761237461344e565b60200101906001600160f81b031916908160001a90535050612327565b60008167ffffffffffffffff8111156123ac576123ac613464565b6040519080825280601f01601f1916602001820160405280156123d6576020820181803683370190505b50905060005b828110156124515783816123f160018661335f565b6123fb919061335f565b8151811061240b5761240b61344e565b602001015160f81c60f81b8282815181106124285761242861344e565b60200101906001600160f81b031916908160001a90535080612449816133dd565b9150506123dc565b5095945050505050565b61246482611b53565b6124c75760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016109a5565b6000828152600a602090815260409091208251610d6492840190612c61565b600b5460ff16156125095760405162461bcd60e51b81526004016109a5906131e3565b610d648383836127dc565b600081815b85518110156125b85760008682815181106125365761253661344e565b602002602001015190508083116125785760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506125a5565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806125b0816133dd565b915050612519565b509092149392505050565b60006001600160a01b0384163b156126c557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612607903390899088908890600401613141565b602060405180830381600087803b15801561262157600080fd5b505af1925050508015612651575060408051601f3d908101601f1916820190925261264e91810190612fd8565b60015b6126ab573d80801561267f576040519150601f19603f3d011682016040523d82523d6000602084013e612684565b606091505b5080516126a35760405162461bcd60e51b81526004016109a590613191565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e90565b506001949350505050565b6060601e80546108ba906133a2565b60606126ea82611b53565b61274e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a5565b60006127586126d0565b9050600081511161277857604051806020016040528060008152506119a0565b8061278284612894565b6040516020016127939291906130e9565b6040516020818303038152906040529392505050565b6127b38383612992565b6127c060008484846125c3565b610d645760405162461bcd60e51b81526004016109a590613191565b6001600160a01b0383166128375761283281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61285a565b816001600160a01b0316836001600160a01b03161461285a5761285a8382612ad1565b6001600160a01b03821661287157610d6481612b6e565b826001600160a01b0316826001600160a01b031614610d6457610d648282612c1d565b6060816128b85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128e257806128cc816133dd565b91506128db9050600a8361332c565b91506128bc565b60008167ffffffffffffffff8111156128fd576128fd613464565b6040519080825280601f01601f191660200182016040528015612927576020820181803683370190505b5090505b8415610e905761293c60018361335f565b9150612949600a866133f8565b612954906030613314565b60f81b8183815181106129695761296961344e565b60200101906001600160f81b031916908160001a90535061298b600a8661332c565b945061292b565b6001600160a01b0382166129e85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109a5565b6129f181611b53565b15612a3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109a5565b612a4a600083836124e6565b6001600160a01b0382166000908152600360205260408120805460019290612a73908490613314565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612ade846112cd565b612ae8919061335f565b600083815260076020526040902054909150808214612b3b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b809060019061335f565b60008381526009602052604081205460088054939450909284908110612ba857612ba861344e565b906000526020600020015490508060088381548110612bc957612bc961344e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c0157612c01613438565b6001900381819060005260206000200160009055905550505050565b6000612c28836112cd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612c6d906133a2565b90600052602060002090601f016020900481019282612c8f5760008555612cd5565b82601f10612ca857805160ff1916838001178555612cd5565b82800160010185558215612cd5579182015b82811115612cd5578251825591602001919060010190612cba565b50612ce1929150612ce5565b5090565b5b80821115612ce15760008155600101612ce6565b600067ffffffffffffffff831115612d1457612d14613464565b612d27601f8401601f19166020016132e3565b9050828152838383011115612d3b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a3957600080fd5b80358015158114611a3957600080fd5b600060208284031215612d8b57600080fd5b6119a082612d52565b60008060408385031215612da757600080fd5b612db083612d52565b9150612dbe60208401612d52565b90509250929050565b600080600060608486031215612ddc57600080fd5b612de584612d52565b9250612df360208501612d52565b9150604084013590509250925092565b60008060008060808587031215612e1957600080fd5b612e2285612d52565b9350612e3060208601612d52565b925060408501359150606085013567ffffffffffffffff811115612e5357600080fd5b8501601f81018713612e6457600080fd5b612e7387823560208401612cfa565b91505092959194509250565b60008060408385031215612e9257600080fd5b612e9b83612d52565b9150612dbe60208401612d69565b60008060408385031215612ebc57600080fd5b612ec583612d52565b946020939093013593505050565b60006020808385031215612ee657600080fd5b823567ffffffffffffffff80821115612efe57600080fd5b818501915085601f830112612f1257600080fd5b813581811115612f2457612f24613464565b8060051b9150612f358483016132e3565b8181528481019084860184860187018a1015612f5057600080fd5b600095505b83861015612f7a57612f6681612d52565b835260019590950194918601918601612f55565b5098975050505050505050565b600060208284031215612f9957600080fd5b6119a082612d69565b600060208284031215612fb457600080fd5b5035919050565b600060208284031215612fcd57600080fd5b81356119a08161347a565b600060208284031215612fea57600080fd5b81516119a08161347a565b60006020828403121561300757600080fd5b813567ffffffffffffffff81111561301e57600080fd5b8201601f8101841361302f57600080fd5b610e9084823560208401612cfa565b60008060006040848603121561305357600080fd5b83359250602084013567ffffffffffffffff8082111561307257600080fd5b818601915086601f83011261308657600080fd5b81358181111561309557600080fd5b8760208260051b85010111156130aa57600080fd5b6020830194508093505050509250925092565b600081518084526130d5816020860160208601613376565b601f01601f19169290920160200192915050565b600083516130fb818460208801613376565b83519083019061310f818360208801613376565b01949350505050565b6000825161312a818460208701613376565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613174908301846130bd565b9695505050505050565b6020815260006119a060208301846130bd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526030908201527f63616e6e6f74206d696e7420746f6b656e732e2077696c6c20676f206f76657260408201526f081b585e14dd5c1c1b1e481b1a5b5a5d60821b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561330c5761330c613464565b604052919050565b600082198211156133275761332761340c565b500190565b60008261333b5761333b613422565b500490565b600081600019048311821515161561335a5761335a61340c565b500290565b6000828210156133715761337161340c565b500390565b60005b83811015613391578181015183820152602001613379565b83811115610c4d5750506000910152565b600181811c908216806133b657607f821691505b602082108114156133d757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133f1576133f161340c565b5060010190565b60008261340757613407613422565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611b1f57600080fdfea26469706673582212206c5d97eeff08947a7da634a99050aea4195a753664cf3aa16ba9bf560ef1266f64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000016345785d8a0000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000003782dace9d900000000000000000000000000000000000000000000000000000214e8348c4f000000000000000000000000000000000000000000000000000000b1a2bc2ec5000000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000168000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d566f576f47416150376873414444394856753742516843636435685437696f746d61695357674646546e48772f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d566f576f47416150376873414444394856753742516843636435685437696f746d61695357674646546e48772f00000000000000000000
-----Decoded View---------------
Arg [0] : whitelistPrice_ (uint256): 100000000000000000
Arg [1] : whitelistMaxAmount_ (uint256): 2
Arg [2] : dutchAuctionStartPrice_ (uint256): 250000000000000000
Arg [3] : dutchAuctionFloorPrice_ (uint256): 150000000000000000
Arg [4] : dutchAuctionPriceDecreaseBy_ (uint256): 50000000000000000
Arg [5] : dutchAuctionLimitPerWallet_ (uint256): 5
Arg [6] : dutchAuctionChangeTick_ (uint256): 360
Arg [7] : unrevealedBaseURI_ (string): ipfs://QmVoWoGAaP7hsADD9HVu7BQhCcd5hT7iotmaiSWgFFTnHw/
Arg [8] : unrevealedTokenURI_ (string): ipfs://QmVoWoGAaP7hsADD9HVu7BQhCcd5hT7iotmaiSWgFFTnHw/
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [2] : 00000000000000000000000000000000000000000000000003782dace9d90000
Arg [3] : 0000000000000000000000000000000000000000000000000214e8348c4f0000
Arg [4] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000168
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d566f576f47416150376873414444394856753742516843
Arg [11] : 636435685437696f746d61695357674646546e48772f00000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [13] : 697066733a2f2f516d566f576f47416150376873414444394856753742516843
Arg [14] : 636435685437696f746d61695357674646546e48772f00000000000000000000
Deployed Bytecode Sourcemap
274:10324:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10391:205;;;;;;;;;;-1:-1:-1;10391:205:1;;;;;:::i;:::-;;:::i;:::-;;;8518:14:18;;8511:22;8493:41;;8481:2;8466:18;10391:205:1;;;;;;;;1315:42;;;;;;;;;;;;;;;;;;;8691:25:18;;;8679:2;8664:18;1315:42:1;8545:177:18;626:32:1;;;;;;;;;;-1:-1:-1;626:32:1;;;;;;;;2349:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7816:32:18;;;7798:51;;7786:2;7771:18;3860:217:5;7652:203:18;3808:880:1;;;;;;:::i;:::-;;:::i;:::-;;3398:401:5;;;;;;;;;;-1:-1:-1;3398:401:5;;;;;:::i;:::-;;:::i;6872:252:1:-;;;;;;;;;;-1:-1:-1;6872:252:1;;;;;:::i;:::-;;:::i;1534:111:6:-;;;;;;;;;;-1:-1:-1;1621:10:6;:17;1534:111;;3194:608:1;;;;;;;;;;;;;:::i;799:33::-;;;;;;;;;;;;;;;;4724:330:5;;;;;;;;;;-1:-1:-1;4724:330:5;;;;;:::i;:::-;;:::i;1210:253:6:-;;;;;;;;;;-1:-1:-1;1210:253:6;;;;;:::i;:::-;;:::i;492:25:1:-;;;;;;;;;;;;;;;;7330:263;;;;;;;;;;-1:-1:-1;7330:263:1;;;;;:::i;:::-;;:::i;1043:37::-;;;;;;;;;;;;;;;;6410:140;;;;;;;;;;;;;:::i;6341:63::-;;;;;;;;;;;;;:::i;5120:179:5:-;;;;;;;;;;-1:-1:-1;5120:179:5;;;;;:::i;:::-;;:::i;6655:98:1:-;;;;;;;;;;-1:-1:-1;6655:98:1;;;;;:::i;:::-;;:::i;7130:190::-;;;;;;;;;;-1:-1:-1;7130:190:1;;;;;:::i;:::-;;:::i;7676:334::-;;;;;;;;;;-1:-1:-1;7676:334:1;;;;;:::i;:::-;;:::i;1717:230:6:-;;;;;;;;;;-1:-1:-1;1717:230:6;;;;;:::i;:::-;;:::i;1708:20:1:-;;;;;;;;;;-1:-1:-1;1708:20:1;;;;;;;;838:28;;;;;;;;;;;;;;;;1034:84:15;;;;;;;;;;-1:-1:-1;1104:7:15;;;;1034:84;;1421:37:1;;;;;;;;;;;;;;;;2052:235:5;;;;;;;;;;-1:-1:-1;2052:235:5;;;;;:::i;:::-;;:::i;1790:205::-;;;;;;;;;;-1:-1:-1;1790:205:5;;;;;:::i;:::-;;:::i;1598:92:14:-;;;;;;;;;;;;;:::i;6556:93:1:-;;;;;;;;;;-1:-1:-1;6556:93:1;;;;;:::i;:::-;;:::i;6276:59::-;;;;;;;;;;;;;:::i;4694:1474::-;;;;;;:::i;:::-;;:::i;966:85:14:-;;;;;;;;;;-1:-1:-1;1038:6:14;;;;;-1:-1:-1;;;;;1038:6:14;966:85;;734:24:1;;;;;;;;;;;;;;;;2511:102:5;;;;;;;;;;;;;:::i;1565:41:1:-;;;;;;;;;;;;;;;;4144:290:5;;;;;;;;;;-1:-1:-1;4144:290:5;;;;;:::i;:::-;;:::i;957:31:1:-;;;;;;;;;;-1:-1:-1;957:31:1;;;;;;;;571:49;;;;;;;;;;-1:-1:-1;571:49:1;;;;;:::i;:::-;;;;;;;;;;;;;;523:24;;;;;;;;;;;;;;;;1203:41;;;;;;;;;;;;;;;;5365:320:5;;;;;;;;;;-1:-1:-1;5365:320:5;;;;;:::i;:::-;;:::i;10065::1:-;;;;;;;;;;-1:-1:-1;10065:320:1;;;;;:::i;:::-;;:::i;898:53::-;;;;;;;;;;-1:-1:-1;898:53:1;;;;;:::i;:::-;;;;;;;;;;;;;;6759:107;;;;;;;;;;-1:-1:-1;6759:107:1;;;;;:::i;:::-;;:::i;1126:37::-;;;;;;;;;;;;;;;;4500:162:5;;;;;;;;;;-1:-1:-1;4500:162:5;;;;;:::i;:::-;-1:-1:-1;;;;;4620:25:5;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4500:162;1839:189:14;;;;;;;;;;-1:-1:-1;1839:189:14;;;;;:::i;:::-;;:::i;764:29:1:-;;;;;;;;;;;;;;;;10391:205;10526:4;10553:36;10577:11;10553:23;:36::i;:::-;10546:43;10391:205;-1:-1:-1;;10391:205:1:o;2349:98:5:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;-1:-1:-1;;;3955:73:5;;18108:2:18;3955:73:5;;;18090:21:18;18147:2;18127:18;;;18120:30;18186:34;18166:18;;;18159:62;-1:-1:-1;;;18237:18:18;;;18230:42;18289:19;;3955:73:5;;;;;;;;;-1:-1:-1;4046:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:5;;3860:217::o;3808:880:1:-;1104:7:15;;;;1347:9;1339:38;;;;-1:-1:-1;;;1339:38:15;;;;;;;:::i;:::-;3899:1:1::1;3889:6;:11;;3881:38;;;::::0;-1:-1:-1;;;3881:38:1;;23597:2:18;3881:38:1::1;::::0;::::1;23579:21:18::0;23636:2;23616:18;;;23609:30;-1:-1:-1;;;23655:18:18;;;23648:43;23708:18;;3881:38:1::1;23395:337:18::0;3881:38:1::1;3937:19;::::0;::::1;;:27;;:19:::0;:27:::1;3929:57;;;::::0;-1:-1:-1;;;3929:57:1;;9153:2:18;3929:57:1::1;::::0;::::1;9135:21:18::0;9192:2;9172:18;;;9165:30;-1:-1:-1;;;9211:18:18;;;9204:47;9268:18;;3929:57:1::1;8951:341:18::0;3929:57:1::1;4018:25;4036:6;4018:13;1621:10:6::0;:17;;1534:111;4018:13:1::1;:17:::0;::::1;:25::i;:::-;4004:10;;:39;;3996:92;;;::::0;-1:-1:-1;;;3996:92:1;;23939:2:18;3996:92:1::1;::::0;::::1;23921:21:18::0;23978:2;23958:18;;;23951:30;24017:34;23997:18;;;23990:62;-1:-1:-1;;;24068:18:18;;;24061:38;24116:19;;3996:92:1::1;23737:404:18::0;3996:92:1::1;4155:26;::::0;4128:10:::1;4106:33;::::0;;;:21:::1;:33;::::0;;;;;:45:::1;::::0;4144:6;4106:37:::1;:45::i;:::-;:75;;4098:108;;;::::0;-1:-1:-1;;;4098:108:1;;9848:2:18;4098:108:1::1;::::0;::::1;9830:21:18::0;9887:2;9867:18;;;9860:30;-1:-1:-1;;;9906:18:18;;;9899:50;9966:18;;4098:108:1::1;9646:344:18::0;4098:108:1::1;4216:21;4238:41;4265:13;:6:::0;4276:1:::1;4265:10;:13::i;:::-;4238:22;::::0;;:26:::1;:41::i;:::-;4216:63;;4289:13;4305:45;4336:13;4305:26;:24;:26::i;:45::-;4289:61;;4378:9;4369:5;:18;;4361:50;;;::::0;-1:-1:-1;;;4361:50:1;;19711:2:18;4361:50:1::1;::::0;::::1;19693:21:18::0;19750:2;19730:18;;;19723:30;-1:-1:-1;;;19769:18:18;;;19762:49;19828:18;;4361:50:1::1;19509:343:18::0;4361:50:1::1;4488:10;4466:33;::::0;;;:21:::1;:33;::::0;;;;;:45:::1;::::0;4504:6;4466:37:::1;:45::i;:::-;4452:10;4430:33;::::0;;;:21:::1;:33;::::0;;;;:81;;;;4527:146:::1;4548:6;4544:1;:10;4527:146;;;4575:20;4584:10;4575:8;:20::i;:::-;4614:48;4636:25;:15;864:14:3::0;;773:112;4636:25:1::1;4614:48;::::0;8691:25:18;;;8679:2;8664:18;4614:48:1::1;;;;;;;4556:3:::0;::::1;::::0;::::1;:::i;:::-;;;;4527:146;;;;3871:817;;3808:880:::0;:::o;3398:401:5:-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:5;:2;-1:-1:-1;;;;;3535:11:5;;;3527:57;;;;-1:-1:-1;;;3527:57:5;;20475:2:18;3527:57:5;;;20457:21:18;20514:2;20494:18;;;20487:30;20553:34;20533:18;;;20526:62;-1:-1:-1;;;20604:18:18;;;20597:31;20645:19;;3527:57:5;20273:397:18;3527:57:5;666:10:2;-1:-1:-1;;;;;3616:21:5;;;;:62;;-1:-1:-1;3641:37:5;3658:5;666:10:2;4500:162:5;:::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:5;;14893:2:18;3595:165:5;;;14875:21:18;14932:2;14912:18;;;14905:30;14971:34;14951:18;;;14944:62;15042:26;15022:18;;;15015:54;15086:19;;3595:165:5;14691:420:18;3595:165:5;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;6872:252:1:-;1038:6:14;;-1:-1:-1;;;;;1038:6:14;;;;;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;6951:20:1::1;::::0;::::1;;:29;6943:83;;;::::0;-1:-1:-1;;;6943:83:1;;20877:2:18;6943:83:1::1;::::0;::::1;20859:21:18::0;20916:2;20896:18;;;20889:30;20955:34;20935:18;;;20928:62;-1:-1:-1;;;21006:18:18;;;20999:39;21055:19;;6943:83:1::1;20675:405:18::0;6943:83:1::1;7065:15;7036:26;:44:::0;7090:19:::1;:27:::0;;-1:-1:-1;;7090:27:1::1;::::0;::::1;;::::0;;;::::1;::::0;;6872:252::o;3194:608::-;3251:7;3270:13;3304:26;;3286:15;:44;;;;:::i;:::-;3270:60;;3340:13;3356:33;3366:22;;3356:5;:9;;:33;;;;:::i;:::-;3340:49;;3399:17;3419:38;3451:5;3419:27;;:31;;:38;;;;:::i;:::-;3399:58;;3483:22;;3471:9;:34;3467:135;;;3528:22;;3521:29;;;;;3194:608;:::o;3467:135::-;3627:22;;3611:13;;3627:37;;3654:9;3627:26;:37::i;:::-;3611:53;;3695:22;;3687:5;:30;3683:91;;;-1:-1:-1;3741:22:1;;3683:91;3790:5;3194:608;-1:-1:-1;;;;3194:608:1:o;4724:330:5:-;4913:41;666:10:2;4946:7:5;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:5;;;;;;;:::i;:::-;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;1210:253:6:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:6;;10197:2:18;1326:87:6;;;10179:21:18;10236:2;10216:18;;;10209:30;10275:34;10255:18;;;10248:62;-1:-1:-1;;;10326:18:18;;;10319:41;10377:19;;1326:87:6;9995:407:18;1326:87:6;-1:-1:-1;;;;;;1430:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;7330:263:1:-;1038:6:14;;-1:-1:-1;;;;;1038:6:14;;;;;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;7428:25:1::1;7446:6;7428:13;1621:10:6::0;:17;;1534:111;7428:25:1::1;7414:10;;:39;;7406:100;;;;-1:-1:-1::0;;;7406:100:1::1;;;;;;;:::i;:::-;7521:6;7516:71;7537:6;7533:1;:10;7516:71;;;7564:12;7573:2;7564:8;:12::i;:::-;7545:3:::0;::::1;::::0;::::1;:::i;:::-;;;;7516:71;;6410:140:::0;1038:6:14;;-1:-1:-1;;;;;1038:6:14;;;;;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;6506:37:1::1;::::0;6475:21:::1;::::0;6514:10:::1;::::0;6506:37;::::1;;;::::0;6475:21;;6457:15:::1;6506:37:::0;6457:15;6506:37;6475:21;6514:10;6506:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;6447:103;6410:140::o:0;6341:63::-;1038:6:14;;-1:-1:-1;;;;;1038:6:14;;;;;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;6387:10:1::1;:8;:10::i;:::-;6341:63::o:0;5120:179:5:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;6655:98:1:-;1038:6:14;;-1:-1:-1;;;;;1038:6:14;;;;;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;6724:9:1::1;:22:::0;6655:98::o;7130:190::-;1038:6:14;;-1:-1:-1;;;;;1038:6:14;;;;;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;7263:25:1;;::::1;::::0;:7:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;7298:8:1::1;:15:::0;;-1:-1:-1;;7298:15:1::1;7309:4;7298:15;::::0;;7130:190::o;7676:334::-;1038:6:14;;-1:-1:-1;;;;;1038:6:14;;;;;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;7812:29:1::1;7830:3;:10;7812:13;1621:10:6::0;:17;;1534:111;7812:29:1::1;7798:10;;:43;;7790:104;;;;-1:-1:-1::0;;;7790:104:1::1;;;;;;;:::i;:::-;7907:9;7903:101;7926:3;:10;7922:1;:14;7903:101;;;7964:16;7973:3;7977:1;7973:6;;;;;;;;:::i;:::-;;;;;;;7964:8;:16::i;:::-;7938:3:::0;::::1;::::0;::::1;:::i;:::-;;;;7903:101;;1717:230:6::0;1792:7;1827:30;1621:10;:17;;1534:111;1827:30;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:6;;23184:2:18;1811:95:6;;;23166:21:18;23223:2;23203:18;;;23196:30;23262:34;23242:18;;;23235:62;-1:-1:-1;;;23313:18:18;;;23306:42;23365:19;;1811:95:6;22982:408:18;1811:95:6;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;1916:24;;1717:230;;;:::o;2052:235:5:-;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:5;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:5;;16088:2:18;2185:73:5;;;16070:21:18;16127:2;16107:18;;;16100:30;16166:34;16146:18;;;16139:62;-1:-1:-1;;;16217:18:18;;;16210:39;16266:19;;2185:73:5;15886:405:18;1790:205:5;1862:7;-1:-1:-1;;;;;1889:19:5;;1881:74;;;;-1:-1:-1;;;1881:74:5;;15677:2:18;1881:74:5;;;15659:21:18;15716:2;15696:18;;;15689:30;15755:34;15735:18;;;15728:62;-1:-1:-1;;;15806:18:18;;;15799:40;15856:19;;1881:74:5;15475:406:18;1881:74:5;-1:-1:-1;;;;;;1972:16:5;;;;;:9;:16;;;;;;;1790:205::o;1598:92:14:-;1038:6;;-1:-1:-1;;;;;1038:6:14;;;;;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;6556:93:1:-:0;1038:6:14;;-1:-1:-1;;;;;1038:6:14;;;;;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;6624:9:1::1;:18:::0;6556:93::o;6276:59::-;1038:6:14;;-1:-1:-1;;;;;1038:6:14;;;;;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;6320:8:1::1;:6;:8::i;4694:1474::-:0;1104:7:15;;;;1347:9;1339:38;;;;-1:-1:-1;;;1339:38:15;;;;;;;:::i;:::-;4809:20:1::1;::::0;::::1;;:28;;:20:::0;:28:::1;4801:65;;;::::0;-1:-1:-1;;;4801:65:1;;21647:2:18;4801:65:1::1;::::0;::::1;21629:21:18::0;21686:2;21666:18;;;21659:30;21725:26;21705:18;;;21698:54;21769:18;;4801:65:1::1;21445:348:18::0;4801:65:1::1;4893:1;4884:6;:10;4876:54;;;::::0;-1:-1:-1;;;4876:54:1;;21287:2:18;4876:54:1::1;::::0;::::1;21269:21:18::0;21326:2;21306:18;;;21299:30;21365:33;21345:18;;;21338:61;21416:18;;4876:54:1::1;21085:355:18::0;4876:54:1::1;4948:9;4940:47;;;::::0;-1:-1:-1;;;4940:47:1;;22835:2:18;4940:47:1::1;::::0;::::1;22817:21:18::0;22874:2;22854:18;;;22847:30;-1:-1:-1;;;22893:18:18;;;22886:50;22953:18;;4940:47:1::1;22633:344:18::0;4940:47:1::1;5019:25;5037:6;5019:13;1621:10:6::0;:17;;1534:111;5019:25:1::1;5005:10;;:39;;4997:100;;;;-1:-1:-1::0;;;4997:100:1::1;;;;;;;:::i;:::-;5128:13;::::0;:25:::1;::::0;5146:6;5128:17:::1;:25::i;:::-;5115:9;;:38;;5107:98;;;::::0;-1:-1:-1;;;5107:98:1;;16913:2:18;5107:98:1::1;::::0;::::1;16895:21:18::0;16952:2;16932:18;;;16925:30;16991:34;16971:18;;;16964:62;-1:-1:-1;;;17042:18:18;;;17035:45;17097:19;;5107:98:1::1;16711:411:18::0;5107:98:1::1;8635:33:::0;;;5311:10:::1;6355:2:18::0;6351:15;-1:-1:-1;;6347:53:18;8635:33:1;;;;6335:66:18;;;;5276:18:1::1;6417:12:18::0;;;;6410:28;;;8635:33:1;;;;;;;;;;6454:12:18;;;;8635:33:1;;;8625:44;;;;;5297:36:::1;::::0;5327:5:::1;;5297:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;5297:7:1::1;::::0;-1:-1:-1;;;5297:36:1:i:1;:::-;5276:57;;5352:13;5344:63;;;::::0;-1:-1:-1;;;5344:63:1;;12210:2:18;5344:63:1::1;::::0;::::1;12192:21:18::0;12249:2;12229:18;;;12222:30;12288:34;12268:18;;;12261:62;-1:-1:-1;;;12339:18:18;;;12332:35;12384:19;;5344:63:1::1;12008:401:18::0;5344:63:1::1;5434:14;::::0;5478:18:::1;::::0;5550:10:::1;5418:13;5532:29:::0;;;:17:::1;:29;::::0;;;;;5580:10;5572:48:::1;;;::::0;-1:-1:-1;;;5572:48:1;;13781:2:18;5572:48:1::1;::::0;::::1;13763:21:18::0;13820:2;13800:18;;;13793:30;13859:27;13839:18;;;13832:55;13904:18;;5572:48:1::1;13579:349:18::0;5572:48:1::1;5638:14:::0;5630:57:::1;;;::::0;-1:-1:-1;;;5630:57:1;;15318:2:18;5630:57:1::1;::::0;::::1;15300:21:18::0;15357:2;15337:18;;;15330:30;15396:32;15376:18;;;15369:60;15446:18;;5630:57:1::1;15116:354:18::0;5630:57:1::1;5736:9:::0;5705:27:::1;:15:::0;5725:6;5705:19:::1;:27::i;:::-;:40;;5697:90;;;::::0;-1:-1:-1;;;5697:90:1;;13375:2:18;5697:90:1::1;::::0;::::1;13357:21:18::0;13414:2;13394:18;;;13387:30;13453:34;13433:18;;;13426:62;-1:-1:-1;;;13504:18:18;;;13497:35;13549:19;;5697:90:1::1;13173:401:18::0;5697:90:1::1;5826:9;5805:17;:5:::0;5815:6;5805:9:::1;:17::i;:::-;:30;;5797:93;;;::::0;-1:-1:-1;;;5797:93:1;;18882:2:18;5797:93:1::1;::::0;::::1;18864:21:18::0;18921:2;18901:18;;;18894:30;18960:34;18940:18;;;18933:62;-1:-1:-1;;;19011:18:18;;;19004:48;19069:19;;5797:93:1::1;18680:414:18::0;5797:93:1::1;5962:13;::::0;:25:::1;::::0;5980:6;5962:17:::1;:25::i;:::-;5948:13;:39:::0;6009:6:::1;6004:158;6025:6;6021:1;:10;6004:158;;;6102:10;6084:29;::::0;;;:17:::1;:29;::::0;;;;;:33:::1;::::0;6116:1:::1;6084:33;:::i;:::-;6070:10;6052:29;::::0;;;:17:::1;:29;::::0;;;;:65;;;;6131:20:::1;::::0;:8:::1;:20::i;:::-;6033:3:::0;::::1;::::0;::::1;:::i;:::-;;;;6004:158;;;;4791:1377;;;;4694:1474:::0;;;:::o;2511:102:5:-;2567:13;2599:7;2592:14;;;;;:::i;4144:290::-;-1:-1:-1;;;;;4246:24:5;;666:10:2;4246:24:5;;4238:62;;;;-1:-1:-1;;;4238:62:5;;13021:2:18;4238:62:5;;;13003:21:18;13060:2;13040:18;;;13033:30;13099:27;13079:18;;;13072:55;13144:18;;4238:62:5;12819:349:18;4238:62:5;666:10:2;4311:32:5;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4311:42:5;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:5;;;;;;;;;;4379:48;;8493:41:18;;;4311:42:5;;666:10:2;4379:48:5;;8466:18:18;4379:48:5;;;;;;;4144:290;;:::o;5365:320::-;5534:41;666:10:2;5567:7:5;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:5;;;;;;;:::i;:::-;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;10065:320:1:-;10221:8;;10188:13;;10221:8;;10217:162;;;10245:17;10265:23;10280:7;10265:14;:23::i;:::-;10245:43;10065:320;-1:-1:-1;;;10065:320:1:o;10217:162::-;10350:18;10343:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10065:320;;;:::o;10217:162::-;10065:320;;;:::o;6759:107::-;1038:6:14;;-1:-1:-1;;;;;1038:6:14;;;;;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;6831:20:1::1;:28:::0;;-1:-1:-1;;6831:28:1::1;::::0;::::1;;::::0;;;::::1;::::0;;6759:107::o;1839:189:14:-;1038:6;;-1:-1:-1;;;;;1038:6:14;;;;;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:14;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:14;;11028:2:18;1919:73:14::1;::::0;::::1;11010:21:18::0;11067:2;11047:18;;;11040:30;11106:34;11086:18;;;11079:62;-1:-1:-1;;;11157:18:18;;;11150:36;11203:19;;1919:73:14::1;10826:402:18::0;1919:73:14::1;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;3382:96:16:-;3440:7;3466:5;3470:1;3466;:5;:::i;909:222:6:-;1011:4;-1:-1:-1;;;;;;1034:50:6;;-1:-1:-1;;;1034:50:6;;:90;;;1088:36;1112:11;1088:23;:36::i;7157:125:5:-;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;:30;;;7157:125::o;2672:96:16:-;2730:7;2756:5;2760:1;2756;:5;:::i;3039:96::-;3097:7;3123:5;3127:1;3123;:5;:::i;8099:415:1:-;1104:7:15;;;;1347:9;1339:38;;;;-1:-1:-1;;;1339:38:15;;;;;;;:::i;:::-;8189:20:1::1;8207:1;8189:13;1621:10:6::0;:17;;1534:111;8189:20:1::1;8175:10;;:34;;8167:96;;;::::0;-1:-1:-1;;;8167:96:1;;11792:2:18;8167:96:1::1;::::0;::::1;11774:21:18::0;11831:2;11811:18;;;11804:30;11870:34;11850:18;;;11843:62;-1:-1:-1;;;11921:18:18;;;11914:47;11978:19;;8167:96:1::1;11590:413:18::0;8167:96:1::1;8273:15;8291:25;:15;864:14:3::0;;773:112;8291:25:1::1;8273:43;;8326:27;:15;978:19:3::0;;996:1;978:19;;;891:123;8326:27:1::1;8363:22;8373:2;8377:7;8363:9;:22::i;:::-;8395:17;8439:21;8452:7;8439:12;:21::i;:::-;8422:48;;;;;;;;:::i;:::-;;;;;;;;;;;;;8395:76;;8481:26;8494:7;8503:3;8481:12;:26::i;11008:171:5:-:0;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11082:29:5;-1:-1:-1;;;;;11082:29:5;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:5;;;;;;;;;;;11008:171;;:::o;3767:96:16:-;3825:7;3851:5;3855:1;3851;:5;:::i;7440:344:5:-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;-1:-1:-1;;;7549:73:5;;14135:2:18;7549:73:5;;;14117:21:18;14174:2;14154:18;;;14147:30;14213:34;14193:18;;;14186:62;-1:-1:-1;;;14264:18:18;;;14257:42;14316:19;;7549:73:5;13933:408:18;7549:73:5;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:5;:7;-1:-1:-1;;;;;7689:16:5;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:5;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:5;;7689:51;:87;;;-1:-1:-1;;;;;;4620:25:5;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7744:32;4500:162;10337:560;10491:4;-1:-1:-1;;;;;10464:31:5;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:5;;10456:85;;;;-1:-1:-1;;;10456:85:5;;19301:2:18;10456:85:5;;;19283:21:18;19340:2;19320:18;;;19313:30;19379:34;19359:18;;;19352:62;-1:-1:-1;;;19430:18:18;;;19423:39;19479:19;;10456:85:5;19099:405:18;10456:85:5;-1:-1:-1;;;;;10559:16:5;;10551:65;;;;-1:-1:-1;;;10551:65:5;;12616:2:18;10551:65:5;;;12598:21:18;12655:2;12635:18;;;12628:30;12694:34;12674:18;;;12667:62;-1:-1:-1;;;12745:18:18;;;12738:34;12789:19;;10551:65:5;12414:400:18;10551:65:5;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:5;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:5;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10826:21:5;-1:-1:-1;;;;;10826:21:5;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;2046:117:15:-;1104:7;;;;1605:41;;;;-1:-1:-1;;;1605:41:15;;9499:2:18;1605:41:15;;;9481:21:18;9538:2;9518:18;;;9511:30;-1:-1:-1;;;9557:18:18;;;9550:50;9617:18;;1605:41:15;9297:344:18;1605:41:15;2104:7:::1;:15:::0;;-1:-1:-1;;2104:15:15::1;::::0;;2134:22:::1;666:10:2::0;2143:12:15::1;2134:22;::::0;-1:-1:-1;;;;;7816:32:18;;;7798:51;;7786:2;7771:18;2134:22:15::1;;;;;;;2046:117::o:0;2034:169:14:-;2108:6;;;-1:-1:-1;;;;;2124:17:14;;;2108:6;2124:17;;;-1:-1:-1;;;;;;2124:17:14;;;;;;2156:40;;2108:6;;;;;;;;2156:40;;2089:16;;2156:40;2079:124;2034:169;:::o;1799:115:15:-;1104:7;;;;1347:9;1339:38;;;;-1:-1:-1;;;1339:38:15;;;;;;;:::i;:::-;1858:7:::1;:14:::0;;-1:-1:-1;;1858:14:15::1;1868:4;1858:14;::::0;;1887:20:::1;1894:12;666:10:2::0;;587:96;8682:158:1;8764:4;8791:42;8810:5;8817:9;;8828:4;8791:18;:42::i;6547:307:5:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:5;;;;;;;:::i;386:663:7:-;459:13;492:16;500:7;492;:16::i;:::-;484:78;;;;-1:-1:-1;;;484:78:7;;17690:2:18;484:78:7;;;17672:21:18;17729:2;17709:18;;;17702:30;17768:34;17748:18;;;17741:62;-1:-1:-1;;;17819:18:18;;;17812:47;17876:19;;484:78:7;17488:413:18;484:78:7;573:23;599:19;;;:10;:19;;;;;573:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;628:18;649:10;:8;:10::i;:::-;628:31;;738:4;732:18;754:1;732:23;728:70;;;-1:-1:-1;778:9:7;386:663;-1:-1:-1;;386:663:7:o;728:70::-;900:23;;:27;896:106;;974:4;980:9;957:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;943:48;;;;386:663;;;:::o;896:106::-;1019:23;1034:7;1019:14;:23::i;1431:300:5:-;1533:4;-1:-1:-1;;;;;;1568:40:5;;-1:-1:-1;;;1568:40:5;;:104;;-1:-1:-1;;;;;;;1624:48:5;;-1:-1:-1;;;1624:48:5;1568:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:4;;;1688:36:5;763:155:4;8114:108:5;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;8846:562:1:-;8902:17;8935:6;8931:47;;-1:-1:-1;;8957:10:1;;;;;;;;;;;;-1:-1:-1;;;8957:10:1;;;;;8846:562::o;8931:47::-;9044:20;;;9007:3;9044:20;;;;;;;;;8987:17;;9007:3;9044:20;;;;;;;;;;-1:-1:-1;9044:20:1;9020:44;;9074:9;9097:149;9104:6;;9097:149;;9126:17;9146:6;9150:2;9146:1;:6;:::i;:::-;9126:26;-1:-1:-1;9170:6:1;9174:2;9170:1;:6;:::i;:::-;9166:10;-1:-1:-1;9219:14:1;9224:9;9219:2;:14;:::i;:::-;9206:29;;9190:8;9199:3;;;;:::i;:::-;;;9190:13;;;;;;;;:::i;:::-;;;;:45;-1:-1:-1;;;;;9190:45:1;;;;;;;;;9112:134;9097:149;;;9255:14;9282:1;9272:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9272:12:1;;9255:29;;9299:9;9294:83;9318:1;9314;:5;9294:83;;;9347:8;9364:1;9356:5;9360:1;9356;:5;:::i;:::-;:9;;;;:::i;:::-;9347:19;;;;;;;;:::i;:::-;;;;;;;;;9340:1;9342;9340:4;;;;;;;;:::i;:::-;;;;:26;-1:-1:-1;;;;;9340:26:1;;;;;;;;-1:-1:-1;9321:3:1;;;;:::i;:::-;;;;9294:83;;;-1:-1:-1;9399:1:1;8846:562;-1:-1:-1;;;;;8846:562:1:o;1196:214:7:-;1295:16;1303:7;1295;:16::i;:::-;1287:75;;;;-1:-1:-1;;;1287:75:7;;16498:2:18;1287:75:7;;;16480:21:18;16537:2;16517:18;;;16510:30;16576:34;16556:18;;;16549:62;-1:-1:-1;;;16627:18:18;;;16620:44;16681:19;;1287:75:7;16296:410:18;1287:75:7;1372:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;9518:221:1:-;1104:7:15;;;;1347:9;1339:38;;;;-1:-1:-1;;;1339:38:15;;;;;;;:::i;:::-;9687:45:1::1;9714:4;9720:2;9724:7;9687:26;:45::i;777:809:13:-:0;898:4;937;898;952:515;976:5;:12;972:1;:16;952:515;;;1009:20;1032:5;1038:1;1032:8;;;;;;;;:::i;:::-;;;;;;;1009:31;;1075:12;1059;:28;1055:402;;1210:44;;;;;;6634:19:18;;;6669:12;;;6662:28;;;6706:12;;1210:44:13;;;;;;;;;;;;1200:55;;;;;;1185:70;;1055:402;;;1397:44;;;;;;6634:19:18;;;6669:12;;;6662:28;;;6706:12;;1397:44:13;;;;;;;;;;;;1387:55;;;;;;1372:70;;1055:402;-1:-1:-1;990:3:13;;;;:::i;:::-;;;;952:515;;;-1:-1:-1;1559:20:13;;;;777:809;-1:-1:-1;;;777:809:13:o;11732:778:5:-;11882:4;-1:-1:-1;;;;;11902:13:5;;1034:20:0;1080:8;11898:606:5;;11937:72;;-1:-1:-1;;;11937:72:5;;-1:-1:-1;;;;;11937:36:5;;;;;:72;;666:10:2;;11988:4:5;;11994:7;;12003:5;;11937:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:5;;;;;;;;-1:-1:-1;;11937:72:5;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12176:13:5;;12172:266;;12218:60;;-1:-1:-1;;;12218:60:5;;;;;;;:::i;12172:266::-;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;-1:-1:-1;;;;;;12059:51:5;-1:-1:-1;;;12059:51:5;;-1:-1:-1;12052:58:5;;11898:606;-1:-1:-1;12489:4:5;11732:778;;;;;;:::o;9414:98:1:-;9466:13;9498:7;9491:14;;;;;:::i;2679:329:5:-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;-1:-1:-1;;;2777:76:5;;20059:2:18;2777:76:5;;;20041:21:18;20098:2;20078:18;;;20071:30;20137:34;20117:18;;;20110:62;-1:-1:-1;;;20188:18:18;;;20181:45;20243:19;;2777:76:5;19857:411:18;2777:76:5;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2908:93;2679:329;-1:-1:-1;;;2679:329:5:o;8443:311::-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;-1:-1:-1;;;8596:151:5;;;;;;;:::i;2543:572:6:-;-1:-1:-1;;;;;2742:18:6;;2738:183;;2776:40;2808:7;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161;2776:40;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:6;:4;-1:-1:-1;;;;;2837:10:6;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:6;;2930:179;;2966:45;3003:7;2966:36;:45::i;2930:179::-;3038:4;-1:-1:-1;;;;;3032:10:6;:2;-1:-1:-1;;;;;3032:10:6;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;275:703:17:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:17;;;;;;;;;;;;-1:-1:-1;;;574:10:17;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:17;;-1:-1:-1;720:2:17;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:17;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:17;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:17;;;;;;;;-1:-1:-1;919:11:17;928:2;919:11;;:::i;:::-;;;791:150;;9076:372:5;-1:-1:-1;;;;;9155:16:5;;9147:61;;;;-1:-1:-1;;;9147:61:5;;17329:2:18;9147:61:5;;;17311:21:18;;;17348:18;;;17341:30;17407:34;17387:18;;;17380:62;17459:18;;9147:61:5;17127:356:18;9147:61:5;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;-1:-1:-1;;;9218:58:5;;11435:2:18;9218:58:5;;;11417:21:18;11474:2;11454:18;;;11447:30;11513;11493:18;;;11486:58;11561:18;;9218:58:5;11233:352:18;9218:58:5;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;-1:-1:-1;;;;;9343:13:5;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:5;-1:-1:-1;;;;;9371:21:5;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;4599:970:6:-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:6;;;5069:323;;-1:-1:-1;;;;;5139:18:6;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:6;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:6;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:6;;6106:46;;6551:26;;;;;;:::i;:::-;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5928:990;;;5857:1061;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:6:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:18;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:18;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:18;;532:42;;522:70;;588:1;585;578:12;603:160;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:18;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:18:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:18;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:18;2746:963;-1:-1:-1;;;;;;;;2746:963:18:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:180::-;3958:6;4011:2;3999:9;3990:7;3986:23;3982:32;3979:52;;;4027:1;4024;4017:12;3979:52;-1:-1:-1;4050:23:18;;3899:180;-1:-1:-1;3899:180:18:o;4084:245::-;4142:6;4195:2;4183:9;4174:7;4170:23;4166:32;4163:52;;;4211:1;4208;4201:12;4163:52;4250:9;4237:23;4269:30;4293:5;4269:30;:::i;4334:249::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4504:9;4498:16;4523:30;4547:5;4523:30;:::i;4588:450::-;4657:6;4710:2;4698:9;4689:7;4685:23;4681:32;4678:52;;;4726:1;4723;4716:12;4678:52;4766:9;4753:23;4799:18;4791:6;4788:30;4785:50;;;4831:1;4828;4821:12;4785:50;4854:22;;4907:4;4899:13;;4895:27;-1:-1:-1;4885:55:18;;4936:1;4933;4926:12;4885:55;4959:73;5024:7;5019:2;5006:16;5001:2;4997;4993:11;4959:73;:::i;5228:683::-;5323:6;5331;5339;5392:2;5380:9;5371:7;5367:23;5363:32;5360:52;;;5408:1;5405;5398:12;5360:52;5444:9;5431:23;5421:33;;5505:2;5494:9;5490:18;5477:32;5528:18;5569:2;5561:6;5558:14;5555:34;;;5585:1;5582;5575:12;5555:34;5623:6;5612:9;5608:22;5598:32;;5668:7;5661:4;5657:2;5653:13;5649:27;5639:55;;5690:1;5687;5680:12;5639:55;5730:2;5717:16;5756:2;5748:6;5745:14;5742:34;;;5772:1;5769;5762:12;5742:34;5825:7;5820:2;5810:6;5807:1;5803:14;5799:2;5795:23;5791:32;5788:45;5785:65;;;5846:1;5843;5836:12;5785:65;5877:2;5873;5869:11;5859:21;;5899:6;5889:16;;;;;5228:683;;;;;:::o;5916:257::-;5957:3;5995:5;5989:12;6022:6;6017:3;6010:19;6038:63;6094:6;6087:4;6082:3;6078:14;6071:4;6064:5;6060:16;6038:63;:::i;:::-;6155:2;6134:15;-1:-1:-1;;6130:29:18;6121:39;;;;6162:4;6117:50;;5916:257;-1:-1:-1;;5916:257:18:o;6729:470::-;6908:3;6946:6;6940:13;6962:53;7008:6;7003:3;6996:4;6988:6;6984:17;6962:53;:::i;:::-;7078:13;;7037:16;;;;7100:57;7078:13;7037:16;7134:4;7122:17;;7100:57;:::i;:::-;7173:20;;6729:470;-1:-1:-1;;;;6729:470:18:o;7204:443::-;7436:3;7474:6;7468:13;7490:53;7536:6;7531:3;7524:4;7516:6;7512:17;7490:53;:::i;:::-;-1:-1:-1;;;7565:16:18;;7590:22;;;-1:-1:-1;7639:1:18;7628:13;;7204:443;-1:-1:-1;7204:443:18:o;7860:488::-;-1:-1:-1;;;;;8129:15:18;;;8111:34;;8181:15;;8176:2;8161:18;;8154:43;8228:2;8213:18;;8206:34;;;8276:3;8271:2;8256:18;;8249:31;;;8054:4;;8297:45;;8322:19;;8314:6;8297:45;:::i;:::-;8289:53;7860:488;-1:-1:-1;;;;;;7860:488:18:o;8727:219::-;8876:2;8865:9;8858:21;8839:4;8896:44;8936:2;8925:9;8921:18;8913:6;8896:44;:::i;10407:414::-;10609:2;10591:21;;;10648:2;10628:18;;;10621:30;10687:34;10682:2;10667:18;;10660:62;-1:-1:-1;;;10753:2:18;10738:18;;10731:48;10811:3;10796:19;;10407:414::o;14346:340::-;14548:2;14530:21;;;14587:2;14567:18;;;14560:30;-1:-1:-1;;;14621:2:18;14606:18;;14599:46;14677:2;14662:18;;14346:340::o;18319:356::-;18521:2;18503:21;;;18540:18;;;18533:30;18599:34;18594:2;18579:18;;18572:62;18666:2;18651:18;;18319:356::o;21798:413::-;22000:2;21982:21;;;22039:2;22019:18;;;22012:30;22078:34;22073:2;22058:18;;22051:62;-1:-1:-1;;;22144:2:18;22129:18;;22122:47;22201:3;22186:19;;21798:413::o;22216:412::-;22418:2;22400:21;;;22457:2;22437:18;;;22430:30;22496:34;22491:2;22476:18;;22469:62;-1:-1:-1;;;22562:2:18;22547:18;;22540:46;22618:3;22603:19;;22216:412::o;24328:275::-;24399:2;24393:9;24464:2;24445:13;;-1:-1:-1;;24441:27:18;24429:40;;24499:18;24484:34;;24520:22;;;24481:62;24478:88;;;24546:18;;:::i;:::-;24582:2;24575:22;24328:275;;-1:-1:-1;24328:275:18:o;24608:128::-;24648:3;24679:1;24675:6;24672:1;24669:13;24666:39;;;24685:18;;:::i;:::-;-1:-1:-1;24721:9:18;;24608:128::o;24741:120::-;24781:1;24807;24797:35;;24812:18;;:::i;:::-;-1:-1:-1;24846:9:18;;24741:120::o;24866:168::-;24906:7;24972:1;24968;24964:6;24960:14;24957:1;24954:21;24949:1;24942:9;24935:17;24931:45;24928:71;;;24979:18;;:::i;:::-;-1:-1:-1;25019:9:18;;24866:168::o;25039:125::-;25079:4;25107:1;25104;25101:8;25098:34;;;25112:18;;:::i;:::-;-1:-1:-1;25149:9:18;;25039:125::o;25169:258::-;25241:1;25251:113;25265:6;25262:1;25259:13;25251:113;;;25341:11;;;25335:18;25322:11;;;25315:39;25287:2;25280:10;25251:113;;;25382:6;25379:1;25376:13;25373:48;;;-1:-1:-1;;25417:1:18;25399:16;;25392:27;25169:258::o;25432:380::-;25511:1;25507:12;;;;25554;;;25575:61;;25629:4;25621:6;25617:17;25607:27;;25575:61;25682:2;25674:6;25671:14;25651:18;25648:38;25645:161;;;25728:10;25723:3;25719:20;25716:1;25709:31;25763:4;25760:1;25753:15;25791:4;25788:1;25781:15;25645:161;;25432:380;;;:::o;25817:135::-;25856:3;-1:-1:-1;;25877:17:18;;25874:43;;;25897:18;;:::i;:::-;-1:-1:-1;25944:1:18;25933:13;;25817:135::o;25957:112::-;25989:1;26015;26005:35;;26020:18;;:::i;:::-;-1:-1:-1;26054:9:18;;25957:112::o;26074:127::-;26135:10;26130:3;26126:20;26123:1;26116:31;26166:4;26163:1;26156:15;26190:4;26187:1;26180:15;26206:127;26267:10;26262:3;26258:20;26255:1;26248:31;26298:4;26295:1;26288:15;26322:4;26319:1;26312:15;26338:127;26399:10;26394:3;26390:20;26387:1;26380:31;26430:4;26427:1;26420:15;26454:4;26451:1;26444:15;26470:127;26531:10;26526:3;26522:20;26519:1;26512:31;26562:4;26559:1;26552:15;26586:4;26583:1;26576:15;26602:127;26663:10;26658:3;26654:20;26651:1;26644:31;26694:4;26691:1;26684:15;26718:4;26715:1;26708:15;26734:131;-1:-1:-1;;;;;;26808:32:18;;26798:43;;26788:71;;26855:1;26852;26845:12
Swarm Source
ipfs://6c5d97eeff08947a7da634a99050aea4195a753664cf3aa16ba9bf560ef1266f
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.