ETH Price: $3,073.77 (-3.39%)
 

Overview

Max Total Supply

540 AoG

Holders

168

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 AoG
0x7176334f78076982ef015154559f30744aa310ea
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:
ApesOfGalata

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 50000 runs

Other Settings:
default evmVersion
File 1 of 13 : ApesOfGalata.sol
// SPDX-License-Identifier: MIT
// Author: Pagzi Tech Inc. | 2022
// Apes of Galata - AoG | 23/04/1920 - ∞
pragma solidity >=0.8.0 <0.9.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721Enumerable.sol";

contract ApesOfGalata is ERC721Enumerable, Ownable {

    //sale settings
    uint256 public cost = 0.066 ether;
    uint256 public costPre = 0.044 ether;
    uint256 public maxSupply = 5555;
    uint256 public maxSupplyPre = 2000;
    uint256 public maxMint = 10;
    uint256 public maxMintPre = 2;
    uint256 public maxMintOG = 4;

    //backend settings
    string public baseURI;
    address internal immutable pagzidev = 0xeBaBB8C951F5c3b17b416A3D840C52CcaB728c19;
    address internal immutable founder = 0x798c55F940dcF5E76a8767FeD389507aDAB6424d;
    address internal immutable partner1 = 0x3F468Aeb495bA39Cc9af5b02150d5740f2aC54E6;
    address internal immutable partner2 = 0x16b3257332de4B09f2638a7cCC46FC49F5E19b6D;
    address internal immutable partner3 = 0x150396a3153d522ACBE5b03d9eF73A40F94020D5;
    address internal immutable partner4 = 0x882Ec39B5c19A71B5D95515fd911fDB06A667c40;
    address internal proxyAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    mapping(address => bool) public projectProxy;

    //date variables
    uint256 public publicDate = 1650751200;
    uint256 public preDate = 1650740400;

    //mint passes
    mapping(address => uint256) public mintPasses;

    //royalty settings
    address public royaltyAddr = 0x546f3882DD1f90A4D399f843DB23EB473a88CAEd;
    uint256 public royaltyFee = 7500;

    function getPrice(uint256 quantity) public view returns (uint256){
    uint256 totalPrice = 0;
    if (publicDate < block.timestamp) {
    for (uint256 i = 0; i < quantity; i++) {
    totalPrice += cost;
    }
    return totalPrice;
    }
    uint256 current = _owners.length;
    for (uint256 j = 0; j < quantity; j++) {
    if (current > maxSupplyPre + 1) {
    totalPrice += cost;
    } else {
    totalPrice += costPre;
    }
    current++;
    }
    delete current;
    return totalPrice;
    }

    modifier checkLimit(uint256 _mintAmount) {
        require(_mintAmount > 0 && _mintAmount - 1 < maxMint, "Invalid mint amount!");
        require(_owners.length + _mintAmount < maxSupply + 1, "Max supply exceeded!");
        _;
    }
    modifier checkLimitPre(uint256 _mintAmount) {
        require(_mintAmount > 0 && _mintAmount - 1 < maxMintPre, "Invalid mint amount!");
        require(_owners.length + _mintAmount < maxSupply + 1, "Max supply exceeded!");
        _;
    }
    modifier checkLimitOG(uint256 _mintAmount) {
        require(_mintAmount > 0 && _mintAmount - 1 < maxMintOG, "Invalid mint amount!");
        require(_owners.length + _mintAmount < maxSupply + 1, "Max supply exceeded!");
        _;
    }
    modifier checkDate() {
        require((publicDate <= block.timestamp),"Public sale is not yet!");
        _;
    }
    modifier checkPreDate() {
        require((preDate <= block.timestamp),"Presale is not yet!");
        _;
    }
    modifier checkPrice(uint256 _mintAmount) {
        require(msg.value >= getPrice(_mintAmount), "Insufficient funds!");
        _;
    }

    constructor() ERC721("Apes of Galata", "AoG") {
        baseURI = "https://theapesofgalata.nftapi.art/meta/";
    }

    // external
    function mint(uint256 count) external payable checkLimit(count) checkPrice(count) checkDate {
        uint256 totalSupply = _owners.length;
        for(uint i; i < count; i++) { 
            _mint(msg.sender, totalSupply + i + 1);
        }
    }
    function mintOG(uint256 count) external payable checkLimitOG(count) checkPrice(count) checkPreDate {
        uint256 totalSupply = _owners.length;
        uint256 reserve = mintPasses[msg.sender];
        require((reserve - count + 1) > 0, "Low reserve!");
        for (uint256 i = 0; i < count; ++i) {
            _mint(msg.sender, totalSupply + i + 1);
        }
        mintPasses[msg.sender] = reserve - count;
        delete totalSupply;
        delete reserve;
    }
    function mintPre(uint256 count) external payable checkLimitPre(count) checkPrice(count) checkPreDate {
        uint256 reserve = balanceOf(msg.sender);
        require((reserve + count ) < 3, "Low reserve!");
        uint256 totalSupply = _owners.length;
        for (uint256 i = 0; i < count; ++i) {
            _mint(msg.sender, totalSupply + i + 1);
        }
        delete totalSupply;
        delete reserve;
    }

    //only owner
    function gift(uint[] calldata quantity, address[] calldata recipient) external onlyOwner{
    require(quantity.length == recipient.length, "Provide quantities and recipients" );
    uint totalQuantity;
    uint256 totalSupply = _owners.length;
    for(uint i = 0; i < quantity.length; ++i){
        totalQuantity += quantity[i];
    }
    require(totalSupply + totalQuantity + 1 <= maxSupply, "Not enough supply!" );
        for(uint i = 0; i < recipient.length; ++i){
        for(uint j = 0; j < quantity[i]; ++j){
            _mint(recipient[i], totalSupply + 1);
            totalSupply++;
        }
        }
    }
    function setCost(uint256 _cost) external onlyOwner {
        cost = _cost;
    }
    function setCostPre(uint256 _costPre) external onlyOwner {
        costPre = _costPre;
    }
    function setSupply(uint256 _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }
    function setSupplyPre(uint256 _maxSupplyPre) external onlyOwner {
        maxSupplyPre = _maxSupplyPre;
    }
    function setPublicDate(uint256 _publicDate) external onlyOwner {
        publicDate = _publicDate;
    }
    function setPreDate(uint256 _preDate) external onlyOwner {
        preDate = _preDate;
    }
    function setDates(uint256 _publicDate, uint256 _preDate) external onlyOwner {
        publicDate = _publicDate;
        preDate = _preDate;
    }
    function setMintPass(address _address,uint256 _quantity) external onlyOwner {
        mintPasses[_address] = _quantity;
    }
    function setMintPasses(address[] calldata _addresses, uint256[] calldata _amounts) external onlyOwner {
        for(uint256 i; i < _addresses.length; i++){
        mintPasses[_addresses[i]] = _amounts[i];
        }
    }
    function setBaseURI(string memory _baseURI) public onlyOwner {
        baseURI = _baseURI;
    }
    function switchProxy(address _proxyAddress) public onlyOwner {
        projectProxy[_proxyAddress] = !projectProxy[_proxyAddress];
    }
    function setProxy(address _proxyAddress) external onlyOwner {
        proxyAddress = _proxyAddress;
    }
    //ERC-2981 Royalty Implementation
    function setRoyalty(address _royaltyAddr, uint256 _royaltyFee) public onlyOwner {
        require(_royaltyFee < 10001, "ERC-2981: Royalty too high");
        royaltyAddr = _royaltyAddr;
        royaltyFee = _royaltyFee;
    }
    function royaltyInfo(uint256, uint256 value) external view 
    returns (address receiver, uint256 royaltyAmount){
    require(royaltyFee > 0, "ERC-2981: Royalty too high");
    return (royaltyAddr, (value * royaltyFee) / 10000);
    }
    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
    }
    function burn(uint256 tokenId) public { 
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Not approved to burn.");
        _burn(tokenId);
    }
    function tokensOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) return new uint256[](0);
        uint256[] memory tokensId = new uint256[](tokenCount);
        uint16 j = 0;
        for( uint i; i < _owners.length; i++ ){
          if(_owner == _owners[i]){
            tokensId[j] = i + 1; 
            j++;
            }
            if(j == tokenCount) return tokensId;
        }
        return tokensId;
    }
    function batchTransferFrom(address _from, address _to, uint256[] memory _tokenIds) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            transferFrom(_from, _to, _tokenIds[i]);
        }
    }
    function batchSafeTransferFrom(address _from, address _to, uint256[] memory _tokenIds, bytes memory data_) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            safeTransferFrom(_from, _to, _tokenIds[i], data_);
        }
    }
    function isOwnerOf(address account, uint256[] calldata _tokenIds) external view returns (bool){
        for(uint256 i; i < _tokenIds.length; ++i ){
            if(_owners[_tokenIds[i]] != account)
                return false;
        }
        return true;
    }
    function isApprovedForAll(address _owner, address operator) public view override(IERC721,ERC721) returns (bool) {
        //Free listing on OpenSea by granting access to their proxy wallet. This can be removed in case of a breach on OS.
        OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyAddress);
        if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]) return true;
        return super.isApprovedForAll(_owner, operator);
    }
    function _mint(address to, uint256 tokenId) internal virtual override {
        _owners.push(to);
        emit Transfer(address(0), to, tokenId);
    }
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(pagzidev).transfer((balance * 250) / 1000);
        payable(founder).transfer((balance * 235) / 1000);
        payable(partner1).transfer((balance * 250) / 1000);
        payable(partner2).transfer((balance * 100) / 1000);
        payable(partner3).transfer((balance * 150) / 1000);
        payable(partner4).transfer((balance * 15) / 1000);
    }
}
contract OwnableDelegateProxy { }
contract OpenSeaProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

