ETH Price: $2,489.12 (-2.42%)

Token

the dudes factory (DUDF)
 

Overview

Max Total Supply

17 DUDF

Holders

17

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
0xkangaroo.eth
Balance
1 DUDF
0xda2ce2b4d7cea937a8af61b5eba0cb254bf76b82
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:
TheDudesFactoryV2

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

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

// ______  __  __   ______       _____    __  __   _____    ______
// /\__  _\/\ \_\ \ /\  ___\     /\  __-. /\ \/\ \ /\  __-. /\  ___\
// \/_/\ \/\ \  __ \\ \  __\     \ \ \/\ \\ \ \_\ \\ \ \/\ \\ \  __\
//   \ \_\ \ \_\ \_\\ \_____\    \ \____- \ \_____\\ \____- \ \_____\
//    \/_/  \/_/\/_/ \/_____/     \/____/  \/_____/ \/____/  \/_____/
//

pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;

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

interface TheDudesFactoryCollection {
  function tokenURI(uint256 tokenId) external view returns (string memory);
}

contract TheDudesFactoryV2 is ERC721Enumerable, Ownable {

  struct Collection {
    uint256 id;
    string name;
    address owner;
    uint256 tokenBeginIndex;
    uint256 tokenEndIndex;
    uint256 maxItems;
    uint256 itemCount;
    bool isLocked;
    bool isDeleted;
  }

  uint256 public collectionCount;
  uint256 internal reservedSupply;
  mapping(uint256 => Collection) public collections;

  constructor () ERC721("the dudes factory", "DUDF") {}

  function addCollection(string calldata name, uint256 maxItems) public onlyOwner {
    require(maxItems > 0);
    collections[collectionCount].id = collectionCount;
    collections[collectionCount].name = name;
    collections[collectionCount].tokenBeginIndex = reservedSupply;
    collections[collectionCount].tokenEndIndex = reservedSupply + (maxItems - 1);
    collections[collectionCount].maxItems = maxItems;
    collectionCount++;
    reservedSupply += maxItems;
  }

  function deleteCollection(uint256 id) public onlyOwner {
    require(!collections[id].isLocked, "Collection is locked." );
    collections[id].isDeleted = true;
  }

  function updateCollectionName(uint256 id, string calldata name) public onlyOwner {
    require(!collections[id].isLocked, "Collection is locked." );
    collections[id].name = name;
  }

  function updateCollectionOwner(uint256 id, address owner) public onlyOwner {
    require(!collections[id].isLocked, "Collection is locked." );
    require(owner != address(0));
    collections[id].owner = owner;
  }

  function lockCollection(uint256 id) public onlyOwner {
    require(!collections[id].isLocked, "Collection is already locked.");
    collections[id].isLocked = true;
  }

  function mint(uint256 collectionId, address account, uint256 tokenId) public {
    require(!collections[collectionId].isLocked, "Collection is locked." );
    require(msg.sender == collections[collectionId].owner, "Collection owner is invalid.");
    require(collections[collectionId].itemCount < collections[collectionId].maxItems, "Collection already reached to max items count.");

    uint256 mappedTokenId = mappedTokenIdFromCollection(collectionId, tokenId);

    collections[collectionId].itemCount++;
    _safeMint(account, mappedTokenId);
  }

  // Burns the token but doesn't touch the reserved tokenIds of Collection.
  function burn(uint256 collectionId, uint256 tokenId) public {
    require(!collections[collectionId].isLocked, "Collection is locked." );
    require(collections[collectionId].isDeleted, "Collection is not deleted." );
    require(collectionOwnerOrFactoryOwner(collectionId), "Collection owner is invalid.");

    uint256 mappedTokenId = mappedTokenIdFromCollection(collectionId, tokenId);
    _burn(mappedTokenId);
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
    (bool found, uint256 collectionId, uint256 mappedTokenId) = mappedTokenIdForCollection(tokenId);
    require(found, "Token Id not found in any collection");

    address collectionOwner = collections[collectionId].owner;
    return TheDudesFactoryCollection(collectionOwner).tokenURI(mappedTokenId);
  }

  function mappedTokenIdForCollection(uint256 tokenId) public view returns (bool, uint256, uint256) {
    for (uint256 i=0; i<collectionCount; i++) {
      uint256 beginIndex = collections[i].tokenBeginIndex;
      uint256 endIndex = collections[i].tokenEndIndex;
      if (tokenId >= beginIndex && tokenId <= endIndex) {
        uint256 mappedTokenId = tokenId - beginIndex;
        return (true, i, mappedTokenId);
      }
    }
    return (false, 0, 0);
  }

  function mappedTokenIdFromCollection(uint256 collectionId, uint256 tokenId) public view returns (uint256) {
    return collections[collectionId].tokenBeginIndex + tokenId;
  }

  function tokensOfOwner(address owner_) public view returns (uint256[] memory) {
    uint256 tokenCount = balanceOf(owner_);
    if (tokenCount == 0) {
      return new uint256[](0);
    } else {
      uint256[] memory result = new uint256[](tokenCount);
      uint256 index;
      for (index = 0; index < tokenCount; index++) {
        result[index] = tokenOfOwnerByIndex(owner_, index);
      }
      return result;
    }
  }

  function tokensOfOwnerInCollection(uint256 collectionId_, address owner_) public view returns (uint256[] memory) {
    uint256[] memory tokensOfOwner_ = tokensOfOwner(owner_);
    uint256[] memory result;
    uint256 index;
    uint256 resultIndex;
    for (index = 0; index < tokensOfOwner_.length; index++) {
      uint256 tokenId = tokensOfOwner_[index];
      (bool found, uint256 collectionId, ) = mappedTokenIdForCollection(tokenId);
      if (found && collectionId == collectionId_) {
        result[resultIndex] = tokenId;
        resultIndex++;
      }
    }
    return result;
  }

  function collectionOwnerOrFactoryOwner(uint256 collectionId) internal view returns (bool) {
    if (msg.sender == owner() || msg.sender == collections[collectionId].owner) {
      return true;
    }
    return false;
  }
}

File 2 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

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

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

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

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

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

File 6 of 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 7 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 8 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 9 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 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

}

