ETH Price: $2,672.31 (+10.24%)
Gas: 1 Gwei

Token

Urlz (Urlz)
 

Overview

Max Total Supply

1,416 Urlz

Holders

1,116

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Urlz
0xE3A8783e0345Aa147Cb1e4fcFD4dAd36Fa39c393
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:
Urlz

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Urlz.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;

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

/****************************************************************

                                     lllllll
                                     l:::::l
                                     l:::::l
                                     l:::::l
 uuuuuu    uuuuuu rrrrr   rrrrrrrrr   l::::l zzzzzzzzzzzzzzzzz
 u::::u    u::::u r::::rrr:::::::::r  l::::l z:::::::::::::::z
 u::::u    u::::u r:::::::::::::::::r l::::l z::::::::::::::z
 u::::u    u::::u rr::::::rrrrr::::::rl::::l zzzzzzzz::::::z
 u::::u    u::::u  r:::::r     r:::::rl::::l       z::::::z
 u::::u    u::::u  r:::::r     rrrrrrrl::::l      z::::::z
 u::::u    u::::u  r:::::r            l::::l     z::::::z
 u:::::uuuu:::::u  r:::::r            l::::l    z::::::z
 u:::::::::::::::uur:::::r           l::::::l  z::::::zzzzzzzz
  u:::::::::::::::ur:::::r           l::::::l z::::::::::::::z
   uu::::::::uu:::ur:::::r           l::::::lz:::::::::::::::z
     uuuuuuuu  uuuurrrrrrr           llllllllzzzzzzzzzzzzzzzzz

            Showcase all of your urlz with one url.
            by @DannPetty & @MarkBucknell
 ****************************************************************/

contract Urlz is ERC721Enumerable, Ownable {
    string public baseTokenURI;

    uint256 public price = 0.025 ether;
    uint256 public priceExtra = 0.025 ether;

    uint public maxMint = 4;

    bool public _paused = false;
    bool public _isPresale = false;

    mapping(address => bool) presaleAddresses;
    mapping(address => bool) tokenRedeemed;
    mapping(uint256 => string) tokenIdToName;

    constructor(string memory baseURI) ERC721("Urlz", "Urlz") {
        setBaseURI(baseURI);
    }

    function claim(string[] memory _usernames, uint256[] memory _hashes)
        external
        payable
    {
        require(!_paused, "Sale paused");
        require(_usernames.length <= maxMint, "Can only mint 4 at a time");

        if (_isPresale) {
            require(verifyUser(msg.sender), "You are not on the presale list");
            require(
                !tokenRedeemed[msg.sender],
                "You have already redeemed your presale urlz"
            );
            require(
                _usernames.length == 1,
                "Cannot mint specified number of urlz"
            );
        }

        uint256 runningPrice = 0 ether;

        for (uint256 i = 0; i <= _usernames.length - 1; i++) {
            uint256 _hash = hash(lower(_usernames[i]));

            require(bytes(_usernames[i]).length > 2, "Username length invalid");
            require(bytes(_usernames[i]).length <= 30, "Username length invalid");
            require(isValidName(_usernames[i]), "Username must be alphanumeric");
            require(_hash == _hashes[i], "invalid hash");
            require(!(_exists(_hashes[i])), "Token already exists");

            if (bytes(_usernames[i]).length < 4) {
                runningPrice = runningPrice + priceExtra;
            }
        }

        uint256 _price = (price * _usernames.length) + runningPrice;
        require(msg.value == _price, "Insufficient funds to redeem");

        for (uint256 i = 0; i <= _usernames.length - 1; i++) {
            _safeMint(msg.sender, _hashes[i]);
            tokenIdToName[_hashes[i]] = _usernames[i];
        }

        if (_isPresale) {
            tokenRedeemed[msg.sender] = true;
        }
    }

    function getNameFromToken(uint256 id) public view returns (string memory) {
        return tokenIdToName[id];
    }

    function reserveNames(string[] memory _usernames, uint256[] memory _hashes) public onlyOwner {
        for (uint256 i = 0; i <= _usernames.length - 1; i++) {
            _safeMint(msg.sender, _hashes[i]);
            tokenIdToName[_hashes[i]] = _usernames[i];
        }
    }

    function addUsers(address[] memory _addressesToPresaleList)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < _addressesToPresaleList.length; i++) {
            presaleAddresses[_addressesToPresaleList[i]] = true;
        }
    }

    function verifyUser(address _presaleAddress) public view returns (bool) {
        bool userIsPresaleOwner = presaleAddresses[_presaleAddress];
        return userIsPresaleOwner;
    }

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

    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function withdraw() public onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function withdrawAmount(uint amount) public onlyOwner {
        require(amount < address(this).balance, "Balance too low for amount");
        payable(owner()).transfer(amount);
    }

    function burn(uint256 tokenId) public virtual {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }

    function getPausedState() public view returns (bool isPaused) {
        isPaused = _paused;
    }

    function pauseSale() public onlyOwner {
        _paused = true;
    }

    function unpauseSale() public onlyOwner {
        _paused = false;
    }

    function setMaxMint(uint _maxMint) public onlyOwner {
        maxMint = _maxMint;
    }

    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }

    function getPrice(string[] memory _usernames)
        public
        view
        returns (uint256 totalPrice)
    {
        uint256 runningPrice = 0 ether;

        for (uint256 i = 0; i <= _usernames.length - 1; i++) {
            if (bytes(_usernames[i]).length < 4) {
                runningPrice = runningPrice + priceExtra;
            }
        }

        totalPrice = (price * _usernames.length) + runningPrice;

        return totalPrice;
    }

    function getPresaleState() public view returns (bool isPresale) {
        isPresale = _isPresale;
        return isPresale;
    }

    function preSaleStart() public onlyOwner {
        _isPresale = true;
    }

    function preSaleStop() public onlyOwner {
        _isPresale = false;
    }

    function hash(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }

    function lower(string memory _base) internal pure returns (string memory) {
        bytes memory _baseBytes = bytes(_base);
        for (uint256 i = 0; i < _baseBytes.length; i++) {
            _baseBytes[i] = _lower(_baseBytes[i]);
        }
        return string(_baseBytes);
    }

    function _lower(bytes1 _b1) private pure returns (bytes1) {
        if (_b1 >= 0x41 && _b1 <= 0x5A) {
            return bytes1(uint8(_b1) + 32);
        }

        return _b1;
    }

    function isValidName(string memory str) private pure returns (bool) {
        bytes memory b = bytes(str);

        for(uint i; i<b.length; i++){
            bytes1 char = b[i];

            if(
                !(char >= 0x30 && char <= 0x39) && //9-0
                !(char >= 0x41 && char <= 0x5A) && //A-Z
                !(char >= 0x61 && char <= 0x7A) && //a-z
                !(char == 0x2E) //.
            )
                return false;
        }

        return true;
    }
}