File 2 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// Author: Pagzi Tech Inc. | 2022
pragma solidity >=0.8.0 <0.9.0;
import "./ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/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 but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || 
        interfaceId == 0xe8a3d485 /* contractURI() */ ||
        interfaceId == 0x2a55205a /* ERC-2981 royaltyInfo() */ ||
        super.supportsInterface(interfaceId);
    }
    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < _owners.length, "ERC721Enumerable: global index out of bounds");
        return index + 1;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i+1;
                else count++;
            }
        }
        revert("ERC721Enumerable: owner index out of bounds");
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// Author: Pagzi Tech Inc. | 2022
pragma solidity >=0.8.0 <0.9.0;
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "./Address.sol";

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    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 (uint) 
    {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count;
        for( uint i; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId - 1];
        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 {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 - 1];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < (_owners.length + 1)  && _owners[tokenId - 1] != 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);
        _owners.push(to);
        
        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`. TODO: Real burn, drop from owners array!
     * 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);
        _owners[tokenId - 1] = address(0);

        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);
        _owners[tokenId - 1] = 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 - 1] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

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

File 6 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 13 : Address.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;
library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

File 8 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 9 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costPre","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"isOwnerOf","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":"maxMintOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPre","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPre","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintOG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintPasses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintPre","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_costPre","type":"uint256"}],"name":"setCostPre","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicDate","type":"uint256"},{"internalType":"uint256","name":"_preDate","type":"uint256"}],"name":"setDates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setMintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"setMintPasses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preDate","type":"uint256"}],"name":"setPreDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyAddress","type":"address"}],"name":"setProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicDate","type":"uint256"}],"name":"setPublicDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyAddr","type":"address"},{"internalType":"uint256","name":"_royaltyFee","type":"uint256"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplyPre","type":"uint256"}],"name":"setSupplyPre","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":[{"internalType":"address","name":"_proxyAddress","type":"address"}],"name":"switchProxy","outputs":[],"stateMutability":"nonpayable","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":"tokenId","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61014060405266ea7aa67b2d0000600655669c51c4521e00006007556115b36008556107d0600955600a80556002600b556004600c5573ebabb8c951f5c3b17b416a3d840c52ccab728c1960805273798c55f940dcf5e76a8767fed389507adab6424d60a052733f468aeb495ba39cc9af5b02150d5740f2ac54e660c0527316b3257332de4b09f2638a7ccc46fc49f5e19b6d60e05273150396a3153d522acbe5b03d9ef73a40f94020d56101005273882ec39b5c19a71b5d95515fd911fdb06a667c4061012052600e80546001600160a01b031990811673a5409ec958c83c3f309868babaca7c86dcb077c11790915563626476e06010556362644cb06011556013805490911673546f3882dd1f90a4d399f843db23eb473a88caed179055611d4c6014553480156200013257600080fd5b50604080518082018252600e81526d41706573206f662047616c61746160901b602080830191825283518085019094526003845262416f4760e81b908401528151919291620001849160009162000244565b5080516200019a90600190602084019062000244565b505050620001b7620001b1620001ee60201b60201c565b620001f2565b60405180606001604052806028815260200162004ca9602891398051620001e791600d9160209091019062000244565b5062000326565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200025290620002ea565b90600052602060002090601f016020900481019282620002765760008555620002c1565b82601f106200029157805160ff1916838001178555620002c1565b82800160010185558215620002c1579182015b82811115620002c1578251825591602001919060010190620002a4565b50620002cf929150620002d3565b5090565b5b80821115620002cf5760008155600101620002d4565b600181811c90821680620002ff57607f821691505b6020821081036200032057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051610120516149336200037660003960006119e001526000611965015260006118ea0152600061186f015260006117f40152600061177901526149336000f3fe6080604052600436106103815760003560e01c80636c0360eb116101d1578063a08aef2f11610102578063dedf141e116100a0578063ea9d6d291161006f578063ea9d6d2914610a3e578063f2fde38b14610a5e578063f3993d1114610a7e578063f41cb01b14610a9e57600080fd5b8063dedf141e146109be578063e7572230146109de578063e928ff9f146109fe578063e985e9c514610a1e57600080fd5b8063b8997a97116100dc578063b8997a9714610952578063bae3aaa614610968578063c87b56dd14610988578063d5abeb01146109a857600080fd5b8063a08aef2f146108fc578063a22cb46514610912578063b88d4fde1461093257600080fd5b80638da5cb5b1161016f57806395d89b411161014957806395d89b411461089457806396ea3a47146108a957806397107d6d146108c9578063a0712d68146108e957600080fd5b80638da5cb5b146108295780638f1bca111461085457806394bb4c041461088157600080fd5b80637501f741116101ab5780637501f741146107b05780638462151c146107c6578063858feced146107f357806389a1f66f1461080957600080fd5b80636c0360eb1461076657806370a082311461077b578063715018a61461079b57600080fd5b80633bbaac7b116102b65780634d44660c11610254578063596599ae11610223578063596599ae146106e05780635a4fee30146106f65780635bab26e2146107165780636352211e1461074657600080fd5b80634d44660c1461066a5780634f6ccce71461068a57806351463d5b146106aa57806355f804b3146106c057600080fd5b806342966c681161029057806342966c68146105f457806344a0d68a1461061457806348466402146106345780634bfb8ed31461065457600080fd5b80633bbaac7b146105ac5780633ccfd60b146105bf57806342842e0e146105d457600080fd5b806318160ddd116103235780632a55205a116102fd5780632a55205a146104f35780632f745c591461053f5780633009c0831461055f5780633b4c4b251461058c57600080fd5b806318160ddd1461049e57806323b872dd146104b3578063245cad7a146104d357600080fd5b8063095ea7b31161035f578063095ea7b314610422578063108ce0a21461044457806310fd332b1461046857806313faede61461048857600080fd5b806301ffc9a71461038657806306fdde03146103bb578063081812fc146103dd575b600080fd5b34801561039257600080fd5b506103a66103a1366004613f49565b610abe565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103d0610bb2565b6040516103b29190613fdc565b3480156103e957600080fd5b506103fd6103f8366004613fef565b610c44565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103b2565b34801561042e57600080fd5b5061044261043d36600461402a565b610d1c565b005b34801561045057600080fd5b5061045a60115481565b6040519081526020016103b2565b34801561047457600080fd5b5061044261048336600461402a565b610ea8565b34801561049457600080fd5b5061045a60065481565b3480156104aa57600080fd5b5060025461045a565b3480156104bf57600080fd5b506104426104ce366004614056565b610fdf565b3480156104df57600080fd5b506104426104ee366004614097565b611081565b3480156104ff57600080fd5b5061051361050e3660046140b4565b611156565b6040805173ffffffffffffffffffffffffffffffffffffffff90931683526020830191909152016103b2565b34801561054b57600080fd5b5061045a61055a36600461402a565b611208565b34801561056b57600080fd5b506013546103fd9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561059857600080fd5b506104426105a7366004613fef565b6113b2565b6104426105ba366004613fef565b611438565b3480156105cb57600080fd5b506104426116e0565b3480156105e057600080fd5b506104426105ef366004614056565b611a47565b34801561060057600080fd5b5061044261060f366004613fef565b611a62565b34801561062057600080fd5b5061044261062f366004613fef565b611add565b34801561064057600080fd5b5061044261064f36600461402a565b611b63565b34801561066057600080fd5b5061045a60075481565b34801561067657600080fd5b506103a661068536600461411b565b611c0d565b34801561069657600080fd5b5061045a6106a5366004613fef565b611ca9565b3480156106b657600080fd5b5061045a60105481565b3480156106cc57600080fd5b506104426106db366004614264565b611d48565b3480156106ec57600080fd5b5061045a60095481565b34801561070257600080fd5b5061044261071136600461434d565b611ddc565b34801561072257600080fd5b506103a6610731366004614097565b600f6020526000908152604090205460ff1681565b34801561075257600080fd5b506103fd610761366004613fef565b611e26565b34801561077257600080fd5b506103d0611ef7565b34801561078757600080fd5b5061045a610796366004614097565b611f85565b3480156107a757600080fd5b5061044261209a565b3480156107bc57600080fd5b5061045a600a5481565b3480156107d257600080fd5b506107e66107e1366004614097565b612127565b6040516103b291906143d6565b3480156107ff57600080fd5b5061045a600b5481565b34801561081557600080fd5b50610442610824366004613fef565b612253565b34801561083557600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166103fd565b34801561086057600080fd5b5061045a61086f366004614097565b60126020526000908152604090205481565b61044261088f366004613fef565b6122d9565b3480156108a057600080fd5b506103d0612598565b3480156108b557600080fd5b506104426108c436600461441a565b6125a7565b3480156108d557600080fd5b506104426108e4366004614097565b612819565b6104426108f7366004613fef565b6128e1565b34801561090857600080fd5b5061045a600c5481565b34801561091e57600080fd5b5061044261092d366004614486565b612af3565b34801561093e57600080fd5b5061044261094d3660046144c4565b612c09565b34801561095e57600080fd5b5061045a60145481565b34801561097457600080fd5b50610442610983366004613fef565b612cb1565b34801561099457600080fd5b506103d06109a3366004613fef565b612d37565b3480156109b457600080fd5b5061045a60085481565b3480156109ca57600080fd5b506104426109d93660046140b4565b612dda565b3480156109ea57600080fd5b5061045a6109f9366004613fef565b612e66565b348015610a0a57600080fd5b50610442610a1936600461441a565b612f13565b348015610a2a57600080fd5b506103a6610a39366004614524565b61301c565b348015610a4a57600080fd5b50610442610a59366004613fef565b61314d565b348015610a6a57600080fd5b50610442610a79366004614097565b6131d3565b348015610a8a57600080fd5b50610442610a99366004614552565b613300565b348015610aaa57600080fd5b50610442610ab9366004613fef565b613342565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610b5157507fe8a3d485000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b80610b9d57507f2a55205a000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b80610bac5750610bac826133c8565b92915050565b606060008054610bc1906145b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610bed906145b4565b8015610c3a5780601f10610c0f57610100808354040283529160200191610c3a565b820191906000526020600020905b815481529060010190602001808311610c1d57829003601f168201915b5050505050905090565b6000610c4f826134ab565b610ce0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60036000610cef600185614636565b815260208101919091526040016000205473ffffffffffffffffffffffffffffffffffffffff1692915050565b6000610d2782611e26565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610cd7565b3373ffffffffffffffffffffffffffffffffffffffff82161480610e0d5750610e0d813361301c565b610e99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610cd7565b610ea3838361350e565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610f29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b6127118110610f94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4552432d323938313a20526f79616c747920746f6f20686967680000000000006044820152606401610cd7565b601380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9390931692909217909155601455565b610fea335b826135c0565b611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610cd7565b610ea38383836136e1565b60055473ffffffffffffffffffffffffffffffffffffffff163314611102576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b73ffffffffffffffffffffffffffffffffffffffff166000908152600f6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b6000806000601454116111c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4552432d323938313a20526f79616c747920746f6f20686967680000000000006044820152606401610cd7565b60135460145473ffffffffffffffffffffffffffffffffffffffff90911690612710906111f2908661464d565b6111fc91906146b9565b915091505b9250929050565b600061121383611f85565b82106112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610cd7565b6000805b60025481101561132957600281815481106112c2576112c26146cd565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff9081169086160361131757838203611309576113008160016146fc565b92505050610bac565b8161131381614714565b9250505b8061132181614714565b9150506112a5565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610cd7565b60055473ffffffffffffffffffffffffffffffffffffffff163314611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b600855565b806000811180156114545750600b54611452600183614636565b105b6114ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610cd7565b6008546114c89060016146fc565b6002546114d69083906146fc565b1061153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610cd7565b8161154781612e66565b3410156115b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610cd7565b42601154111561161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f50726573616c65206973206e6f742079657421000000000000000000000000006044820152606401610cd7565b600061162733611f85565b9050600361163585836146fc565b1061169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4c6f7720726573657276652100000000000000000000000000000000000000006044820152606401610cd7565b60025460005b858110156116d8576116c8336116b883856146fc565b6116c39060016146fc565b6138ee565b6116d181614714565b90506116a2565b505050505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b4773ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166108fc6103e86117aa8460fa61464d565b6117b491906146b9565b6040518115909202916000818181858888f193505050501580156117dc573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166108fc6103e86118258460eb61464d565b61182f91906146b9565b6040518115909202916000818181858888f19350505050158015611857573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166108fc6103e86118a08460fa61464d565b6118aa91906146b9565b6040518115909202916000818181858888f193505050501580156118d2573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166108fc6103e861191b84606461464d565b61192591906146b9565b6040518115909202916000818181858888f1935050505015801561194d573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166108fc6103e861199684609661464d565b6119a091906146b9565b6040518115909202916000818181858888f193505050501580156119c8573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166108fc6103e8611a1184600f61464d565b611a1b91906146b9565b6040518115909202916000818181858888f19350505050158015611a43573d6000803e3d6000fd5b5050565b610ea383838360405180602001604052806000815250612c09565b611a6b33610fe4565b611ad1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4e6f7420617070726f76656420746f206275726e2e00000000000000000000006044820152606401610cd7565b611ada8161398f565b50565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b600655565b60055473ffffffffffffffffffffffffffffffffffffffff163314611be4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b73ffffffffffffffffffffffffffffffffffffffff909116600090815260126020526040902055565b6000805b82811015611c9c578473ffffffffffffffffffffffffffffffffffffffff166002858584818110611c4457611c446146cd565b9050602002013581548110611c5b57611c5b6146cd565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614611c8c576000915050611ca2565b611c9581614714565b9050611c11565b50600190505b9392505050565b6002546000908210611d3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610cd7565b610bac8260016146fc565b60055473ffffffffffffffffffffffffffffffffffffffff163314611dc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b8051611a4390600d906020840190613e82565b60005b8251811015611e1f57611e0d8585858481518110611dff57611dff6146cd565b602002602001015185612c09565b80611e1781614714565b915050611ddf565b5050505050565b6000806002611e36600185614636565b81548110611e4657611e466146cd565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610bac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610cd7565b600d8054611f04906145b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611f30906145b4565b8015611f7d5780601f10611f5257610100808354040283529160200191611f7d565b820191906000526020600020905b815481529060010190602001808311611f6057829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff821661202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610cd7565b6000805b600254811015612093576002818154811061204b5761204b6146cd565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff908116908516036120835761208082614714565b91505b61208c81614714565b905061202e565b5092915050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461211b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b6121256000613a40565b565b6060600061213483611f85565b905080600003612154575050604080516000815260208101909152919050565b60008167ffffffffffffffff81111561216f5761216f614170565b604051908082528060200260200182016040528015612198578160200160208202803683370190505b5090506000805b60025481101561224957600281815481106121bc576121bc6146cd565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff90811690871603612222576121f38160016146fc565b838361ffff1681518110612209576122096146cd565b60209081029190910101528161221e8161474c565b9250505b838261ffff1603612237575090949350505050565b8061224181614714565b91505061219f565b5090949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146122d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b601155565b806000811180156122f55750600c546122f3600183614636565b105b61235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610cd7565b6008546123699060016146fc565b6002546123779083906146fc565b106123de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610cd7565b816123e881612e66565b341015612451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610cd7565b4260115411156124bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f50726573616c65206973206e6f742079657421000000000000000000000000006044820152606401610cd7565b60025433600090815260126020526040812054906124db8683614636565b6124e69060016146fc565b1161254d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4c6f7720726573657276652100000000000000000000000000000000000000006044820152606401610cd7565b60005b8581101561257657612566336116b883866146fc565b61256f81614714565b9050612550565b506125818582614636565b336000908152601260205260409020555050505050565b606060018054610bc1906145b4565b60055473ffffffffffffffffffffffffffffffffffffffff163314612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b8281146126b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e7460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610cd7565b600254600090815b858110156126fd578686828181106126d9576126d96146cd565b90506020020135836126eb91906146fc565b92506126f681614714565b90506126bf565b5060085461270b83836146fc565b6127169060016146fc565b111561277e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420656e6f75676820737570706c792100000000000000000000000000006044820152606401610cd7565b60005b838110156128105760005b87878381811061279e5761279e6146cd565b905060200201358110156127ff576127e18686848181106127c1576127c16146cd565b90506020020160208101906127d69190614097565b6116c38560016146fc565b826127eb81614714565b935050806127f890614714565b905061278c565b5061280981614714565b9050612781565b50505050505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461289a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b600e80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b806000811180156128fd5750600a546128fb600183614636565b105b612963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610cd7565b6008546129719060016146fc565b60025461297f9083906146fc565b106129e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610cd7565b816129f081612e66565b341015612a59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610cd7565b426010541115612ac5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f5075626c69632073616c65206973206e6f7420796574210000000000000000006044820152606401610cd7565b60025460005b84811015611e1f57612ae1336116b883856146fc565b80612aeb81614714565b915050612acb565b3373ffffffffffffffffffffffffffffffffffffffff831603612b72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610cd7565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b612c1333836135c0565b612c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610cd7565b612cab84848484613ab7565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612d32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b600755565b6060612d42826134ab565b612da8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f546f6b656e20646f6573206e6f742065786973742e00000000000000000000006044820152606401610cd7565b600d612db383613b5a565b604051602001612dc4929190614789565b6040516020818303038152906040529050919050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612e5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b601091909155601155565b60008060009050426010541015612ea35760005b8381101561209357600654612e8f90836146fc565b915080612e9b81614714565b915050612e7a565b60025460005b84811015612f0a57600954612ebf9060016146fc565b821115612eda57600654612ed390846146fc565b9250612eea565b600754612ee790846146fc565b92505b81612ef481614714565b9250508080612f0290614714565b915050612ea9565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612f94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b60005b83811015611e1f57828282818110612fb157612fb16146cd565b9050602002013560126000878785818110612fce57612fce6146cd565b9050602002016020810190612fe39190614097565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020558061301481614714565b915050612f97565b600e546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015613094573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130b89190614866565b73ffffffffffffffffffffffffffffffffffffffff1614806130ff575073ffffffffffffffffffffffffffffffffffffffff83166000908152600f602052604090205460ff165b1561310e576001915050610bac565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146131ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b601055565b60055473ffffffffffffffffffffffffffffffffffffffff163314613254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b73ffffffffffffffffffffffffffffffffffffffff81166132f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cd7565b611ada81613a40565b60005b8151811015612cab576133308484848481518110613323576133236146cd565b6020026020010151610fdf565b8061333a81614714565b915050613303565b60055473ffffffffffffffffffffffffffffffffffffffff1633146133c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b600955565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061345b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610bac57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610bac565b6002546000906134bc9060016146fc565b82108015610bac5750600060026134d4600185614636565b815481106134e4576134e46146cd565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b816003600061351e600185614636565b8152602081019190915260400160002080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9283161790558190831661357a82611e26565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006135cb826134ab565b613657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610cd7565b600061366283611e26565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806136d157508373ffffffffffffffffffffffffffffffffffffffff166136b984610c44565b73ffffffffffffffffffffffffffffffffffffffff16145b806131455750613145818561301c565b8273ffffffffffffffffffffffffffffffffffffffff1661370182611e26565b73ffffffffffffffffffffffffffffffffffffffff16146137a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610cd7565b73ffffffffffffffffffffffffffffffffffffffff8216613846576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cd7565b61385160008261350e565b81600261385f600184614636565b8154811061386f5761386f6146cd565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600061399a82611e26565b90506139a760008361350e565b600060026139b6600185614636565b815481106139c6576139c66146cd565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff93841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b613ac28484846136e1565b613ace84848484613c8f565b612cab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610cd7565b606081600003613b9d57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613bc75780613bb181614714565b9150613bc09050600a836146b9565b9150613ba1565b60008167ffffffffffffffff811115613be257613be2614170565b6040519080825280601f01601f191660200182016040528015613c0c576020820181803683370190505b5090505b841561314557613c21600183614636565b9150613c2e600a86614883565b613c399060306146fc565b60f81b818381518110613c4e57613c4e6146cd565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613c88600a866146b9565b9450613c10565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613e77576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290613d06903390899088908890600401614897565b6020604051808303816000875af1925050508015613d5f575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252613d5c918101906148e0565b60015b613e2c573d808015613d8d576040519150601f19603f3d011682016040523d82523d6000602084013e613d92565b606091505b508051600003613e24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610cd7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613145565b506001949350505050565b828054613e8e906145b4565b90600052602060002090601f016020900481019282613eb05760008555613ef6565b82601f10613ec957805160ff1916838001178555613ef6565b82800160010185558215613ef6579182015b82811115613ef6578251825591602001919060010190613edb565b50613f02929150613f06565b5090565b5b80821115613f025760008155600101613f07565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611ada57600080fd5b600060208284031215613f5b57600080fd5b8135611ca281613f1b565b60005b83811015613f81578181015183820152602001613f69565b83811115612cab5750506000910152565b60008151808452613faa816020860160208601613f66565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611ca26020830184613f92565b60006020828403121561400157600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff81168114611ada57600080fd5b6000806040838503121561403d57600080fd5b823561404881614008565b946020939093013593505050565b60008060006060848603121561406b57600080fd5b833561407681614008565b9250602084013561408681614008565b929592945050506040919091013590565b6000602082840312156140a957600080fd5b8135611ca281614008565b600080604083850312156140c757600080fd5b50508035926020909101359150565b60008083601f8401126140e857600080fd5b50813567ffffffffffffffff81111561410057600080fd5b6020830191508360208260051b850101111561120157600080fd5b60008060006040848603121561413057600080fd5b833561413b81614008565b9250602084013567ffffffffffffffff81111561415757600080fd5b614163868287016140d6565b9497909650939450505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156141e6576141e6614170565b604052919050565b600067ffffffffffffffff83111561420857614208614170565b61423960207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601160161419f565b905082815283838301111561424d57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561427657600080fd5b813567ffffffffffffffff81111561428d57600080fd5b8201601f8101841361429e57600080fd5b613145848235602084016141ee565b600082601f8301126142be57600080fd5b8135602067ffffffffffffffff8211156142da576142da614170565b8160051b6142e982820161419f565b928352848101820192828101908785111561430357600080fd5b83870192505b8483101561432257823582529183019190830190614309565b979650505050505050565b600082601f83011261433e57600080fd5b611ca2838335602085016141ee565b6000806000806080858703121561436357600080fd5b843561436e81614008565b9350602085013561437e81614008565b9250604085013567ffffffffffffffff8082111561439b57600080fd5b6143a7888389016142ad565b935060608701359150808211156143bd57600080fd5b506143ca8782880161432d565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b8181101561440e578351835292840192918401916001016143f2565b50909695505050505050565b6000806000806040858703121561443057600080fd5b843567ffffffffffffffff8082111561444857600080fd5b614454888389016140d6565b9096509450602087013591508082111561446d57600080fd5b5061447a878288016140d6565b95989497509550505050565b6000806040838503121561449957600080fd5b82356144a481614008565b9150602083013580151581146144b957600080fd5b809150509250929050565b600080600080608085870312156144da57600080fd5b84356144e581614008565b935060208501356144f581614008565b925060408501359150606085013567ffffffffffffffff81111561451857600080fd5b6143ca8782880161432d565b6000806040838503121561453757600080fd5b823561454281614008565b915060208301356144b981614008565b60008060006060848603121561456757600080fd5b833561457281614008565b9250602084013561458281614008565b9150604084013567ffffffffffffffff81111561459e57600080fd5b6145aa868287016142ad565b9150509250925092565b600181811c908216806145c857607f821691505b602082108103614601577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008282101561464857614648614607565b500390565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561468557614685614607565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826146c8576146c861468a565b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000821982111561470f5761470f614607565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361474557614745614607565b5060010190565b600061ffff80831681810361476357614763614607565b6001019392505050565b6000815161477f818560208601613f66565b9290920192915050565b600080845481600182811c9150808316806147a557607f831692505b602080841082036147dd577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b8180156147f157600181146148205761484d565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0086168952848901965061484d565b60008b81526020902060005b868110156148455781548b82015290850190830161482c565b505084890196505b50505050505061485d818561476d565b95945050505050565b60006020828403121561487857600080fd5b8151611ca281614008565b6000826148925761489261468a565b500690565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526148d66080830184613f92565b9695505050505050565b6000602082840312156148f257600080fd5b8151611ca281613f1b56fea26469706673582212205465e8c1ea4856de67e4542b5e87c8c8396555e1f660d772a7beeea6e328630d64736f6c634300080d003368747470733a2f2f746865617065736f6667616c6174612e6e66746170692e6172742f6d6574612f

Deployed Bytecode

0x6080604052600436106103815760003560e01c80636c0360eb116101d1578063a08aef2f11610102578063dedf141e116100a0578063ea9d6d291161006f578063ea9d6d2914610a3e578063f2fde38b14610a5e578063f3993d1114610a7e578063f41cb01b14610a9e57600080fd5b8063dedf141e146109be578063e7572230146109de578063e928ff9f146109fe578063e985e9c514610a1e57600080fd5b8063b8997a97116100dc578063b8997a9714610952578063bae3aaa614610968578063c87b56dd14610988578063d5abeb01146109a857600080fd5b8063a08aef2f146108fc578063a22cb46514610912578063b88d4fde1461093257600080fd5b80638da5cb5b1161016f57806395d89b411161014957806395d89b411461089457806396ea3a47146108a957806397107d6d146108c9578063a0712d68146108e957600080fd5b80638da5cb5b146108295780638f1bca111461085457806394bb4c041461088157600080fd5b80637501f741116101ab5780637501f741146107b05780638462151c146107c6578063858feced146107f357806389a1f66f1461080957600080fd5b80636c0360eb1461076657806370a082311461077b578063715018a61461079b57600080fd5b80633bbaac7b116102b65780634d44660c11610254578063596599ae11610223578063596599ae146106e05780635a4fee30146106f65780635bab26e2146107165780636352211e1461074657600080fd5b80634d44660c1461066a5780634f6ccce71461068a57806351463d5b146106aa57806355f804b3146106c057600080fd5b806342966c681161029057806342966c68146105f457806344a0d68a1461061457806348466402146106345780634bfb8ed31461065457600080fd5b80633bbaac7b146105ac5780633ccfd60b146105bf57806342842e0e146105d457600080fd5b806318160ddd116103235780632a55205a116102fd5780632a55205a146104f35780632f745c591461053f5780633009c0831461055f5780633b4c4b251461058c57600080fd5b806318160ddd1461049e57806323b872dd146104b3578063245cad7a146104d357600080fd5b8063095ea7b31161035f578063095ea7b314610422578063108ce0a21461044457806310fd332b1461046857806313faede61461048857600080fd5b806301ffc9a71461038657806306fdde03146103bb578063081812fc146103dd575b600080fd5b34801561039257600080fd5b506103a66103a1366004613f49565b610abe565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103d0610bb2565b6040516103b29190613fdc565b3480156103e957600080fd5b506103fd6103f8366004613fef565b610c44565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103b2565b34801561042e57600080fd5b5061044261043d36600461402a565b610d1c565b005b34801561045057600080fd5b5061045a60115481565b6040519081526020016103b2565b34801561047457600080fd5b5061044261048336600461402a565b610ea8565b34801561049457600080fd5b5061045a60065481565b3480156104aa57600080fd5b5060025461045a565b3480156104bf57600080fd5b506104426104ce366004614056565b610fdf565b3480156104df57600080fd5b506104426104ee366004614097565b611081565b3480156104ff57600080fd5b5061051361050e3660046140b4565b611156565b6040805173ffffffffffffffffffffffffffffffffffffffff90931683526020830191909152016103b2565b34801561054b57600080fd5b5061045a61055a36600461402a565b611208565b34801561056b57600080fd5b506013546103fd9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561059857600080fd5b506104426105a7366004613fef565b6113b2565b6104426105ba366004613fef565b611438565b3480156105cb57600080fd5b506104426116e0565b3480156105e057600080fd5b506104426105ef366004614056565b611a47565b34801561060057600080fd5b5061044261060f366004613fef565b611a62565b34801561062057600080fd5b5061044261062f366004613fef565b611add565b34801561064057600080fd5b5061044261064f36600461402a565b611b63565b34801561066057600080fd5b5061045a60075481565b34801561067657600080fd5b506103a661068536600461411b565b611c0d565b34801561069657600080fd5b5061045a6106a5366004613fef565b611ca9565b3480156106b657600080fd5b5061045a60105481565b3480156106cc57600080fd5b506104426106db366004614264565b611d48565b3480156106ec57600080fd5b5061045a60095481565b34801561070257600080fd5b5061044261071136600461434d565b611ddc565b34801561072257600080fd5b506103a6610731366004614097565b600f6020526000908152604090205460ff1681565b34801561075257600080fd5b506103fd610761366004613fef565b611e26565b34801561077257600080fd5b506103d0611ef7565b34801561078757600080fd5b5061045a610796366004614097565b611f85565b3480156107a757600080fd5b5061044261209a565b3480156107bc57600080fd5b5061045a600a5481565b3480156107d257600080fd5b506107e66107e1366004614097565b612127565b6040516103b291906143d6565b3480156107ff57600080fd5b5061045a600b5481565b34801561081557600080fd5b50610442610824366004613fef565b612253565b34801561083557600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166103fd565b34801561086057600080fd5b5061045a61086f366004614097565b60126020526000908152604090205481565b61044261088f366004613fef565b6122d9565b3480156108a057600080fd5b506103d0612598565b3480156108b557600080fd5b506104426108c436600461441a565b6125a7565b3480156108d557600080fd5b506104426108e4366004614097565b612819565b6104426108f7366004613fef565b6128e1565b34801561090857600080fd5b5061045a600c5481565b34801561091e57600080fd5b5061044261092d366004614486565b612af3565b34801561093e57600080fd5b5061044261094d3660046144c4565b612c09565b34801561095e57600080fd5b5061045a60145481565b34801561097457600080fd5b50610442610983366004613fef565b612cb1565b34801561099457600080fd5b506103d06109a3366004613fef565b612d37565b3480156109b457600080fd5b5061045a60085481565b3480156109ca57600080fd5b506104426109d93660046140b4565b612dda565b3480156109ea57600080fd5b5061045a6109f9366004613fef565b612e66565b348015610a0a57600080fd5b50610442610a1936600461441a565b612f13565b348015610a2a57600080fd5b506103a6610a39366004614524565b61301c565b348015610a4a57600080fd5b50610442610a59366004613fef565b61314d565b348015610a6a57600080fd5b50610442610a79366004614097565b6131d3565b348015610a8a57600080fd5b50610442610a99366004614552565b613300565b348015610aaa57600080fd5b50610442610ab9366004613fef565b613342565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610b5157507fe8a3d485000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b80610b9d57507f2a55205a000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b80610bac5750610bac826133c8565b92915050565b606060008054610bc1906145b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610bed906145b4565b8015610c3a5780601f10610c0f57610100808354040283529160200191610c3a565b820191906000526020600020905b815481529060010190602001808311610c1d57829003601f168201915b5050505050905090565b6000610c4f826134ab565b610ce0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60036000610cef600185614636565b815260208101919091526040016000205473ffffffffffffffffffffffffffffffffffffffff1692915050565b6000610d2782611e26565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610cd7565b3373ffffffffffffffffffffffffffffffffffffffff82161480610e0d5750610e0d813361301c565b610e99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610cd7565b610ea3838361350e565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610f29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b6127118110610f94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4552432d323938313a20526f79616c747920746f6f20686967680000000000006044820152606401610cd7565b601380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9390931692909217909155601455565b610fea335b826135c0565b611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610cd7565b610ea38383836136e1565b60055473ffffffffffffffffffffffffffffffffffffffff163314611102576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b73ffffffffffffffffffffffffffffffffffffffff166000908152600f6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b6000806000601454116111c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4552432d323938313a20526f79616c747920746f6f20686967680000000000006044820152606401610cd7565b60135460145473ffffffffffffffffffffffffffffffffffffffff90911690612710906111f2908661464d565b6111fc91906146b9565b915091505b9250929050565b600061121383611f85565b82106112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610cd7565b6000805b60025481101561132957600281815481106112c2576112c26146cd565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff9081169086160361131757838203611309576113008160016146fc565b92505050610bac565b8161131381614714565b9250505b8061132181614714565b9150506112a5565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610cd7565b60055473ffffffffffffffffffffffffffffffffffffffff163314611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b600855565b806000811180156114545750600b54611452600183614636565b105b6114ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610cd7565b6008546114c89060016146fc565b6002546114d69083906146fc565b1061153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610cd7565b8161154781612e66565b3410156115b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610cd7565b42601154111561161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f50726573616c65206973206e6f742079657421000000000000000000000000006044820152606401610cd7565b600061162733611f85565b9050600361163585836146fc565b1061169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4c6f7720726573657276652100000000000000000000000000000000000000006044820152606401610cd7565b60025460005b858110156116d8576116c8336116b883856146fc565b6116c39060016146fc565b6138ee565b6116d181614714565b90506116a2565b505050505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b4773ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000ebabb8c951f5c3b17b416a3d840c52ccab728c19166108fc6103e86117aa8460fa61464d565b6117b491906146b9565b6040518115909202916000818181858888f193505050501580156117dc573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000798c55f940dcf5e76a8767fed389507adab6424d166108fc6103e86118258460eb61464d565b61182f91906146b9565b6040518115909202916000818181858888f19350505050158015611857573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000003f468aeb495ba39cc9af5b02150d5740f2ac54e6166108fc6103e86118a08460fa61464d565b6118aa91906146b9565b6040518115909202916000818181858888f193505050501580156118d2573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000016b3257332de4b09f2638a7ccc46fc49f5e19b6d166108fc6103e861191b84606461464d565b61192591906146b9565b6040518115909202916000818181858888f1935050505015801561194d573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000150396a3153d522acbe5b03d9ef73a40f94020d5166108fc6103e861199684609661464d565b6119a091906146b9565b6040518115909202916000818181858888f193505050501580156119c8573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000882ec39b5c19a71b5d95515fd911fdb06a667c40166108fc6103e8611a1184600f61464d565b611a1b91906146b9565b6040518115909202916000818181858888f19350505050158015611a43573d6000803e3d6000fd5b5050565b610ea383838360405180602001604052806000815250612c09565b611a6b33610fe4565b611ad1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4e6f7420617070726f76656420746f206275726e2e00000000000000000000006044820152606401610cd7565b611ada8161398f565b50565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b600655565b60055473ffffffffffffffffffffffffffffffffffffffff163314611be4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b73ffffffffffffffffffffffffffffffffffffffff909116600090815260126020526040902055565b6000805b82811015611c9c578473ffffffffffffffffffffffffffffffffffffffff166002858584818110611c4457611c446146cd565b9050602002013581548110611c5b57611c5b6146cd565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614611c8c576000915050611ca2565b611c9581614714565b9050611c11565b50600190505b9392505050565b6002546000908210611d3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610cd7565b610bac8260016146fc565b60055473ffffffffffffffffffffffffffffffffffffffff163314611dc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b8051611a4390600d906020840190613e82565b60005b8251811015611e1f57611e0d8585858481518110611dff57611dff6146cd565b602002602001015185612c09565b80611e1781614714565b915050611ddf565b5050505050565b6000806002611e36600185614636565b81548110611e4657611e466146cd565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610bac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610cd7565b600d8054611f04906145b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611f30906145b4565b8015611f7d5780601f10611f5257610100808354040283529160200191611f7d565b820191906000526020600020905b815481529060010190602001808311611f6057829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff821661202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610cd7565b6000805b600254811015612093576002818154811061204b5761204b6146cd565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff908116908516036120835761208082614714565b91505b61208c81614714565b905061202e565b5092915050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461211b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b6121256000613a40565b565b6060600061213483611f85565b905080600003612154575050604080516000815260208101909152919050565b60008167ffffffffffffffff81111561216f5761216f614170565b604051908082528060200260200182016040528015612198578160200160208202803683370190505b5090506000805b60025481101561224957600281815481106121bc576121bc6146cd565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff90811690871603612222576121f38160016146fc565b838361ffff1681518110612209576122096146cd565b60209081029190910101528161221e8161474c565b9250505b838261ffff1603612237575090949350505050565b8061224181614714565b91505061219f565b5090949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146122d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b601155565b806000811180156122f55750600c546122f3600183614636565b105b61235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610cd7565b6008546123699060016146fc565b6002546123779083906146fc565b106123de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610cd7565b816123e881612e66565b341015612451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610cd7565b4260115411156124bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f50726573616c65206973206e6f742079657421000000000000000000000000006044820152606401610cd7565b60025433600090815260126020526040812054906124db8683614636565b6124e69060016146fc565b1161254d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4c6f7720726573657276652100000000000000000000000000000000000000006044820152606401610cd7565b60005b8581101561257657612566336116b883866146fc565b61256f81614714565b9050612550565b506125818582614636565b336000908152601260205260409020555050505050565b606060018054610bc1906145b4565b60055473ffffffffffffffffffffffffffffffffffffffff163314612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b8281146126b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e7460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610cd7565b600254600090815b858110156126fd578686828181106126d9576126d96146cd565b90506020020135836126eb91906146fc565b92506126f681614714565b90506126bf565b5060085461270b83836146fc565b6127169060016146fc565b111561277e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420656e6f75676820737570706c792100000000000000000000000000006044820152606401610cd7565b60005b838110156128105760005b87878381811061279e5761279e6146cd565b905060200201358110156127ff576127e18686848181106127c1576127c16146cd565b90506020020160208101906127d69190614097565b6116c38560016146fc565b826127eb81614714565b935050806127f890614714565b905061278c565b5061280981614714565b9050612781565b50505050505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461289a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b600e80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b806000811180156128fd5750600a546128fb600183614636565b105b612963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610cd7565b6008546129719060016146fc565b60025461297f9083906146fc565b106129e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610cd7565b816129f081612e66565b341015612a59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610cd7565b426010541115612ac5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f5075626c69632073616c65206973206e6f7420796574210000000000000000006044820152606401610cd7565b60025460005b84811015611e1f57612ae1336116b883856146fc565b80612aeb81614714565b915050612acb565b3373ffffffffffffffffffffffffffffffffffffffff831603612b72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610cd7565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b612c1333836135c0565b612c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610cd7565b612cab84848484613ab7565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612d32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b600755565b6060612d42826134ab565b612da8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f546f6b656e20646f6573206e6f742065786973742e00000000000000000000006044820152606401610cd7565b600d612db383613b5a565b604051602001612dc4929190614789565b6040516020818303038152906040529050919050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612e5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b601091909155601155565b60008060009050426010541015612ea35760005b8381101561209357600654612e8f90836146fc565b915080612e9b81614714565b915050612e7a565b60025460005b84811015612f0a57600954612ebf9060016146fc565b821115612eda57600654612ed390846146fc565b9250612eea565b600754612ee790846146fc565b92505b81612ef481614714565b9250508080612f0290614714565b915050612ea9565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612f94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b60005b83811015611e1f57828282818110612fb157612fb16146cd565b9050602002013560126000878785818110612fce57612fce6146cd565b9050602002016020810190612fe39190614097565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020558061301481614714565b915050612f97565b600e546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015613094573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130b89190614866565b73ffffffffffffffffffffffffffffffffffffffff1614806130ff575073ffffffffffffffffffffffffffffffffffffffff83166000908152600f602052604090205460ff165b1561310e576001915050610bac565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146131ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b601055565b60055473ffffffffffffffffffffffffffffffffffffffff163314613254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b73ffffffffffffffffffffffffffffffffffffffff81166132f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cd7565b611ada81613a40565b60005b8151811015612cab576133308484848481518110613323576133236146cd565b6020026020010151610fdf565b8061333a81614714565b915050613303565b60055473ffffffffffffffffffffffffffffffffffffffff1633146133c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b600955565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061345b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610bac57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610bac565b6002546000906134bc9060016146fc565b82108015610bac5750600060026134d4600185614636565b815481106134e4576134e46146cd565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b816003600061351e600185614636565b8152602081019190915260400160002080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9283161790558190831661357a82611e26565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006135cb826134ab565b613657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610cd7565b600061366283611e26565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806136d157508373ffffffffffffffffffffffffffffffffffffffff166136b984610c44565b73ffffffffffffffffffffffffffffffffffffffff16145b806131455750613145818561301c565b8273ffffffffffffffffffffffffffffffffffffffff1661370182611e26565b73ffffffffffffffffffffffffffffffffffffffff16146137a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610cd7565b73ffffffffffffffffffffffffffffffffffffffff8216613846576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cd7565b61385160008261350e565b81600261385f600184614636565b8154811061386f5761386f6146cd565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600061399a82611e26565b90506139a760008361350e565b600060026139b6600185614636565b815481106139c6576139c66146cd565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff93841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b613ac28484846136e1565b613ace84848484613c8f565b612cab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610cd7565b606081600003613b9d57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613bc75780613bb181614714565b9150613bc09050600a836146b9565b9150613ba1565b60008167ffffffffffffffff811115613be257613be2614170565b6040519080825280601f01601f191660200182016040528015613c0c576020820181803683370190505b5090505b841561314557613c21600183614636565b9150613c2e600a86614883565b613c399060306146fc565b60f81b818381518110613c4e57613c4e6146cd565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613c88600a866146b9565b9450613c10565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613e77576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290613d06903390899088908890600401614897565b6020604051808303816000875af1925050508015613d5f575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252613d5c918101906148e0565b60015b613e2c573d808015613d8d576040519150601f19603f3d011682016040523d82523d6000602084013e613d92565b606091505b508051600003613e24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610cd7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613145565b506001949350505050565b828054613e8e906145b4565b90600052602060002090601f016020900481019282613eb05760008555613ef6565b82601f10613ec957805160ff1916838001178555613ef6565b82800160010185558215613ef6579182015b82811115613ef6578251825591602001919060010190613edb565b50613f02929150613f06565b5090565b5b80821115613f025760008155600101613f07565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611ada57600080fd5b600060208284031215613f5b57600080fd5b8135611ca281613f1b565b60005b83811015613f81578181015183820152602001613f69565b83811115612cab5750506000910152565b60008151808452613faa816020860160208601613f66565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611ca26020830184613f92565b60006020828403121561400157600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff81168114611ada57600080fd5b6000806040838503121561403d57600080fd5b823561404881614008565b946020939093013593505050565b60008060006060848603121561406b57600080fd5b833561407681614008565b9250602084013561408681614008565b929592945050506040919091013590565b6000602082840312156140a957600080fd5b8135611ca281614008565b600080604083850312156140c757600080fd5b50508035926020909101359150565b60008083601f8401126140e857600080fd5b50813567ffffffffffffffff81111561410057600080fd5b6020830191508360208260051b850101111561120157600080fd5b60008060006040848603121561413057600080fd5b833561413b81614008565b9250602084013567ffffffffffffffff81111561415757600080fd5b614163868287016140d6565b9497909650939450505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156141e6576141e6614170565b604052919050565b600067ffffffffffffffff83111561420857614208614170565b61423960207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601160161419f565b905082815283838301111561424d57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561427657600080fd5b813567ffffffffffffffff81111561428d57600080fd5b8201601f8101841361429e57600080fd5b613145848235602084016141ee565b600082601f8301126142be57600080fd5b8135602067ffffffffffffffff8211156142da576142da614170565b8160051b6142e982820161419f565b928352848101820192828101908785111561430357600080fd5b83870192505b8483101561432257823582529183019190830190614309565b979650505050505050565b600082601f83011261433e57600080fd5b611ca2838335602085016141ee565b6000806000806080858703121561436357600080fd5b843561436e81614008565b9350602085013561437e81614008565b9250604085013567ffffffffffffffff8082111561439b57600080fd5b6143a7888389016142ad565b935060608701359150808211156143bd57600080fd5b506143ca8782880161432d565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b8181101561440e578351835292840192918401916001016143f2565b50909695505050505050565b6000806000806040858703121561443057600080fd5b843567ffffffffffffffff8082111561444857600080fd5b614454888389016140d6565b9096509450602087013591508082111561446d57600080fd5b5061447a878288016140d6565b95989497509550505050565b6000806040838503121561449957600080fd5b82356144a481614008565b9150602083013580151581146144b957600080fd5b809150509250929050565b600080600080608085870312156144da57600080fd5b84356144e581614008565b935060208501356144f581614008565b925060408501359150606085013567ffffffffffffffff81111561451857600080fd5b6143ca8782880161432d565b6000806040838503121561453757600080fd5b823561454281614008565b915060208301356144b981614008565b60008060006060848603121561456757600080fd5b833561457281614008565b9250602084013561458281614008565b9150604084013567ffffffffffffffff81111561459e57600080fd5b6145aa868287016142ad565b9150509250925092565b600181811c908216806145c857607f821691505b602082108103614601577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008282101561464857614648614607565b500390565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561468557614685614607565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826146c8576146c861468a565b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000821982111561470f5761470f614607565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361474557614745614607565b5060010190565b600061ffff80831681810361476357614763614607565b6001019392505050565b6000815161477f818560208601613f66565b9290920192915050565b600080845481600182811c9150808316806147a557607f831692505b602080841082036147dd577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b8180156147f157600181146148205761484d565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0086168952848901965061484d565b60008b81526020902060005b868110156148455781548b82015290850190830161482c565b505084890196505b50505050505061485d818561476d565b95945050505050565b60006020828403121561487857600080fd5b8151611ca281614008565b6000826148925761489261468a565b500690565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526148d66080830184613f92565b9695505050505050565b6000602082840312156148f257600080fd5b8151611ca281613f1b56fea26469706673582212205465e8c1ea4856de67e4542b5e87c8c8396555e1f660d772a7beeea6e328630d64736f6c634300080d0033

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.