ETH Price: $2,503.54 (+2.06%)

Token

Wasted Wild (WAWI)
 

Overview

Max Total Supply

635 WAWI

Holders

339

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
snooky.eth
Balance
6 WAWI
0xdc6ce98a9020905973c9c026c6f3e34df9998d8a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WastedWild

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : WastedWild.sol
// SPDX-License-Identifier: MIT

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

pragma solidity ^0.8.0;

contract WastedWild is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    
    IERC721 public _arbo1;
    IERC721 public _arbo2;
    IERC721 public _arfes;
    IERC721 public _arfw;

    //price variables
    uint256 public constant PRICE_PER_TOKEN = 0.07 ether;

    //supply variables
    uint256 public _maxSupply = 6666;
    uint256 public _maxPerTxn = 5;
    uint256 public _reservedArtistEdtns = 12; //Artist editions to reserve in the beginning

    //sale state control variables
    bool public _isBurningEnabled;
    bool public _isMintingEnabled = true;
    bool public _isClaimingEnabled = true;
    uint256 public _startSaleTimestamp = 1637078400; //11/16/2021 11:00AM EST
    uint256 public _firstWindow = 172800; //48 hours
    uint256 public _secondWindow = 86400; //24 hours
    uint256 public _thirdWindow = 86400; //24 hours
    uint256 public _fourthWindow = 86400; //24 hours

    //wallet to withdraw to
    address payable public _abar =
        payable(address(0x96f10441b25f56AfE30FDB03c6853f0fEC70F389));

    //metadata variables
    string private _baseURI_ = "ipfs://QmW1iuCkEcVekJHtW1wR4S2DUu8Qvsvwfifwch3waRa33f/";
    uint256 private _tokenId;

    //provenance variables
    uint256 public startingIndexBlock;
    uint256 public startingIndex;
    string public provenanceHash;

    //build token claimed mapping
    mapping(uint256 => bool) public _buildTokenClaimed;

    //white lsit mapping
    mapping(address => bool) public _whiteList;

    constructor(address arbo1, address arbo2, address arfes, address arfw) ERC721("Wasted Wild", "WAWI") {
        _arbo1 = IERC721(arbo1);
        _arbo2 = IERC721(arbo2);
        _arfes = IERC721(arfes);
        _arfw = IERC721(arfw);
    }

    function setMaxSupply(uint256 maxSupply) external onlyOwner {
        _maxSupply = maxSupply;
    }

    function setMaxPerTxn(uint256 maxPerTxn) external onlyOwner {
        _maxPerTxn = maxPerTxn;
    }

    function toggleBurningEnabled() external onlyOwner {
        _isBurningEnabled = !_isBurningEnabled;
    }

    function toggleMintingEnabled() external onlyOwner {
        _isMintingEnabled = !_isMintingEnabled;
    }

    function toggleClaimingEnabled() external onlyOwner {
        _isClaimingEnabled = !_isClaimingEnabled;
    }

    function setStartSaleTimestamp(uint256 startSaleTimestamp) external onlyOwner {
        _startSaleTimestamp = startSaleTimestamp;
    }

    function setWindows(uint256 firstWindow, uint256 secondWindow, uint256 thirdWindow, uint256 fourthWindow) external onlyOwner {
        _firstWindow = firstWindow;
        _secondWindow = secondWindow;
        _thirdWindow = thirdWindow;
        _fourthWindow = fourthWindow;
    }

    function setWhiteList(address[] calldata addresses) external onlyOwner {
        uint256 count = addresses.length;
        for (uint256 i = 0; i < count; i++) {
            _whiteList[addresses[i]] = true;
        }
    }

    function _mintToken(address to) internal {
        ++_tokenId;
        uint256 newTokenId = _tokenId;

        _safeMint(to, newTokenId);
    }

    function reserveTokens(uint256 tokensToReserve) external onlyOwner {
        for (uint256 i = 0; i < tokensToReserve; i++) {
            _mintToken(msg.sender);
        }
    }

    function claim(uint256 buildTokenId, uint256 additionalTokensToClaim) external payable{
        require(block.timestamp >= _startSaleTimestamp, "sale has not started");
        require(_isClaimingEnabled, "claiming is not enabled");
        require(totalSupply() < _maxSupply, "sold out");
        require(additionalTokensToClaim + 1 <= _maxPerTxn, "max 5 tokens per txn");
        require(
            buildTokenId >= 357,
            "token ID entered is not a BUILD token"
        );
        require(
            _arfes.ownerOf(buildTokenId) == msg.sender,
            "not the owner of the BUILD token entered"
        );
        require(
            _buildTokenClaimed[buildTokenId] == false,
            "WAWI already claimed for this BUILD token"
        );
        require(
            msg.value == additionalTokensToClaim * PRICE_PER_TOKEN,
            "wrong value"
        );

        _buildTokenClaimed[buildTokenId] = true;

        for (uint256 i = 0; i < additionalTokensToClaim + 1; i++) {
            _mintToken(msg.sender);
        }

        //if we haven't set the starting index and this is the first token to be minted after the end of pre-sale, set the starting index block
        //this startingIndexBlock (which serves the purpose of randomness, because we don't know which block it will be on) will then be used to 
        //set the offset for provenance in setStartingIndex
        if (startingIndexBlock == 0 && block.timestamp >= _startSaleTimestamp) {
            startingIndexBlock = block.number;
        } 
    }

    function mint(uint256 tokensToMint) external payable {
        require(block.timestamp >= _startSaleTimestamp + _firstWindow, "minting for non build token holders has not started");
        require(_isMintingEnabled, "minting is not enabled");
        require(totalSupply() < _maxSupply, "sold out");
        require(tokensToMint <= _maxPerTxn, "max 5 tokens per txn");
        require(msg.value == tokensToMint * PRICE_PER_TOKEN, "wrong value");

        if(block.timestamp < _startSaleTimestamp + _firstWindow + _secondWindow){
            require(
                _arfw.balanceOf(msg.sender) + _arfes.balanceOf(msg.sender) > 0,
                "need at least one Firework or Festival token to mint in this window"
            );
        } else if(block.timestamp < _startSaleTimestamp + _firstWindow + _secondWindow + _thirdWindow){
            require(
                _arfw.balanceOf(msg.sender) + _arfes.balanceOf(msg.sender) + _arbo1.balanceOf(msg.sender) + _arbo2.balanceOf(msg.sender) > 0,
                "need at least one Firework, Festival, or ABAR Tree token to mint in this window"
            );
        } else if(block.timestamp < _startSaleTimestamp + _firstWindow + _secondWindow + _thirdWindow + _fourthWindow){
            require(
                (_arfw.balanceOf(msg.sender) + _arfes.balanceOf(msg.sender) + _arbo1.balanceOf(msg.sender) + _arbo2.balanceOf(msg.sender) > 0) || _whiteList[msg.sender] == true,
                "need at least one Firework, Festival, ABAR Tree token, or be on the Whitelist to mint in this window"
            );
        } 

        for (uint256 i = 0; i < tokensToMint; i++) {
            _mintToken(msg.sender);
        }
    }

    function setStartingIndex() external {
        require(startingIndex == 0, "already set");
        require(startingIndexBlock != 0, "startingIndexBlock must be set");
        
        startingIndex = uint256(blockhash(startingIndexBlock)) % (_maxSupply - _reservedArtistEdtns);
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if (block.number.sub(startingIndexBlock) > 255) {
            startingIndex = uint256(blockhash(block.number - 1)) % (_maxSupply - _reservedArtistEdtns);
        }
        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
    }
    
    function setProvenanceHash(string memory _provenanceHash) external onlyOwner {
            provenanceHash = _provenanceHash;
    }

    function burn(uint256 tokenId) public {
        require(_isBurningEnabled, "burning is not enabled");
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "caller is not owner nor approved"
        );
        _burn(tokenId);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        _abar.transfer(balance);
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseURI_;
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        _baseURI_ = newBaseURI;
    }
}