File 2 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

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 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

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 6 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressesToPresaleList","type":"address[]"}],"name":"addUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"_usernames","type":"string[]"},{"internalType":"uint256[]","name":"_hashes","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":"uint256","name":"id","type":"uint256"}],"name":"getNameFromToken","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPausedState","outputs":[{"internalType":"bool","name":"isPaused","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPresaleState","outputs":[{"internalType":"bool","name":"isPresale","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"_usernames","type":"string[]"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"totalPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"preSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"preSaleStop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceExtra","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"_usernames","type":"string[]"},{"internalType":"uint256[]","name":"_hashes","type":"uint256[]"}],"name":"reserveNames","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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_presaleAddress","type":"address"}],"name":"verifyUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526658d15e17628000600c556658d15e17628000600d556004600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040516200620938038062006209833981810160405281019062000088919062000425565b6040518060400160405280600481526020017f55726c7a000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f55726c7a0000000000000000000000000000000000000000000000000000000081525081600090805190602001906200010c92919062000303565b5080600190805190602001906200012592919062000303565b505050620001486200013c6200016060201b60201c565b6200016860201b60201c565b62000159816200022e60201b60201c565b506200065d565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200023e6200016060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000264620002d960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b49062000491565b60405180910390fd5b80600b9080519060200190620002d592919062000303565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003119062000559565b90600052602060002090601f01602090048101928262000335576000855562000381565b82601f106200035057805160ff191683800117855562000381565b8280016001018555821562000381579182015b828111156200038057825182559160200191906001019062000363565b5b50905062000390919062000394565b5090565b5b80821115620003af57600081600090555060010162000395565b5090565b6000620003ca620003c484620004dc565b620004b3565b905082815260208101848484011115620003e357600080fd5b620003f084828562000523565b509392505050565b600082601f8301126200040a57600080fd5b81516200041c848260208601620003b3565b91505092915050565b6000602082840312156200043857600080fd5b600082015167ffffffffffffffff8111156200045357600080fd5b6200046184828501620003f8565b91505092915050565b60006200047960208362000512565b9150620004868262000634565b602082019050919050565b60006020820190508181036000830152620004ac816200046a565b9050919050565b6000620004bf620004d2565b9050620004cd82826200058f565b919050565b6000604051905090565b600067ffffffffffffffff821115620004fa57620004f9620005f4565b5b620005058262000623565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200054357808201518184015260208101905062000526565b8381111562000553576000848401525b50505050565b600060028204905060018216806200057257607f821691505b60208210811415620005895762000588620005c5565b5b50919050565b6200059a8262000623565b810181811067ffffffffffffffff82111715620005bc57620005bb620005f4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615b9c806200066d6000396000f3fe60806040526004361061025c5760003560e01c806355f804b311610144578063a035b1fe116100b6578063d547cfb71161007a578063d547cfb7146108af578063d770ae1b146108da578063e985e9c514610917578063ef305cec14610954578063f2fde38b1461096b578063fe5d0d60146109945761025c565b8063a035b1fe146107de578063a22cb46514610809578063b88d4fde14610832578063bb33d7291461085b578063c87b56dd146108725761025c565b80637501f741116101085780637501f741146106de578063838c4ae21461070957806383b21536146107345780638da5cb5b1461075f57806391b7f5ed1461078a57806395d89b41146107b35761025c565b806355f804b3146105fb5780636352211e14610624578063700c94741461066157806370a082311461068a578063715018a6146106c75761025c565b80631f19014b116101dd57806342842e0e116101a157806342842e0e146104ef57806342966c68146105185780634d813120146105415780634f6ccce71461057e578063547520fe146105bb57806355367ba9146105e45761025c565b80631f19014b1461042d57806323b872dd14610449578063287d8759146104725780632f745c591461049b5780633ccfd60b146104d85761025c565b80630d5624b3116102245780630d5624b31461035857806316c61ccc1461036f57806318160ddd1461039a5780631c0de051146103c55780631ceaa58d146103f05761025c565b806301ffc9a7146102615780630562b9f71461029e57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f575b600080fd5b34801561026d57600080fd5b506102886004803603810190610283919061444f565b6109bf565b6040516102959190614a97565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906144e2565b610a39565b005b3480156102d357600080fd5b506102dc610b48565b6040516102e99190614ab2565b60405180910390f35b3480156102fe57600080fd5b50610319600480360381019061031491906144e2565b610bda565b6040516103269190614a30565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190614325565b610c5f565b005b34801561036457600080fd5b5061036d610d77565b005b34801561037b57600080fd5b50610384610e10565b6040516103919190614a97565b60405180910390f35b3480156103a657600080fd5b506103af610e23565b6040516103bc9190614e94565b60405180910390f35b3480156103d157600080fd5b506103da610e30565b6040516103e79190614a97565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906144e2565b610e47565b6040516104249190614ab2565b60405180910390f35b610447600480360381019061044291906143e3565b610eec565b005b34801561045557600080fd5b50610470600480360381019061046b919061421f565b61161b565b005b34801561047e57600080fd5b50610499600480360381019061049491906143e3565b61167b565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190614325565b611818565b6040516104cf9190614e94565b60405180910390f35b3480156104e457600080fd5b506104ed6118bd565b005b3480156104fb57600080fd5b506105166004803603810190610511919061421f565b611989565b005b34801561052457600080fd5b5061053f600480360381019061053a91906144e2565b6119a9565b005b34801561054d57600080fd5b50610568600480360381019061056391906141ba565b611a05565b6040516105759190614a97565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a091906144e2565b611a60565b6040516105b29190614e94565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd91906144e2565b611af7565b005b3480156105f057600080fd5b506105f9611b7d565b005b34801561060757600080fd5b50610622600480360381019061061d91906144a1565b611c16565b005b34801561063057600080fd5b5061064b600480360381019061064691906144e2565b611cac565b6040516106589190614a30565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190614361565b611d5e565b005b34801561069657600080fd5b506106b160048036038101906106ac91906141ba565b611e95565b6040516106be9190614e94565b60405180910390f35b3480156106d357600080fd5b506106dc611f4d565b005b3480156106ea57600080fd5b506106f3611fd5565b6040516107009190614e94565b60405180910390f35b34801561071557600080fd5b5061071e611fdb565b60405161072b9190614e94565b60405180910390f35b34801561074057600080fd5b50610749611fe1565b6040516107569190614a97565b60405180910390f35b34801561076b57600080fd5b50610774611ff8565b6040516107819190614a30565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac91906144e2565b612022565b005b3480156107bf57600080fd5b506107c86120a8565b6040516107d59190614ab2565b60405180910390f35b3480156107ea57600080fd5b506107f361213a565b6040516108009190614e94565b60405180910390f35b34801561081557600080fd5b50610830600480360381019061082b91906142e9565b612140565b005b34801561083e57600080fd5b506108596004803603810190610854919061426e565b612156565b005b34801561086757600080fd5b506108706121b8565b005b34801561087e57600080fd5b50610899600480360381019061089491906144e2565b612251565b6040516108a69190614ab2565b60405180910390f35b3480156108bb57600080fd5b506108c46122f8565b6040516108d19190614ab2565b60405180910390f35b3480156108e657600080fd5b5061090160048036038101906108fc91906143a2565b612386565b60405161090e9190614e94565b60405180910390f35b34801561092357600080fd5b5061093e600480360381019061093991906141e3565b612435565b60405161094b9190614a97565b60405180910390f35b34801561096057600080fd5b506109696124c9565b005b34801561097757600080fd5b50610992600480360381019061098d91906141ba565b612562565b005b3480156109a057600080fd5b506109a961265a565b6040516109b69190614a97565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a325750610a318261266d565b5b9050919050565b610a4161274f565b73ffffffffffffffffffffffffffffffffffffffff16610a5f611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90614d34565b60405180910390fd5b478110610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90614df4565b60405180910390fd5b610aff611ff8565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b44573d6000803e3d6000fd5b5050565b606060008054610b579061520c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b839061520c565b8015610bd05780601f10610ba557610100808354040283529160200191610bd0565b820191906000526020600020905b815481529060010190602001808311610bb357829003601f168201915b5050505050905090565b6000610be582612757565b610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90614d14565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c6a82611cac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd290614db4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cfa61274f565b73ffffffffffffffffffffffffffffffffffffffff161480610d295750610d2881610d2361274f565b612435565b5b610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90614c34565b60405180910390fd5b610d7283836127c3565b505050565b610d7f61274f565b73ffffffffffffffffffffffffffffffffffffffff16610d9d611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90614d34565b60405180910390fd5b6001600f60016101000a81548160ff021916908315150217905550565b600f60009054906101000a900460ff1681565b6000600880549050905090565b6000600f60009054906101000a900460ff16905090565b6060601260008381526020019081526020016000208054610e679061520c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e939061520c565b8015610ee05780601f10610eb557610100808354040283529160200191610ee0565b820191906000526020600020905b815481529060010190602001808311610ec357829003601f168201915b50505050509050919050565b600f60009054906101000a900460ff1615610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390614ad4565b60405180910390fd5b600e5482511115610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7990614d54565b60405180910390fd5b600f60019054906101000a900460ff16156110b157610fa033611a05565b610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690614e74565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390614cb4565b60405180910390fd5b60018251146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790614c94565b60405180910390fd5b5b6000805b600184516110c39190615115565b811161142957600061111c61111786848151811061110a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161287c565b612960565b90506002858381518110611159577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015151116111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990614c14565b60405180910390fd5b601e8583815181106111dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151511115611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90614c14565b60405180910390fd5b611270858381518110611263577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612993565b6112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690614b94565b60405180910390fd5b8382815181106112e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518114611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890614e34565b60405180910390fd5b61137a84838151811061136d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612757565b156113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b190614b74565b60405180910390fd5b60048583815181106113f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015151101561141557600d54836114129190614ffd565b92505b5080806114219061526f565b9150506110b5565b506000818451600c5461143c91906150bb565b6114469190614ffd565b905080341461148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190614cd4565b60405180910390fd5b60005b6001855161149b9190615115565b81116115a6576114eb338583815181106114de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612b77565b848181518110611524577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160126000868481518110611569577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000209080519060200190611592929190613e02565b50808061159e9061526f565b91505061148d565b50600f60019054906101000a900460ff1615611615576001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50505050565b61162c61162661274f565b82612b95565b61166b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166290614dd4565b60405180910390fd5b611676838383612c73565b505050565b61168361274f565b73ffffffffffffffffffffffffffffffffffffffff166116a1611ff8565b73ffffffffffffffffffffffffffffffffffffffff16146116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee90614d34565b60405180910390fd5b60005b600183516117089190615115565b8111611813576117583383838151811061174b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612b77565b828181518110611791577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601260008484815181106117d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002090805190602001906117ff929190613e02565b50808061180b9061526f565b9150506116fa565b505050565b600061182383611e95565b8210611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b90614af4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6118c561274f565b73ffffffffffffffffffffffffffffffffffffffff166118e3611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090614d34565b60405180910390fd5b611941611ff8565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611986573d6000803e3d6000fd5b50565b6119a483838360405180602001604052806000815250612156565b505050565b6119ba6119b461274f565b82612b95565b6119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f090614e54565b60405180910390fd5b611a0281612ecf565b50565b600080601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905080915050919050565b6000611a6a610e23565b8210611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290614e14565b60405180910390fd5b60088281548110611ae5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611aff61274f565b73ffffffffffffffffffffffffffffffffffffffff16611b1d611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90614d34565b60405180910390fd5b80600e8190555050565b611b8561274f565b73ffffffffffffffffffffffffffffffffffffffff16611ba3611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090614d34565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b611c1e61274f565b73ffffffffffffffffffffffffffffffffffffffff16611c3c611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614611c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8990614d34565b60405180910390fd5b80600b9080519060200190611ca8929190613e02565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4c90614c74565b60405180910390fd5b80915050919050565b611d6661274f565b73ffffffffffffffffffffffffffffffffffffffff16611d84611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd190614d34565b60405180910390fd5b60005b8151811015611e9157600160106000848481518110611e25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611e899061526f565b915050611ddd565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90614c54565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611f5561274f565b73ffffffffffffffffffffffffffffffffffffffff16611f73611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc090614d34565b60405180910390fd5b611fd36000612fe0565b565b600e5481565b600d5481565b6000600f60019054906101000a900460ff16905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61202a61274f565b73ffffffffffffffffffffffffffffffffffffffff16612048611ff8565b73ffffffffffffffffffffffffffffffffffffffff161461209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590614d34565b60405180910390fd5b80600c8190555050565b6060600180546120b79061520c565b80601f01602080910402602001604051908101604052809291908181526020018280546120e39061520c565b80156121305780601f1061210557610100808354040283529160200191612130565b820191906000526020600020905b81548152906001019060200180831161211357829003601f168201915b5050505050905090565b600c5481565b61215261214b61274f565b83836130a6565b5050565b61216761216161274f565b83612b95565b6121a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219d90614dd4565b60405180910390fd5b6121b284848484613213565b50505050565b6121c061274f565b73ffffffffffffffffffffffffffffffffffffffff166121de611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614612234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222b90614d34565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550565b606061225c82612757565b61229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229290614d94565b60405180910390fd5b60006122a561326f565b905060008151116122c557604051806020016040528060008152506122f0565b806122cf84613301565b6040516020016122e0929190614a0c565b6040516020818303038152906040525b915050919050565b600b80546123059061520c565b80601f01602080910402602001604051908101604052809291908181526020018280546123319061520c565b801561237e5780601f106123535761010080835404028352916020019161237e565b820191906000526020600020905b81548152906001019060200180831161236157829003601f168201915b505050505081565b6000806000905060005b6001845161239e9190615115565b81116124125760048482815181106123df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101515110156123ff57600d54826123fc9190614ffd565b91505b808061240a9061526f565b915050612390565b50808351600c5461242391906150bb565b61242d9190614ffd565b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124d161274f565b73ffffffffffffffffffffffffffffffffffffffff166124ef611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c90614d34565b60405180910390fd5b6000600f60016101000a81548160ff021916908315150217905550565b61256a61274f565b73ffffffffffffffffffffffffffffffffffffffff16612588611ff8565b73ffffffffffffffffffffffffffffffffffffffff16146125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d590614d34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561264e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264590614b34565b60405180910390fd5b61265781612fe0565b50565b600f60019054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061273857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127485750612747826134ae565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661283683611cac565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060600082905060005b8151811015612956576128db8282815181106128cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b613518565b828281518110612914577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061294e9061526f565b915050612886565b5080915050919050565b60008160405160200161297391906149f5565b6040516020818303038152906040528051906020012060001c9050919050565b60008082905060005b8151811015612b6b5760008282815181106129e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b9050603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612a495750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b158015612aaf5750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612aad5750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015612b145750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612b125750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015612b465750602e60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15612b575760009350505050612b72565b508080612b639061526f565b91505061299c565b5060019150505b919050565b612b9182826040518060200160405280600081525061359e565b5050565b6000612ba082612757565b612bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd690614bf4565b60405180910390fd5b6000612bea83611cac565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c5957508373ffffffffffffffffffffffffffffffffffffffff16612c4184610bda565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c6a5750612c698185612435565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c9382611cac565b73ffffffffffffffffffffffffffffffffffffffff1614612ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce090614d74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5090614bb4565b60405180910390fd5b612d648383836135f9565b612d6f6000826127c3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dbf9190615115565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e169190614ffd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612eda82611cac565b9050612ee8816000846135f9565b612ef36000836127c3565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f439190615115565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310c90614bd4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516132069190614a97565b60405180910390a3505050565b61321e848484612c73565b61322a8484848461370d565b613269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326090614b14565b60405180910390fd5b50505050565b6060600b805461327e9061520c565b80601f01602080910402602001604051908101604052809291908181526020018280546132aa9061520c565b80156132f75780601f106132cc576101008083540402835291602001916132f7565b820191906000526020600020905b8154815290600101906020018083116132da57829003601f168201915b5050505050905090565b60606000821415613349576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134a9565b600082905060005b6000821461337b5780806133649061526f565b915050600a82613374919061508a565b9150613351565b60008167ffffffffffffffff8111156133bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133ef5781602001600182028036833780820191505090505b5090505b600085146134a2576001826134089190615115565b9150600a8561341791906152b8565b60306134239190614ffd565b60f81b81838151811061345f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561349b919061508a565b94506133f3565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000604160f81b827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156135765750605a60f81b827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b156135955760208260f81c61358b9190615053565b60f81b9050613599565b8190505b919050565b6135a883836138a4565b6135b5600084848461370d565b6135f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135eb90614b14565b60405180910390fd5b505050565b613604838383613a72565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136475761364281613a77565b613686565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613685576136848382613ac0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136c9576136c481613c2d565b613708565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613707576137068282613d70565b5b5b505050565b600061372e8473ffffffffffffffffffffffffffffffffffffffff16613def565b15613897578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261375761274f565b8786866040518563ffffffff1660e01b81526004016137799493929190614a4b565b602060405180830381600087803b15801561379357600080fd5b505af19250505080156137c457506040513d601f19601f820116820180604052508101906137c19190614478565b60015b613847573d80600081146137f4576040519150601f19603f3d011682016040523d82523d6000602084013e6137f9565b606091505b5060008151141561383f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383690614b14565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061389c565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390b90614cf4565b60405180910390fd5b61391d81612757565b1561395d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395490614b54565b60405180910390fd5b613969600083836135f9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139b99190614ffd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613acd84611e95565b613ad79190615115565b9050600060076000848152602001908152602001600020549050818114613bbc576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613c419190615115565b9050600060096000848152602001908152602001600020549050600060088381548110613c97577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613cdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613d7b83611e95565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054613e0e9061520c565b90600052602060002090601f016020900481019282613e305760008555613e77565b82601f10613e4957805160ff1916838001178555613e77565b82800160010185558215613e77579182015b82811115613e76578251825591602001919060010190613e5b565b5b509050613e849190613e88565b5090565b5b80821115613ea1576000816000905550600101613e89565b5090565b6000613eb8613eb384614ed4565b614eaf565b90508083825260208201905082856020860282011115613ed757600080fd5b60005b85811015613f075781613eed888261407f565b845260208401935060208301925050600181019050613eda565b5050509392505050565b6000613f24613f1f84614f00565b614eaf565b90508083825260208201905082856020860282011115613f4357600080fd5b60005b85811015613f8d57813567ffffffffffffffff811115613f6557600080fd5b808601613f72898261417b565b85526020850194506020840193505050600181019050613f46565b5050509392505050565b6000613faa613fa584614f2c565b614eaf565b90508083825260208201905082856020860282011115613fc957600080fd5b60005b85811015613ff95781613fdf88826141a5565b845260208401935060208301925050600181019050613fcc565b5050509392505050565b600061401661401184614f58565b614eaf565b90508281526020810184848401111561402e57600080fd5b6140398482856151ca565b509392505050565b600061405461404f84614f89565b614eaf565b90508281526020810184848401111561406c57600080fd5b6140778482856151ca565b509392505050565b60008135905061408e81615b0a565b92915050565b600082601f8301126140a557600080fd5b81356140b5848260208601613ea5565b91505092915050565b600082601f8301126140cf57600080fd5b81356140df848260208601613f11565b91505092915050565b600082601f8301126140f957600080fd5b8135614109848260208601613f97565b91505092915050565b60008135905061412181615b21565b92915050565b60008135905061413681615b38565b92915050565b60008151905061414b81615b38565b92915050565b600082601f83011261416257600080fd5b8135614172848260208601614003565b91505092915050565b600082601f83011261418c57600080fd5b813561419c848260208601614041565b91505092915050565b6000813590506141b481615b4f565b92915050565b6000602082840312156141cc57600080fd5b60006141da8482850161407f565b91505092915050565b600080604083850312156141f657600080fd5b60006142048582860161407f565b92505060206142158582860161407f565b9150509250929050565b60008060006060848603121561423457600080fd5b60006142428682870161407f565b93505060206142538682870161407f565b9250506040614264868287016141a5565b9150509250925092565b6000806000806080858703121561428457600080fd5b60006142928782880161407f565b94505060206142a38782880161407f565b93505060406142b4878288016141a5565b925050606085013567ffffffffffffffff8111156142d157600080fd5b6142dd87828801614151565b91505092959194509250565b600080604083850312156142fc57600080fd5b600061430a8582860161407f565b925050602061431b85828601614112565b9150509250929050565b6000806040838503121561433857600080fd5b60006143468582860161407f565b9250506020614357858286016141a5565b9150509250929050565b60006020828403121561437357600080fd5b600082013567ffffffffffffffff81111561438d57600080fd5b61439984828501614094565b91505092915050565b6000602082840312156143b457600080fd5b600082013567ffffffffffffffff8111156143ce57600080fd5b6143da848285016140be565b91505092915050565b600080604083850312156143f657600080fd5b600083013567ffffffffffffffff81111561441057600080fd5b61441c858286016140be565b925050602083013567ffffffffffffffff81111561443957600080fd5b614445858286016140e8565b9150509250929050565b60006020828403121561446157600080fd5b600061446f84828501614127565b91505092915050565b60006020828403121561448a57600080fd5b60006144988482850161413c565b91505092915050565b6000602082840312156144b357600080fd5b600082013567ffffffffffffffff8111156144cd57600080fd5b6144d98482850161417b565b91505092915050565b6000602082840312156144f457600080fd5b6000614502848285016141a5565b91505092915050565b61451481615149565b82525050565b6145238161515b565b82525050565b600061453482614fba565b61453e8185614fd0565b935061454e8185602086016151d9565b614557816153a5565b840191505092915050565b600061456d82614fc5565b6145778185614fe1565b93506145878185602086016151d9565b614590816153a5565b840191505092915050565b60006145a682614fc5565b6145b08185614ff2565b93506145c08185602086016151d9565b80840191505092915050565b60006145d9600b83614fe1565b91506145e4826153b6565b602082019050919050565b60006145fc602b83614fe1565b9150614607826153df565b604082019050919050565b600061461f603283614fe1565b915061462a8261542e565b604082019050919050565b6000614642602683614fe1565b915061464d8261547d565b604082019050919050565b6000614665601c83614fe1565b9150614670826154cc565b602082019050919050565b6000614688601483614fe1565b9150614693826154f5565b602082019050919050565b60006146ab601d83614fe1565b91506146b68261551e565b602082019050919050565b60006146ce602483614fe1565b91506146d982615547565b604082019050919050565b60006146f1601983614fe1565b91506146fc82615596565b602082019050919050565b6000614714602c83614fe1565b915061471f826155bf565b604082019050919050565b6000614737601783614fe1565b91506147428261560e565b602082019050919050565b600061475a603883614fe1565b915061476582615637565b604082019050919050565b600061477d602a83614fe1565b915061478882615686565b604082019050919050565b60006147a0602983614fe1565b91506147ab826156d5565b604082019050919050565b60006147c3602483614fe1565b91506147ce82615724565b604082019050919050565b60006147e6602b83614fe1565b91506147f182615773565b604082019050919050565b6000614809601c83614fe1565b9150614814826157c2565b602082019050919050565b600061482c602083614fe1565b9150614837826157eb565b602082019050919050565b600061484f602c83614fe1565b915061485a82615814565b604082019050919050565b6000614872602083614fe1565b915061487d82615863565b602082019050919050565b6000614895601983614fe1565b91506148a08261588c565b602082019050919050565b60006148b8602983614fe1565b91506148c3826158b5565b604082019050919050565b60006148db602f83614fe1565b91506148e682615904565b604082019050919050565b60006148fe602183614fe1565b915061490982615953565b604082019050919050565b6000614921603183614fe1565b915061492c826159a2565b604082019050919050565b6000614944601a83614fe1565b915061494f826159f1565b602082019050919050565b6000614967602c83614fe1565b915061497282615a1a565b604082019050919050565b600061498a600c83614fe1565b915061499582615a69565b602082019050919050565b60006149ad603083614fe1565b91506149b882615a92565b604082019050919050565b60006149d0601f83614fe1565b91506149db82615ae1565b602082019050919050565b6149ef816151b3565b82525050565b6000614a01828461459b565b915081905092915050565b6000614a18828561459b565b9150614a24828461459b565b91508190509392505050565b6000602082019050614a45600083018461450b565b92915050565b6000608082019050614a60600083018761450b565b614a6d602083018661450b565b614a7a60408301856149e6565b8181036060830152614a8c8184614529565b905095945050505050565b6000602082019050614aac600083018461451a565b92915050565b60006020820190508181036000830152614acc8184614562565b905092915050565b60006020820190508181036000830152614aed816145cc565b9050919050565b60006020820190508181036000830152614b0d816145ef565b9050919050565b60006020820190508181036000830152614b2d81614612565b9050919050565b60006020820190508181036000830152614b4d81614635565b9050919050565b60006020820190508181036000830152614b6d81614658565b9050919050565b60006020820190508181036000830152614b8d8161467b565b9050919050565b60006020820190508181036000830152614bad8161469e565b9050919050565b60006020820190508181036000830152614bcd816146c1565b9050919050565b60006020820190508181036000830152614bed816146e4565b9050919050565b60006020820190508181036000830152614c0d81614707565b9050919050565b60006020820190508181036000830152614c2d8161472a565b9050919050565b60006020820190508181036000830152614c4d8161474d565b9050919050565b60006020820190508181036000830152614c6d81614770565b9050919050565b60006020820190508181036000830152614c8d81614793565b9050919050565b60006020820190508181036000830152614cad816147b6565b9050919050565b60006020820190508181036000830152614ccd816147d9565b9050919050565b60006020820190508181036000830152614ced816147fc565b9050919050565b60006020820190508181036000830152614d0d8161481f565b9050919050565b60006020820190508181036000830152614d2d81614842565b9050919050565b60006020820190508181036000830152614d4d81614865565b9050919050565b60006020820190508181036000830152614d6d81614888565b9050919050565b60006020820190508181036000830152614d8d816148ab565b9050919050565b60006020820190508181036000830152614dad816148ce565b9050919050565b60006020820190508181036000830152614dcd816148f1565b9050919050565b60006020820190508181036000830152614ded81614914565b9050919050565b60006020820190508181036000830152614e0d81614937565b9050919050565b60006020820190508181036000830152614e2d8161495a565b9050919050565b60006020820190508181036000830152614e4d8161497d565b9050919050565b60006020820190508181036000830152614e6d816149a0565b9050919050565b60006020820190508181036000830152614e8d816149c3565b9050919050565b6000602082019050614ea960008301846149e6565b92915050565b6000614eb9614eca565b9050614ec5828261523e565b919050565b6000604051905090565b600067ffffffffffffffff821115614eef57614eee615376565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f1b57614f1a615376565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f4757614f46615376565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f7357614f72615376565b5b614f7c826153a5565b9050602081019050919050565b600067ffffffffffffffff821115614fa457614fa3615376565b5b614fad826153a5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615008826151b3565b9150615013836151b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615048576150476152e9565b5b828201905092915050565b600061505e826151bd565b9150615069836151bd565b92508260ff0382111561507f5761507e6152e9565b5b828201905092915050565b6000615095826151b3565b91506150a0836151b3565b9250826150b0576150af615318565b5b828204905092915050565b60006150c6826151b3565b91506150d1836151b3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561510a576151096152e9565b5b828202905092915050565b6000615120826151b3565b915061512b836151b3565b92508282101561513e5761513d6152e9565b5b828203905092915050565b600061515482615193565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156151f75780820151818401526020810190506151dc565b83811115615206576000848401525b50505050565b6000600282049050600182168061522457607f821691505b6020821081141561523857615237615347565b5b50919050565b615247826153a5565b810181811067ffffffffffffffff8211171561526657615265615376565b5b80604052505050565b600061527a826151b3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152ad576152ac6152e9565b5b600182019050919050565b60006152c3826151b3565b91506152ce836151b3565b9250826152de576152dd615318565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546f6b656e20616c726561647920657869737473000000000000000000000000600082015250565b7f557365726e616d65206d75737420626520616c7068616e756d65726963000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f557365726e616d65206c656e67746820696e76616c6964000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e7420737065636966696564206e756d626572206f662060008201527f75726c7a00000000000000000000000000000000000000000000000000000000602082015250565b7f596f75206861766520616c72656164792072656465656d656420796f7572207060008201527f726573616c652075726c7a000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e647320746f2072656465656d00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e206f6e6c79206d696e74203420617420612074696d6500000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f42616c616e636520746f6f206c6f7720666f7220616d6f756e74000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f696e76616c696420686173680000000000000000000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f596f7520617265206e6f74206f6e207468652070726573616c65206c69737400600082015250565b615b1381615149565b8114615b1e57600080fd5b50565b615b2a8161515b565b8114615b3557600080fd5b50565b615b4181615167565b8114615b4c57600080fd5b50565b615b58816151b3565b8114615b6357600080fd5b5056fea2646970667358221220b85d6594090073231ac75337dea6e56e5a8437f4e21fe65f085950d97096d7bc64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f6170692e75726c7a2e636f6d2f6170692f7472616974732f

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806355f804b311610144578063a035b1fe116100b6578063d547cfb71161007a578063d547cfb7146108af578063d770ae1b146108da578063e985e9c514610917578063ef305cec14610954578063f2fde38b1461096b578063fe5d0d60146109945761025c565b8063a035b1fe146107de578063a22cb46514610809578063b88d4fde14610832578063bb33d7291461085b578063c87b56dd146108725761025c565b80637501f741116101085780637501f741146106de578063838c4ae21461070957806383b21536146107345780638da5cb5b1461075f57806391b7f5ed1461078a57806395d89b41146107b35761025c565b806355f804b3146105fb5780636352211e14610624578063700c94741461066157806370a082311461068a578063715018a6146106c75761025c565b80631f19014b116101dd57806342842e0e116101a157806342842e0e146104ef57806342966c68146105185780634d813120146105415780634f6ccce71461057e578063547520fe146105bb57806355367ba9146105e45761025c565b80631f19014b1461042d57806323b872dd14610449578063287d8759146104725780632f745c591461049b5780633ccfd60b146104d85761025c565b80630d5624b3116102245780630d5624b31461035857806316c61ccc1461036f57806318160ddd1461039a5780631c0de051146103c55780631ceaa58d146103f05761025c565b806301ffc9a7146102615780630562b9f71461029e57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f575b600080fd5b34801561026d57600080fd5b506102886004803603810190610283919061444f565b6109bf565b6040516102959190614a97565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906144e2565b610a39565b005b3480156102d357600080fd5b506102dc610b48565b6040516102e99190614ab2565b60405180910390f35b3480156102fe57600080fd5b50610319600480360381019061031491906144e2565b610bda565b6040516103269190614a30565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190614325565b610c5f565b005b34801561036457600080fd5b5061036d610d77565b005b34801561037b57600080fd5b50610384610e10565b6040516103919190614a97565b60405180910390f35b3480156103a657600080fd5b506103af610e23565b6040516103bc9190614e94565b60405180910390f35b3480156103d157600080fd5b506103da610e30565b6040516103e79190614a97565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906144e2565b610e47565b6040516104249190614ab2565b60405180910390f35b610447600480360381019061044291906143e3565b610eec565b005b34801561045557600080fd5b50610470600480360381019061046b919061421f565b61161b565b005b34801561047e57600080fd5b50610499600480360381019061049491906143e3565b61167b565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190614325565b611818565b6040516104cf9190614e94565b60405180910390f35b3480156104e457600080fd5b506104ed6118bd565b005b3480156104fb57600080fd5b506105166004803603810190610511919061421f565b611989565b005b34801561052457600080fd5b5061053f600480360381019061053a91906144e2565b6119a9565b005b34801561054d57600080fd5b50610568600480360381019061056391906141ba565b611a05565b6040516105759190614a97565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a091906144e2565b611a60565b6040516105b29190614e94565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd91906144e2565b611af7565b005b3480156105f057600080fd5b506105f9611b7d565b005b34801561060757600080fd5b50610622600480360381019061061d91906144a1565b611c16565b005b34801561063057600080fd5b5061064b600480360381019061064691906144e2565b611cac565b6040516106589190614a30565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190614361565b611d5e565b005b34801561069657600080fd5b506106b160048036038101906106ac91906141ba565b611e95565b6040516106be9190614e94565b60405180910390f35b3480156106d357600080fd5b506106dc611f4d565b005b3480156106ea57600080fd5b506106f3611fd5565b6040516107009190614e94565b60405180910390f35b34801561071557600080fd5b5061071e611fdb565b60405161072b9190614e94565b60405180910390f35b34801561074057600080fd5b50610749611fe1565b6040516107569190614a97565b60405180910390f35b34801561076b57600080fd5b50610774611ff8565b6040516107819190614a30565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac91906144e2565b612022565b005b3480156107bf57600080fd5b506107c86120a8565b6040516107d59190614ab2565b60405180910390f35b3480156107ea57600080fd5b506107f361213a565b6040516108009190614e94565b60405180910390f35b34801561081557600080fd5b50610830600480360381019061082b91906142e9565b612140565b005b34801561083e57600080fd5b506108596004803603810190610854919061426e565b612156565b005b34801561086757600080fd5b506108706121b8565b005b34801561087e57600080fd5b50610899600480360381019061089491906144e2565b612251565b6040516108a69190614ab2565b60405180910390f35b3480156108bb57600080fd5b506108c46122f8565b6040516108d19190614ab2565b60405180910390f35b3480156108e657600080fd5b5061090160048036038101906108fc91906143a2565b612386565b60405161090e9190614e94565b60405180910390f35b34801561092357600080fd5b5061093e600480360381019061093991906141e3565b612435565b60405161094b9190614a97565b60405180910390f35b34801561096057600080fd5b506109696124c9565b005b34801561097757600080fd5b50610992600480360381019061098d91906141ba565b612562565b005b3480156109a057600080fd5b506109a961265a565b6040516109b69190614a97565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a325750610a318261266d565b5b9050919050565b610a4161274f565b73ffffffffffffffffffffffffffffffffffffffff16610a5f611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90614d34565b60405180910390fd5b478110610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90614df4565b60405180910390fd5b610aff611ff8565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b44573d6000803e3d6000fd5b5050565b606060008054610b579061520c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b839061520c565b8015610bd05780601f10610ba557610100808354040283529160200191610bd0565b820191906000526020600020905b815481529060010190602001808311610bb357829003601f168201915b5050505050905090565b6000610be582612757565b610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90614d14565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c6a82611cac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd290614db4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cfa61274f565b73ffffffffffffffffffffffffffffffffffffffff161480610d295750610d2881610d2361274f565b612435565b5b610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90614c34565b60405180910390fd5b610d7283836127c3565b505050565b610d7f61274f565b73ffffffffffffffffffffffffffffffffffffffff16610d9d611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90614d34565b60405180910390fd5b6001600f60016101000a81548160ff021916908315150217905550565b600f60009054906101000a900460ff1681565b6000600880549050905090565b6000600f60009054906101000a900460ff16905090565b6060601260008381526020019081526020016000208054610e679061520c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e939061520c565b8015610ee05780601f10610eb557610100808354040283529160200191610ee0565b820191906000526020600020905b815481529060010190602001808311610ec357829003601f168201915b50505050509050919050565b600f60009054906101000a900460ff1615610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390614ad4565b60405180910390fd5b600e5482511115610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7990614d54565b60405180910390fd5b600f60019054906101000a900460ff16156110b157610fa033611a05565b610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690614e74565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390614cb4565b60405180910390fd5b60018251146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790614c94565b60405180910390fd5b5b6000805b600184516110c39190615115565b811161142957600061111c61111786848151811061110a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161287c565b612960565b90506002858381518110611159577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015151116111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990614c14565b60405180910390fd5b601e8583815181106111dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151511115611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90614c14565b60405180910390fd5b611270858381518110611263577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612993565b6112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690614b94565b60405180910390fd5b8382815181106112e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518114611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890614e34565b60405180910390fd5b61137a84838151811061136d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612757565b156113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b190614b74565b60405180910390fd5b60048583815181106113f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015151101561141557600d54836114129190614ffd565b92505b5080806114219061526f565b9150506110b5565b506000818451600c5461143c91906150bb565b6114469190614ffd565b905080341461148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190614cd4565b60405180910390fd5b60005b6001855161149b9190615115565b81116115a6576114eb338583815181106114de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612b77565b848181518110611524577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160126000868481518110611569577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000209080519060200190611592929190613e02565b50808061159e9061526f565b91505061148d565b50600f60019054906101000a900460ff1615611615576001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50505050565b61162c61162661274f565b82612b95565b61166b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166290614dd4565b60405180910390fd5b611676838383612c73565b505050565b61168361274f565b73ffffffffffffffffffffffffffffffffffffffff166116a1611ff8565b73ffffffffffffffffffffffffffffffffffffffff16146116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee90614d34565b60405180910390fd5b60005b600183516117089190615115565b8111611813576117583383838151811061174b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612b77565b828181518110611791577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601260008484815181106117d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002090805190602001906117ff929190613e02565b50808061180b9061526f565b9150506116fa565b505050565b600061182383611e95565b8210611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b90614af4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6118c561274f565b73ffffffffffffffffffffffffffffffffffffffff166118e3611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090614d34565b60405180910390fd5b611941611ff8565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611986573d6000803e3d6000fd5b50565b6119a483838360405180602001604052806000815250612156565b505050565b6119ba6119b461274f565b82612b95565b6119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f090614e54565b60405180910390fd5b611a0281612ecf565b50565b600080601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905080915050919050565b6000611a6a610e23565b8210611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290614e14565b60405180910390fd5b60088281548110611ae5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611aff61274f565b73ffffffffffffffffffffffffffffffffffffffff16611b1d611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90614d34565b60405180910390fd5b80600e8190555050565b611b8561274f565b73ffffffffffffffffffffffffffffffffffffffff16611ba3611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090614d34565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b611c1e61274f565b73ffffffffffffffffffffffffffffffffffffffff16611c3c611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614611c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8990614d34565b60405180910390fd5b80600b9080519060200190611ca8929190613e02565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4c90614c74565b60405180910390fd5b80915050919050565b611d6661274f565b73ffffffffffffffffffffffffffffffffffffffff16611d84611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd190614d34565b60405180910390fd5b60005b8151811015611e9157600160106000848481518110611e25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611e899061526f565b915050611ddd565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90614c54565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611f5561274f565b73ffffffffffffffffffffffffffffffffffffffff16611f73611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc090614d34565b60405180910390fd5b611fd36000612fe0565b565b600e5481565b600d5481565b6000600f60019054906101000a900460ff16905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61202a61274f565b73ffffffffffffffffffffffffffffffffffffffff16612048611ff8565b73ffffffffffffffffffffffffffffffffffffffff161461209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590614d34565b60405180910390fd5b80600c8190555050565b6060600180546120b79061520c565b80601f01602080910402602001604051908101604052809291908181526020018280546120e39061520c565b80156121305780601f1061210557610100808354040283529160200191612130565b820191906000526020600020905b81548152906001019060200180831161211357829003601f168201915b5050505050905090565b600c5481565b61215261214b61274f565b83836130a6565b5050565b61216761216161274f565b83612b95565b6121a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219d90614dd4565b60405180910390fd5b6121b284848484613213565b50505050565b6121c061274f565b73ffffffffffffffffffffffffffffffffffffffff166121de611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614612234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222b90614d34565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550565b606061225c82612757565b61229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229290614d94565b60405180910390fd5b60006122a561326f565b905060008151116122c557604051806020016040528060008152506122f0565b806122cf84613301565b6040516020016122e0929190614a0c565b6040516020818303038152906040525b915050919050565b600b80546123059061520c565b80601f01602080910402602001604051908101604052809291908181526020018280546123319061520c565b801561237e5780601f106123535761010080835404028352916020019161237e565b820191906000526020600020905b81548152906001019060200180831161236157829003601f168201915b505050505081565b6000806000905060005b6001845161239e9190615115565b81116124125760048482815181106123df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101515110156123ff57600d54826123fc9190614ffd565b91505b808061240a9061526f565b915050612390565b50808351600c5461242391906150bb565b61242d9190614ffd565b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124d161274f565b73ffffffffffffffffffffffffffffffffffffffff166124ef611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c90614d34565b60405180910390fd5b6000600f60016101000a81548160ff021916908315150217905550565b61256a61274f565b73ffffffffffffffffffffffffffffffffffffffff16612588611ff8565b73ffffffffffffffffffffffffffffffffffffffff16146125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d590614d34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561264e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264590614b34565b60405180910390fd5b61265781612fe0565b50565b600f60019054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061273857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127485750612747826134ae565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661283683611cac565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060600082905060005b8151811015612956576128db8282815181106128cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b613518565b828281518110612914577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061294e9061526f565b915050612886565b5080915050919050565b60008160405160200161297391906149f5565b6040516020818303038152906040528051906020012060001c9050919050565b60008082905060005b8151811015612b6b5760008282815181106129e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b9050603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612a495750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b158015612aaf5750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612aad5750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015612b145750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612b125750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015612b465750602e60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15612b575760009350505050612b72565b508080612b639061526f565b91505061299c565b5060019150505b919050565b612b9182826040518060200160405280600081525061359e565b5050565b6000612ba082612757565b612bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd690614bf4565b60405180910390fd5b6000612bea83611cac565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c5957508373ffffffffffffffffffffffffffffffffffffffff16612c4184610bda565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c6a5750612c698185612435565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c9382611cac565b73ffffffffffffffffffffffffffffffffffffffff1614612ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce090614d74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5090614bb4565b60405180910390fd5b612d648383836135f9565b612d6f6000826127c3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dbf9190615115565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e169190614ffd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612eda82611cac565b9050612ee8816000846135f9565b612ef36000836127c3565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f439190615115565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310c90614bd4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516132069190614a97565b60405180910390a3505050565b61321e848484612c73565b61322a8484848461370d565b613269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326090614b14565b60405180910390fd5b50505050565b6060600b805461327e9061520c565b80601f01602080910402602001604051908101604052809291908181526020018280546132aa9061520c565b80156132f75780601f106132cc576101008083540402835291602001916132f7565b820191906000526020600020905b8154815290600101906020018083116132da57829003601f168201915b5050505050905090565b60606000821415613349576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134a9565b600082905060005b6000821461337b5780806133649061526f565b915050600a82613374919061508a565b9150613351565b60008167ffffffffffffffff8111156133bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133ef5781602001600182028036833780820191505090505b5090505b600085146134a2576001826134089190615115565b9150600a8561341791906152b8565b60306134239190614ffd565b60f81b81838151811061345f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561349b919061508a565b94506133f3565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000604160f81b827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156135765750605a60f81b827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b156135955760208260f81c61358b9190615053565b60f81b9050613599565b8190505b919050565b6135a883836138a4565b6135b5600084848461370d565b6135f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135eb90614b14565b60405180910390fd5b505050565b613604838383613a72565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136475761364281613a77565b613686565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613685576136848382613ac0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136c9576136c481613c2d565b613708565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613707576137068282613d70565b5b5b505050565b600061372e8473ffffffffffffffffffffffffffffffffffffffff16613def565b15613897578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261375761274f565b8786866040518563ffffffff1660e01b81526004016137799493929190614a4b565b602060405180830381600087803b15801561379357600080fd5b505af19250505080156137c457506040513d601f19601f820116820180604052508101906137c19190614478565b60015b613847573d80600081146137f4576040519150601f19603f3d011682016040523d82523d6000602084013e6137f9565b606091505b5060008151141561383f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383690614b14565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061389c565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390b90614cf4565b60405180910390fd5b61391d81612757565b1561395d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395490614b54565b60405180910390fd5b613969600083836135f9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139b99190614ffd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613acd84611e95565b613ad79190615115565b9050600060076000848152602001908152602001600020549050818114613bbc576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613c419190615115565b9050600060096000848152602001908152602001600020549050600060088381548110613c97577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613cdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613d7b83611e95565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054613e0e9061520c565b90600052602060002090601f016020900481019282613e305760008555613e77565b82601f10613e4957805160ff1916838001178555613e77565b82800160010185558215613e77579182015b82811115613e76578251825591602001919060010190613e5b565b5b509050613e849190613e88565b5090565b5b80821115613ea1576000816000905550600101613e89565b5090565b6000613eb8613eb384614ed4565b614eaf565b90508083825260208201905082856020860282011115613ed757600080fd5b60005b85811015613f075781613eed888261407f565b845260208401935060208301925050600181019050613eda565b5050509392505050565b6000613f24613f1f84614f00565b614eaf565b90508083825260208201905082856020860282011115613f4357600080fd5b60005b85811015613f8d57813567ffffffffffffffff811115613f6557600080fd5b808601613f72898261417b565b85526020850194506020840193505050600181019050613f46565b5050509392505050565b6000613faa613fa584614f2c565b614eaf565b90508083825260208201905082856020860282011115613fc957600080fd5b60005b85811015613ff95781613fdf88826141a5565b845260208401935060208301925050600181019050613fcc565b5050509392505050565b600061401661401184614f58565b614eaf565b90508281526020810184848401111561402e57600080fd5b6140398482856151ca565b509392505050565b600061405461404f84614f89565b614eaf565b90508281526020810184848401111561406c57600080fd5b6140778482856151ca565b509392505050565b60008135905061408e81615b0a565b92915050565b600082601f8301126140a557600080fd5b81356140b5848260208601613ea5565b91505092915050565b600082601f8301126140cf57600080fd5b81356140df848260208601613f11565b91505092915050565b600082601f8301126140f957600080fd5b8135614109848260208601613f97565b91505092915050565b60008135905061412181615b21565b92915050565b60008135905061413681615b38565b92915050565b60008151905061414b81615b38565b92915050565b600082601f83011261416257600080fd5b8135614172848260208601614003565b91505092915050565b600082601f83011261418c57600080fd5b813561419c848260208601614041565b91505092915050565b6000813590506141b481615b4f565b92915050565b6000602082840312156141cc57600080fd5b60006141da8482850161407f565b91505092915050565b600080604083850312156141f657600080fd5b60006142048582860161407f565b92505060206142158582860161407f565b9150509250929050565b60008060006060848603121561423457600080fd5b60006142428682870161407f565b93505060206142538682870161407f565b9250506040614264868287016141a5565b9150509250925092565b6000806000806080858703121561428457600080fd5b60006142928782880161407f565b94505060206142a38782880161407f565b93505060406142b4878288016141a5565b925050606085013567ffffffffffffffff8111156142d157600080fd5b6142dd87828801614151565b91505092959194509250565b600080604083850312156142fc57600080fd5b600061430a8582860161407f565b925050602061431b85828601614112565b9150509250929050565b6000806040838503121561433857600080fd5b60006143468582860161407f565b9250506020614357858286016141a5565b9150509250929050565b60006020828403121561437357600080fd5b600082013567ffffffffffffffff81111561438d57600080fd5b61439984828501614094565b91505092915050565b6000602082840312156143b457600080fd5b600082013567ffffffffffffffff8111156143ce57600080fd5b6143da848285016140be565b91505092915050565b600080604083850312156143f657600080fd5b600083013567ffffffffffffffff81111561441057600080fd5b61441c858286016140be565b925050602083013567ffffffffffffffff81111561443957600080fd5b614445858286016140e8565b9150509250929050565b60006020828403121561446157600080fd5b600061446f84828501614127565b91505092915050565b60006020828403121561448a57600080fd5b60006144988482850161413c565b91505092915050565b6000602082840312156144b357600080fd5b600082013567ffffffffffffffff8111156144cd57600080fd5b6144d98482850161417b565b91505092915050565b6000602082840312156144f457600080fd5b6000614502848285016141a5565b91505092915050565b61451481615149565b82525050565b6145238161515b565b82525050565b600061453482614fba565b61453e8185614fd0565b935061454e8185602086016151d9565b614557816153a5565b840191505092915050565b600061456d82614fc5565b6145778185614fe1565b93506145878185602086016151d9565b614590816153a5565b840191505092915050565b60006145a682614fc5565b6145b08185614ff2565b93506145c08185602086016151d9565b80840191505092915050565b60006145d9600b83614fe1565b91506145e4826153b6565b602082019050919050565b60006145fc602b83614fe1565b9150614607826153df565b604082019050919050565b600061461f603283614fe1565b915061462a8261542e565b604082019050919050565b6000614642602683614fe1565b915061464d8261547d565b604082019050919050565b6000614665601c83614fe1565b9150614670826154cc565b602082019050919050565b6000614688601483614fe1565b9150614693826154f5565b602082019050919050565b60006146ab601d83614fe1565b91506146b68261551e565b602082019050919050565b60006146ce602483614fe1565b91506146d982615547565b604082019050919050565b60006146f1601983614fe1565b91506146fc82615596565b602082019050919050565b6000614714602c83614fe1565b915061471f826155bf565b604082019050919050565b6000614737601783614fe1565b91506147428261560e565b602082019050919050565b600061475a603883614fe1565b915061476582615637565b604082019050919050565b600061477d602a83614fe1565b915061478882615686565b604082019050919050565b60006147a0602983614fe1565b91506147ab826156d5565b604082019050919050565b60006147c3602483614fe1565b91506147ce82615724565b604082019050919050565b60006147e6602b83614fe1565b91506147f182615773565b604082019050919050565b6000614809601c83614fe1565b9150614814826157c2565b602082019050919050565b600061482c602083614fe1565b9150614837826157eb565b602082019050919050565b600061484f602c83614fe1565b915061485a82615814565b604082019050919050565b6000614872602083614fe1565b915061487d82615863565b602082019050919050565b6000614895601983614fe1565b91506148a08261588c565b602082019050919050565b60006148b8602983614fe1565b91506148c3826158b5565b604082019050919050565b60006148db602f83614fe1565b91506148e682615904565b604082019050919050565b60006148fe602183614fe1565b915061490982615953565b604082019050919050565b6000614921603183614fe1565b915061492c826159a2565b604082019050919050565b6000614944601a83614fe1565b915061494f826159f1565b602082019050919050565b6000614967602c83614fe1565b915061497282615a1a565b604082019050919050565b600061498a600c83614fe1565b915061499582615a69565b602082019050919050565b60006149ad603083614fe1565b91506149b882615a92565b604082019050919050565b60006149d0601f83614fe1565b91506149db82615ae1565b602082019050919050565b6149ef816151b3565b82525050565b6000614a01828461459b565b915081905092915050565b6000614a18828561459b565b9150614a24828461459b565b91508190509392505050565b6000602082019050614a45600083018461450b565b92915050565b6000608082019050614a60600083018761450b565b614a6d602083018661450b565b614a7a60408301856149e6565b8181036060830152614a8c8184614529565b905095945050505050565b6000602082019050614aac600083018461451a565b92915050565b60006020820190508181036000830152614acc8184614562565b905092915050565b60006020820190508181036000830152614aed816145cc565b9050919050565b60006020820190508181036000830152614b0d816145ef565b9050919050565b60006020820190508181036000830152614b2d81614612565b9050919050565b60006020820190508181036000830152614b4d81614635565b9050919050565b60006020820190508181036000830152614b6d81614658565b9050919050565b60006020820190508181036000830152614b8d8161467b565b9050919050565b60006020820190508181036000830152614bad8161469e565b9050919050565b60006020820190508181036000830152614bcd816146c1565b9050919050565b60006020820190508181036000830152614bed816146e4565b9050919050565b60006020820190508181036000830152614c0d81614707565b9050919050565b60006020820190508181036000830152614c2d8161472a565b9050919050565b60006020820190508181036000830152614c4d8161474d565b9050919050565b60006020820190508181036000830152614c6d81614770565b9050919050565b60006020820190508181036000830152614c8d81614793565b9050919050565b60006020820190508181036000830152614cad816147b6565b9050919050565b60006020820190508181036000830152614ccd816147d9565b9050919050565b60006020820190508181036000830152614ced816147fc565b9050919050565b60006020820190508181036000830152614d0d8161481f565b9050919050565b60006020820190508181036000830152614d2d81614842565b9050919050565b60006020820190508181036000830152614d4d81614865565b9050919050565b60006020820190508181036000830152614d6d81614888565b9050919050565b60006020820190508181036000830152614d8d816148ab565b9050919050565b60006020820190508181036000830152614dad816148ce565b9050919050565b60006020820190508181036000830152614dcd816148f1565b9050919050565b60006020820190508181036000830152614ded81614914565b9050919050565b60006020820190508181036000830152614e0d81614937565b9050919050565b60006020820190508181036000830152614e2d8161495a565b9050919050565b60006020820190508181036000830152614e4d8161497d565b9050919050565b60006020820190508181036000830152614e6d816149a0565b9050919050565b60006020820190508181036000830152614e8d816149c3565b9050919050565b6000602082019050614ea960008301846149e6565b92915050565b6000614eb9614eca565b9050614ec5828261523e565b919050565b6000604051905090565b600067ffffffffffffffff821115614eef57614eee615376565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f1b57614f1a615376565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f4757614f46615376565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f7357614f72615376565b5b614f7c826153a5565b9050602081019050919050565b600067ffffffffffffffff821115614fa457614fa3615376565b5b614fad826153a5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615008826151b3565b9150615013836151b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615048576150476152e9565b5b828201905092915050565b600061505e826151bd565b9150615069836151bd565b92508260ff0382111561507f5761507e6152e9565b5b828201905092915050565b6000615095826151b3565b91506150a0836151b3565b9250826150b0576150af615318565b5b828204905092915050565b60006150c6826151b3565b91506150d1836151b3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561510a576151096152e9565b5b828202905092915050565b6000615120826151b3565b915061512b836151b3565b92508282101561513e5761513d6152e9565b5b828203905092915050565b600061515482615193565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156151f75780820151818401526020810190506151dc565b83811115615206576000848401525b50505050565b6000600282049050600182168061522457607f821691505b6020821081141561523857615237615347565b5b50919050565b615247826153a5565b810181811067ffffffffffffffff8211171561526657615265615376565b5b80604052505050565b600061527a826151b3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152ad576152ac6152e9565b5b600182019050919050565b60006152c3826151b3565b91506152ce836151b3565b9250826152de576152dd615318565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546f6b656e20616c726561647920657869737473000000000000000000000000600082015250565b7f557365726e616d65206d75737420626520616c7068616e756d65726963000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f557365726e616d65206c656e67746820696e76616c6964000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e7420737065636966696564206e756d626572206f662060008201527f75726c7a00000000000000000000000000000000000000000000000000000000602082015250565b7f596f75206861766520616c72656164792072656465656d656420796f7572207060008201527f726573616c652075726c7a000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e647320746f2072656465656d00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e206f6e6c79206d696e74203420617420612074696d6500000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f42616c616e636520746f6f206c6f7720666f7220616d6f756e74000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f696e76616c696420686173680000000000000000000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f596f7520617265206e6f74206f6e207468652070726573616c65206c69737400600082015250565b615b1381615149565b8114615b1e57600080fd5b50565b615b2a8161515b565b8114615b3557600080fd5b50565b615b4181615167565b8114615b4c57600080fd5b50565b615b58816151b3565b8114615b6357600080fd5b5056fea2646970667358221220b85d6594090073231ac75337dea6e56e5a8437f4e21fe65f085950d97096d7bc64736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f6170692e75726c7a2e636f6d2f6170692f7472616974732f

-----Decoded View---------------
Arg [0] : baseURI (string): https://api.urlz.com/api/traits/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [2] : 68747470733a2f2f6170692e75726c7a2e636f6d2f6170692f7472616974732f


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.