File 12 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 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": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":"string","name":"name","type":"string"},{"internalType":"uint256","name":"maxItems","type":"uint256"}],"name":"addCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"collectionId","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collections","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"tokenBeginIndex","type":"uint256"},{"internalType":"uint256","name":"tokenEndIndex","type":"uint256"},{"internalType":"uint256","name":"maxItems","type":"uint256"},{"internalType":"uint256","name":"itemCount","type":"uint256"},{"internalType":"bool","name":"isLocked","type":"bool"},{"internalType":"bool","name":"isDeleted","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"deleteCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"lockCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mappedTokenIdForCollection","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"collectionId","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mappedTokenIdFromCollection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"collectionId","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"collectionId_","type":"uint256"},{"internalType":"address","name":"owner_","type":"address"}],"name":"tokensOfOwnerInCollection","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":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"name","type":"string"}],"name":"updateCollectionName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"updateCollectionOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601181526020017f74686520647564657320666163746f72790000000000000000000000000000008152506040518060400160405280600481526020017f445544460000000000000000000000000000000000000000000000000000000081525081600090805190602001906200009692919062000171565b508060019080519060200190620000af92919062000171565b5050506000620000c46200016960201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000286565b600033905090565b8280546200017f9062000221565b90600052602060002090601f016020900481019282620001a35760008555620001ef565b82601f10620001be57805160ff1916838001178555620001ef565b82800160010185558215620001ef579182015b82811115620001ee578251825591602001919060010190620001d1565b5b509050620001fe919062000202565b5090565b5b808211156200021d57600081600090555060010162000203565b5090565b600060028204905060018216806200023a57607f821691505b6020821081141562000251576200025062000257565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6149d080620002966000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80638462151c1161010f578063b390c0ab116100a2578063d57f966b11610071578063d57f966b146105d9578063e985e9c5146105f7578063f2fde38b14610627578063fdbda0ec14610643576101f0565b8063b390c0ab1461053f578063b88d4fde1461055b578063c87b56dd14610577578063d3ab4a70146105a7576101f0565b806395d89b41116100de57806395d89b41146104cd578063a22cb465146104eb578063a286f39514610507578063a42c587a14610523576101f0565b80638462151c146104335780638da5cb5b146104635780639185e0c91461048157806391d85a061461049d576101f0565b806342842e0e1161018757806370a082311161015657806370a08231146103c1578063715018a6146103f15780637f4258e7146103fb578063836a104014610417576101f0565b806342842e0e146103155780634f6ccce7146103315780636352211e146103615780636728571e14610391576101f0565b806318160ddd116101c357806318160ddd1461028f57806323b872dd146102ad5780632f745c59146102c95780633c11a4c7146102f9576101f0565b806301ffc9a7146101f557806306fdde0314610225578063081812fc14610243578063095ea7b314610273575b600080fd5b61020f600480360381019061020a9190613580565b61067b565b60405161021c91906141c0565b60405180910390f35b61022d6106f5565b60405161023a9190614212565b60405180910390f35b61025d6004803603810190610258919061366b565b610787565b60405161026a9190614137565b60405180910390f35b61028d60048036038101906102889190613544565b61080c565b005b610297610924565b6040516102a49190614534565b60405180910390f35b6102c760048036038101906102c2919061343e565b610931565b005b6102e360048036038101906102de9190613544565b610991565b6040516102f09190614534565b60405180910390f35b610313600480360381019061030e919061371f565b610a36565b005b61032f600480360381019061032a919061343e565b610b41565b005b61034b6004803603810190610346919061366b565b610b61565b6040516103589190614534565b60405180910390f35b61037b6004803603810190610376919061366b565b610bf8565b6040516103889190614137565b60405180910390f35b6103ab60048036038101906103a69190613777565b610caa565b6040516103b89190614534565b60405180910390f35b6103db60048036038101906103d691906133d9565b610cd6565b6040516103e89190614534565b60405180910390f35b6103f9610d8e565b005b6104156004803603810190610410919061366b565b610ecb565b005b610431600480360381019061042c91906136d0565b610fdd565b005b61044d600480360381019061044891906133d9565b61119d565b60405161045a919061419e565b60405180910390f35b61046b611319565b6040516104789190614137565b60405180910390f35b61049b60048036038101906104969190613694565b611343565b005b6104b760048036038101906104b29190613694565b6114b6565b6040516104c4919061419e565b60405180910390f35b6104d56115b7565b6040516104e29190614212565b60405180910390f35b61050560048036038101906105009190613508565b611649565b005b610521600480360381019061051c91906135d2565b6117ca565b005b61053d6004803603810190610538919061366b565b611942565b005b61055960048036038101906105549190613777565b611a54565b005b6105756004803603810190610570919061348d565b611b7f565b005b610591600480360381019061058c919061366b565b611be1565b60405161059e9190614212565b60405180910390f35b6105c160048036038101906105bc919061366b565b611d53565b6040516105d0939291906141db565b60405180910390f35b6105e1611dff565b6040516105ee9190614534565b60405180910390f35b610611600480360381019061060c9190613402565b611e05565b60405161061e91906141c0565b60405180910390f35b610641600480360381019061063c91906133d9565b611e99565b005b61065d6004803603810190610658919061366b565b612045565b6040516106729998979695949392919061454f565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ee57506106ed82612155565b5b9050919050565b60606000805461070490614825565b80601f016020809104026020016040519081016040528092919081815260200182805461073090614825565b801561077d5780601f106107525761010080835404028352916020019161077d565b820191906000526020600020905b81548152906001019060200180831161076057829003601f168201915b5050505050905090565b600061079282612237565b6107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c8906143f4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081782610bf8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f90614494565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108a76122a3565b73ffffffffffffffffffffffffffffffffffffffff1614806108d657506108d5816108d06122a3565b611e05565b5b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c90614374565b60405180910390fd5b61091f83836122ab565b505050565b6000600880549050905090565b61094261093c6122a3565b82612364565b610981576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610978906144b4565b60405180910390fd5b61098c838383612442565b505050565b600061099c83610cd6565b82106109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490614234565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a3e6122a3565b73ffffffffffffffffffffffffffffffffffffffff16610a5c611319565b73ffffffffffffffffffffffffffffffffffffffff1614610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa990614434565b60405180910390fd5b600d600084815260200190815260200160002060070160009054906101000a900460ff1615610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d90614414565b60405180910390fd5b8181600d60008681526020019081526020016000206001019190610b3b9291906131b3565b50505050565b610b5c83838360405180602001604052806000815250611b7f565b505050565b6000610b6b610924565b8210610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba3906144d4565b60405180910390fd5b60088281548110610be6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906143b4565b60405180910390fd5b80915050919050565b600081600d600085815260200190815260200160002060030154610cce91906146e5565b905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90614394565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d966122a3565b73ffffffffffffffffffffffffffffffffffffffff16610db4611319565b73ffffffffffffffffffffffffffffffffffffffff1614610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190614434565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610ed36122a3565b73ffffffffffffffffffffffffffffffffffffffff16610ef1611319565b73ffffffffffffffffffffffffffffffffffffffff1614610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90614434565b60405180910390fd5b600d600082815260200190815260200160002060070160009054906101000a900460ff1615610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906142b4565b60405180910390fd5b6001600d600083815260200190815260200160002060070160006101000a81548160ff02191690831515021790555050565b600d600084815260200190815260200160002060070160009054906101000a900460ff1615611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890614414565b60405180910390fd5b600d600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906142d4565b60405180910390fd5b600d600084815260200190815260200160002060050154600d60008581526020019081526020016000206006015410611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90614354565b60405180910390fd5b600061115f8483610caa565b9050600d6000858152602001908152602001600020600601600081548092919061118890614857565b9190505550611197838261269e565b50505050565b606060006111aa83610cd6565b9050600081141561122d57600067ffffffffffffffff8111156111f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112245781602001602082028036833780820191505090505b50915050611314565b60008167ffffffffffffffff81111561126f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561129d5781602001602082028036833780820191505090505b50905060005b8281101561130d576112b58582610991565b8282815181106112ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061130590614857565b9150506112a3565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61134b6122a3565b73ffffffffffffffffffffffffffffffffffffffff16611369611319565b73ffffffffffffffffffffffffffffffffffffffff16146113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690614434565b60405180910390fd5b600d600083815260200190815260200160002060070160009054906101000a900460ff1615611423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141a90614414565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561145d57600080fd5b80600d600084815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b606060006114c38361119d565b90506060600080600091505b83518210156115aa576000848381518110611513577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008061152983611d53565b509150915081801561153a57508981145b156115945782868581518110611579577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050838061159090614857565b9450505b50505081806115a290614857565b9250506114cf565b8294505050505092915050565b6060600180546115c690614825565b80601f01602080910402602001604051908101604052809291908181526020018280546115f290614825565b801561163f5780601f106116145761010080835404028352916020019161163f565b820191906000526020600020905b81548152906001019060200180831161162257829003601f168201915b5050505050905090565b6116516122a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b690614314565b60405180910390fd5b80600560006116cc6122a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117796122a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117be91906141c0565b60405180910390a35050565b6117d26122a3565b73ffffffffffffffffffffffffffffffffffffffff166117f0611319565b73ffffffffffffffffffffffffffffffffffffffff1614611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90614434565b60405180910390fd5b6000811161185357600080fd5b600b54600d6000600b548152602001908152602001600020600001819055508282600d6000600b54815260200190815260200160002060010191906118999291906131b3565b50600c54600d6000600b548152602001908152602001600020600301819055506001816118c6919061473b565b600c546118d391906146e5565b600d6000600b5481526020019081526020016000206004018190555080600d6000600b54815260200190815260200160002060050181905550600b600081548092919061191f90614857565b919050555080600c600082825461193691906146e5565b92505081905550505050565b61194a6122a3565b73ffffffffffffffffffffffffffffffffffffffff16611968611319565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b590614434565b60405180910390fd5b600d600082815260200190815260200160002060070160009054906101000a900460ff1615611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990614414565b60405180910390fd5b6001600d600083815260200190815260200160002060070160016101000a81548160ff02191690831515021790555050565b600d600083815260200190815260200160002060070160009054906101000a900460ff1615611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90614414565b60405180910390fd5b600d600083815260200190815260200160002060070160019054906101000a900460ff16611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290614514565b60405180910390fd5b611b24826126bc565b611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906142d4565b60405180910390fd5b6000611b6f8383610caa565b9050611b7a81612778565b505050565b611b90611b8a6122a3565b83612364565b611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc6906144b4565b60405180910390fd5b611bdb84848484612889565b50505050565b6060611bec82612237565b611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290614474565b60405180910390fd5b6000806000611c3985611d53565b92509250925082611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c76906144f4565b60405180910390fd5b6000600d600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b8152600401611cf39190614534565b60006040518083038186803b158015611d0b57600080fd5b505afa158015611d1f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611d48919061362a565b945050505050919050565b600080600080600090505b600b54811015611deb576000600d60008381526020019081526020016000206003015490506000600d6000848152602001908152602001600020600401549050818710158015611dae5750808711155b15611dd65760008288611dc1919061473b565b90506001848296509650965050505050611df8565b50508080611de390614857565b915050611d5e565b5060008060009250925092505b9193909250565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ea16122a3565b73ffffffffffffffffffffffffffffffffffffffff16611ebf611319565b73ffffffffffffffffffffffffffffffffffffffff1614611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c90614434565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c90614274565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d60205280600052604060002060009150905080600001549080600101805461206e90614825565b80601f016020809104026020016040519081016040528092919081815260200182805461209a90614825565b80156120e75780601f106120bc576101008083540402835291602001916120e7565b820191906000526020600020905b8154815290600101906020018083116120ca57829003601f168201915b5050505050908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030154908060040154908060050154908060060154908060070160009054906101000a900460ff16908060070160019054906101000a900460ff16905089565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061222057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612230575061222f826128e5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661231e83610bf8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061236f82612237565b6123ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a590614334565b60405180910390fd5b60006123b983610bf8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061242857508373ffffffffffffffffffffffffffffffffffffffff1661241084610787565b73ffffffffffffffffffffffffffffffffffffffff16145b8061243957506124388185611e05565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661246282610bf8565b73ffffffffffffffffffffffffffffffffffffffff16146124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124af90614454565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251f906142f4565b60405180910390fd5b61253383838361294f565b61253e6000826122ab565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258e919061473b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125e591906146e5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6126b8828260405180602001604052806000815250612a63565b5050565b60006126c6611319565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806127605750600d600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b1561276e5760019050612773565b600090505b919050565b600061278382610bf8565b90506127918160008461294f565b61279c6000836122ab565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127ec919061473b565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612894848484612442565b6128a084848484612abe565b6128df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d690614254565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61295a838383612c55565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561299d5761299881612c5a565b6129dc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129db576129da8382612ca3565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a1f57612a1a81612e10565b612a5e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a5d57612a5c8282612f53565b5b5b505050565b612a6d8383612fd2565b612a7a6000848484612abe565b612ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab090614254565b60405180910390fd5b505050565b6000612adf8473ffffffffffffffffffffffffffffffffffffffff166131a0565b15612c48578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b086122a3565b8786866040518563ffffffff1660e01b8152600401612b2a9493929190614152565b602060405180830381600087803b158015612b4457600080fd5b505af1925050508015612b7557506040513d601f19601f82011682018060405250810190612b7291906135a9565b60015b612bf8573d8060008114612ba5576040519150601f19603f3d011682016040523d82523d6000602084013e612baa565b606091505b50600081511415612bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be790614254565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c4d565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612cb084610cd6565b612cba919061473b565b9050600060076000848152602001908152602001600020549050818114612d9f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e24919061473b565b9050600060096000848152602001908152602001600020549050600060088381548110612e7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612ec2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f37577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612f5e83610cd6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613039906143d4565b60405180910390fd5b61304b81612237565b1561308b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308290614294565b60405180910390fd5b6130976000838361294f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130e791906146e5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131bf90614825565b90600052602060002090601f0160209004810192826131e15760008555613228565b82601f106131fa57803560ff1916838001178555613228565b82800160010185558215613228579182015b8281111561322757823582559160200191906001019061320c565b5b5090506132359190613239565b5090565b5b8082111561325257600081600090555060010161323a565b5090565b600061326961326484614614565b6145e3565b90508281526020810184848401111561328157600080fd5b61328c8482856147e3565b509392505050565b60006132a76132a284614644565b6145e3565b9050828152602081018484840111156132bf57600080fd5b6132ca8482856147f2565b509392505050565b6000813590506132e18161493e565b92915050565b6000813590506132f681614955565b92915050565b60008135905061330b8161496c565b92915050565b6000815190506133208161496c565b92915050565b600082601f83011261333757600080fd5b8135613347848260208601613256565b91505092915050565b60008083601f84011261336257600080fd5b8235905067ffffffffffffffff81111561337b57600080fd5b60208301915083600182028301111561339357600080fd5b9250929050565b600082601f8301126133ab57600080fd5b81516133bb848260208601613294565b91505092915050565b6000813590506133d381614983565b92915050565b6000602082840312156133eb57600080fd5b60006133f9848285016132d2565b91505092915050565b6000806040838503121561341557600080fd5b6000613423858286016132d2565b9250506020613434858286016132d2565b9150509250929050565b60008060006060848603121561345357600080fd5b6000613461868287016132d2565b9350506020613472868287016132d2565b9250506040613483868287016133c4565b9150509250925092565b600080600080608085870312156134a357600080fd5b60006134b1878288016132d2565b94505060206134c2878288016132d2565b93505060406134d3878288016133c4565b925050606085013567ffffffffffffffff8111156134f057600080fd5b6134fc87828801613326565b91505092959194509250565b6000806040838503121561351b57600080fd5b6000613529858286016132d2565b925050602061353a858286016132e7565b9150509250929050565b6000806040838503121561355757600080fd5b6000613565858286016132d2565b9250506020613576858286016133c4565b9150509250929050565b60006020828403121561359257600080fd5b60006135a0848285016132fc565b91505092915050565b6000602082840312156135bb57600080fd5b60006135c984828501613311565b91505092915050565b6000806000604084860312156135e757600080fd5b600084013567ffffffffffffffff81111561360157600080fd5b61360d86828701613350565b93509350506020613620868287016133c4565b9150509250925092565b60006020828403121561363c57600080fd5b600082015167ffffffffffffffff81111561365657600080fd5b6136628482850161339a565b91505092915050565b60006020828403121561367d57600080fd5b600061368b848285016133c4565b91505092915050565b600080604083850312156136a757600080fd5b60006136b5858286016133c4565b92505060206136c6858286016132d2565b9150509250929050565b6000806000606084860312156136e557600080fd5b60006136f3868287016133c4565b9350506020613704868287016132d2565b9250506040613715868287016133c4565b9150509250925092565b60008060006040848603121561373457600080fd5b6000613742868287016133c4565b935050602084013567ffffffffffffffff81111561375f57600080fd5b61376b86828701613350565b92509250509250925092565b6000806040838503121561378a57600080fd5b6000613798858286016133c4565b92505060206137a9858286016133c4565b9150509250929050565b60006137bf8383614119565b60208301905092915050565b6137d48161476f565b82525050565b60006137e582614684565b6137ef81856146b2565b93506137fa83614674565b8060005b8381101561382b57815161381288826137b3565b975061381d836146a5565b9250506001810190506137fe565b5085935050505092915050565b61384181614781565b82525050565b60006138528261468f565b61385c81856146c3565b935061386c8185602086016147f2565b6138758161492d565b840191505092915050565b600061388b8261469a565b61389581856146d4565b93506138a58185602086016147f2565b6138ae8161492d565b840191505092915050565b60006138c6602b836146d4565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061392c6032836146d4565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006139926026836146d4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139f8601c836146d4565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613a38601d836146d4565b91507f436f6c6c656374696f6e20697320616c7265616479206c6f636b65642e0000006000830152602082019050919050565b6000613a78601c836146d4565b91507f436f6c6c656374696f6e206f776e657220697320696e76616c69642e000000006000830152602082019050919050565b6000613ab86024836146d4565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b1e6019836146d4565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613b5e602c836146d4565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613bc4602e836146d4565b91507f436f6c6c656374696f6e20616c7265616479207265616368656420746f206d6160008301527f78206974656d7320636f756e742e0000000000000000000000000000000000006020830152604082019050919050565b6000613c2a6038836146d4565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613c90602a836146d4565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cf66029836146d4565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d5c6020836146d4565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613d9c602c836146d4565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e026015836146d4565b91507f436f6c6c656374696f6e206973206c6f636b65642e00000000000000000000006000830152602082019050919050565b6000613e426020836146d4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613e826029836146d4565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ee8602f836146d4565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613f4e6021836146d4565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fb46031836146d4565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061401a602c836146d4565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006140806024836146d4565b91507f546f6b656e204964206e6f7420666f756e6420696e20616e7920636f6c6c656360008301527f74696f6e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140e6601a836146d4565b91507f436f6c6c656374696f6e206973206e6f742064656c657465642e0000000000006000830152602082019050919050565b614122816147d9565b82525050565b614131816147d9565b82525050565b600060208201905061414c60008301846137cb565b92915050565b600060808201905061416760008301876137cb565b61417460208301866137cb565b6141816040830185614128565b81810360608301526141938184613847565b905095945050505050565b600060208201905081810360008301526141b881846137da565b905092915050565b60006020820190506141d56000830184613838565b92915050565b60006060820190506141f06000830186613838565b6141fd6020830185614128565b61420a6040830184614128565b949350505050565b6000602082019050818103600083015261422c8184613880565b905092915050565b6000602082019050818103600083015261424d816138b9565b9050919050565b6000602082019050818103600083015261426d8161391f565b9050919050565b6000602082019050818103600083015261428d81613985565b9050919050565b600060208201905081810360008301526142ad816139eb565b9050919050565b600060208201905081810360008301526142cd81613a2b565b9050919050565b600060208201905081810360008301526142ed81613a6b565b9050919050565b6000602082019050818103600083015261430d81613aab565b9050919050565b6000602082019050818103600083015261432d81613b11565b9050919050565b6000602082019050818103600083015261434d81613b51565b9050919050565b6000602082019050818103600083015261436d81613bb7565b9050919050565b6000602082019050818103600083015261438d81613c1d565b9050919050565b600060208201905081810360008301526143ad81613c83565b9050919050565b600060208201905081810360008301526143cd81613ce9565b9050919050565b600060208201905081810360008301526143ed81613d4f565b9050919050565b6000602082019050818103600083015261440d81613d8f565b9050919050565b6000602082019050818103600083015261442d81613df5565b9050919050565b6000602082019050818103600083015261444d81613e35565b9050919050565b6000602082019050818103600083015261446d81613e75565b9050919050565b6000602082019050818103600083015261448d81613edb565b9050919050565b600060208201905081810360008301526144ad81613f41565b9050919050565b600060208201905081810360008301526144cd81613fa7565b9050919050565b600060208201905081810360008301526144ed8161400d565b9050919050565b6000602082019050818103600083015261450d81614073565b9050919050565b6000602082019050818103600083015261452d816140d9565b9050919050565b60006020820190506145496000830184614128565b92915050565b600061012082019050614565600083018c614128565b8181036020830152614577818b613880565b9050614586604083018a6137cb565b6145936060830189614128565b6145a06080830188614128565b6145ad60a0830187614128565b6145ba60c0830186614128565b6145c760e0830185613838565b6145d5610100830184613838565b9a9950505050505050505050565b6000604051905081810181811067ffffffffffffffff8211171561460a576146096148fe565b5b8060405250919050565b600067ffffffffffffffff82111561462f5761462e6148fe565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561465f5761465e6148fe565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006146f0826147d9565b91506146fb836147d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147305761472f6148a0565b5b828201905092915050565b6000614746826147d9565b9150614751836147d9565b925082821015614764576147636148a0565b5b828203905092915050565b600061477a826147b9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148105780820151818401526020810190506147f5565b8381111561481f576000848401525b50505050565b6000600282049050600182168061483d57607f821691505b60208210811415614851576148506148cf565b5b50919050565b6000614862826147d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614895576148946148a0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6149478161476f565b811461495257600080fd5b50565b61495e81614781565b811461496957600080fd5b50565b6149758161478d565b811461498057600080fd5b50565b61498c816147d9565b811461499757600080fd5b5056fea26469706673582212205bffa62ef4f449e84ba764424d11e718a59d45811cc347d182fc334b57e3bd7a64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80638462151c1161010f578063b390c0ab116100a2578063d57f966b11610071578063d57f966b146105d9578063e985e9c5146105f7578063f2fde38b14610627578063fdbda0ec14610643576101f0565b8063b390c0ab1461053f578063b88d4fde1461055b578063c87b56dd14610577578063d3ab4a70146105a7576101f0565b806395d89b41116100de57806395d89b41146104cd578063a22cb465146104eb578063a286f39514610507578063a42c587a14610523576101f0565b80638462151c146104335780638da5cb5b146104635780639185e0c91461048157806391d85a061461049d576101f0565b806342842e0e1161018757806370a082311161015657806370a08231146103c1578063715018a6146103f15780637f4258e7146103fb578063836a104014610417576101f0565b806342842e0e146103155780634f6ccce7146103315780636352211e146103615780636728571e14610391576101f0565b806318160ddd116101c357806318160ddd1461028f57806323b872dd146102ad5780632f745c59146102c95780633c11a4c7146102f9576101f0565b806301ffc9a7146101f557806306fdde0314610225578063081812fc14610243578063095ea7b314610273575b600080fd5b61020f600480360381019061020a9190613580565b61067b565b60405161021c91906141c0565b60405180910390f35b61022d6106f5565b60405161023a9190614212565b60405180910390f35b61025d6004803603810190610258919061366b565b610787565b60405161026a9190614137565b60405180910390f35b61028d60048036038101906102889190613544565b61080c565b005b610297610924565b6040516102a49190614534565b60405180910390f35b6102c760048036038101906102c2919061343e565b610931565b005b6102e360048036038101906102de9190613544565b610991565b6040516102f09190614534565b60405180910390f35b610313600480360381019061030e919061371f565b610a36565b005b61032f600480360381019061032a919061343e565b610b41565b005b61034b6004803603810190610346919061366b565b610b61565b6040516103589190614534565b60405180910390f35b61037b6004803603810190610376919061366b565b610bf8565b6040516103889190614137565b60405180910390f35b6103ab60048036038101906103a69190613777565b610caa565b6040516103b89190614534565b60405180910390f35b6103db60048036038101906103d691906133d9565b610cd6565b6040516103e89190614534565b60405180910390f35b6103f9610d8e565b005b6104156004803603810190610410919061366b565b610ecb565b005b610431600480360381019061042c91906136d0565b610fdd565b005b61044d600480360381019061044891906133d9565b61119d565b60405161045a919061419e565b60405180910390f35b61046b611319565b6040516104789190614137565b60405180910390f35b61049b60048036038101906104969190613694565b611343565b005b6104b760048036038101906104b29190613694565b6114b6565b6040516104c4919061419e565b60405180910390f35b6104d56115b7565b6040516104e29190614212565b60405180910390f35b61050560048036038101906105009190613508565b611649565b005b610521600480360381019061051c91906135d2565b6117ca565b005b61053d6004803603810190610538919061366b565b611942565b005b61055960048036038101906105549190613777565b611a54565b005b6105756004803603810190610570919061348d565b611b7f565b005b610591600480360381019061058c919061366b565b611be1565b60405161059e9190614212565b60405180910390f35b6105c160048036038101906105bc919061366b565b611d53565b6040516105d0939291906141db565b60405180910390f35b6105e1611dff565b6040516105ee9190614534565b60405180910390f35b610611600480360381019061060c9190613402565b611e05565b60405161061e91906141c0565b60405180910390f35b610641600480360381019061063c91906133d9565b611e99565b005b61065d6004803603810190610658919061366b565b612045565b6040516106729998979695949392919061454f565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ee57506106ed82612155565b5b9050919050565b60606000805461070490614825565b80601f016020809104026020016040519081016040528092919081815260200182805461073090614825565b801561077d5780601f106107525761010080835404028352916020019161077d565b820191906000526020600020905b81548152906001019060200180831161076057829003601f168201915b5050505050905090565b600061079282612237565b6107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c8906143f4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081782610bf8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f90614494565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108a76122a3565b73ffffffffffffffffffffffffffffffffffffffff1614806108d657506108d5816108d06122a3565b611e05565b5b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c90614374565b60405180910390fd5b61091f83836122ab565b505050565b6000600880549050905090565b61094261093c6122a3565b82612364565b610981576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610978906144b4565b60405180910390fd5b61098c838383612442565b505050565b600061099c83610cd6565b82106109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490614234565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a3e6122a3565b73ffffffffffffffffffffffffffffffffffffffff16610a5c611319565b73ffffffffffffffffffffffffffffffffffffffff1614610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa990614434565b60405180910390fd5b600d600084815260200190815260200160002060070160009054906101000a900460ff1615610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d90614414565b60405180910390fd5b8181600d60008681526020019081526020016000206001019190610b3b9291906131b3565b50505050565b610b5c83838360405180602001604052806000815250611b7f565b505050565b6000610b6b610924565b8210610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba3906144d4565b60405180910390fd5b60088281548110610be6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906143b4565b60405180910390fd5b80915050919050565b600081600d600085815260200190815260200160002060030154610cce91906146e5565b905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90614394565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d966122a3565b73ffffffffffffffffffffffffffffffffffffffff16610db4611319565b73ffffffffffffffffffffffffffffffffffffffff1614610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190614434565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610ed36122a3565b73ffffffffffffffffffffffffffffffffffffffff16610ef1611319565b73ffffffffffffffffffffffffffffffffffffffff1614610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90614434565b60405180910390fd5b600d600082815260200190815260200160002060070160009054906101000a900460ff1615610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906142b4565b60405180910390fd5b6001600d600083815260200190815260200160002060070160006101000a81548160ff02191690831515021790555050565b600d600084815260200190815260200160002060070160009054906101000a900460ff1615611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890614414565b60405180910390fd5b600d600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906142d4565b60405180910390fd5b600d600084815260200190815260200160002060050154600d60008581526020019081526020016000206006015410611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90614354565b60405180910390fd5b600061115f8483610caa565b9050600d6000858152602001908152602001600020600601600081548092919061118890614857565b9190505550611197838261269e565b50505050565b606060006111aa83610cd6565b9050600081141561122d57600067ffffffffffffffff8111156111f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112245781602001602082028036833780820191505090505b50915050611314565b60008167ffffffffffffffff81111561126f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561129d5781602001602082028036833780820191505090505b50905060005b8281101561130d576112b58582610991565b8282815181106112ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061130590614857565b9150506112a3565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61134b6122a3565b73ffffffffffffffffffffffffffffffffffffffff16611369611319565b73ffffffffffffffffffffffffffffffffffffffff16146113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690614434565b60405180910390fd5b600d600083815260200190815260200160002060070160009054906101000a900460ff1615611423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141a90614414565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561145d57600080fd5b80600d600084815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b606060006114c38361119d565b90506060600080600091505b83518210156115aa576000848381518110611513577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008061152983611d53565b509150915081801561153a57508981145b156115945782868581518110611579577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050838061159090614857565b9450505b50505081806115a290614857565b9250506114cf565b8294505050505092915050565b6060600180546115c690614825565b80601f01602080910402602001604051908101604052809291908181526020018280546115f290614825565b801561163f5780601f106116145761010080835404028352916020019161163f565b820191906000526020600020905b81548152906001019060200180831161162257829003601f168201915b5050505050905090565b6116516122a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b690614314565b60405180910390fd5b80600560006116cc6122a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117796122a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117be91906141c0565b60405180910390a35050565b6117d26122a3565b73ffffffffffffffffffffffffffffffffffffffff166117f0611319565b73ffffffffffffffffffffffffffffffffffffffff1614611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90614434565b60405180910390fd5b6000811161185357600080fd5b600b54600d6000600b548152602001908152602001600020600001819055508282600d6000600b54815260200190815260200160002060010191906118999291906131b3565b50600c54600d6000600b548152602001908152602001600020600301819055506001816118c6919061473b565b600c546118d391906146e5565b600d6000600b5481526020019081526020016000206004018190555080600d6000600b54815260200190815260200160002060050181905550600b600081548092919061191f90614857565b919050555080600c600082825461193691906146e5565b92505081905550505050565b61194a6122a3565b73ffffffffffffffffffffffffffffffffffffffff16611968611319565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b590614434565b60405180910390fd5b600d600082815260200190815260200160002060070160009054906101000a900460ff1615611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990614414565b60405180910390fd5b6001600d600083815260200190815260200160002060070160016101000a81548160ff02191690831515021790555050565b600d600083815260200190815260200160002060070160009054906101000a900460ff1615611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90614414565b60405180910390fd5b600d600083815260200190815260200160002060070160019054906101000a900460ff16611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290614514565b60405180910390fd5b611b24826126bc565b611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906142d4565b60405180910390fd5b6000611b6f8383610caa565b9050611b7a81612778565b505050565b611b90611b8a6122a3565b83612364565b611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc6906144b4565b60405180910390fd5b611bdb84848484612889565b50505050565b6060611bec82612237565b611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290614474565b60405180910390fd5b6000806000611c3985611d53565b92509250925082611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c76906144f4565b60405180910390fd5b6000600d600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b8152600401611cf39190614534565b60006040518083038186803b158015611d0b57600080fd5b505afa158015611d1f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611d48919061362a565b945050505050919050565b600080600080600090505b600b54811015611deb576000600d60008381526020019081526020016000206003015490506000600d6000848152602001908152602001600020600401549050818710158015611dae5750808711155b15611dd65760008288611dc1919061473b565b90506001848296509650965050505050611df8565b50508080611de390614857565b915050611d5e565b5060008060009250925092505b9193909250565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ea16122a3565b73ffffffffffffffffffffffffffffffffffffffff16611ebf611319565b73ffffffffffffffffffffffffffffffffffffffff1614611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c90614434565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c90614274565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d60205280600052604060002060009150905080600001549080600101805461206e90614825565b80601f016020809104026020016040519081016040528092919081815260200182805461209a90614825565b80156120e75780601f106120bc576101008083540402835291602001916120e7565b820191906000526020600020905b8154815290600101906020018083116120ca57829003601f168201915b5050505050908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030154908060040154908060050154908060060154908060070160009054906101000a900460ff16908060070160019054906101000a900460ff16905089565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061222057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612230575061222f826128e5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661231e83610bf8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061236f82612237565b6123ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a590614334565b60405180910390fd5b60006123b983610bf8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061242857508373ffffffffffffffffffffffffffffffffffffffff1661241084610787565b73ffffffffffffffffffffffffffffffffffffffff16145b8061243957506124388185611e05565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661246282610bf8565b73ffffffffffffffffffffffffffffffffffffffff16146124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124af90614454565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251f906142f4565b60405180910390fd5b61253383838361294f565b61253e6000826122ab565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258e919061473b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125e591906146e5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6126b8828260405180602001604052806000815250612a63565b5050565b60006126c6611319565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806127605750600d600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b1561276e5760019050612773565b600090505b919050565b600061278382610bf8565b90506127918160008461294f565b61279c6000836122ab565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127ec919061473b565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612894848484612442565b6128a084848484612abe565b6128df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d690614254565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61295a838383612c55565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561299d5761299881612c5a565b6129dc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129db576129da8382612ca3565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a1f57612a1a81612e10565b612a5e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a5d57612a5c8282612f53565b5b5b505050565b612a6d8383612fd2565b612a7a6000848484612abe565b612ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab090614254565b60405180910390fd5b505050565b6000612adf8473ffffffffffffffffffffffffffffffffffffffff166131a0565b15612c48578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b086122a3565b8786866040518563ffffffff1660e01b8152600401612b2a9493929190614152565b602060405180830381600087803b158015612b4457600080fd5b505af1925050508015612b7557506040513d601f19601f82011682018060405250810190612b7291906135a9565b60015b612bf8573d8060008114612ba5576040519150601f19603f3d011682016040523d82523d6000602084013e612baa565b606091505b50600081511415612bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be790614254565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c4d565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612cb084610cd6565b612cba919061473b565b9050600060076000848152602001908152602001600020549050818114612d9f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e24919061473b565b9050600060096000848152602001908152602001600020549050600060088381548110612e7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612ec2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f37577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612f5e83610cd6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613039906143d4565b60405180910390fd5b61304b81612237565b1561308b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308290614294565b60405180910390fd5b6130976000838361294f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130e791906146e5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131bf90614825565b90600052602060002090601f0160209004810192826131e15760008555613228565b82601f106131fa57803560ff1916838001178555613228565b82800160010185558215613228579182015b8281111561322757823582559160200191906001019061320c565b5b5090506132359190613239565b5090565b5b8082111561325257600081600090555060010161323a565b5090565b600061326961326484614614565b6145e3565b90508281526020810184848401111561328157600080fd5b61328c8482856147e3565b509392505050565b60006132a76132a284614644565b6145e3565b9050828152602081018484840111156132bf57600080fd5b6132ca8482856147f2565b509392505050565b6000813590506132e18161493e565b92915050565b6000813590506132f681614955565b92915050565b60008135905061330b8161496c565b92915050565b6000815190506133208161496c565b92915050565b600082601f83011261333757600080fd5b8135613347848260208601613256565b91505092915050565b60008083601f84011261336257600080fd5b8235905067ffffffffffffffff81111561337b57600080fd5b60208301915083600182028301111561339357600080fd5b9250929050565b600082601f8301126133ab57600080fd5b81516133bb848260208601613294565b91505092915050565b6000813590506133d381614983565b92915050565b6000602082840312156133eb57600080fd5b60006133f9848285016132d2565b91505092915050565b6000806040838503121561341557600080fd5b6000613423858286016132d2565b9250506020613434858286016132d2565b9150509250929050565b60008060006060848603121561345357600080fd5b6000613461868287016132d2565b9350506020613472868287016132d2565b9250506040613483868287016133c4565b9150509250925092565b600080600080608085870312156134a357600080fd5b60006134b1878288016132d2565b94505060206134c2878288016132d2565b93505060406134d3878288016133c4565b925050606085013567ffffffffffffffff8111156134f057600080fd5b6134fc87828801613326565b91505092959194509250565b6000806040838503121561351b57600080fd5b6000613529858286016132d2565b925050602061353a858286016132e7565b9150509250929050565b6000806040838503121561355757600080fd5b6000613565858286016132d2565b9250506020613576858286016133c4565b9150509250929050565b60006020828403121561359257600080fd5b60006135a0848285016132fc565b91505092915050565b6000602082840312156135bb57600080fd5b60006135c984828501613311565b91505092915050565b6000806000604084860312156135e757600080fd5b600084013567ffffffffffffffff81111561360157600080fd5b61360d86828701613350565b93509350506020613620868287016133c4565b9150509250925092565b60006020828403121561363c57600080fd5b600082015167ffffffffffffffff81111561365657600080fd5b6136628482850161339a565b91505092915050565b60006020828403121561367d57600080fd5b600061368b848285016133c4565b91505092915050565b600080604083850312156136a757600080fd5b60006136b5858286016133c4565b92505060206136c6858286016132d2565b9150509250929050565b6000806000606084860312156136e557600080fd5b60006136f3868287016133c4565b9350506020613704868287016132d2565b9250506040613715868287016133c4565b9150509250925092565b60008060006040848603121561373457600080fd5b6000613742868287016133c4565b935050602084013567ffffffffffffffff81111561375f57600080fd5b61376b86828701613350565b92509250509250925092565b6000806040838503121561378a57600080fd5b6000613798858286016133c4565b92505060206137a9858286016133c4565b9150509250929050565b60006137bf8383614119565b60208301905092915050565b6137d48161476f565b82525050565b60006137e582614684565b6137ef81856146b2565b93506137fa83614674565b8060005b8381101561382b57815161381288826137b3565b975061381d836146a5565b9250506001810190506137fe565b5085935050505092915050565b61384181614781565b82525050565b60006138528261468f565b61385c81856146c3565b935061386c8185602086016147f2565b6138758161492d565b840191505092915050565b600061388b8261469a565b61389581856146d4565b93506138a58185602086016147f2565b6138ae8161492d565b840191505092915050565b60006138c6602b836146d4565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061392c6032836146d4565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006139926026836146d4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139f8601c836146d4565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613a38601d836146d4565b91507f436f6c6c656374696f6e20697320616c7265616479206c6f636b65642e0000006000830152602082019050919050565b6000613a78601c836146d4565b91507f436f6c6c656374696f6e206f776e657220697320696e76616c69642e000000006000830152602082019050919050565b6000613ab86024836146d4565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b1e6019836146d4565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613b5e602c836146d4565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613bc4602e836146d4565b91507f436f6c6c656374696f6e20616c7265616479207265616368656420746f206d6160008301527f78206974656d7320636f756e742e0000000000000000000000000000000000006020830152604082019050919050565b6000613c2a6038836146d4565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613c90602a836146d4565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cf66029836146d4565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d5c6020836146d4565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613d9c602c836146d4565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e026015836146d4565b91507f436f6c6c656374696f6e206973206c6f636b65642e00000000000000000000006000830152602082019050919050565b6000613e426020836146d4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613e826029836146d4565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ee8602f836146d4565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613f4e6021836146d4565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fb46031836146d4565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061401a602c836146d4565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006140806024836146d4565b91507f546f6b656e204964206e6f7420666f756e6420696e20616e7920636f6c6c656360008301527f74696f6e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140e6601a836146d4565b91507f436f6c6c656374696f6e206973206e6f742064656c657465642e0000000000006000830152602082019050919050565b614122816147d9565b82525050565b614131816147d9565b82525050565b600060208201905061414c60008301846137cb565b92915050565b600060808201905061416760008301876137cb565b61417460208301866137cb565b6141816040830185614128565b81810360608301526141938184613847565b905095945050505050565b600060208201905081810360008301526141b881846137da565b905092915050565b60006020820190506141d56000830184613838565b92915050565b60006060820190506141f06000830186613838565b6141fd6020830185614128565b61420a6040830184614128565b949350505050565b6000602082019050818103600083015261422c8184613880565b905092915050565b6000602082019050818103600083015261424d816138b9565b9050919050565b6000602082019050818103600083015261426d8161391f565b9050919050565b6000602082019050818103600083015261428d81613985565b9050919050565b600060208201905081810360008301526142ad816139eb565b9050919050565b600060208201905081810360008301526142cd81613a2b565b9050919050565b600060208201905081810360008301526142ed81613a6b565b9050919050565b6000602082019050818103600083015261430d81613aab565b9050919050565b6000602082019050818103600083015261432d81613b11565b9050919050565b6000602082019050818103600083015261434d81613b51565b9050919050565b6000602082019050818103600083015261436d81613bb7565b9050919050565b6000602082019050818103600083015261438d81613c1d565b9050919050565b600060208201905081810360008301526143ad81613c83565b9050919050565b600060208201905081810360008301526143cd81613ce9565b9050919050565b600060208201905081810360008301526143ed81613d4f565b9050919050565b6000602082019050818103600083015261440d81613d8f565b9050919050565b6000602082019050818103600083015261442d81613df5565b9050919050565b6000602082019050818103600083015261444d81613e35565b9050919050565b6000602082019050818103600083015261446d81613e75565b9050919050565b6000602082019050818103600083015261448d81613edb565b9050919050565b600060208201905081810360008301526144ad81613f41565b9050919050565b600060208201905081810360008301526144cd81613fa7565b9050919050565b600060208201905081810360008301526144ed8161400d565b9050919050565b6000602082019050818103600083015261450d81614073565b9050919050565b6000602082019050818103600083015261452d816140d9565b9050919050565b60006020820190506145496000830184614128565b92915050565b600061012082019050614565600083018c614128565b8181036020830152614577818b613880565b9050614586604083018a6137cb565b6145936060830189614128565b6145a06080830188614128565b6145ad60a0830187614128565b6145ba60c0830186614128565b6145c760e0830185613838565b6145d5610100830184613838565b9a9950505050505050505050565b6000604051905081810181811067ffffffffffffffff8211171561460a576146096148fe565b5b8060405250919050565b600067ffffffffffffffff82111561462f5761462e6148fe565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561465f5761465e6148fe565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006146f0826147d9565b91506146fb836147d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147305761472f6148a0565b5b828201905092915050565b6000614746826147d9565b9150614751836147d9565b925082821015614764576147636148a0565b5b828203905092915050565b600061477a826147b9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148105780820151818401526020810190506147f5565b8381111561481f576000848401525b50505050565b6000600282049050600182168061483d57607f821691505b60208210811415614851576148506148cf565b5b50919050565b6000614862826147d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614895576148946148a0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6149478161476f565b811461495257600080fd5b50565b61495e81614781565b811461496957600080fd5b50565b6149758161478d565b811461498057600080fd5b50565b61498c816147d9565b811461499757600080fd5b5056fea26469706673582212205bffa62ef4f449e84ba764424d11e718a59d45811cc347d182fc334b57e3bd7a64736f6c63430008000033

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.