File 2 of 14 : ERC721Enumerable.sol
// 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();
    }
}

File 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 4 of 14 : SafeMath.sol
// 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. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * 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;
        }
    }
}

File 5 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC721).interfaceId
            || interfaceId == type(IERC721Metadata).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString()))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}

File 6 of 14 : IERC721Enumerable.sol
// 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);
}

File 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

File 8 of 14 : IERC721Receiver.sol
// 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);
}

File 9 of 14 : IERC721Metadata.sol
// 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);
}

File 10 of 14 : Address.sol
// 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 14 : Context.sol
// 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 13 of 14 : ERC165.sol
// 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;
    }
}

File 14 of 14 : IERC165.sol
// 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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"arbo1","type":"address"},{"internalType":"address","name":"arbo2","type":"address"},{"internalType":"address","name":"arfes","type":"address"},{"internalType":"address","name":"arfw","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_abar","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_arbo1","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_arbo2","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_arfes","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_arfw","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_buildTokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_firstWindow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fourthWindow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isBurningEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isClaimingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isMintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reservedArtistEdtns","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_secondWindow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_startSaleTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_thirdWindow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buildTokenId","type":"uint256"},{"internalType":"uint256","name":"additionalTokensToClaim","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokensToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokensToReserve","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTxn","type":"uint256"}],"name":"setMaxPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startSaleTimestamp","type":"uint256"}],"name":"setStartSaleTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"firstWindow","type":"uint256"},{"internalType":"uint256","name":"secondWindow","type":"uint256"},{"internalType":"uint256","name":"thirdWindow","type":"uint256"},{"internalType":"uint256","name":"fourthWindow","type":"uint256"}],"name":"setWindows","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleBurningEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleClaimingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMintingEnabled","outputs":[],"stateMutability":"nonpayable","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

