ETH Price: $3,480.31 (+1.67%)
Gas: 16 Gwei

Token

JackedApeClub (JAC)
 

Overview

Max Total Supply

3,222 JAC

Holders

1,728

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 JAC
0xbb0173c0e8d5919e0a6a4066a1c506b16748e2d1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Jacked Ape Club is the Genesis collection from JackedNFT's for community-driven project focused on merging the two worlds of Web3 technology and the fitness industry.Jacked was founded on the principles of living better, happier, and healthier lives.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
JackedApeClub

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

pragma solidity >=0.7.0 <0.9.0;

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

contract JackedApeClub is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public notRevealedUri;
    string public baseExtension = ".json";
    uint256 public cost = 0.15 ether;
    uint256 public maxSupply = 8888;
    uint256 public maxSupplyForPresale = 7000;
    uint256 public maxMintAmount = 2;
    uint256 public nftPerWhitelistAddressLimit = 1;
    uint256 public nftPerOGAddressLimit = 2;
    bool public paused = false;
    bool public revealed = false;
    bool public onlyPresale = true;

    bytes32 private whitelistMerkleRoot;
    bytes32 private OGMerkleRoot;

    mapping(address => uint256) public addressMintedBalance;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

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

    // public
    function mint(uint256 _mintAmount) public payable {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "min mint is 1 NFT");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        // require(supply + _mintAmount <= maxSupply - reserved, "max NFT limit exceeded");

        if (msg.sender != owner()) {
            require(!onlyPresale, "Presale is on");
            require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
            require(msg.value >= cost * _mintAmount, "insufficient funds");
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }

    function whitelistMint(
        uint256 _mintAmount,
        bool _whitelist,
        bytes32[] calldata _merkleProof
    ) public payable {
        require(!paused, "the contract is paused");
        require(onlyPresale, "Presale is false");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "min mint is 1 NFT");
        require(supply + _mintAmount <= maxSupplyForPresale, "max NFT limit for presale exceeded");

        uint256 ownerMintedCount = addressMintedBalance[msg.sender];

        if (_whitelist) {
            require(
                ownerMintedCount + _mintAmount <= nftPerWhitelistAddressLimit,
                "max NFT per whitelist address exceeded"
            );

            // Check if user is whitelisted
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf), "Invalid Proof, User not whitelisted");
        }

        if (!_whitelist) {
            require(ownerMintedCount + _mintAmount <= nftPerOGAddressLimit, "max NFT per OG address exceeded");
            // Check if user is whitelisted
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(_merkleProof, OGMerkleRoot, leaf), "Invalid Proof, User not OGListed");
        }

        require(msg.value >= cost * _mintAmount, "insufficient funds");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }

    function setWhitelistMerkleRoot(bytes32 root) external onlyOwner {
        whitelistMerkleRoot = root;
    }

    function setOGMerkleRoot(bytes32 root) external onlyOwner {
        OGMerkleRoot = root;
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        if (revealed == false) {
            return notRevealedUri;
        }

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

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    // function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    //     baseExtension = _newBaseExtension;
    // }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNftPerWhitelistAddressLimit(uint256 _limit) public onlyOwner {
        nftPerWhitelistAddressLimit = _limit;
    }

    function setNftPerOGAddressLimit(uint256 _limit) public onlyOwner {
        nftPerOGAddressLimit = _limit;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setOnlyPresale(bool _state) public onlyOwner {
        onlyPresale = _state;
    }

    function withdraw() public payable onlyOwner {
        // uint256 balance = address(this).balance;
        (bool dy, ) = payable(0xDA66e4F7b6e36A1489788820870432b483230D92).call{
            value: (address(this).balance * 195) / 1000
        }("");
        require(dy);

        (bool ni, ) = payable(0x292BEC2537cEfaD1b002A7aD766C12DA096D5316).call{
            value: (address(this).balance * 2422360248) / 10000000000
        }("");
        require(ni);

        (bool br, ) = payable(0x63d73C33E75bFDB14C18A734713239b98357D552).call{
            value: (address(this).balance * 3278688525) / 10000000000
        }("");
        require(br);

        (bool or, ) = payable(0x6085Ab3dd565FDE4deeC682F9cD9250d7909eb66).call{
            value: (address(this).balance * 3536585366) / 10000000000
        }("");
        require(or);

        (bool mi, ) = payable(0x1C05D8263bFF5a05b037763396dD7A48FaeE3b6D).call{
            value: (address(this).balance * 1886792453) / 10000000000
        }("");
        require(mi);

        (bool ad, ) = payable(0x496031D43A681E510CBCFC281899F25e0D83B4B4).call{
            value: (address(this).balance * 2325581395) / 10000000000
        }("");
        require(ad);

        (bool hd, ) = payable(0x900168607D7fF7c545C11c0DAE5DB6e8223c0909).call{
            value: (address(this).balance * 3030303030) / 10000000000
        }("");
        require(hd);

        (bool da, ) = payable(0x662e7268D9316A565Ec40b6d4b71117aDF89D993).call{
            value: (address(this).balance * 2173913043) / 10000000000
        }("");
        require(da);

        (bool si, ) = payable(0x6Ea2f734c066CC8677b2C0Ce386CD827Ad1636CD).call{
            value: (address(this).balance * 1666666667) / 10000000000
        }("");
        require(si);

        (bool ma, ) = payable(0x906D21e683Db943C98253118E9fE477c89Cd2CEc).call{
            value: (address(this).balance * 1333333333) / 10000000000
        }("");
        require(ma);

        (bool cl, ) = payable(0x45F28e3423dB48B59846667fE1D02eEEba5c8fab).call{
            value: (address(this).balance * 1538461538) / 10000000000
        }("");
        require(cl);

        (bool ja, ) = payable(0x15918f246F415ED59a4ec7220118a16431E132F2).call{
            value: (address(this).balance * 9090909091) / 100000000000
        }("");
        require(ja);

        (bool cm, ) = payable(0x532407ec3681f15f54E10CD0D16920f4b35Eaf76).call{value: address(this).balance}("");
        require(cm);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyForPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerOGAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerWhitelistAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerOGAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerWhitelistAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setOGMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bool","name":"_whitelist","type":"bool"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d908051906020019062000051929190620003cd565b50670214e8348c4f0000600e556122b8600f55611b586010556002601155600160125560026013556000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055506001601460026101000a81548160ff021916908315150217905550348015620000d757600080fd5b5060405162006737380380620067378339818101604052810190620000fd9190620004ef565b8383816000908051906020019062000117929190620003cd565b50806001908051906020019062000130929190620003cd565b50505062000153620001476200017f60201b60201c565b6200018760201b60201c565b62000164826200024d60201b60201c565b6200017581620002f860201b60201c565b50505050620007b2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200025d6200017f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000283620003a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d390620005e6565b60405180910390fd5b80600b9080519060200190620002f4929190620003cd565b5050565b620003086200017f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200032e620003a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000387576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037e90620005e6565b60405180910390fd5b80600c90805190602001906200039f929190620003cd565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003db90620006ae565b90600052602060002090601f016020900481019282620003ff57600085556200044b565b82601f106200041a57805160ff19168380011785556200044b565b828001600101855582156200044b579182015b828111156200044a5782518255916020019190600101906200042d565b5b5090506200045a91906200045e565b5090565b5b80821115620004795760008160009055506001016200045f565b5090565b6000620004946200048e8462000631565b62000608565b905082815260208101848484011115620004ad57600080fd5b620004ba84828562000678565b509392505050565b600082601f830112620004d457600080fd5b8151620004e68482602086016200047d565b91505092915050565b600080600080608085870312156200050657600080fd5b600085015167ffffffffffffffff8111156200052157600080fd5b6200052f87828801620004c2565b945050602085015167ffffffffffffffff8111156200054d57600080fd5b6200055b87828801620004c2565b935050604085015167ffffffffffffffff8111156200057957600080fd5b6200058787828801620004c2565b925050606085015167ffffffffffffffff811115620005a557600080fd5b620005b387828801620004c2565b91505092959194509250565b6000620005ce60208362000667565b9150620005db8262000789565b602082019050919050565b600060208201905081810360008301526200060181620005bf565b9050919050565b60006200061462000627565b9050620006228282620006e4565b919050565b6000604051905090565b600067ffffffffffffffff8211156200064f576200064e62000749565b5b6200065a8262000778565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006985780820151818401526020810190506200067b565b83811115620006a8576000848401525b50505050565b60006002820490506001821680620006c757607f821691505b60208210811415620006de57620006dd6200071a565b5b50919050565b620006ef8262000778565b810181811067ffffffffffffffff8211171562000711576200071062000749565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615f7580620007c26000396000f3fe60806040526004361061027d5760003560e01c80635c19cd751161014f578063a22cb465116100c1578063ca777e211161007a578063ca777e211461095d578063d5abeb0114610986578063e53c1656146109b1578063e985e9c5146109dc578063f2c4ce1e14610a19578063f2fde38b14610a425761027d565b8063a22cb46514610863578063a475b5dd1461088c578063b88d4fde146108a3578063bd32fb66146108cc578063c6682862146108f5578063c87b56dd146109205761027d565b806370a082311161011357806370a0823114610774578063715018a6146107b15780637f00c7a6146107c85780638da5cb5b146107f157806395d89b411461081c578063a0712d68146108475761027d565b80635c19cd751461068b5780635c975abb146106b657806361cb9161146106e15780636352211e1461070c5780636c0360eb146107495761027d565b80631e64e2b6116101f357806342842e0e116101ac57806342842e0e1461056b578063438b6300146105945780634f6ccce7146105d1578063518302271461060e57806355f804b3146106395780635b53b20d146106625761027d565b80631e64e2b61461047e578063239c70ae146104a757806323b872dd146104d257806325c2c020146104fb5780632f745c59146105245780633ccfd60b146105615761027d565b8063081c8c4411610245578063081c8c441461037b578063095ea7b3146103a65780630a8e5489146103cf57806313faede6146103eb57806318160ddd1461041657806318cae269146104415761027d565b806301ffc9a71461028257806302329a29146102bf5780630640ab4e146102e857806306fdde0314610313578063081812fc1461033e575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906145dd565b610a6b565b6040516102b69190614e5a565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e1919061458b565b610ae5565b005b3480156102f457600080fd5b506102fd610b7e565b60405161030a9190615257565b60405180910390f35b34801561031f57600080fd5b50610328610b84565b6040516103359190614e75565b60405180910390f35b34801561034a57600080fd5b5061036560048036038101906103609190614670565b610c16565b6040516103729190614dd1565b60405180910390f35b34801561038757600080fd5b50610390610c9b565b60405161039d9190614e75565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c8919061454f565b610d29565b005b6103e960048036038101906103e49190614699565b610e41565b005b3480156103f757600080fd5b506104006112c6565b60405161040d9190615257565b60405180910390f35b34801561042257600080fd5b5061042b6112cc565b6040516104389190615257565b60405180910390f35b34801561044d57600080fd5b50610468600480360381019061046391906143e4565b6112d9565b6040516104759190615257565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190614670565b6112f1565b005b3480156104b357600080fd5b506104bc611377565b6040516104c99190615257565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190614449565b61137d565b005b34801561050757600080fd5b50610522600480360381019061051d91906145b4565b6113dd565b005b34801561053057600080fd5b5061054b6004803603810190610546919061454f565b611463565b6040516105589190615257565b60405180910390f35b610569611508565b005b34801561057757600080fd5b50610592600480360381019061058d9190614449565b611e04565b005b3480156105a057600080fd5b506105bb60048036038101906105b691906143e4565b611e24565b6040516105c89190614e38565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190614670565b611f1e565b6040516106059190615257565b60405180910390f35b34801561061a57600080fd5b50610623611fb5565b6040516106309190614e5a565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b919061462f565b611fc8565b005b34801561066e57600080fd5b5061068960048036038101906106849190614670565b61205e565b005b34801561069757600080fd5b506106a06120e4565b6040516106ad9190615257565b60405180910390f35b3480156106c257600080fd5b506106cb6120ea565b6040516106d89190614e5a565b60405180910390f35b3480156106ed57600080fd5b506106f66120fd565b6040516107039190614e5a565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190614670565b612110565b6040516107409190614dd1565b60405180910390f35b34801561075557600080fd5b5061075e6121c2565b60405161076b9190614e75565b60405180910390f35b34801561078057600080fd5b5061079b600480360381019061079691906143e4565b612250565b6040516107a89190615257565b60405180910390f35b3480156107bd57600080fd5b506107c6612308565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190614670565b612390565b005b3480156107fd57600080fd5b50610806612416565b6040516108139190614dd1565b60405180910390f35b34801561082857600080fd5b50610831612440565b60405161083e9190614e75565b60405180910390f35b610861600480360381019061085c9190614670565b6124d2565b005b34801561086f57600080fd5b5061088a60048036038101906108859190614513565b612771565b005b34801561089857600080fd5b506108a1612787565b005b3480156108af57600080fd5b506108ca60048036038101906108c59190614498565b612820565b005b3480156108d857600080fd5b506108f360048036038101906108ee91906145b4565b612882565b005b34801561090157600080fd5b5061090a612908565b6040516109179190614e75565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190614670565b612996565b6040516109549190614e75565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f919061458b565b612aef565b005b34801561099257600080fd5b5061099b612b88565b6040516109a89190615257565b60405180910390f35b3480156109bd57600080fd5b506109c6612b8e565b6040516109d39190615257565b60405180910390f35b3480156109e857600080fd5b50610a0360048036038101906109fe919061440d565b612b94565b604051610a109190614e5a565b60405180910390f35b348015610a2557600080fd5b50610a406004803603810190610a3b919061462f565b612c28565b005b348015610a4e57600080fd5b50610a696004803603810190610a6491906143e4565b612cbe565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ade5750610add82612db6565b5b9050919050565b610aed612e98565b73ffffffffffffffffffffffffffffffffffffffff16610b0b612416565b73ffffffffffffffffffffffffffffffffffffffff1614610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890615117565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b60135481565b606060008054610b939061556a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbf9061556a565b8015610c0c5780601f10610be157610100808354040283529160200191610c0c565b820191906000526020600020905b815481529060010190602001808311610bef57829003601f168201915b5050505050905090565b6000610c2182612ea0565b610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c57906150d7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610ca89061556a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd49061556a565b8015610d215780601f10610cf657610100808354040283529160200191610d21565b820191906000526020600020905b815481529060010190602001808311610d0457829003601f168201915b505050505081565b6000610d3482612110565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90615197565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dc4612e98565b73ffffffffffffffffffffffffffffffffffffffff161480610df35750610df281610ded612e98565b612b94565b5b610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2990614fd7565b60405180910390fd5b610e3c8383612f0c565b505050565b601460009054906101000a900460ff1615610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8890615137565b60405180910390fd5b601460029054906101000a900460ff16610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed7906150f7565b60405180910390fd5b6000610eea6112cc565b905060008511610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690615237565b60405180910390fd5b6010548582610f3e9190615395565b1115610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7690614f17565b60405180910390fd5b6000601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084156110d3576012548682610fd89190615395565b1115611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090614f77565b60405180910390fd5b60003360405160200161102c9190614d44565b604051602081830303815290604052805190602001209050611092858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060155483612fc5565b6110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890615037565b60405180910390fd5b505b846111e25760135486826110e79190615395565b1115611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90614fb7565b60405180910390fd5b60003360405160200161113b9190614d44565b6040516020818303038152906040528051906020012090506111a1858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060165483612fc5565b6111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790615217565b60405180910390fd5b505b85600e546111f0919061541c565b341015611232576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611229906151b7565b60405180910390fd5b6000600190505b8681116112bd57601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611290906155cd565b91905055506112aa3382856112a59190615395565b612fdc565b80806112b5906155cd565b915050611239565b50505050505050565b600e5481565b6000600880549050905090565b60176020528060005260406000206000915090505481565b6112f9612e98565b73ffffffffffffffffffffffffffffffffffffffff16611317612416565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490615117565b60405180910390fd5b8060128190555050565b60115481565b61138e611388612e98565b82612ffa565b6113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c4906151d7565b60405180910390fd5b6113d88383836130d8565b505050565b6113e5612e98565b73ffffffffffffffffffffffffffffffffffffffff16611403612416565b73ffffffffffffffffffffffffffffffffffffffff1614611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090615117565b60405180910390fd5b8060168190555050565b600061146e83612250565b82106114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690614e97565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611510612e98565b73ffffffffffffffffffffffffffffffffffffffff1661152e612416565b73ffffffffffffffffffffffffffffffffffffffff1614611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b90615117565b60405180910390fd5b600073da66e4f7b6e36a1489788820870432b483230d9273ffffffffffffffffffffffffffffffffffffffff166103e860c3476115c1919061541c565b6115cb91906153eb565b6040516115d790614dbc565b60006040518083038185875af1925050503d8060008114611614576040519150601f19603f3d011682016040523d82523d6000602084013e611619565b606091505b505090508061162757600080fd5b600073292bec2537cefad1b002a7ad766c12da096d531673ffffffffffffffffffffffffffffffffffffffff166402540be40063906248b84761166a919061541c565b61167491906153eb565b60405161168090614dbc565b60006040518083038185875af1925050503d80600081146116bd576040519150601f19603f3d011682016040523d82523d6000602084013e6116c2565b606091505b50509050806116d057600080fd5b60007363d73c33e75bfdb14c18a734713239b98357d55273ffffffffffffffffffffffffffffffffffffffff166402540be40063c36cd10d47611713919061541c565b61171d91906153eb565b60405161172990614dbc565b60006040518083038185875af1925050503d8060008114611766576040519150601f19603f3d011682016040523d82523d6000602084013e61176b565b606091505b505090508061177957600080fd5b6000736085ab3dd565fde4deec682f9cd9250d7909eb6673ffffffffffffffffffffffffffffffffffffffff166402540be40063d2cc0296476117bc919061541c565b6117c691906153eb565b6040516117d290614dbc565b60006040518083038185875af1925050503d806000811461180f576040519150601f19603f3d011682016040523d82523d6000602084013e611814565b606091505b505090508061182257600080fd5b6000731c05d8263bff5a05b037763396dd7a48faee3b6d73ffffffffffffffffffffffffffffffffffffffff166402540be4006370762b0547611865919061541c565b61186f91906153eb565b60405161187b90614dbc565b60006040518083038185875af1925050503d80600081146118b8576040519150601f19603f3d011682016040523d82523d6000602084013e6118bd565b606091505b50509050806118cb57600080fd5b600073496031d43a681e510cbcfc281899f25e0d83b4b473ffffffffffffffffffffffffffffffffffffffff166402540be400638a9d8e534761190e919061541c565b61191891906153eb565b60405161192490614dbc565b60006040518083038185875af1925050503d8060008114611961576040519150601f19603f3d011682016040523d82523d6000602084013e611966565b606091505b505090508061197457600080fd5b600073900168607d7ff7c545c11c0dae5db6e8223c090973ffffffffffffffffffffffffffffffffffffffff166402540be40063b49ec136476119b7919061541c565b6119c191906153eb565b6040516119cd90614dbc565b60006040518083038185875af1925050503d8060008114611a0a576040519150601f19603f3d011682016040523d82523d6000602084013e611a0f565b606091505b5050905080611a1d57600080fd5b600073662e7268d9316a565ec40b6d4b71117adf89d99373ffffffffffffffffffffffffffffffffffffffff166402540be40063819347d347611a60919061541c565b611a6a91906153eb565b604051611a7690614dbc565b60006040518083038185875af1925050503d8060008114611ab3576040519150601f19603f3d011682016040523d82523d6000602084013e611ab8565b606091505b5050905080611ac657600080fd5b6000736ea2f734c066cc8677b2c0ce386cd827ad1636cd73ffffffffffffffffffffffffffffffffffffffff166402540be40063635750ab47611b09919061541c565b611b1391906153eb565b604051611b1f90614dbc565b60006040518083038185875af1925050503d8060008114611b5c576040519150601f19603f3d011682016040523d82523d6000602084013e611b61565b606091505b5050905080611b6f57600080fd5b600073906d21e683db943c98253118e9fe477c89cd2cec73ffffffffffffffffffffffffffffffffffffffff166402540be400634f790d5547611bb2919061541c565b611bbc91906153eb565b604051611bc890614dbc565b60006040518083038185875af1925050503d8060008114611c05576040519150601f19603f3d011682016040523d82523d6000602084013e611c0a565b606091505b5050905080611c1857600080fd5b60007345f28e3423db48b59846667fe1d02eeeba5c8fab73ffffffffffffffffffffffffffffffffffffffff166402540be400635bb30f6247611c5b919061541c565b611c6591906153eb565b604051611c7190614dbc565b60006040518083038185875af1925050503d8060008114611cae576040519150601f19603f3d011682016040523d82523d6000602084013e611cb3565b606091505b5050905080611cc157600080fd5b60007315918f246f415ed59a4ec7220118a16431e132f273ffffffffffffffffffffffffffffffffffffffff1664174876e80064021ddc43a347611d05919061541c565b611d0f91906153eb565b604051611d1b90614dbc565b60006040518083038185875af1925050503d8060008114611d58576040519150601f19603f3d011682016040523d82523d6000602084013e611d5d565b606091505b5050905080611d6b57600080fd5b600073532407ec3681f15f54e10cd0d16920f4b35eaf7673ffffffffffffffffffffffffffffffffffffffff1647604051611da590614dbc565b60006040518083038185875af1925050503d8060008114611de2576040519150601f19603f3d011682016040523d82523d6000602084013e611de7565b606091505b5050905080611df557600080fd5b50505050505050505050505050565b611e1f83838360405180602001604052806000815250612820565b505050565b60606000611e3183612250565b905060008167ffffffffffffffff811115611e75577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611ea35781602001602082028036833780820191505090505b50905060005b82811015611f1357611ebb8582611463565b828281518110611ef4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611f0b906155cd565b915050611ea9565b508092505050919050565b6000611f286112cc565b8210611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f60906151f7565b60405180910390fd5b60088281548110611fa3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601460019054906101000a900460ff1681565b611fd0612e98565b73ffffffffffffffffffffffffffffffffffffffff16611fee612416565b73ffffffffffffffffffffffffffffffffffffffff1614612044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203b90615117565b60405180910390fd5b80600b908051906020019061205a9291906141a9565b5050565b612066612e98565b73ffffffffffffffffffffffffffffffffffffffff16612084612416565b73ffffffffffffffffffffffffffffffffffffffff16146120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d190615117565b60405180910390fd5b8060138190555050565b60125481565b601460009054906101000a900460ff1681565b601460029054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b090615017565b60405180910390fd5b80915050919050565b600b80546121cf9061556a565b80601f01602080910402602001604051908101604052809291908181526020018280546121fb9061556a565b80156122485780601f1061221d57610100808354040283529160200191612248565b820191906000526020600020905b81548152906001019060200180831161222b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b890614ff7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612310612e98565b73ffffffffffffffffffffffffffffffffffffffff1661232e612416565b73ffffffffffffffffffffffffffffffffffffffff1614612384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237b90615117565b60405180910390fd5b61238e6000613334565b565b612398612e98565b73ffffffffffffffffffffffffffffffffffffffff166123b6612416565b73ffffffffffffffffffffffffffffffffffffffff161461240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390615117565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461244f9061556a565b80601f016020809104026020016040519081016040528092919081815260200182805461247b9061556a565b80156124c85780601f1061249d576101008083540402835291602001916124c8565b820191906000526020600020905b8154815290600101906020018083116124ab57829003601f168201915b5050505050905090565b601460009054906101000a900460ff1615612522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251990615137565b60405180910390fd5b600061252c6112cc565b905060008211612571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256890615237565b60405180910390fd5b600f5482826125809190615395565b11156125c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b890615057565b60405180910390fd5b6125c9612416565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146126e157601460029054906101000a900460ff161561264b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264290615097565b60405180910390fd5b601154821115612690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268790615077565b60405180910390fd5b81600e5461269e919061541c565b3410156126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d7906151b7565b60405180910390fd5b5b6000600190505b82811161276c57601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061273f906155cd565b91905055506127593382846127549190615395565b612fdc565b8080612764906155cd565b9150506126e8565b505050565b61278361277c612e98565b83836133fa565b5050565b61278f612e98565b73ffffffffffffffffffffffffffffffffffffffff166127ad612416565b73ffffffffffffffffffffffffffffffffffffffff1614612803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fa90615117565b60405180910390fd5b6001601460016101000a81548160ff021916908315150217905550565b61283161282b612e98565b83612ffa565b612870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612867906151d7565b60405180910390fd5b61287c84848484613567565b50505050565b61288a612e98565b73ffffffffffffffffffffffffffffffffffffffff166128a8612416565b73ffffffffffffffffffffffffffffffffffffffff16146128fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f590615117565b60405180910390fd5b8060158190555050565b600d80546129159061556a565b80601f01602080910402602001604051908101604052809291908181526020018280546129419061556a565b801561298e5780601f106129635761010080835404028352916020019161298e565b820191906000526020600020905b81548152906001019060200180831161297157829003601f168201915b505050505081565b60606129a182612ea0565b6129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d790615177565b60405180910390fd5b60001515601460019054906101000a900460ff1615151415612a8e57600c8054612a099061556a565b80601f0160208091040260200160405190810160405280929190818152602001828054612a359061556a565b8015612a825780601f10612a5757610100808354040283529160200191612a82565b820191906000526020600020905b815481529060010190602001808311612a6557829003601f168201915b50505050509050612aea565b6000612a986135c3565b90506000815111612ab85760405180602001604052806000815250612ae6565b80612ac284613655565b600d604051602001612ad693929190614d8b565b6040516020818303038152906040525b9150505b919050565b612af7612e98565b73ffffffffffffffffffffffffffffffffffffffff16612b15612416565b73ffffffffffffffffffffffffffffffffffffffff1614612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6290615117565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b600f5481565b60105481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612c30612e98565b73ffffffffffffffffffffffffffffffffffffffff16612c4e612416565b73ffffffffffffffffffffffffffffffffffffffff1614612ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9b90615117565b60405180910390fd5b80600c9080519060200190612cba9291906141a9565b5050565b612cc6612e98565b73ffffffffffffffffffffffffffffffffffffffff16612ce4612416565b73ffffffffffffffffffffffffffffffffffffffff1614612d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3190615117565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da190614ed7565b60405180910390fd5b612db381613334565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e8157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e915750612e9082613802565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f7f83612110565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600082612fd2858461386c565b1490509392505050565b612ff6828260405180602001604052806000815250613945565b5050565b600061300582612ea0565b613044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303b90614f97565b60405180910390fd5b600061304f83612110565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806130be57508373ffffffffffffffffffffffffffffffffffffffff166130a684610c16565b73ffffffffffffffffffffffffffffffffffffffff16145b806130cf57506130ce8185612b94565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166130f882612110565b73ffffffffffffffffffffffffffffffffffffffff161461314e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314590615157565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b590614f37565b60405180910390fd5b6131c98383836139a0565b6131d4600082612f0c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132249190615476565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461327b9190615395565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346090614f57565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161355a9190614e5a565b60405180910390a3505050565b6135728484846130d8565b61357e84848484613ab4565b6135bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135b490614eb7565b60405180910390fd5b50505050565b6060600b80546135d29061556a565b80601f01602080910402602001604051908101604052809291908181526020018280546135fe9061556a565b801561364b5780601f106136205761010080835404028352916020019161364b565b820191906000526020600020905b81548152906001019060200180831161362e57829003601f168201915b5050505050905090565b6060600082141561369d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506137fd565b600082905060005b600082146136cf5780806136b8906155cd565b915050600a826136c891906153eb565b91506136a5565b60008167ffffffffffffffff811115613711577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156137435781602001600182028036833780820191505090505b5090505b600085146137f65760018261375c9190615476565b9150600a8561376b9190615644565b60306137779190615395565b60f81b8183815181106137b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137ef91906153eb565b9450613747565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008082905060005b845181101561393a5760008582815181106138b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116138fa5782816040516020016138dd929190614d5f565b604051602081830303815290604052805190602001209250613926565b808360405160200161390d929190614d5f565b6040516020818303038152906040528051906020012092505b508080613932906155cd565b915050613875565b508091505092915050565b61394f8383613c4b565b61395c6000848484613ab4565b61399b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399290614eb7565b60405180910390fd5b505050565b6139ab838383613e19565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139ee576139e981613e1e565b613a2d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613a2c57613a2b8382613e67565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a7057613a6b81613fd4565b613aaf565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613aae57613aad8282614117565b5b5b505050565b6000613ad58473ffffffffffffffffffffffffffffffffffffffff16614196565b15613c3e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613afe612e98565b8786866040518563ffffffff1660e01b8152600401613b209493929190614dec565b602060405180830381600087803b158015613b3a57600080fd5b505af1925050508015613b6b57506040513d601f19601f82011682018060405250810190613b689190614606565b60015b613bee573d8060008114613b9b576040519150601f19603f3d011682016040523d82523d6000602084013e613ba0565b606091505b50600081511415613be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bdd90614eb7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613c43565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cb2906150b7565b60405180910390fd5b613cc481612ea0565b15613d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cfb90614ef7565b60405180910390fd5b613d10600083836139a0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d609190615395565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613e7484612250565b613e7e9190615476565b9050600060076000848152602001908152602001600020549050818114613f63576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613fe89190615476565b905060006009600084815260200190815260200160002054905060006008838154811061403e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110614086577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806140fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061412283612250565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546141b59061556a565b90600052602060002090601f0160209004810192826141d7576000855561421e565b82601f106141f057805160ff191683800117855561421e565b8280016001018555821561421e579182015b8281111561421d578251825591602001919060010190614202565b5b50905061422b919061422f565b5090565b5b80821115614248576000816000905550600101614230565b5090565b600061425f61425a84615297565b615272565b90508281526020810184848401111561427757600080fd5b614282848285615528565b509392505050565b600061429d614298846152c8565b615272565b9050828152602081018484840111156142b557600080fd5b6142c0848285615528565b509392505050565b6000813590506142d781615ecc565b92915050565b60008083601f8401126142ef57600080fd5b8235905067ffffffffffffffff81111561430857600080fd5b60208301915083602082028301111561432057600080fd5b9250929050565b60008135905061433681615ee3565b92915050565b60008135905061434b81615efa565b92915050565b60008135905061436081615f11565b92915050565b60008151905061437581615f11565b92915050565b600082601f83011261438c57600080fd5b813561439c84826020860161424c565b91505092915050565b600082601f8301126143b657600080fd5b81356143c684826020860161428a565b91505092915050565b6000813590506143de81615f28565b92915050565b6000602082840312156143f657600080fd5b6000614404848285016142c8565b91505092915050565b6000806040838503121561442057600080fd5b600061442e858286016142c8565b925050602061443f858286016142c8565b9150509250929050565b60008060006060848603121561445e57600080fd5b600061446c868287016142c8565b935050602061447d868287016142c8565b925050604061448e868287016143cf565b9150509250925092565b600080600080608085870312156144ae57600080fd5b60006144bc878288016142c8565b94505060206144cd878288016142c8565b93505060406144de878288016143cf565b925050606085013567ffffffffffffffff8111156144fb57600080fd5b6145078782880161437b565b91505092959194509250565b6000806040838503121561452657600080fd5b6000614534858286016142c8565b925050602061454585828601614327565b9150509250929050565b6000806040838503121561456257600080fd5b6000614570858286016142c8565b9250506020614581858286016143cf565b9150509250929050565b60006020828403121561459d57600080fd5b60006145ab84828501614327565b91505092915050565b6000602082840312156145c657600080fd5b60006145d48482850161433c565b91505092915050565b6000602082840312156145ef57600080fd5b60006145fd84828501614351565b91505092915050565b60006020828403121561461857600080fd5b600061462684828501614366565b91505092915050565b60006020828403121561464157600080fd5b600082013567ffffffffffffffff81111561465b57600080fd5b614667848285016143a5565b91505092915050565b60006020828403121561468257600080fd5b6000614690848285016143cf565b91505092915050565b600080600080606085870312156146af57600080fd5b60006146bd878288016143cf565b94505060206146ce87828801614327565b935050604085013567ffffffffffffffff8111156146eb57600080fd5b6146f7878288016142dd565b925092505092959194509250565b60006147118383614d26565b60208301905092915050565b614726816154aa565b82525050565b61473d614738826154aa565b615616565b82525050565b600061474e8261531e565b614758818561534c565b9350614763836152f9565b8060005b8381101561479457815161477b8882614705565b97506147868361533f565b925050600181019050614767565b5085935050505092915050565b6147aa816154bc565b82525050565b6147c16147bc826154c8565b615628565b82525050565b60006147d282615329565b6147dc818561535d565b93506147ec818560208601615537565b6147f581615731565b840191505092915050565b600061480b82615334565b6148158185615379565b9350614825818560208601615537565b61482e81615731565b840191505092915050565b600061484482615334565b61484e818561538a565b935061485e818560208601615537565b80840191505092915050565b600081546148778161556a565b614881818661538a565b9450600182166000811461489c57600181146148ad576148e0565b60ff198316865281860193506148e0565b6148b685615309565b60005b838110156148d8578154818901526001820191506020810190506148b9565b838801955050505b50505092915050565b60006148f6602b83615379565b91506149018261574f565b604082019050919050565b6000614919603283615379565b91506149248261579e565b604082019050919050565b600061493c602683615379565b9150614947826157ed565b604082019050919050565b600061495f601c83615379565b915061496a8261583c565b602082019050919050565b6000614982602283615379565b915061498d82615865565b604082019050919050565b60006149a5602483615379565b91506149b0826158b4565b604082019050919050565b60006149c8601983615379565b91506149d382615903565b602082019050919050565b60006149eb602683615379565b91506149f68261592c565b604082019050919050565b6000614a0e602c83615379565b9150614a198261597b565b604082019050919050565b6000614a31601f83615379565b9150614a3c826159ca565b602082019050919050565b6000614a54603883615379565b9150614a5f826159f3565b604082019050919050565b6000614a77602a83615379565b9150614a8282615a42565b604082019050919050565b6000614a9a602983615379565b9150614aa582615a91565b604082019050919050565b6000614abd602383615379565b9150614ac882615ae0565b604082019050919050565b6000614ae0601683615379565b9150614aeb82615b2f565b602082019050919050565b6000614b03602483615379565b9150614b0e82615b58565b604082019050919050565b6000614b26600d83615379565b9150614b3182615ba7565b602082019050919050565b6000614b49602083615379565b9150614b5482615bd0565b602082019050919050565b6000614b6c602c83615379565b9150614b7782615bf9565b604082019050919050565b6000614b8f601083615379565b9150614b9a82615c48565b602082019050919050565b6000614bb2602083615379565b9150614bbd82615c71565b602082019050919050565b6000614bd5601683615379565b9150614be082615c9a565b602082019050919050565b6000614bf8602983615379565b9150614c0382615cc3565b604082019050919050565b6000614c1b602f83615379565b9150614c2682615d12565b604082019050919050565b6000614c3e602183615379565b9150614c4982615d61565b604082019050919050565b6000614c6160008361536e565b9150614c6c82615db0565b600082019050919050565b6000614c84601283615379565b9150614c8f82615db3565b602082019050919050565b6000614ca7603183615379565b9150614cb282615ddc565b604082019050919050565b6000614cca602c83615379565b9150614cd582615e2b565b604082019050919050565b6000614ced602083615379565b9150614cf882615e7a565b602082019050919050565b6000614d10601183615379565b9150614d1b82615ea3565b602082019050919050565b614d2f8161551e565b82525050565b614d3e8161551e565b82525050565b6000614d50828461472c565b60148201915081905092915050565b6000614d6b82856147b0565b602082019150614d7b82846147b0565b6020820191508190509392505050565b6000614d978286614839565b9150614da38285614839565b9150614daf828461486a565b9150819050949350505050565b6000614dc782614c54565b9150819050919050565b6000602082019050614de6600083018461471d565b92915050565b6000608082019050614e01600083018761471d565b614e0e602083018661471d565b614e1b6040830185614d35565b8181036060830152614e2d81846147c7565b905095945050505050565b60006020820190508181036000830152614e528184614743565b905092915050565b6000602082019050614e6f60008301846147a1565b92915050565b60006020820190508181036000830152614e8f8184614800565b905092915050565b60006020820190508181036000830152614eb0816148e9565b9050919050565b60006020820190508181036000830152614ed08161490c565b9050919050565b60006020820190508181036000830152614ef08161492f565b9050919050565b60006020820190508181036000830152614f1081614952565b9050919050565b60006020820190508181036000830152614f3081614975565b9050919050565b60006020820190508181036000830152614f5081614998565b9050919050565b60006020820190508181036000830152614f70816149bb565b9050919050565b60006020820190508181036000830152614f90816149de565b9050919050565b60006020820190508181036000830152614fb081614a01565b9050919050565b60006020820190508181036000830152614fd081614a24565b9050919050565b60006020820190508181036000830152614ff081614a47565b9050919050565b6000602082019050818103600083015261501081614a6a565b9050919050565b6000602082019050818103600083015261503081614a8d565b9050919050565b6000602082019050818103600083015261505081614ab0565b9050919050565b6000602082019050818103600083015261507081614ad3565b9050919050565b6000602082019050818103600083015261509081614af6565b9050919050565b600060208201905081810360008301526150b081614b19565b9050919050565b600060208201905081810360008301526150d081614b3c565b9050919050565b600060208201905081810360008301526150f081614b5f565b9050919050565b6000602082019050818103600083015261511081614b82565b9050919050565b6000602082019050818103600083015261513081614ba5565b9050919050565b6000602082019050818103600083015261515081614bc8565b9050919050565b6000602082019050818103600083015261517081614beb565b9050919050565b6000602082019050818103600083015261519081614c0e565b9050919050565b600060208201905081810360008301526151b081614c31565b9050919050565b600060208201905081810360008301526151d081614c77565b9050919050565b600060208201905081810360008301526151f081614c9a565b9050919050565b6000602082019050818103600083015261521081614cbd565b9050919050565b6000602082019050818103600083015261523081614ce0565b9050919050565b6000602082019050818103600083015261525081614d03565b9050919050565b600060208201905061526c6000830184614d35565b92915050565b600061527c61528d565b9050615288828261559c565b919050565b6000604051905090565b600067ffffffffffffffff8211156152b2576152b1615702565b5b6152bb82615731565b9050602081019050919050565b600067ffffffffffffffff8211156152e3576152e2615702565b5b6152ec82615731565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006153a08261551e565b91506153ab8361551e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156153e0576153df615675565b5b828201905092915050565b60006153f68261551e565b91506154018361551e565b925082615411576154106156a4565b5b828204905092915050565b60006154278261551e565b91506154328361551e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561546b5761546a615675565b5b828202905092915050565b60006154818261551e565b915061548c8361551e565b92508282101561549f5761549e615675565b5b828203905092915050565b60006154b5826154fe565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561555557808201518184015260208101905061553a565b83811115615564576000848401525b50505050565b6000600282049050600182168061558257607f821691505b60208210811415615596576155956156d3565b5b50919050565b6155a582615731565b810181811067ffffffffffffffff821117156155c4576155c3615702565b5b80604052505050565b60006155d88261551e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561560b5761560a615675565b5b600182019050919050565b600061562182615632565b9050919050565b6000819050919050565b600061563d82615742565b9050919050565b600061564f8261551e565b915061565a8361551e565b92508261566a576156696156a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e4654206c696d697420666f722070726573616c652065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d6178204e4654207065722077686974656c697374206164647265737320657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572204f47206164647265737320657863656564656400600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642050726f6f662c2055736572206e6f742077686974656c697360008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206973206f6e00000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f50726573616c652069732066616c736500000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e76616c69642050726f6f662c2055736572206e6f74204f474c6973746564600082015250565b7f6d696e206d696e742069732031204e4654000000000000000000000000000000600082015250565b615ed5816154aa565b8114615ee057600080fd5b50565b615eec816154bc565b8114615ef757600080fd5b50565b615f03816154c8565b8114615f0e57600080fd5b50565b615f1a816154d2565b8114615f2557600080fd5b50565b615f318161551e565b8114615f3c57600080fd5b5056fea264697066735822122083230ed23340e2aad9dfda9b9814fbfc48631a97a8c4525163aed2e85fb7d86f64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000d4a61636b6564417065436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034a414300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d635556413558357a627a61534c5539714454537a4b7451505a4b504b4e6e6343474376536a4a6751707173342f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d636e416d503237786163335751726372566a5875393164634c61343336624c55355a346f55565333444b4e732f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80635c19cd751161014f578063a22cb465116100c1578063ca777e211161007a578063ca777e211461095d578063d5abeb0114610986578063e53c1656146109b1578063e985e9c5146109dc578063f2c4ce1e14610a19578063f2fde38b14610a425761027d565b8063a22cb46514610863578063a475b5dd1461088c578063b88d4fde146108a3578063bd32fb66146108cc578063c6682862146108f5578063c87b56dd146109205761027d565b806370a082311161011357806370a0823114610774578063715018a6146107b15780637f00c7a6146107c85780638da5cb5b146107f157806395d89b411461081c578063a0712d68146108475761027d565b80635c19cd751461068b5780635c975abb146106b657806361cb9161146106e15780636352211e1461070c5780636c0360eb146107495761027d565b80631e64e2b6116101f357806342842e0e116101ac57806342842e0e1461056b578063438b6300146105945780634f6ccce7146105d1578063518302271461060e57806355f804b3146106395780635b53b20d146106625761027d565b80631e64e2b61461047e578063239c70ae146104a757806323b872dd146104d257806325c2c020146104fb5780632f745c59146105245780633ccfd60b146105615761027d565b8063081c8c4411610245578063081c8c441461037b578063095ea7b3146103a65780630a8e5489146103cf57806313faede6146103eb57806318160ddd1461041657806318cae269146104415761027d565b806301ffc9a71461028257806302329a29146102bf5780630640ab4e146102e857806306fdde0314610313578063081812fc1461033e575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906145dd565b610a6b565b6040516102b69190614e5a565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e1919061458b565b610ae5565b005b3480156102f457600080fd5b506102fd610b7e565b60405161030a9190615257565b60405180910390f35b34801561031f57600080fd5b50610328610b84565b6040516103359190614e75565b60405180910390f35b34801561034a57600080fd5b5061036560048036038101906103609190614670565b610c16565b6040516103729190614dd1565b60405180910390f35b34801561038757600080fd5b50610390610c9b565b60405161039d9190614e75565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c8919061454f565b610d29565b005b6103e960048036038101906103e49190614699565b610e41565b005b3480156103f757600080fd5b506104006112c6565b60405161040d9190615257565b60405180910390f35b34801561042257600080fd5b5061042b6112cc565b6040516104389190615257565b60405180910390f35b34801561044d57600080fd5b50610468600480360381019061046391906143e4565b6112d9565b6040516104759190615257565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190614670565b6112f1565b005b3480156104b357600080fd5b506104bc611377565b6040516104c99190615257565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190614449565b61137d565b005b34801561050757600080fd5b50610522600480360381019061051d91906145b4565b6113dd565b005b34801561053057600080fd5b5061054b6004803603810190610546919061454f565b611463565b6040516105589190615257565b60405180910390f35b610569611508565b005b34801561057757600080fd5b50610592600480360381019061058d9190614449565b611e04565b005b3480156105a057600080fd5b506105bb60048036038101906105b691906143e4565b611e24565b6040516105c89190614e38565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190614670565b611f1e565b6040516106059190615257565b60405180910390f35b34801561061a57600080fd5b50610623611fb5565b6040516106309190614e5a565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b919061462f565b611fc8565b005b34801561066e57600080fd5b5061068960048036038101906106849190614670565b61205e565b005b34801561069757600080fd5b506106a06120e4565b6040516106ad9190615257565b60405180910390f35b3480156106c257600080fd5b506106cb6120ea565b6040516106d89190614e5a565b60405180910390f35b3480156106ed57600080fd5b506106f66120fd565b6040516107039190614e5a565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190614670565b612110565b6040516107409190614dd1565b60405180910390f35b34801561075557600080fd5b5061075e6121c2565b60405161076b9190614e75565b60405180910390f35b34801561078057600080fd5b5061079b600480360381019061079691906143e4565b612250565b6040516107a89190615257565b60405180910390f35b3480156107bd57600080fd5b506107c6612308565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190614670565b612390565b005b3480156107fd57600080fd5b50610806612416565b6040516108139190614dd1565b60405180910390f35b34801561082857600080fd5b50610831612440565b60405161083e9190614e75565b60405180910390f35b610861600480360381019061085c9190614670565b6124d2565b005b34801561086f57600080fd5b5061088a60048036038101906108859190614513565b612771565b005b34801561089857600080fd5b506108a1612787565b005b3480156108af57600080fd5b506108ca60048036038101906108c59190614498565b612820565b005b3480156108d857600080fd5b506108f360048036038101906108ee91906145b4565b612882565b005b34801561090157600080fd5b5061090a612908565b6040516109179190614e75565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190614670565b612996565b6040516109549190614e75565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f919061458b565b612aef565b005b34801561099257600080fd5b5061099b612b88565b6040516109a89190615257565b60405180910390f35b3480156109bd57600080fd5b506109c6612b8e565b6040516109d39190615257565b60405180910390f35b3480156109e857600080fd5b50610a0360048036038101906109fe919061440d565b612b94565b604051610a109190614e5a565b60405180910390f35b348015610a2557600080fd5b50610a406004803603810190610a3b919061462f565b612c28565b005b348015610a4e57600080fd5b50610a696004803603810190610a6491906143e4565b612cbe565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ade5750610add82612db6565b5b9050919050565b610aed612e98565b73ffffffffffffffffffffffffffffffffffffffff16610b0b612416565b73ffffffffffffffffffffffffffffffffffffffff1614610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890615117565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b60135481565b606060008054610b939061556a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbf9061556a565b8015610c0c5780601f10610be157610100808354040283529160200191610c0c565b820191906000526020600020905b815481529060010190602001808311610bef57829003601f168201915b5050505050905090565b6000610c2182612ea0565b610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c57906150d7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610ca89061556a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd49061556a565b8015610d215780601f10610cf657610100808354040283529160200191610d21565b820191906000526020600020905b815481529060010190602001808311610d0457829003601f168201915b505050505081565b6000610d3482612110565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90615197565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dc4612e98565b73ffffffffffffffffffffffffffffffffffffffff161480610df35750610df281610ded612e98565b612b94565b5b610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2990614fd7565b60405180910390fd5b610e3c8383612f0c565b505050565b601460009054906101000a900460ff1615610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8890615137565b60405180910390fd5b601460029054906101000a900460ff16610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed7906150f7565b60405180910390fd5b6000610eea6112cc565b905060008511610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690615237565b60405180910390fd5b6010548582610f3e9190615395565b1115610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7690614f17565b60405180910390fd5b6000601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084156110d3576012548682610fd89190615395565b1115611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090614f77565b60405180910390fd5b60003360405160200161102c9190614d44565b604051602081830303815290604052805190602001209050611092858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060155483612fc5565b6110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890615037565b60405180910390fd5b505b846111e25760135486826110e79190615395565b1115611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90614fb7565b60405180910390fd5b60003360405160200161113b9190614d44565b6040516020818303038152906040528051906020012090506111a1858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060165483612fc5565b6111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790615217565b60405180910390fd5b505b85600e546111f0919061541c565b341015611232576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611229906151b7565b60405180910390fd5b6000600190505b8681116112bd57601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611290906155cd565b91905055506112aa3382856112a59190615395565b612fdc565b80806112b5906155cd565b915050611239565b50505050505050565b600e5481565b6000600880549050905090565b60176020528060005260406000206000915090505481565b6112f9612e98565b73ffffffffffffffffffffffffffffffffffffffff16611317612416565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490615117565b60405180910390fd5b8060128190555050565b60115481565b61138e611388612e98565b82612ffa565b6113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c4906151d7565b60405180910390fd5b6113d88383836130d8565b505050565b6113e5612e98565b73ffffffffffffffffffffffffffffffffffffffff16611403612416565b73ffffffffffffffffffffffffffffffffffffffff1614611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090615117565b60405180910390fd5b8060168190555050565b600061146e83612250565b82106114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690614e97565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611510612e98565b73ffffffffffffffffffffffffffffffffffffffff1661152e612416565b73ffffffffffffffffffffffffffffffffffffffff1614611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b90615117565b60405180910390fd5b600073da66e4f7b6e36a1489788820870432b483230d9273ffffffffffffffffffffffffffffffffffffffff166103e860c3476115c1919061541c565b6115cb91906153eb565b6040516115d790614dbc565b60006040518083038185875af1925050503d8060008114611614576040519150601f19603f3d011682016040523d82523d6000602084013e611619565b606091505b505090508061162757600080fd5b600073292bec2537cefad1b002a7ad766c12da096d531673ffffffffffffffffffffffffffffffffffffffff166402540be40063906248b84761166a919061541c565b61167491906153eb565b60405161168090614dbc565b60006040518083038185875af1925050503d80600081146116bd576040519150601f19603f3d011682016040523d82523d6000602084013e6116c2565b606091505b50509050806116d057600080fd5b60007363d73c33e75bfdb14c18a734713239b98357d55273ffffffffffffffffffffffffffffffffffffffff166402540be40063c36cd10d47611713919061541c565b61171d91906153eb565b60405161172990614dbc565b60006040518083038185875af1925050503d8060008114611766576040519150601f19603f3d011682016040523d82523d6000602084013e61176b565b606091505b505090508061177957600080fd5b6000736085ab3dd565fde4deec682f9cd9250d7909eb6673ffffffffffffffffffffffffffffffffffffffff166402540be40063d2cc0296476117bc919061541c565b6117c691906153eb565b6040516117d290614dbc565b60006040518083038185875af1925050503d806000811461180f576040519150601f19603f3d011682016040523d82523d6000602084013e611814565b606091505b505090508061182257600080fd5b6000731c05d8263bff5a05b037763396dd7a48faee3b6d73ffffffffffffffffffffffffffffffffffffffff166402540be4006370762b0547611865919061541c565b61186f91906153eb565b60405161187b90614dbc565b60006040518083038185875af1925050503d80600081146118b8576040519150601f19603f3d011682016040523d82523d6000602084013e6118bd565b606091505b50509050806118cb57600080fd5b600073496031d43a681e510cbcfc281899f25e0d83b4b473ffffffffffffffffffffffffffffffffffffffff166402540be400638a9d8e534761190e919061541c565b61191891906153eb565b60405161192490614dbc565b60006040518083038185875af1925050503d8060008114611961576040519150601f19603f3d011682016040523d82523d6000602084013e611966565b606091505b505090508061197457600080fd5b600073900168607d7ff7c545c11c0dae5db6e8223c090973ffffffffffffffffffffffffffffffffffffffff166402540be40063b49ec136476119b7919061541c565b6119c191906153eb565b6040516119cd90614dbc565b60006040518083038185875af1925050503d8060008114611a0a576040519150601f19603f3d011682016040523d82523d6000602084013e611a0f565b606091505b5050905080611a1d57600080fd5b600073662e7268d9316a565ec40b6d4b71117adf89d99373ffffffffffffffffffffffffffffffffffffffff166402540be40063819347d347611a60919061541c565b611a6a91906153eb565b604051611a7690614dbc565b60006040518083038185875af1925050503d8060008114611ab3576040519150601f19603f3d011682016040523d82523d6000602084013e611ab8565b606091505b5050905080611ac657600080fd5b6000736ea2f734c066cc8677b2c0ce386cd827ad1636cd73ffffffffffffffffffffffffffffffffffffffff166402540be40063635750ab47611b09919061541c565b611b1391906153eb565b604051611b1f90614dbc565b60006040518083038185875af1925050503d8060008114611b5c576040519150601f19603f3d011682016040523d82523d6000602084013e611b61565b606091505b5050905080611b6f57600080fd5b600073906d21e683db943c98253118e9fe477c89cd2cec73ffffffffffffffffffffffffffffffffffffffff166402540be400634f790d5547611bb2919061541c565b611bbc91906153eb565b604051611bc890614dbc565b60006040518083038185875af1925050503d8060008114611c05576040519150601f19603f3d011682016040523d82523d6000602084013e611c0a565b606091505b5050905080611c1857600080fd5b60007345f28e3423db48b59846667fe1d02eeeba5c8fab73ffffffffffffffffffffffffffffffffffffffff166402540be400635bb30f6247611c5b919061541c565b611c6591906153eb565b604051611c7190614dbc565b60006040518083038185875af1925050503d8060008114611cae576040519150601f19603f3d011682016040523d82523d6000602084013e611cb3565b606091505b5050905080611cc157600080fd5b60007315918f246f415ed59a4ec7220118a16431e132f273ffffffffffffffffffffffffffffffffffffffff1664174876e80064021ddc43a347611d05919061541c565b611d0f91906153eb565b604051611d1b90614dbc565b60006040518083038185875af1925050503d8060008114611d58576040519150601f19603f3d011682016040523d82523d6000602084013e611d5d565b606091505b5050905080611d6b57600080fd5b600073532407ec3681f15f54e10cd0d16920f4b35eaf7673ffffffffffffffffffffffffffffffffffffffff1647604051611da590614dbc565b60006040518083038185875af1925050503d8060008114611de2576040519150601f19603f3d011682016040523d82523d6000602084013e611de7565b606091505b5050905080611df557600080fd5b50505050505050505050505050565b611e1f83838360405180602001604052806000815250612820565b505050565b60606000611e3183612250565b905060008167ffffffffffffffff811115611e75577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611ea35781602001602082028036833780820191505090505b50905060005b82811015611f1357611ebb8582611463565b828281518110611ef4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611f0b906155cd565b915050611ea9565b508092505050919050565b6000611f286112cc565b8210611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f60906151f7565b60405180910390fd5b60088281548110611fa3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601460019054906101000a900460ff1681565b611fd0612e98565b73ffffffffffffffffffffffffffffffffffffffff16611fee612416565b73ffffffffffffffffffffffffffffffffffffffff1614612044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203b90615117565b60405180910390fd5b80600b908051906020019061205a9291906141a9565b5050565b612066612e98565b73ffffffffffffffffffffffffffffffffffffffff16612084612416565b73ffffffffffffffffffffffffffffffffffffffff16146120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d190615117565b60405180910390fd5b8060138190555050565b60125481565b601460009054906101000a900460ff1681565b601460029054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b090615017565b60405180910390fd5b80915050919050565b600b80546121cf9061556a565b80601f01602080910402602001604051908101604052809291908181526020018280546121fb9061556a565b80156122485780601f1061221d57610100808354040283529160200191612248565b820191906000526020600020905b81548152906001019060200180831161222b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b890614ff7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612310612e98565b73ffffffffffffffffffffffffffffffffffffffff1661232e612416565b73ffffffffffffffffffffffffffffffffffffffff1614612384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237b90615117565b60405180910390fd5b61238e6000613334565b565b612398612e98565b73ffffffffffffffffffffffffffffffffffffffff166123b6612416565b73ffffffffffffffffffffffffffffffffffffffff161461240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390615117565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461244f9061556a565b80601f016020809104026020016040519081016040528092919081815260200182805461247b9061556a565b80156124c85780601f1061249d576101008083540402835291602001916124c8565b820191906000526020600020905b8154815290600101906020018083116124ab57829003601f168201915b5050505050905090565b601460009054906101000a900460ff1615612522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251990615137565b60405180910390fd5b600061252c6112cc565b905060008211612571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256890615237565b60405180910390fd5b600f5482826125809190615395565b11156125c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b890615057565b60405180910390fd5b6125c9612416565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146126e157601460029054906101000a900460ff161561264b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264290615097565b60405180910390fd5b601154821115612690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268790615077565b60405180910390fd5b81600e5461269e919061541c565b3410156126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d7906151b7565b60405180910390fd5b5b6000600190505b82811161276c57601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061273f906155cd565b91905055506127593382846127549190615395565b612fdc565b8080612764906155cd565b9150506126e8565b505050565b61278361277c612e98565b83836133fa565b5050565b61278f612e98565b73ffffffffffffffffffffffffffffffffffffffff166127ad612416565b73ffffffffffffffffffffffffffffffffffffffff1614612803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fa90615117565b60405180910390fd5b6001601460016101000a81548160ff021916908315150217905550565b61283161282b612e98565b83612ffa565b612870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612867906151d7565b60405180910390fd5b61287c84848484613567565b50505050565b61288a612e98565b73ffffffffffffffffffffffffffffffffffffffff166128a8612416565b73ffffffffffffffffffffffffffffffffffffffff16146128fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f590615117565b60405180910390fd5b8060158190555050565b600d80546129159061556a565b80601f01602080910402602001604051908101604052809291908181526020018280546129419061556a565b801561298e5780601f106129635761010080835404028352916020019161298e565b820191906000526020600020905b81548152906001019060200180831161297157829003601f168201915b505050505081565b60606129a182612ea0565b6129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d790615177565b60405180910390fd5b60001515601460019054906101000a900460ff1615151415612a8e57600c8054612a099061556a565b80601f0160208091040260200160405190810160405280929190818152602001828054612a359061556a565b8015612a825780601f10612a5757610100808354040283529160200191612a82565b820191906000526020600020905b815481529060010190602001808311612a6557829003601f168201915b50505050509050612aea565b6000612a986135c3565b90506000815111612ab85760405180602001604052806000815250612ae6565b80612ac284613655565b600d604051602001612ad693929190614d8b565b6040516020818303038152906040525b9150505b919050565b612af7612e98565b73ffffffffffffffffffffffffffffffffffffffff16612b15612416565b73ffffffffffffffffffffffffffffffffffffffff1614612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6290615117565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b600f5481565b60105481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612c30612e98565b73ffffffffffffffffffffffffffffffffffffffff16612c4e612416565b73ffffffffffffffffffffffffffffffffffffffff1614612ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9b90615117565b60405180910390fd5b80600c9080519060200190612cba9291906141a9565b5050565b612cc6612e98565b73ffffffffffffffffffffffffffffffffffffffff16612ce4612416565b73ffffffffffffffffffffffffffffffffffffffff1614612d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3190615117565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da190614ed7565b60405180910390fd5b612db381613334565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e8157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e915750612e9082613802565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f7f83612110565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600082612fd2858461386c565b1490509392505050565b612ff6828260405180602001604052806000815250613945565b5050565b600061300582612ea0565b613044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303b90614f97565b60405180910390fd5b600061304f83612110565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806130be57508373ffffffffffffffffffffffffffffffffffffffff166130a684610c16565b73ffffffffffffffffffffffffffffffffffffffff16145b806130cf57506130ce8185612b94565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166130f882612110565b73ffffffffffffffffffffffffffffffffffffffff161461314e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314590615157565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b590614f37565b60405180910390fd5b6131c98383836139a0565b6131d4600082612f0c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132249190615476565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461327b9190615395565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346090614f57565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161355a9190614e5a565b60405180910390a3505050565b6135728484846130d8565b61357e84848484613ab4565b6135bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135b490614eb7565b60405180910390fd5b50505050565b6060600b80546135d29061556a565b80601f01602080910402602001604051908101604052809291908181526020018280546135fe9061556a565b801561364b5780601f106136205761010080835404028352916020019161364b565b820191906000526020600020905b81548152906001019060200180831161362e57829003601f168201915b5050505050905090565b6060600082141561369d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506137fd565b600082905060005b600082146136cf5780806136b8906155cd565b915050600a826136c891906153eb565b91506136a5565b60008167ffffffffffffffff811115613711577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156137435781602001600182028036833780820191505090505b5090505b600085146137f65760018261375c9190615476565b9150600a8561376b9190615644565b60306137779190615395565b60f81b8183815181106137b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137ef91906153eb565b9450613747565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008082905060005b845181101561393a5760008582815181106138b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116138fa5782816040516020016138dd929190614d5f565b604051602081830303815290604052805190602001209250613926565b808360405160200161390d929190614d5f565b6040516020818303038152906040528051906020012092505b508080613932906155cd565b915050613875565b508091505092915050565b61394f8383613c4b565b61395c6000848484613ab4565b61399b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399290614eb7565b60405180910390fd5b505050565b6139ab838383613e19565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139ee576139e981613e1e565b613a2d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613a2c57613a2b8382613e67565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a7057613a6b81613fd4565b613aaf565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613aae57613aad8282614117565b5b5b505050565b6000613ad58473ffffffffffffffffffffffffffffffffffffffff16614196565b15613c3e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613afe612e98565b8786866040518563ffffffff1660e01b8152600401613b209493929190614dec565b602060405180830381600087803b158015613b3a57600080fd5b505af1925050508015613b6b57506040513d601f19601f82011682018060405250810190613b689190614606565b60015b613bee573d8060008114613b9b576040519150601f19603f3d011682016040523d82523d6000602084013e613ba0565b606091505b50600081511415613be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bdd90614eb7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613c43565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cb2906150b7565b60405180910390fd5b613cc481612ea0565b15613d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cfb90614ef7565b60405180910390fd5b613d10600083836139a0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d609190615395565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613e7484612250565b613e7e9190615476565b9050600060076000848152602001908152602001600020549050818114613f63576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613fe89190615476565b905060006009600084815260200190815260200160002054905060006008838154811061403e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110614086577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806140fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061412283612250565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546141b59061556a565b90600052602060002090601f0160209004810192826141d7576000855561421e565b82601f106141f057805160ff191683800117855561421e565b8280016001018555821561421e579182015b8281111561421d578251825591602001919060010190614202565b5b50905061422b919061422f565b5090565b5b80821115614248576000816000905550600101614230565b5090565b600061425f61425a84615297565b615272565b90508281526020810184848401111561427757600080fd5b614282848285615528565b509392505050565b600061429d614298846152c8565b615272565b9050828152602081018484840111156142b557600080fd5b6142c0848285615528565b509392505050565b6000813590506142d781615ecc565b92915050565b60008083601f8401126142ef57600080fd5b8235905067ffffffffffffffff81111561430857600080fd5b60208301915083602082028301111561432057600080fd5b9250929050565b60008135905061433681615ee3565b92915050565b60008135905061434b81615efa565b92915050565b60008135905061436081615f11565b92915050565b60008151905061437581615f11565b92915050565b600082601f83011261438c57600080fd5b813561439c84826020860161424c565b91505092915050565b600082601f8301126143b657600080fd5b81356143c684826020860161428a565b91505092915050565b6000813590506143de81615f28565b92915050565b6000602082840312156143f657600080fd5b6000614404848285016142c8565b91505092915050565b6000806040838503121561442057600080fd5b600061442e858286016142c8565b925050602061443f858286016142c8565b9150509250929050565b60008060006060848603121561445e57600080fd5b600061446c868287016142c8565b935050602061447d868287016142c8565b925050604061448e868287016143cf565b9150509250925092565b600080600080608085870312156144ae57600080fd5b60006144bc878288016142c8565b94505060206144cd878288016142c8565b93505060406144de878288016143cf565b925050606085013567ffffffffffffffff8111156144fb57600080fd5b6145078782880161437b565b91505092959194509250565b6000806040838503121561452657600080fd5b6000614534858286016142c8565b925050602061454585828601614327565b9150509250929050565b6000806040838503121561456257600080fd5b6000614570858286016142c8565b9250506020614581858286016143cf565b9150509250929050565b60006020828403121561459d57600080fd5b60006145ab84828501614327565b91505092915050565b6000602082840312156145c657600080fd5b60006145d48482850161433c565b91505092915050565b6000602082840312156145ef57600080fd5b60006145fd84828501614351565b91505092915050565b60006020828403121561461857600080fd5b600061462684828501614366565b91505092915050565b60006020828403121561464157600080fd5b600082013567ffffffffffffffff81111561465b57600080fd5b614667848285016143a5565b91505092915050565b60006020828403121561468257600080fd5b6000614690848285016143cf565b91505092915050565b600080600080606085870312156146af57600080fd5b60006146bd878288016143cf565b94505060206146ce87828801614327565b935050604085013567ffffffffffffffff8111156146eb57600080fd5b6146f7878288016142dd565b925092505092959194509250565b60006147118383614d26565b60208301905092915050565b614726816154aa565b82525050565b61473d614738826154aa565b615616565b82525050565b600061474e8261531e565b614758818561534c565b9350614763836152f9565b8060005b8381101561479457815161477b8882614705565b97506147868361533f565b925050600181019050614767565b5085935050505092915050565b6147aa816154bc565b82525050565b6147c16147bc826154c8565b615628565b82525050565b60006147d282615329565b6147dc818561535d565b93506147ec818560208601615537565b6147f581615731565b840191505092915050565b600061480b82615334565b6148158185615379565b9350614825818560208601615537565b61482e81615731565b840191505092915050565b600061484482615334565b61484e818561538a565b935061485e818560208601615537565b80840191505092915050565b600081546148778161556a565b614881818661538a565b9450600182166000811461489c57600181146148ad576148e0565b60ff198316865281860193506148e0565b6148b685615309565b60005b838110156148d8578154818901526001820191506020810190506148b9565b838801955050505b50505092915050565b60006148f6602b83615379565b91506149018261574f565b604082019050919050565b6000614919603283615379565b91506149248261579e565b604082019050919050565b600061493c602683615379565b9150614947826157ed565b604082019050919050565b600061495f601c83615379565b915061496a8261583c565b602082019050919050565b6000614982602283615379565b915061498d82615865565b604082019050919050565b60006149a5602483615379565b91506149b0826158b4565b604082019050919050565b60006149c8601983615379565b91506149d382615903565b602082019050919050565b60006149eb602683615379565b91506149f68261592c565b604082019050919050565b6000614a0e602c83615379565b9150614a198261597b565b604082019050919050565b6000614a31601f83615379565b9150614a3c826159ca565b602082019050919050565b6000614a54603883615379565b9150614a5f826159f3565b604082019050919050565b6000614a77602a83615379565b9150614a8282615a42565b604082019050919050565b6000614a9a602983615379565b9150614aa582615a91565b604082019050919050565b6000614abd602383615379565b9150614ac882615ae0565b604082019050919050565b6000614ae0601683615379565b9150614aeb82615b2f565b602082019050919050565b6000614b03602483615379565b9150614b0e82615b58565b604082019050919050565b6000614b26600d83615379565b9150614b3182615ba7565b602082019050919050565b6000614b49602083615379565b9150614b5482615bd0565b602082019050919050565b6000614b6c602c83615379565b9150614b7782615bf9565b604082019050919050565b6000614b8f601083615379565b9150614b9a82615c48565b602082019050919050565b6000614bb2602083615379565b9150614bbd82615c71565b602082019050919050565b6000614bd5601683615379565b9150614be082615c9a565b602082019050919050565b6000614bf8602983615379565b9150614c0382615cc3565b604082019050919050565b6000614c1b602f83615379565b9150614c2682615d12565b604082019050919050565b6000614c3e602183615379565b9150614c4982615d61565b604082019050919050565b6000614c6160008361536e565b9150614c6c82615db0565b600082019050919050565b6000614c84601283615379565b9150614c8f82615db3565b602082019050919050565b6000614ca7603183615379565b9150614cb282615ddc565b604082019050919050565b6000614cca602c83615379565b9150614cd582615e2b565b604082019050919050565b6000614ced602083615379565b9150614cf882615e7a565b602082019050919050565b6000614d10601183615379565b9150614d1b82615ea3565b602082019050919050565b614d2f8161551e565b82525050565b614d3e8161551e565b82525050565b6000614d50828461472c565b60148201915081905092915050565b6000614d6b82856147b0565b602082019150614d7b82846147b0565b6020820191508190509392505050565b6000614d978286614839565b9150614da38285614839565b9150614daf828461486a565b9150819050949350505050565b6000614dc782614c54565b9150819050919050565b6000602082019050614de6600083018461471d565b92915050565b6000608082019050614e01600083018761471d565b614e0e602083018661471d565b614e1b6040830185614d35565b8181036060830152614e2d81846147c7565b905095945050505050565b60006020820190508181036000830152614e528184614743565b905092915050565b6000602082019050614e6f60008301846147a1565b92915050565b60006020820190508181036000830152614e8f8184614800565b905092915050565b60006020820190508181036000830152614eb0816148e9565b9050919050565b60006020820190508181036000830152614ed08161490c565b9050919050565b60006020820190508181036000830152614ef08161492f565b9050919050565b60006020820190508181036000830152614f1081614952565b9050919050565b60006020820190508181036000830152614f3081614975565b9050919050565b60006020820190508181036000830152614f5081614998565b9050919050565b60006020820190508181036000830152614f70816149bb565b9050919050565b60006020820190508181036000830152614f90816149de565b9050919050565b60006020820190508181036000830152614fb081614a01565b9050919050565b60006020820190508181036000830152614fd081614a24565b9050919050565b60006020820190508181036000830152614ff081614a47565b9050919050565b6000602082019050818103600083015261501081614a6a565b9050919050565b6000602082019050818103600083015261503081614a8d565b9050919050565b6000602082019050818103600083015261505081614ab0565b9050919050565b6000602082019050818103600083015261507081614ad3565b9050919050565b6000602082019050818103600083015261509081614af6565b9050919050565b600060208201905081810360008301526150b081614b19565b9050919050565b600060208201905081810360008301526150d081614b3c565b9050919050565b600060208201905081810360008301526150f081614b5f565b9050919050565b6000602082019050818103600083015261511081614b82565b9050919050565b6000602082019050818103600083015261513081614ba5565b9050919050565b6000602082019050818103600083015261515081614bc8565b9050919050565b6000602082019050818103600083015261517081614beb565b9050919050565b6000602082019050818103600083015261519081614c0e565b9050919050565b600060208201905081810360008301526151b081614c31565b9050919050565b600060208201905081810360008301526151d081614c77565b9050919050565b600060208201905081810360008301526151f081614c9a565b9050919050565b6000602082019050818103600083015261521081614cbd565b9050919050565b6000602082019050818103600083015261523081614ce0565b9050919050565b6000602082019050818103600083015261525081614d03565b9050919050565b600060208201905061526c6000830184614d35565b92915050565b600061527c61528d565b9050615288828261559c565b919050565b6000604051905090565b600067ffffffffffffffff8211156152b2576152b1615702565b5b6152bb82615731565b9050602081019050919050565b600067ffffffffffffffff8211156152e3576152e2615702565b5b6152ec82615731565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006153a08261551e565b91506153ab8361551e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156153e0576153df615675565b5b828201905092915050565b60006153f68261551e565b91506154018361551e565b925082615411576154106156a4565b5b828204905092915050565b60006154278261551e565b91506154328361551e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561546b5761546a615675565b5b828202905092915050565b60006154818261551e565b915061548c8361551e565b92508282101561549f5761549e615675565b5b828203905092915050565b60006154b5826154fe565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561555557808201518184015260208101905061553a565b83811115615564576000848401525b50505050565b6000600282049050600182168061558257607f821691505b60208210811415615596576155956156d3565b5b50919050565b6155a582615731565b810181811067ffffffffffffffff821117156155c4576155c3615702565b5b80604052505050565b60006155d88261551e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561560b5761560a615675565b5b600182019050919050565b600061562182615632565b9050919050565b6000819050919050565b600061563d82615742565b9050919050565b600061564f8261551e565b915061565a8361551e565b92508261566a576156696156a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e4654206c696d697420666f722070726573616c652065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d6178204e4654207065722077686974656c697374206164647265737320657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572204f47206164647265737320657863656564656400600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642050726f6f662c2055736572206e6f742077686974656c697360008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206973206f6e00000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f50726573616c652069732066616c736500000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e76616c69642050726f6f662c2055736572206e6f74204f474c6973746564600082015250565b7f6d696e206d696e742069732031204e4654000000000000000000000000000000600082015250565b615ed5816154aa565b8114615ee057600080fd5b50565b615eec816154bc565b8114615ef757600080fd5b50565b615f03816154c8565b8114615f0e57600080fd5b50565b615f1a816154d2565b8114615f2557600080fd5b50565b615f318161551e565b8114615f3c57600080fd5b5056fea264697066735822122083230ed23340e2aad9dfda9b9814fbfc48631a97a8c4525163aed2e85fb7d86f64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000d4a61636b6564417065436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034a414300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d635556413558357a627a61534c5539714454537a4b7451505a4b504b4e6e6343474376536a4a6751707173342f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d636e416d503237786163335751726372566a5875393164634c61343336624c55355a346f55565333444b4e732f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): JackedApeClub
Arg [1] : _symbol (string): JAC
Arg [2] : _initBaseURI (string): ipfs://QmcUVA5X5zbzaSLU9qDTSzKtQPZKPKNncCGCvSjJgQpqs4/
Arg [3] : _initNotRevealedUri (string): ipfs://QmcnAmP27xac3WQrcrVjXu91dcLa436bLU5Z4oUVS3DKNs/hidden.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 4a61636b6564417065436c756200000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4a41430000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d635556413558357a627a61534c5539714454537a4b7451
Arg [10] : 505a4b504b4e6e6343474376536a4a6751707173342f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [12] : 697066733a2f2f516d636e416d503237786163335751726372566a5875393164
Arg [13] : 634c61343336624c55355a346f55565333444b4e732f68696464656e2e6a736f
Arg [14] : 6e00000000000000000000000000000000000000000000000000000000000000


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.