611a0a600f556005601055600c601155601280546201010062ffff0019909116179055636193d5806013556202a3006014556201518060158190556016819055601755601880546001600160a01b0319167396f10441b25f56afe30fdb03c6853f0fec70f38917905560e0604052603660808181529062003a2b60a03980516200009291601991602090910190620001e3565b50348015620000a057600080fd5b5060405162003a6138038062003a61833981016040819052620000c391620002a6565b604080518082018252600b81526a15d85cdd19590815da5b1960aa1b6020808301918252835180850190945260048452635741574960e01b9084015281519192916200011291600091620001e3565b50805162000128906001906020840190620001e3565b50505060006200013d620001df60201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600b80546001600160a01b039586166001600160a01b031991821617909155600c805494861694821694909417909355600d805492851692841692909217909155600e80549190931691161790556200033f565b3390565b828054620001f19062000302565b90600052602060002090601f01602090048101928262000215576000855562000260565b82601f106200023057805160ff191683800117855562000260565b8280016001018555821562000260579182015b828111156200026057825182559160200191906001019062000243565b506200026e92915062000272565b5090565b5b808211156200026e576000815560010162000273565b80516001600160a01b0381168114620002a157600080fd5b919050565b60008060008060808587031215620002bc578384fd5b620002c78562000289565b9350620002d76020860162000289565b9250620002e76040860162000289565b9150620002f76060860162000289565b905092959194509250565b600181811c908216806200031757607f821691505b602082108114156200033957634e487b7160e01b600052602260045260246000fd5b50919050565b6136dc806200034f6000396000f3fe6080604052600436106103765760003560e01c80637087062a116101d1578063b6f3ce0011610102578063d6c90ba3116100a0578063e98665501161006f578063e9866550146109d3578063f2fde38b146109e8578063f6a03d2d14610a08578063fe9348c314610a1e57600080fd5b8063d6c90ba314610949578063d82871631461095f578063e36d649814610974578063e985e9c51461098a57600080fd5b8063c6ab67a3116100dc578063c6ab67a3146108de578063c87b56dd146108f3578063cb774d4714610913578063d031370b1461092957600080fd5b8063b6f3ce001461088b578063b88d4fde146108ab578063c3490263146108cb57600080fd5b806383b9272b1161016f578063a0712d6811610149578063a0712d6814610819578063a22cb4651461082c578063a5cb71fd1461084c578063af706b0d1461086b57600080fd5b806383b9272b146107cc5780638da5cb5b146107e657806395d89b411461080457600080fd5b806371da6237116101ab57806371da62371461075b578063775b9c131461077b5780637a5347e41461079b578063833b9499146107b157600080fd5b80637087062a1461070657806370a0823114610726578063715018a61461074657600080fd5b80632f745c59116102ab57806345aa6201116102495780635196e060116102235780635196e0601461069157806355f804b3146106a65780636352211e146106c65780636f8b44b0146106e657600080fd5b806345aa6201146106315780634f6ccce7146106515780634ffc1c741461067157600080fd5b80633da27925116102855780633da27925146105c65780633ee501b4146105dc57806342842e0e146105f157806342966c681461061157600080fd5b80632f745c5914610571578063362cd5d0146105915780633ccfd60b146105b157600080fd5b806318160ddd1161031857806322f4596f116102f257806322f4596f146104eb57806323b872dd1461050157806327a81180146105215780632dd03c721461054157600080fd5b806318160ddd146104a0578063199ce2ff146104b55780631b393e33146104cb57600080fd5b8063081812fc11610354578063081812fc14610402578063095ea7b31461043a5780630e0d41681461045c578063109695231461048057600080fd5b806301ffc9a71461037b57806305d60ffb146103b057806306fdde03146103e0575b600080fd5b34801561038757600080fd5b5061039b6103963660046132be565b610a34565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b5061039b6103cb3660046130c5565b601f6020526000908152604090205460ff1681565b3480156103ec57600080fd5b506103f5610a5f565b6040516103a79190613456565b34801561040e57600080fd5b5061042261041d36600461333c565b610af1565b6040516001600160a01b0390911681526020016103a7565b34801561044657600080fd5b5061045a610455366004613223565b610b8b565b005b34801561046857600080fd5b5061047260165481565b6040519081526020016103a7565b34801561048c57600080fd5b5061045a61049b3660046132f6565b610ca1565b3480156104ac57600080fd5b50600854610472565b3480156104c157600080fd5b5061047260175481565b3480156104d757600080fd5b50600b54610422906001600160a01b031681565b3480156104f757600080fd5b50610472600f5481565b34801561050d57600080fd5b5061045a61051c366004613135565b610ce2565b34801561052d57600080fd5b5061045a61053c36600461338d565b610d14565b34801561054d57600080fd5b5061039b61055c36600461333c565b601e6020526000908152604090205460ff1681565b34801561057d57600080fd5b5061047261058c366004613223565b610d52565b34801561059d57600080fd5b50600d54610422906001600160a01b031681565b3480156105bd57600080fd5b5061045a610de8565b3480156105d257600080fd5b5061047260115481565b3480156105e857600080fd5b5061045a610e4c565b3480156105fd57600080fd5b5061045a61060c366004613135565b610e8a565b34801561061d57600080fd5b5061045a61062c36600461333c565b610ea5565b34801561063d57600080fd5b50601854610422906001600160a01b031681565b34801561065d57600080fd5b5061047261066c36600461333c565b610f51565b34801561067d57600080fd5b5060125461039b9062010000900460ff1681565b34801561069d57600080fd5b5061045a610ff2565b3480156106b257600080fd5b5061045a6106c13660046132f6565b611039565b3480156106d257600080fd5b506104226106e136600461333c565b611076565b3480156106f257600080fd5b5061045a61070136600461333c565b6110ed565b34801561071257600080fd5b50600c54610422906001600160a01b031681565b34801561073257600080fd5b506104726107413660046130c5565b61111c565b34801561075257600080fd5b5061045a6111a3565b34801561076757600080fd5b5061045a61077636600461333c565b611217565b34801561078757600080fd5b5061045a61079636600461324e565b611246565b3480156107a757600080fd5b5061047260105481565b3480156107bd57600080fd5b5061047266f8b0a10e47000081565b3480156107d857600080fd5b5060125461039b9060ff1681565b3480156107f257600080fd5b50600a546001600160a01b0316610422565b34801561081057600080fd5b506103f56112f7565b61045a61082736600461333c565b611306565b34801561083857600080fd5b5061045a6108473660046131f2565b611c4a565b34801561085857600080fd5b5060125461039b90610100900460ff1681565b34801561087757600080fd5b50600e54610422906001600160a01b031681565b34801561089757600080fd5b5061045a6108a636600461333c565b611d0f565b3480156108b757600080fd5b5061045a6108c6366004613175565b611d3e565b61045a6108d936600461336c565b611d70565b3480156108ea57600080fd5b506103f561210a565b3480156108ff57600080fd5b506103f561090e36600461333c565b612198565b34801561091f57600080fd5b50610472601c5481565b34801561093557600080fd5b5061045a61094436600461333c565b612273565b34801561095557600080fd5b5061047260145481565b34801561096b57600080fd5b5061045a6122c3565b34801561098057600080fd5b50610472601b5481565b34801561099657600080fd5b5061039b6109a53660046130fd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109df57600080fd5b5061045a61230c565b3480156109f457600080fd5b5061045a610a033660046130c5565b612416565b348015610a1457600080fd5b5061047260135481565b348015610a2a57600080fd5b5061047260155481565b60006001600160e01b0319821663780e9d6360e01b1480610a595750610a5982612501565b92915050565b606060008054610a6e906135cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a906135cf565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b6f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b9682611076565b9050806001600160a01b0316836001600160a01b03161415610c045760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b66565b336001600160a01b0382161480610c205750610c2081336109a5565b610c925760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b66565b610c9c8383612551565b505050565b600a546001600160a01b03163314610ccb5760405162461bcd60e51b8152600401610b66906134bb565b8051610cde90601d906020840190612fb6565b5050565b610ced335b826125bf565b610d095760405162461bcd60e51b8152600401610b66906134f0565b610c9c8383836126b6565b600a546001600160a01b03163314610d3e5760405162461bcd60e51b8152600401610b66906134bb565b601493909355601591909155601655601755565b6000610d5d8361111c565b8210610dbf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b66565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e125760405162461bcd60e51b8152600401610b66906134bb565b60185460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610cde573d6000803e3d6000fd5b600a546001600160a01b03163314610e765760405162461bcd60e51b8152600401610b66906134bb565b6012805460ff19811660ff90911615179055565b610c9c83838360405180602001604052806000815250611d3e565b60125460ff16610ef05760405162461bcd60e51b8152602060048201526016602482015275189d5c9b9a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610b66565b610ef933610ce7565b610f455760405162461bcd60e51b815260206004820181905260248201527f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665646044820152606401610b66565b610f4e81612861565b50565b6000610f5c60085490565b8210610fbf5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b66565b60088281548110610fe057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b0316331461101c5760405162461bcd60e51b8152600401610b66906134bb565b6012805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146110635760405162461bcd60e51b8152600401610b66906134bb565b8051610cde906019906020840190612fb6565b6000818152600260205260408120546001600160a01b031680610a595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b66565b600a546001600160a01b031633146111175760405162461bcd60e51b8152600401610b66906134bb565b600f55565b60006001600160a01b0382166111875760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b66565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111cd5760405162461bcd60e51b8152600401610b66906134bb565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146112415760405162461bcd60e51b8152600401610b66906134bb565b601355565b600a546001600160a01b031633146112705760405162461bcd60e51b8152600401610b66906134bb565b8060005b818110156112f1576001601f60008686858181106112a257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906112b791906130c5565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806112e98161360a565b915050611274565b50505050565b606060018054610a6e906135cf565b6014546013546113169190613541565b4210156113815760405162461bcd60e51b815260206004820152603360248201527f6d696e74696e6720666f72206e6f6e206275696c6420746f6b656e20686f6c64604482015272195c9cc81a185cc81b9bdd081cdd185c9d1959606a1b6064820152608401610b66565b601254610100900460ff166113d15760405162461bcd60e51b81526020600482015260166024820152751b5a5b9d1a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610b66565b600f546008541061140f5760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b6044820152606401610b66565b6010548111156114585760405162461bcd60e51b815260206004820152601460248201527336b0bc101a903a37b5b2b739903832b9103a3c3760611b6044820152606401610b66565b61146966f8b0a10e4700008261356d565b34146114a55760405162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b6044820152606401610b66565b6015546014546013546114b89190613541565b6114c29190613541565b42101561164e57600d546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561150d57600080fd5b505afa158015611521573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115459190613354565b600e546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561158857600080fd5b505afa15801561159c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c09190613354565b6115ca9190613541565b116116495760405162461bcd60e51b815260206004820152604360248201527f6e656564206174206c65617374206f6e652046697265776f726b206f7220466560448201527f73746976616c20746f6b656e20746f206d696e7420696e20746869732077696e606482015262646f7760e81b608482015260a401610b66565b611c24565b6016546015546014546013546116649190613541565b61166e9190613541565b6116789190613541565b42101561191557600c546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156116c357600080fd5b505afa1580156116d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fb9190613354565b600b546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561173e57600080fd5b505afa158015611752573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117769190613354565b600d546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b1580156117b957600080fd5b505afa1580156117cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f19190613354565b600e546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561183457600080fd5b505afa158015611848573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186c9190613354565b6118769190613541565b6118809190613541565b61188a9190613541565b116116495760405162461bcd60e51b815260206004820152604f60248201527f6e656564206174206c65617374206f6e652046697265776f726b2c204665737460448201527f6976616c2c206f722041424152205472656520746f6b656e20746f206d696e7460648201526e20696e20746869732077696e646f7760881b608482015260a401610b66565b60175460165460155460145460135461192e9190613541565b6119389190613541565b6119429190613541565b61194c9190613541565b421015611c2457600c546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561199757600080fd5b505afa1580156119ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cf9190613354565b600b546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015611a1257600080fd5b505afa158015611a26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a4a9190613354565b600d546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015611a8d57600080fd5b505afa158015611aa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac59190613354565b600e546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015611b0857600080fd5b505afa158015611b1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b409190613354565b611b4a9190613541565b611b549190613541565b611b5e9190613541565b1180611b7e5750336000908152601f602052604090205460ff1615156001145b611c245760405162461bcd60e51b8152602060048201526064602482018190527f6e656564206174206c65617374206f6e652046697265776f726b2c204665737460448301527f6976616c2c2041424152205472656520746f6b656e2c206f72206265206f6e20908201527f7468652057686974656c69737420746f206d696e7420696e20746869732077696084820152636e646f7760e01b60a482015260c401610b66565b60005b81811015610cde57611c3833612908565b80611c428161360a565b915050611c27565b6001600160a01b038216331415611ca35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b66565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611d395760405162461bcd60e51b8152600401610b66906134bb565b601055565b611d4833836125bf565b611d645760405162461bcd60e51b8152600401610b66906134f0565b6112f184848484612928565b601354421015611db95760405162461bcd60e51b81526020600482015260146024820152731cd85b19481a185cc81b9bdd081cdd185c9d195960621b6044820152606401610b66565b60125462010000900460ff16611e115760405162461bcd60e51b815260206004820152601760248201527f636c61696d696e67206973206e6f7420656e61626c65640000000000000000006044820152606401610b66565b600f5460085410611e4f5760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b6044820152606401610b66565b601054611e5d826001613541565b1115611ea25760405162461bcd60e51b815260206004820152601460248201527336b0bc101a903a37b5b2b739903832b9103a3c3760611b6044820152606401610b66565b610165821015611f025760405162461bcd60e51b815260206004820152602560248201527f746f6b656e20494420656e7465726564206973206e6f742061204255494c44206044820152643a37b5b2b760d91b6064820152608401610b66565b600d546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e9060240160206040518083038186803b158015611f4657600080fd5b505afa158015611f5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f7e91906130e1565b6001600160a01b031614611fe55760405162461bcd60e51b815260206004820152602860248201527f6e6f7420746865206f776e6572206f6620746865204255494c4420746f6b656e60448201526708195b9d195c995960c21b6064820152608401610b66565b6000828152601e602052604090205460ff16156120565760405162461bcd60e51b815260206004820152602960248201527f5741574920616c726561647920636c61696d656420666f72207468697320425560448201526824a622103a37b5b2b760b91b6064820152608401610b66565b61206766f8b0a10e4700008261356d565b34146120a35760405162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b6044820152606401610b66565b6000828152601e60205260408120805460ff191660011790555b6120c8826001613541565b8110156120ea576120d833612908565b806120e28161360a565b9150506120bd565b50601b541580156120fd57506013544210155b15610cde5743601b555050565b601d8054612117906135cf565b80601f0160208091040260200160405190810160405280929190818152602001828054612143906135cf565b80156121905780601f1061216557610100808354040283529160200191612190565b820191906000526020600020905b81548152906001019060200180831161217357829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166122175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b66565b600061222161295b565b90506000815111612241576040518060200160405280600081525061226c565b8061224b8461296a565b60405160200161225c9291906133ea565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461229d5760405162461bcd60e51b8152600401610b66906134bb565b60005b81811015610cde576122b133612908565b806122bb8161360a565b9150506122a0565b600a546001600160a01b031633146122ed5760405162461bcd60e51b8152600401610b66906134bb565b6012805462ff0000198116620100009182900460ff1615909102179055565b601c541561234a5760405162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b6044820152606401610b66565b601b546123995760405162461bcd60e51b815260206004820152601e60248201527f7374617274696e67496e646578426c6f636b206d7573742062652073657400006044820152606401610b66565b601154600f546123a9919061358c565b601b546123b7919040613625565b601c55601b5460ff906123cb904390612a84565b11156123fb57601154600f546123e1919061358c565b6123ec60014361358c565b6123f7919040613625565b601c555b601c5461241457601c54612410906001612a90565b601c555b565b600a546001600160a01b031633146124405760405162461bcd60e51b8152600401610b66906134bb565b6001600160a01b0381166124a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b66565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061253257506001600160e01b03198216635b5e139f60e01b145b80610a5957506301ffc9a760e01b6001600160e01b0319831614610a59565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061258682611076565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166126385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b66565b600061264383611076565b9050806001600160a01b0316846001600160a01b0316148061267e5750836001600160a01b031661267384610af1565b6001600160a01b0316145b806126ae57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166126c982611076565b6001600160a01b0316146127315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b66565b6001600160a01b0382166127935760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b66565b61279e838383612a9c565b6127a9600082612551565b6001600160a01b03831660009081526003602052604081208054600192906127d290849061358c565b90915550506001600160a01b0382166000908152600360205260408120805460019290612800908490613541565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061286c82611076565b905061287a81600084612a9c565b612885600083612551565b6001600160a01b03811660009081526003602052604081208054600192906128ae90849061358c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b601a600081546129179061360a565b90915550601a54610cde8282612b54565b6129338484846126b6565b61293f84848484612b6e565b6112f15760405162461bcd60e51b8152600401610b6690613469565b606060198054610a6e906135cf565b60608161298e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129b857806129a28161360a565b91506129b19050600a83613559565b9150612992565b60008167ffffffffffffffff8111156129e157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a0b576020820181803683370190505b5090505b84156126ae57612a2060018361358c565b9150612a2d600a86613625565b612a38906030613541565b60f81b818381518110612a5b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612a7d600a86613559565b9450612a0f565b600061226c828461358c565b600061226c8284613541565b6001600160a01b038316612af757612af281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612b1a565b816001600160a01b0316836001600160a01b031614612b1a57612b1a8382612c7b565b6001600160a01b038216612b3157610c9c81612d18565b826001600160a01b0316826001600160a01b031614610c9c57610c9c8282612df1565b610cde828260405180602001604052806000815250612e35565b60006001600160a01b0384163b15612c7057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612bb2903390899088908890600401613419565b602060405180830381600087803b158015612bcc57600080fd5b505af1925050508015612bfc575060408051601f3d908101601f19168201909252612bf9918101906132da565b60015b612c56573d808015612c2a576040519150601f19603f3d011682016040523d82523d6000602084013e612c2f565b606091505b508051612c4e5760405162461bcd60e51b8152600401610b6690613469565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506126ae565b506001949350505050565b60006001612c888461111c565b612c92919061358c565b600083815260076020526040902054909150808214612ce5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612d2a9060019061358c565b60008381526009602052604081205460088054939450909284908110612d6057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612d8f57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612dd557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612dfc8361111c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b612e3f8383612e68565b612e4c6000848484612b6e565b610c9c5760405162461bcd60e51b8152600401610b6690613469565b6001600160a01b038216612ebe5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b66565b6000818152600260205260409020546001600160a01b031615612f235760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b66565b612f2f60008383612a9c565b6001600160a01b0382166000908152600360205260408120805460019290612f58908490613541565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612fc2906135cf565b90600052602060002090601f016020900481019282612fe4576000855561302a565b82601f10612ffd57805160ff191683800117855561302a565b8280016001018555821561302a579182015b8281111561302a57825182559160200191906001019061300f565b5061303692915061303a565b5090565b5b80821115613036576000815560010161303b565b600067ffffffffffffffff8084111561306a5761306a613665565b604051601f8501601f19908116603f0116810190828211818310171561309257613092613665565b816040528093508581528686860111156130ab57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156130d6578081fd5b813561226c8161367b565b6000602082840312156130f2578081fd5b815161226c8161367b565b6000806040838503121561310f578081fd5b823561311a8161367b565b9150602083013561312a8161367b565b809150509250929050565b600080600060608486031215613149578081fd5b83356131548161367b565b925060208401356131648161367b565b929592945050506040919091013590565b6000806000806080858703121561318a578081fd5b84356131958161367b565b935060208501356131a58161367b565b925060408501359150606085013567ffffffffffffffff8111156131c7578182fd5b8501601f810187136131d7578182fd5b6131e68782356020840161304f565b91505092959194509250565b60008060408385031215613204578182fd5b823561320f8161367b565b91506020830135801515811461312a578182fd5b60008060408385031215613235578182fd5b82356132408161367b565b946020939093013593505050565b60008060208385031215613260578182fd5b823567ffffffffffffffff80821115613277578384fd5b818501915085601f83011261328a578384fd5b813581811115613298578485fd5b8660208260051b85010111156132ac578485fd5b60209290920196919550909350505050565b6000602082840312156132cf578081fd5b813561226c81613690565b6000602082840312156132eb578081fd5b815161226c81613690565b600060208284031215613307578081fd5b813567ffffffffffffffff81111561331d578182fd5b8201601f8101841361332d578182fd5b6126ae8482356020840161304f565b60006020828403121561334d578081fd5b5035919050565b600060208284031215613365578081fd5b5051919050565b6000806040838503121561337e578182fd5b50508035926020909101359150565b600080600080608085870312156133a2578182fd5b5050823594602084013594506040840135936060013592509050565b600081518084526133d68160208601602086016135a3565b601f01601f19169290920160200192915050565b600083516133fc8184602088016135a3565b8351908301906134108183602088016135a3565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061344c908301846133be565b9695505050505050565b60208152600061226c60208301846133be565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561355457613554613639565b500190565b6000826135685761356861364f565b500490565b600081600019048311821515161561358757613587613639565b500290565b60008282101561359e5761359e613639565b500390565b60005b838110156135be5781810151838201526020016135a6565b838111156112f15750506000910152565b600181811c908216806135e357607f821691505b6020821081141561360457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561361e5761361e613639565b5060010190565b6000826136345761363461364f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f4e57600080fd5b6001600160e01b031981168114610f4e57600080fdfea2646970667358221220eb110aa450e65210260f7bf05ed9ae394007745c56d8c6e7a24d170bfe9b9d3464736f6c63430008040033697066733a2f2f516d57316975436b456356656b4a48745731775234533244557538517673767766696677636833776152613333662f000000000000000000000000e731af8f99d41f0dfb081c3b85649e1bab9d3bd4000000000000000000000000799cae083f11bd1d655b5abfc7f8f33646c27c5c0000000000000000000000009ecc667b19f36c712e99f600b8909f6b82dd37730000000000000000000000008c341f23501e99a9073b4d4835229ba78bedbff7

Deployed Bytecode

0x6080604052600436106103765760003560e01c80637087062a116101d1578063b6f3ce0011610102578063d6c90ba3116100a0578063e98665501161006f578063e9866550146109d3578063f2fde38b146109e8578063f6a03d2d14610a08578063fe9348c314610a1e57600080fd5b8063d6c90ba314610949578063d82871631461095f578063e36d649814610974578063e985e9c51461098a57600080fd5b8063c6ab67a3116100dc578063c6ab67a3146108de578063c87b56dd146108f3578063cb774d4714610913578063d031370b1461092957600080fd5b8063b6f3ce001461088b578063b88d4fde146108ab578063c3490263146108cb57600080fd5b806383b9272b1161016f578063a0712d6811610149578063a0712d6814610819578063a22cb4651461082c578063a5cb71fd1461084c578063af706b0d1461086b57600080fd5b806383b9272b146107cc5780638da5cb5b146107e657806395d89b411461080457600080fd5b806371da6237116101ab57806371da62371461075b578063775b9c131461077b5780637a5347e41461079b578063833b9499146107b157600080fd5b80637087062a1461070657806370a0823114610726578063715018a61461074657600080fd5b80632f745c59116102ab57806345aa6201116102495780635196e060116102235780635196e0601461069157806355f804b3146106a65780636352211e146106c65780636f8b44b0146106e657600080fd5b806345aa6201146106315780634f6ccce7146106515780634ffc1c741461067157600080fd5b80633da27925116102855780633da27925146105c65780633ee501b4146105dc57806342842e0e146105f157806342966c681461061157600080fd5b80632f745c5914610571578063362cd5d0146105915780633ccfd60b146105b157600080fd5b806318160ddd1161031857806322f4596f116102f257806322f4596f146104eb57806323b872dd1461050157806327a81180146105215780632dd03c721461054157600080fd5b806318160ddd146104a0578063199ce2ff146104b55780631b393e33146104cb57600080fd5b8063081812fc11610354578063081812fc14610402578063095ea7b31461043a5780630e0d41681461045c578063109695231461048057600080fd5b806301ffc9a71461037b57806305d60ffb146103b057806306fdde03146103e0575b600080fd5b34801561038757600080fd5b5061039b6103963660046132be565b610a34565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b5061039b6103cb3660046130c5565b601f6020526000908152604090205460ff1681565b3480156103ec57600080fd5b506103f5610a5f565b6040516103a79190613456565b34801561040e57600080fd5b5061042261041d36600461333c565b610af1565b6040516001600160a01b0390911681526020016103a7565b34801561044657600080fd5b5061045a610455366004613223565b610b8b565b005b34801561046857600080fd5b5061047260165481565b6040519081526020016103a7565b34801561048c57600080fd5b5061045a61049b3660046132f6565b610ca1565b3480156104ac57600080fd5b50600854610472565b3480156104c157600080fd5b5061047260175481565b3480156104d757600080fd5b50600b54610422906001600160a01b031681565b3480156104f757600080fd5b50610472600f5481565b34801561050d57600080fd5b5061045a61051c366004613135565b610ce2565b34801561052d57600080fd5b5061045a61053c36600461338d565b610d14565b34801561054d57600080fd5b5061039b61055c36600461333c565b601e6020526000908152604090205460ff1681565b34801561057d57600080fd5b5061047261058c366004613223565b610d52565b34801561059d57600080fd5b50600d54610422906001600160a01b031681565b3480156105bd57600080fd5b5061045a610de8565b3480156105d257600080fd5b5061047260115481565b3480156105e857600080fd5b5061045a610e4c565b3480156105fd57600080fd5b5061045a61060c366004613135565b610e8a565b34801561061d57600080fd5b5061045a61062c36600461333c565b610ea5565b34801561063d57600080fd5b50601854610422906001600160a01b031681565b34801561065d57600080fd5b5061047261066c36600461333c565b610f51565b34801561067d57600080fd5b5060125461039b9062010000900460ff1681565b34801561069d57600080fd5b5061045a610ff2565b3480156106b257600080fd5b5061045a6106c13660046132f6565b611039565b3480156106d257600080fd5b506104226106e136600461333c565b611076565b3480156106f257600080fd5b5061045a61070136600461333c565b6110ed565b34801561071257600080fd5b50600c54610422906001600160a01b031681565b34801561073257600080fd5b506104726107413660046130c5565b61111c565b34801561075257600080fd5b5061045a6111a3565b34801561076757600080fd5b5061045a61077636600461333c565b611217565b34801561078757600080fd5b5061045a61079636600461324e565b611246565b3480156107a757600080fd5b5061047260105481565b3480156107bd57600080fd5b5061047266f8b0a10e47000081565b3480156107d857600080fd5b5060125461039b9060ff1681565b3480156107f257600080fd5b50600a546001600160a01b0316610422565b34801561081057600080fd5b506103f56112f7565b61045a61082736600461333c565b611306565b34801561083857600080fd5b5061045a6108473660046131f2565b611c4a565b34801561085857600080fd5b5060125461039b90610100900460ff1681565b34801561087757600080fd5b50600e54610422906001600160a01b031681565b34801561089757600080fd5b5061045a6108a636600461333c565b611d0f565b3480156108b757600080fd5b5061045a6108c6366004613175565b611d3e565b61045a6108d936600461336c565b611d70565b3480156108ea57600080fd5b506103f561210a565b3480156108ff57600080fd5b506103f561090e36600461333c565b612198565b34801561091f57600080fd5b50610472601c5481565b34801561093557600080fd5b5061045a61094436600461333c565b612273565b34801561095557600080fd5b5061047260145481565b34801561096b57600080fd5b5061045a6122c3565b34801561098057600080fd5b50610472601b5481565b34801561099657600080fd5b5061039b6109a53660046130fd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109df57600080fd5b5061045a61230c565b3480156109f457600080fd5b5061045a610a033660046130c5565b612416565b348015610a1457600080fd5b5061047260135481565b348015610a2a57600080fd5b5061047260155481565b60006001600160e01b0319821663780e9d6360e01b1480610a595750610a5982612501565b92915050565b606060008054610a6e906135cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a906135cf565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b6f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b9682611076565b9050806001600160a01b0316836001600160a01b03161415610c045760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b66565b336001600160a01b0382161480610c205750610c2081336109a5565b610c925760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b66565b610c9c8383612551565b505050565b600a546001600160a01b03163314610ccb5760405162461bcd60e51b8152600401610b66906134bb565b8051610cde90601d906020840190612fb6565b5050565b610ced335b826125bf565b610d095760405162461bcd60e51b8152600401610b66906134f0565b610c9c8383836126b6565b600a546001600160a01b03163314610d3e5760405162461bcd60e51b8152600401610b66906134bb565b601493909355601591909155601655601755565b6000610d5d8361111c565b8210610dbf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b66565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e125760405162461bcd60e51b8152600401610b66906134bb565b60185460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610cde573d6000803e3d6000fd5b600a546001600160a01b03163314610e765760405162461bcd60e51b8152600401610b66906134bb565b6012805460ff19811660ff90911615179055565b610c9c83838360405180602001604052806000815250611d3e565b60125460ff16610ef05760405162461bcd60e51b8152602060048201526016602482015275189d5c9b9a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610b66565b610ef933610ce7565b610f455760405162461bcd60e51b815260206004820181905260248201527f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665646044820152606401610b66565b610f4e81612861565b50565b6000610f5c60085490565b8210610fbf5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b66565b60088281548110610fe057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b0316331461101c5760405162461bcd60e51b8152600401610b66906134bb565b6012805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146110635760405162461bcd60e51b8152600401610b66906134bb565b8051610cde906019906020840190612fb6565b6000818152600260205260408120546001600160a01b031680610a595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b66565b600a546001600160a01b031633146111175760405162461bcd60e51b8152600401610b66906134bb565b600f55565b60006001600160a01b0382166111875760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b66565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111cd5760405162461bcd60e51b8152600401610b66906134bb565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146112415760405162461bcd60e51b8152600401610b66906134bb565b601355565b600a546001600160a01b031633146112705760405162461bcd60e51b8152600401610b66906134bb565b8060005b818110156112f1576001601f60008686858181106112a257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906112b791906130c5565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806112e98161360a565b915050611274565b50505050565b606060018054610a6e906135cf565b6014546013546113169190613541565b4210156113815760405162461bcd60e51b815260206004820152603360248201527f6d696e74696e6720666f72206e6f6e206275696c6420746f6b656e20686f6c64604482015272195c9cc81a185cc81b9bdd081cdd185c9d1959606a1b6064820152608401610b66565b601254610100900460ff166113d15760405162461bcd60e51b81526020600482015260166024820152751b5a5b9d1a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610b66565b600f546008541061140f5760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b6044820152606401610b66565b6010548111156114585760405162461bcd60e51b815260206004820152601460248201527336b0bc101a903a37b5b2b739903832b9103a3c3760611b6044820152606401610b66565b61146966f8b0a10e4700008261356d565b34146114a55760405162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b6044820152606401610b66565b6015546014546013546114b89190613541565b6114c29190613541565b42101561164e57600d546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561150d57600080fd5b505afa158015611521573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115459190613354565b600e546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561158857600080fd5b505afa15801561159c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c09190613354565b6115ca9190613541565b116116495760405162461bcd60e51b815260206004820152604360248201527f6e656564206174206c65617374206f6e652046697265776f726b206f7220466560448201527f73746976616c20746f6b656e20746f206d696e7420696e20746869732077696e606482015262646f7760e81b608482015260a401610b66565b611c24565b6016546015546014546013546116649190613541565b61166e9190613541565b6116789190613541565b42101561191557600c546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156116c357600080fd5b505afa1580156116d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fb9190613354565b600b546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561173e57600080fd5b505afa158015611752573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117769190613354565b600d546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b1580156117b957600080fd5b505afa1580156117cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f19190613354565b600e546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561183457600080fd5b505afa158015611848573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186c9190613354565b6118769190613541565b6118809190613541565b61188a9190613541565b116116495760405162461bcd60e51b815260206004820152604f60248201527f6e656564206174206c65617374206f6e652046697265776f726b2c204665737460448201527f6976616c2c206f722041424152205472656520746f6b656e20746f206d696e7460648201526e20696e20746869732077696e646f7760881b608482015260a401610b66565b60175460165460155460145460135461192e9190613541565b6119389190613541565b6119429190613541565b61194c9190613541565b421015611c2457600c546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561199757600080fd5b505afa1580156119ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cf9190613354565b600b546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015611a1257600080fd5b505afa158015611a26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a4a9190613354565b600d546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015611a8d57600080fd5b505afa158015611aa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac59190613354565b600e546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015611b0857600080fd5b505afa158015611b1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b409190613354565b611b4a9190613541565b611b549190613541565b611b5e9190613541565b1180611b7e5750336000908152601f602052604090205460ff1615156001145b611c245760405162461bcd60e51b8152602060048201526064602482018190527f6e656564206174206c65617374206f6e652046697265776f726b2c204665737460448301527f6976616c2c2041424152205472656520746f6b656e2c206f72206265206f6e20908201527f7468652057686974656c69737420746f206d696e7420696e20746869732077696084820152636e646f7760e01b60a482015260c401610b66565b60005b81811015610cde57611c3833612908565b80611c428161360a565b915050611c27565b6001600160a01b038216331415611ca35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b66565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611d395760405162461bcd60e51b8152600401610b66906134bb565b601055565b611d4833836125bf565b611d645760405162461bcd60e51b8152600401610b66906134f0565b6112f184848484612928565b601354421015611db95760405162461bcd60e51b81526020600482015260146024820152731cd85b19481a185cc81b9bdd081cdd185c9d195960621b6044820152606401610b66565b60125462010000900460ff16611e115760405162461bcd60e51b815260206004820152601760248201527f636c61696d696e67206973206e6f7420656e61626c65640000000000000000006044820152606401610b66565b600f5460085410611e4f5760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b6044820152606401610b66565b601054611e5d826001613541565b1115611ea25760405162461bcd60e51b815260206004820152601460248201527336b0bc101a903a37b5b2b739903832b9103a3c3760611b6044820152606401610b66565b610165821015611f025760405162461bcd60e51b815260206004820152602560248201527f746f6b656e20494420656e7465726564206973206e6f742061204255494c44206044820152643a37b5b2b760d91b6064820152608401610b66565b600d546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e9060240160206040518083038186803b158015611f4657600080fd5b505afa158015611f5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f7e91906130e1565b6001600160a01b031614611fe55760405162461bcd60e51b815260206004820152602860248201527f6e6f7420746865206f776e6572206f6620746865204255494c4420746f6b656e60448201526708195b9d195c995960c21b6064820152608401610b66565b6000828152601e602052604090205460ff16156120565760405162461bcd60e51b815260206004820152602960248201527f5741574920616c726561647920636c61696d656420666f72207468697320425560448201526824a622103a37b5b2b760b91b6064820152608401610b66565b61206766f8b0a10e4700008261356d565b34146120a35760405162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b6044820152606401610b66565b6000828152601e60205260408120805460ff191660011790555b6120c8826001613541565b8110156120ea576120d833612908565b806120e28161360a565b9150506120bd565b50601b541580156120fd57506013544210155b15610cde5743601b555050565b601d8054612117906135cf565b80601f0160208091040260200160405190810160405280929190818152602001828054612143906135cf565b80156121905780601f1061216557610100808354040283529160200191612190565b820191906000526020600020905b81548152906001019060200180831161217357829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166122175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b66565b600061222161295b565b90506000815111612241576040518060200160405280600081525061226c565b8061224b8461296a565b60405160200161225c9291906133ea565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461229d5760405162461bcd60e51b8152600401610b66906134bb565b60005b81811015610cde576122b133612908565b806122bb8161360a565b9150506122a0565b600a546001600160a01b031633146122ed5760405162461bcd60e51b8152600401610b66906134bb565b6012805462ff0000198116620100009182900460ff1615909102179055565b601c541561234a5760405162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b6044820152606401610b66565b601b546123995760405162461bcd60e51b815260206004820152601e60248201527f7374617274696e67496e646578426c6f636b206d7573742062652073657400006044820152606401610b66565b601154600f546123a9919061358c565b601b546123b7919040613625565b601c55601b5460ff906123cb904390612a84565b11156123fb57601154600f546123e1919061358c565b6123ec60014361358c565b6123f7919040613625565b601c555b601c5461241457601c54612410906001612a90565b601c555b565b600a546001600160a01b031633146124405760405162461bcd60e51b8152600401610b66906134bb565b6001600160a01b0381166124a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b66565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061253257506001600160e01b03198216635b5e139f60e01b145b80610a5957506301ffc9a760e01b6001600160e01b0319831614610a59565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061258682611076565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166126385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b66565b600061264383611076565b9050806001600160a01b0316846001600160a01b0316148061267e5750836001600160a01b031661267384610af1565b6001600160a01b0316145b806126ae57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166126c982611076565b6001600160a01b0316146127315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b66565b6001600160a01b0382166127935760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b66565b61279e838383612a9c565b6127a9600082612551565b6001600160a01b03831660009081526003602052604081208054600192906127d290849061358c565b90915550506001600160a01b0382166000908152600360205260408120805460019290612800908490613541565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061286c82611076565b905061287a81600084612a9c565b612885600083612551565b6001600160a01b03811660009081526003602052604081208054600192906128ae90849061358c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b601a600081546129179061360a565b90915550601a54610cde8282612b54565b6129338484846126b6565b61293f84848484612b6e565b6112f15760405162461bcd60e51b8152600401610b6690613469565b606060198054610a6e906135cf565b60608161298e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129b857806129a28161360a565b91506129b19050600a83613559565b9150612992565b60008167ffffffffffffffff8111156129e157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a0b576020820181803683370190505b5090505b84156126ae57612a2060018361358c565b9150612a2d600a86613625565b612a38906030613541565b60f81b818381518110612a5b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612a7d600a86613559565b9450612a0f565b600061226c828461358c565b600061226c8284613541565b6001600160a01b038316612af757612af281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612b1a565b816001600160a01b0316836001600160a01b031614612b1a57612b1a8382612c7b565b6001600160a01b038216612b3157610c9c81612d18565b826001600160a01b0316826001600160a01b031614610c9c57610c9c8282612df1565b610cde828260405180602001604052806000815250612e35565b60006001600160a01b0384163b15612c7057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612bb2903390899088908890600401613419565b602060405180830381600087803b158015612bcc57600080fd5b505af1925050508015612bfc575060408051601f3d908101601f19168201909252612bf9918101906132da565b60015b612c56573d808015612c2a576040519150601f19603f3d011682016040523d82523d6000602084013e612c2f565b606091505b508051612c4e5760405162461bcd60e51b8152600401610b6690613469565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506126ae565b506001949350505050565b60006001612c888461111c565b612c92919061358c565b600083815260076020526040902054909150808214612ce5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612d2a9060019061358c565b60008381526009602052604081205460088054939450909284908110612d6057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612d8f57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612dd557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612dfc8361111c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b612e3f8383612e68565b612e4c6000848484612b6e565b610c9c5760405162461bcd60e51b8152600401610b6690613469565b6001600160a01b038216612ebe5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b66565b6000818152600260205260409020546001600160a01b031615612f235760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b66565b612f2f60008383612a9c565b6001600160a01b0382166000908152600360205260408120805460019290612f58908490613541565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612fc2906135cf565b90600052602060002090601f016020900481019282612fe4576000855561302a565b82601f10612ffd57805160ff191683800117855561302a565b8280016001018555821561302a579182015b8281111561302a57825182559160200191906001019061300f565b5061303692915061303a565b5090565b5b80821115613036576000815560010161303b565b600067ffffffffffffffff8084111561306a5761306a613665565b604051601f8501601f19908116603f0116810190828211818310171561309257613092613665565b816040528093508581528686860111156130ab57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156130d6578081fd5b813561226c8161367b565b6000602082840312156130f2578081fd5b815161226c8161367b565b6000806040838503121561310f578081fd5b823561311a8161367b565b9150602083013561312a8161367b565b809150509250929050565b600080600060608486031215613149578081fd5b83356131548161367b565b925060208401356131648161367b565b929592945050506040919091013590565b6000806000806080858703121561318a578081fd5b84356131958161367b565b935060208501356131a58161367b565b925060408501359150606085013567ffffffffffffffff8111156131c7578182fd5b8501601f810187136131d7578182fd5b6131e68782356020840161304f565b91505092959194509250565b60008060408385031215613204578182fd5b823561320f8161367b565b91506020830135801515811461312a578182fd5b60008060408385031215613235578182fd5b82356132408161367b565b946020939093013593505050565b60008060208385031215613260578182fd5b823567ffffffffffffffff80821115613277578384fd5b818501915085601f83011261328a578384fd5b813581811115613298578485fd5b8660208260051b85010111156132ac578485fd5b60209290920196919550909350505050565b6000602082840312156132cf578081fd5b813561226c81613690565b6000602082840312156132eb578081fd5b815161226c81613690565b600060208284031215613307578081fd5b813567ffffffffffffffff81111561331d578182fd5b8201601f8101841361332d578182fd5b6126ae8482356020840161304f565b60006020828403121561334d578081fd5b5035919050565b600060208284031215613365578081fd5b5051919050565b6000806040838503121561337e578182fd5b50508035926020909101359150565b600080600080608085870312156133a2578182fd5b5050823594602084013594506040840135936060013592509050565b600081518084526133d68160208601602086016135a3565b601f01601f19169290920160200192915050565b600083516133fc8184602088016135a3565b8351908301906134108183602088016135a3565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061344c908301846133be565b9695505050505050565b60208152600061226c60208301846133be565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561355457613554613639565b500190565b6000826135685761356861364f565b500490565b600081600019048311821515161561358757613587613639565b500290565b60008282101561359e5761359e613639565b500390565b60005b838110156135be5781810151838201526020016135a6565b838111156112f15750506000910152565b600181811c908216806135e357607f821691505b6020821081141561360457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561361e5761361e613639565b5060010190565b6000826136345761363461364f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f4e57600080fd5b6001600160e01b031981168114610f4e57600080fdfea2646970667358221220eb110aa450e65210260f7bf05ed9ae394007745c56d8c6e7a24d170bfe9b9d3464736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000e731af8f99d41f0dfb081c3b85649e1bab9d3bd4000000000000000000000000799cae083f11bd1d655b5abfc7f8f33646c27c5c0000000000000000000000009ecc667b19f36c712e99f600b8909f6b82dd37730000000000000000000000008c341f23501e99a9073b4d4835229ba78bedbff7

-----Decoded View---------------
Arg [0] : arbo1 (address): 0xE731AF8f99D41F0DFB081c3b85649E1BAb9d3bd4
Arg [1] : arbo2 (address): 0x799CAE083F11BD1d655B5AbFC7F8F33646C27C5C
Arg [2] : arfes (address): 0x9ecC667b19F36c712E99F600b8909F6B82Dd3773
Arg [3] : arfw (address): 0x8C341f23501e99a9073b4d4835229Ba78bEdBFf7

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000e731af8f99d41f0dfb081c3b85649e1bab9d3bd4
Arg [1] : 000000000000000000000000799cae083f11bd1d655b5abfc7f8f33646c27c5c
Arg [2] : 0000000000000000000000009ecc667b19f36c712e99f600b8909f6b82dd3773
Arg [3] : 0000000000000000000000008c341f23501e99a9073b4d4835229ba78bedbff7


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.