ETH Price: $3,396.84 (+0.81%)

Token

Baby Kraken (BABYKRAKEN)
 

Overview

Max Total Supply

271 BABYKRAKEN

Holders

132

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
longdukdong.eth
Balance
2 BABYKRAKEN
0x38e71c42dbee9b368f93c1278b8ce0b4aac44b29
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BabyKraken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Kraken.sol
pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: contracts/WithLimitedSupply.sol


pragma solidity ^0.8.0;


/// @author 1001.digital 
/// @title A token tracker that limits the token supply and increments token IDs on each new mint.
abstract contract WithLimitedSupply {
    using Counters for Counters.Counter;

    // Keeps track of how many we have minted
    Counters.Counter private _tokenCount;

    /// @dev The maximum count of tokens this token tracker will hold.
    uint256 private _maxSupply;

    /// Instanciate the contract
    /// @param totalSupply_ how many tokens this collection should hold
    constructor (uint256 totalSupply_) {
        _maxSupply = totalSupply_;
    }

    /// @dev Get the max Supply
    /// @return the maximum token count
    function maxSupply() public view returns (uint256) {
        return _maxSupply;
    }

    /// @dev Get the current token count
    /// @return the created token count
    function tokenCount() public view returns (uint256) {
        return _tokenCount.current();
    }

    /// @dev Check whether tokens are still available
    /// @return the available token count
    function availableTokenCount() public view returns (uint256) {
        return maxSupply() - tokenCount();
    }

    /// @dev Increment the token count and fetch the latest count
    /// @return the next token id
    function nextToken() internal virtual ensureAvailability returns (uint256) {
        uint256 token = _tokenCount.current();

        _tokenCount.increment();

        return token;
    }

    /// @dev Check whether another token is still available
    modifier ensureAvailability() {
        require(availableTokenCount() > 0, "No more tokens available");
        _;
    }

    /// @param amount Check whether number of tokens are still available
    /// @dev Check whether tokens are still available
    modifier ensureAvailabilityFor(uint256 amount) {
        require(availableTokenCount() >= amount, "Requested number of tokens not available");
        _;
    }
}
// File: contracts/RandomlyAssigned.sol


pragma solidity ^0.8.0;


/// @author 1001.digital
/// @title Randomly assign tokenIDs from a given set of tokens.
abstract contract RandomlyAssigned is WithLimitedSupply {
    // Used for random index assignment
    mapping(uint256 => uint256) private tokenMatrix;

    // The initial token ID
    uint256 private startFrom;

    /// Instanciate the contract
    /// @param _maxSupply how many tokens this collection should hold
    /// @param _startFrom the tokenID with which to start counting
    constructor (uint256 _maxSupply, uint256 _startFrom)
        WithLimitedSupply(_maxSupply)
    {
        startFrom = _startFrom;
    }

    /// Get the next token ID
    /// @dev Randomly gets a new token ID and keeps track of the ones that are still available.
    /// @return the next token ID
    function nextToken() internal override ensureAvailability returns (uint256) {
        uint256 maxIndex = maxSupply() - tokenCount();
        uint256 random = uint256(keccak256(
            abi.encodePacked(
                msg.sender,
                block.coinbase,
                block.difficulty,
                block.gaslimit,
                block.timestamp
            )
        )) % maxIndex;

        uint256 value = 0;
        if (tokenMatrix[random] == 0) {
            // If this matrix position is empty, set the value to the generated random number.
            value = random;
        } else {
            // Otherwise, use the previously stored number from the matrix.
            value = tokenMatrix[random];
        }

        // If the last available tokenID is still unused...
        if (tokenMatrix[maxIndex - 1] == 0) {
            // ...store that ID in the current matrix position.
            tokenMatrix[random] = maxIndex - 1;
        } else {
            // ...otherwise copy over the stored number to the current matrix position.
            tokenMatrix[random] = tokenMatrix[maxIndex - 1];
        }

        // Increment counts
        super.nextToken();

        return value + startFrom;
    }
}








pragma solidity ^0.8.4;

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

interface iINKz {
    function balanceOf(address address_) external view returns (uint); 
    function transferFrom(address from_, address to_, uint amount) external returns (bool);
    function burn(address from_, uint amount) external;
}

abstract contract OCTOHEDZ {

  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

    contract BabyKraken is Ownable, ERC721Enumerable, RandomlyAssigned {

    OCTOHEDZ private octohedz;
    address private octohedzContract = 0x6E5a65B5f9Dd7b1b08Ff212E210DCd642DE0db8B; 

    constructor(string memory baseTokenURI, string memory baseContractURI) ERC721("Baby Kraken", "BABYKRAKEN") RandomlyAssigned (MAX_KRAKEN,0) {
        setBaseURI(baseTokenURI);
        _baseContractURI = baseContractURI;
        octohedz = OCTOHEDZ(octohedzContract);
    }

    uint public MAX_KRAKEN = 4000;
    uint256 constant public mintPriceINKz = 600 ether;
    bool public hasSaleStarted = false;
            string private _baseTokenURI;
    string private _baseContractURI;
    bool public inkzMintEnabled= true;
    uint256 public totalKrakensMinted = 0;

   // INKz Interactions
    address public INKzAddress;
    iINKz public INKz;
    function setINKz(address address_) external onlyOwner { 
        INKzAddress = address_;
        INKz = iINKz(address_);
    }
    
    
    function setINKzMintStatus(bool bool_) external onlyOwner {
        inkzMintEnabled = bool_;
    }

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

    function tokenURI(uint256 _tokenId) override public view returns (string memory) {
        return string(abi.encodePacked(_baseTokenURI, Strings.toString(_tokenId)));
    }

    function contractURI() public view returns (string memory) {
       return _baseContractURI;
    }

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

      function flipSaleState() public onlyOwner {
        hasSaleStarted = !hasSaleStarted;
    }
    
        event Mint (address indexed to_, uint tokenId_);
        modifier onlySender {
        require(msg.sender == tx.origin, "No smart contracts allowed!");
        _;
    }
     
        modifier inkzMint {
        require(inkzMintEnabled, "Minting with INKz is not available yet!");
        _;
    } 

    
    function mintWithINKz(uint amount) public payable onlySender inkzMint {
        require(hasSaleStarted, "Sale must be active to breed a Baby Kraken");
        require(totalSupply()<= MAX_KRAKEN, "Exceeds Total Supply");
        require(INKz.balanceOf(msg.sender) >= mintPriceINKz * amount, "You do not have enough INKz!");
        require (octohedz.balanceOf(msg.sender)>1, "Need to have more than 1 OctoHedz to start breeding");
        INKz.burn(msg.sender, mintPriceINKz);  
        uint256 _mintId = nextToken();    
        _mint(msg.sender, _mintId);
        totalKrakensMinted++;
           emit Mint(msg.sender, _mintId);
        
    }

}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

        uint256 size;
        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);
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"string","name":"baseContractURI","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":"to_","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INKz","outputs":[{"internalType":"contract iINKz","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INKzAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_KRAKEN","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":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inkzMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPriceINKz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintWithINKz","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setINKz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setINKzMintStatus","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":[],"name":"tokenCount","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":"totalKrakensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052736e5a65b5f9dd7b1b08ff212e210dcd642de0db8b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610fa06011556000601260006101000a81548160ff0219169083151502179055506001601560006101000a81548160ff0219169083151502179055506000601655348015620000a757600080fd5b5060405162004f5038038062004f508339818101604052810190620000cd9190620004fb565b6011546000816040518060400160405280600b81526020017f42616279204b72616b656e0000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f424142594b52414b454e000000000000000000000000000000000000000000008152506200015f620001536200023960201b60201c565b6200024160201b60201c565b816001908051906020019062000177929190620003d9565b50806002908051906020019062000190929190620003d9565b50505080600c819055505080600e819055505050620001b5826200030560201b60201c565b8060149080519060200190620001cd929190620003d9565b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000761565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003156200023960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200033b620003b060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000394576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038b9062000595565b60405180910390fd5b8060139080519060200190620003ac929190620003d9565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003e7906200065d565b90600052602060002090601f0160209004810192826200040b576000855562000457565b82601f106200042657805160ff191683800117855562000457565b8280016001018555821562000457579182015b828111156200045657825182559160200191906001019062000439565b5b5090506200046691906200046a565b5090565b5b80821115620004855760008160009055506001016200046b565b5090565b6000620004a06200049a84620005e0565b620005b7565b905082815260208101848484011115620004b957600080fd5b620004c684828562000627565b509392505050565b600082601f830112620004e057600080fd5b8151620004f284826020860162000489565b91505092915050565b600080604083850312156200050f57600080fd5b600083015167ffffffffffffffff8111156200052a57600080fd5b6200053885828601620004ce565b925050602083015167ffffffffffffffff8111156200055657600080fd5b6200056485828601620004ce565b9150509250929050565b60006200057d60208362000616565b91506200058a8262000738565b602082019050919050565b60006020820190508181036000830152620005b0816200056e565b9050919050565b6000620005c3620005d6565b9050620005d1828262000693565b919050565b6000604051905090565b600067ffffffffffffffff821115620005fe57620005fd620006f8565b5b620006098262000727565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006475780820151818401526020810190506200062a565b8381111562000657576000848401525b50505050565b600060028204905060018216806200067657607f821691505b602082108114156200068d576200068c620006c9565b5b50919050565b6200069e8262000727565b810181811067ffffffffffffffff82111715620006c057620006bf620006f8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6147df80620007716000396000f3fe6080604052600436106102045760003560e01c806375b8b6e111610118578063b88d4fde116100a0578063e14ca3531161006f578063e14ca3531461074a578063e298f22014610775578063e8a3d485146107a0578063e985e9c5146107cb578063f2fde38b1461080857610204565b8063b88d4fde1461069d578063c87b56dd146106c6578063d5abeb0114610703578063d8ea28321461072e57610204565b80638da5cb5b116100e75780638da5cb5b146105ca57806395d89b41146105f55780639f181b5e14610620578063a22cb4651461064b578063a44e08491461067457610204565b806375b8b6e11461051e57806377febf83146105495780637d9447e2146105745780637f545d511461059f57610204565b80632a0d83f31161019b5780634f6ccce71161016a5780634f6ccce71461042757806355f804b3146104645780636352211e1461048d57806370a08231146104ca578063715018a61461050757610204565b80632a0d83f31461037f5780632f745c59146103aa57806334918dfd146103e757806342842e0e146103fe57610204565b806318160ddd116101d757806318160ddd146102d75780631c8b232d146103025780631ec04ecd1461032d57806323b872dd1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906131e8565b610831565b60405161023d91906138cb565b60405180910390f35b34801561025257600080fd5b5061025b6108ab565b6040516102689190613901565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061327b565b61093d565b6040516102a5919061383b565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613183565b6109c2565b005b3480156102e357600080fd5b506102ec610ada565b6040516102f99190613c23565b60405180910390f35b34801561030e57600080fd5b50610317610ae7565b60405161032491906138cb565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190613018565b610afa565b005b34801561036257600080fd5b5061037d6004803603810190610378919061307d565b610bfb565b005b34801561038b57600080fd5b50610394610c5b565b6040516103a191906138cb565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190613183565b610c6e565b6040516103de9190613c23565b60405180910390f35b3480156103f357600080fd5b506103fc610d13565b005b34801561040a57600080fd5b506104256004803603810190610420919061307d565b610dbb565b005b34801561043357600080fd5b5061044e6004803603810190610449919061327b565b610ddb565b60405161045b9190613c23565b60405180910390f35b34801561047057600080fd5b5061048b6004803603810190610486919061323a565b610e72565b005b34801561049957600080fd5b506104b460048036038101906104af919061327b565b610f08565b6040516104c1919061383b565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190613018565b610fba565b6040516104fe9190613c23565b60405180910390f35b34801561051357600080fd5b5061051c611072565b005b34801561052a57600080fd5b506105336110fa565b6040516105409190613c23565b60405180910390f35b34801561055557600080fd5b5061055e611100565b60405161056b9190613c23565b60405180910390f35b34801561058057600080fd5b5061058961110d565b604051610596919061383b565b60405180910390f35b3480156105ab57600080fd5b506105b4611133565b6040516105c191906138e6565b60405180910390f35b3480156105d657600080fd5b506105df611159565b6040516105ec919061383b565b60405180910390f35b34801561060157600080fd5b5061060a611182565b6040516106179190613901565b60405180910390f35b34801561062c57600080fd5b50610635611214565b6040516106429190613c23565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190613147565b611225565b005b34801561068057600080fd5b5061069b600480360381019061069691906131bf565b6113a6565b005b3480156106a957600080fd5b506106c460048036038101906106bf91906130cc565b61143f565b005b3480156106d257600080fd5b506106ed60048036038101906106e8919061327b565b6114a1565b6040516106fa9190613901565b60405180910390f35b34801561070f57600080fd5b506107186114d5565b6040516107259190613c23565b60405180910390f35b6107486004803603810190610743919061327b565b6114df565b005b34801561075657600080fd5b5061075f61193d565b60405161076c9190613c23565b60405180910390f35b34801561078157600080fd5b5061078a61195e565b6040516107979190613c23565b60405180910390f35b3480156107ac57600080fd5b506107b5611964565b6040516107c29190613901565b60405180910390f35b3480156107d757600080fd5b506107f260048036038101906107ed9190613041565b6119f6565b6040516107ff91906138cb565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a9190613018565b611a8a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a457506108a382611b82565b5b9050919050565b6060600180546108ba90613f1e565b80601f01602080910402602001604051908101604052809291908181526020018280546108e690613f1e565b80156109335780601f1061090857610100808354040283529160200191610933565b820191906000526020600020905b81548152906001019060200180831161091657829003601f168201915b5050505050905090565b600061094882611c64565b610987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097e90613b23565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109cd82610f08565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3590613ba3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5d611cd0565b73ffffffffffffffffffffffffffffffffffffffff161480610a8c5750610a8b81610a86611cd0565b6119f6565b5b610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290613a83565b60405180910390fd5b610ad58383611cd8565b505050565b6000600980549050905090565b601260009054906101000a900460ff1681565b610b02611cd0565b73ffffffffffffffffffffffffffffffffffffffff16610b20611159565b73ffffffffffffffffffffffffffffffffffffffff1614610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90613b43565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c0c610c06611cd0565b82611d91565b610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4290613bc3565b60405180910390fd5b610c56838383611e6f565b505050565b601560009054906101000a900460ff1681565b6000610c7983610fba565b8210610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613923565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d1b611cd0565b73ffffffffffffffffffffffffffffffffffffffff16610d39611159565b73ffffffffffffffffffffffffffffffffffffffff1614610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8690613b43565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b610dd68383836040518060200160405280600081525061143f565b505050565b6000610de5610ada565b8210610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90613be3565b60405180910390fd5b60098281548110610e60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e7a611cd0565b73ffffffffffffffffffffffffffffffffffffffff16610e98611159565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590613b43565b60405180910390fd5b8060139080519060200190610f04929190612e27565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890613ac3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290613aa3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61107a611cd0565b73ffffffffffffffffffffffffffffffffffffffff16611098611159565b73ffffffffffffffffffffffffffffffffffffffff16146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590613b43565b60405180910390fd5b6110f860006120cb565b565b60165481565b682086ac35105260000081565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461119190613f1e565b80601f01602080910402602001604051908101604052809291908181526020018280546111bd90613f1e565b801561120a5780601f106111df5761010080835404028352916020019161120a565b820191906000526020600020905b8154815290600101906020018083116111ed57829003601f168201915b5050505050905090565b6000611220600b61218f565b905090565b61122d611cd0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290613a03565b60405180910390fd5b80600660006112a8611cd0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611355611cd0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161139a91906138cb565b60405180910390a35050565b6113ae611cd0565b73ffffffffffffffffffffffffffffffffffffffff166113cc611159565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990613b43565b60405180910390fd5b80601560006101000a81548160ff02191690831515021790555050565b61145061144a611cd0565b83611d91565b61148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690613bc3565b60405180910390fd5b61149b8484848461219d565b50505050565b606060136114ae836121f9565b6040516020016114bf929190613817565b6040516020818303038152906040529050919050565b6000600c54905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461154d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154490613c03565b60405180910390fd5b601560009054906101000a900460ff1661159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390613b83565b60405180910390fd5b601260009054906101000a900460ff166115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e290613a63565b60405180910390fd5b6011546115f6610ada565b1115611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e906139a3565b60405180910390fd5b80682086ac35105260000061164c9190613da4565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016116a7919061383b565b60206040518083038186803b1580156116bf57600080fd5b505afa1580156116d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f791906132a4565b1015611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90613b03565b60405180910390fd5b6001600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611795919061383b565b60206040518083038186803b1580156117ad57600080fd5b505afa1580156117c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e591906132a4565b11611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c906139c3565b60405180910390fd5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac33682086ac3510526000006040518363ffffffff1660e01b815260040161188b9291906138a2565b600060405180830381600087803b1580156118a557600080fd5b505af11580156118b9573d6000803e3d6000fd5b5050505060006118c76123a6565b90506118d33382612534565b601660008154809291906118e690613f81565b91905055503373ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885826040516119319190613c23565b60405180910390a25050565b6000611947611214565b61194f6114d5565b6119599190613dfe565b905090565b60115481565b60606014805461197390613f1e565b80601f016020809104026020016040519081016040528092919081815260200182805461199f90613f1e565b80156119ec5780601f106119c1576101008083540402835291602001916119ec565b820191906000526020600020905b8154815290600101906020018083116119cf57829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a92611cd0565b73ffffffffffffffffffffffffffffffffffffffff16611ab0611159565b73ffffffffffffffffffffffffffffffffffffffff1614611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90613b43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90613963565b60405180910390fd5b611b7f816120cb565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c4d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c5d5750611c5c82612702565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d4b83610f08565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d9c82611c64565b611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd290613a43565b60405180910390fd5b6000611de683610f08565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e5557508373ffffffffffffffffffffffffffffffffffffffff16611e3d8461093d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e665750611e6581856119f6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e8f82610f08565b73ffffffffffffffffffffffffffffffffffffffff1614611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc90613b63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4c906139e3565b60405180910390fd5b611f6083838361276c565b611f6b600082611cd8565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fbb9190613dfe565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120129190613d1d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6121a8848484611e6f565b6121b484848484612880565b6121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea90613943565b60405180910390fd5b50505050565b60606000821415612241576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123a1565b600082905060005b6000821461227357808061225c90613f81565b915050600a8261226c9190613d73565b9150612249565b60008167ffffffffffffffff8111156122b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122e75781602001600182028036833780820191505090505b5090505b6000851461239a576001826123009190613dfe565b9150600a8561230f919061400a565b603061231b9190613d1d565b60f81b818381518110612357577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123939190613d73565b94506122eb565b8093505050505b919050565b6000806123b161193d565b116123f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e890613a23565b60405180910390fd5b60006123fb611214565b6124036114d5565b61240d9190613dfe565b9050600081334144454260405160200161242b9594939291906137b8565b6040516020818303038152906040528051906020012060001c61244e919061400a565b9050600080600d60008481526020019081526020016000205414156124755781905061248c565b600d60008381526020019081526020016000205490505b6000600d600060018661249f9190613dfe565b81526020019081526020016000205414156124dd576001836124c19190613dfe565b600d600084815260200190815260200160002081905550612515565b600d60006001856124ee9190613dfe565b815260200190815260200160002054600d6000848152602001908152602001600020819055505b61251d612a17565b50600e548161252c9190613d1d565b935050505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259b90613ae3565b60405180910390fd5b6125ad81611c64565b156125ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e490613983565b60405180910390fd5b6125f96000838361276c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126499190613d1d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612777838383612a81565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127ba576127b581612a86565b6127f9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127f8576127f78382612acf565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561283c5761283781612c3c565b61287b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461287a576128798282612d7f565b5b5b505050565b60006128a18473ffffffffffffffffffffffffffffffffffffffff16612dfe565b15612a0a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128ca611cd0565b8786866040518563ffffffff1660e01b81526004016128ec9493929190613856565b602060405180830381600087803b15801561290657600080fd5b505af192505050801561293757506040513d601f19601f820116820180604052508101906129349190613211565b60015b6129ba573d8060008114612967576040519150601f19603f3d011682016040523d82523d6000602084013e61296c565b606091505b506000815114156129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a990613943565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a0f565b600190505b949350505050565b600080612a2261193d565b11612a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5990613a23565b60405180910390fd5b6000612a6e600b61218f565b9050612a7a600b612e11565b8091505090565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612adc84610fba565b612ae69190613dfe565b9050600060086000848152602001908152602001600020549050818114612bcb576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612c509190613dfe565b90506000600a6000848152602001908152602001600020549050600060098381548110612ca6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612cee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612d63577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d8a83610fba565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b6001816000016000828254019250508190555050565b828054612e3390613f1e565b90600052602060002090601f016020900481019282612e555760008555612e9c565b82601f10612e6e57805160ff1916838001178555612e9c565b82800160010185558215612e9c579182015b82811115612e9b578251825591602001919060010190612e80565b5b509050612ea99190612ead565b5090565b5b80821115612ec6576000816000905550600101612eae565b5090565b6000612edd612ed884613c63565b613c3e565b905082815260208101848484011115612ef557600080fd5b612f00848285613edc565b509392505050565b6000612f1b612f1684613c94565b613c3e565b905082815260208101848484011115612f3357600080fd5b612f3e848285613edc565b509392505050565b600081359050612f558161474d565b92915050565b600081359050612f6a81614764565b92915050565b600081359050612f7f8161477b565b92915050565b600081519050612f948161477b565b92915050565b600082601f830112612fab57600080fd5b8135612fbb848260208601612eca565b91505092915050565b600082601f830112612fd557600080fd5b8135612fe5848260208601612f08565b91505092915050565b600081359050612ffd81614792565b92915050565b60008151905061301281614792565b92915050565b60006020828403121561302a57600080fd5b600061303884828501612f46565b91505092915050565b6000806040838503121561305457600080fd5b600061306285828601612f46565b925050602061307385828601612f46565b9150509250929050565b60008060006060848603121561309257600080fd5b60006130a086828701612f46565b93505060206130b186828701612f46565b92505060406130c286828701612fee565b9150509250925092565b600080600080608085870312156130e257600080fd5b60006130f087828801612f46565b945050602061310187828801612f46565b935050604061311287828801612fee565b925050606085013567ffffffffffffffff81111561312f57600080fd5b61313b87828801612f9a565b91505092959194509250565b6000806040838503121561315a57600080fd5b600061316885828601612f46565b925050602061317985828601612f5b565b9150509250929050565b6000806040838503121561319657600080fd5b60006131a485828601612f46565b92505060206131b585828601612fee565b9150509250929050565b6000602082840312156131d157600080fd5b60006131df84828501612f5b565b91505092915050565b6000602082840312156131fa57600080fd5b600061320884828501612f70565b91505092915050565b60006020828403121561322357600080fd5b600061323184828501612f85565b91505092915050565b60006020828403121561324c57600080fd5b600082013567ffffffffffffffff81111561326657600080fd5b61327284828501612fc4565b91505092915050565b60006020828403121561328d57600080fd5b600061329b84828501612fee565b91505092915050565b6000602082840312156132b657600080fd5b60006132c484828501613003565b91505092915050565b6132de6132d982613e44565b613fdc565b82525050565b6132ed81613e32565b82525050565b6133046132ff82613e32565b613fca565b82525050565b61331381613e56565b82525050565b600061332482613cda565b61332e8185613cf0565b935061333e818560208601613eeb565b613347816140f7565b840191505092915050565b61335b81613eb8565b82525050565b600061336c82613ce5565b6133768185613d01565b9350613386818560208601613eeb565b61338f816140f7565b840191505092915050565b60006133a582613ce5565b6133af8185613d12565b93506133bf818560208601613eeb565b80840191505092915050565b600081546133d881613f1e565b6133e28186613d12565b945060018216600081146133fd576001811461340e57613441565b60ff19831686528186019350613441565b61341785613cc5565b60005b838110156134395781548189015260018201915060208101905061341a565b838801955050505b50505092915050565b6000613457602b83613d01565b915061346282614115565b604082019050919050565b600061347a603283613d01565b915061348582614164565b604082019050919050565b600061349d602683613d01565b91506134a8826141b3565b604082019050919050565b60006134c0601c83613d01565b91506134cb82614202565b602082019050919050565b60006134e3601483613d01565b91506134ee8261422b565b602082019050919050565b6000613506603383613d01565b915061351182614254565b604082019050919050565b6000613529602483613d01565b9150613534826142a3565b604082019050919050565b600061354c601983613d01565b9150613557826142f2565b602082019050919050565b600061356f601883613d01565b915061357a8261431b565b602082019050919050565b6000613592602c83613d01565b915061359d82614344565b604082019050919050565b60006135b5602a83613d01565b91506135c082614393565b604082019050919050565b60006135d8603883613d01565b91506135e3826143e2565b604082019050919050565b60006135fb602a83613d01565b915061360682614431565b604082019050919050565b600061361e602983613d01565b915061362982614480565b604082019050919050565b6000613641602083613d01565b915061364c826144cf565b602082019050919050565b6000613664601c83613d01565b915061366f826144f8565b602082019050919050565b6000613687602c83613d01565b915061369282614521565b604082019050919050565b60006136aa602083613d01565b91506136b582614570565b602082019050919050565b60006136cd602983613d01565b91506136d882614599565b604082019050919050565b60006136f0602783613d01565b91506136fb826145e8565b604082019050919050565b6000613713602183613d01565b915061371e82614637565b604082019050919050565b6000613736603183613d01565b915061374182614686565b604082019050919050565b6000613759602c83613d01565b9150613764826146d5565b604082019050919050565b600061377c601b83613d01565b915061378782614724565b602082019050919050565b61379b81613eae565b82525050565b6137b26137ad82613eae565b614000565b82525050565b60006137c482886132f3565b6014820191506137d482876132cd565b6014820191506137e482866137a1565b6020820191506137f482856137a1565b60208201915061380482846137a1565b6020820191508190509695505050505050565b600061382382856133cb565b915061382f828461339a565b91508190509392505050565b600060208201905061385060008301846132e4565b92915050565b600060808201905061386b60008301876132e4565b61387860208301866132e4565b6138856040830185613792565b81810360608301526138978184613319565b905095945050505050565b60006040820190506138b760008301856132e4565b6138c46020830184613792565b9392505050565b60006020820190506138e0600083018461330a565b92915050565b60006020820190506138fb6000830184613352565b92915050565b6000602082019050818103600083015261391b8184613361565b905092915050565b6000602082019050818103600083015261393c8161344a565b9050919050565b6000602082019050818103600083015261395c8161346d565b9050919050565b6000602082019050818103600083015261397c81613490565b9050919050565b6000602082019050818103600083015261399c816134b3565b9050919050565b600060208201905081810360008301526139bc816134d6565b9050919050565b600060208201905081810360008301526139dc816134f9565b9050919050565b600060208201905081810360008301526139fc8161351c565b9050919050565b60006020820190508181036000830152613a1c8161353f565b9050919050565b60006020820190508181036000830152613a3c81613562565b9050919050565b60006020820190508181036000830152613a5c81613585565b9050919050565b60006020820190508181036000830152613a7c816135a8565b9050919050565b60006020820190508181036000830152613a9c816135cb565b9050919050565b60006020820190508181036000830152613abc816135ee565b9050919050565b60006020820190508181036000830152613adc81613611565b9050919050565b60006020820190508181036000830152613afc81613634565b9050919050565b60006020820190508181036000830152613b1c81613657565b9050919050565b60006020820190508181036000830152613b3c8161367a565b9050919050565b60006020820190508181036000830152613b5c8161369d565b9050919050565b60006020820190508181036000830152613b7c816136c0565b9050919050565b60006020820190508181036000830152613b9c816136e3565b9050919050565b60006020820190508181036000830152613bbc81613706565b9050919050565b60006020820190508181036000830152613bdc81613729565b9050919050565b60006020820190508181036000830152613bfc8161374c565b9050919050565b60006020820190508181036000830152613c1c8161376f565b9050919050565b6000602082019050613c386000830184613792565b92915050565b6000613c48613c59565b9050613c548282613f50565b919050565b6000604051905090565b600067ffffffffffffffff821115613c7e57613c7d6140c8565b5b613c87826140f7565b9050602081019050919050565b600067ffffffffffffffff821115613caf57613cae6140c8565b5b613cb8826140f7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d2882613eae565b9150613d3383613eae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d6857613d6761403b565b5b828201905092915050565b6000613d7e82613eae565b9150613d8983613eae565b925082613d9957613d9861406a565b5b828204905092915050565b6000613daf82613eae565b9150613dba83613eae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613df357613df261403b565b5b828202905092915050565b6000613e0982613eae565b9150613e1483613eae565b925082821015613e2757613e2661403b565b5b828203905092915050565b6000613e3d82613e8e565b9050919050565b6000613e4f82613e8e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613ec382613eca565b9050919050565b6000613ed582613e8e565b9050919050565b82818337600083830152505050565b60005b83811015613f09578082015181840152602081019050613eee565b83811115613f18576000848401525b50505050565b60006002820490506001821680613f3657607f821691505b60208210811415613f4a57613f49614099565b5b50919050565b613f59826140f7565b810181811067ffffffffffffffff82111715613f7857613f776140c8565b5b80604052505050565b6000613f8c82613eae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fbf57613fbe61403b565b5b600182019050919050565b6000613fd582613fee565b9050919050565b6000613fe782613fee565b9050919050565b6000613ff982614108565b9050919050565b6000819050919050565b600061401582613eae565b915061402083613eae565b9250826140305761402f61406a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4578636565647320546f74616c20537570706c79000000000000000000000000600082015250565b7f4e65656420746f2068617665206d6f7265207468616e2031204f63746f48656460008201527f7a20746f207374617274206272656564696e6700000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f2062726565642061204260008201527f616279204b72616b656e00000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f7520646f206e6f74206861766520656e6f75676820494e4b7a2100000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67207769746820494e4b7a206973206e6f7420617661696c616260008201527f6c65207965742100000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f20736d61727420636f6e74726163747320616c6c6f776564210000000000600082015250565b61475681613e32565b811461476157600080fd5b50565b61476d81613e56565b811461477857600080fd5b50565b61478481613e62565b811461478f57600080fd5b50565b61479b81613eae565b81146147a657600080fd5b5056fea2646970667358221220bbbcf9e71735e50712b4f68263dd957b47726567dde5f6efbe9e4ed1d642b29664736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d52684c46346d486866714a763358514537744532724659464a6b326350425943727867556f614169386256362f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5455424638507079336f763736464b677370516454336136715841384d456472316e774c6a613147684e625a2f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806375b8b6e111610118578063b88d4fde116100a0578063e14ca3531161006f578063e14ca3531461074a578063e298f22014610775578063e8a3d485146107a0578063e985e9c5146107cb578063f2fde38b1461080857610204565b8063b88d4fde1461069d578063c87b56dd146106c6578063d5abeb0114610703578063d8ea28321461072e57610204565b80638da5cb5b116100e75780638da5cb5b146105ca57806395d89b41146105f55780639f181b5e14610620578063a22cb4651461064b578063a44e08491461067457610204565b806375b8b6e11461051e57806377febf83146105495780637d9447e2146105745780637f545d511461059f57610204565b80632a0d83f31161019b5780634f6ccce71161016a5780634f6ccce71461042757806355f804b3146104645780636352211e1461048d57806370a08231146104ca578063715018a61461050757610204565b80632a0d83f31461037f5780632f745c59146103aa57806334918dfd146103e757806342842e0e146103fe57610204565b806318160ddd116101d757806318160ddd146102d75780631c8b232d146103025780631ec04ecd1461032d57806323b872dd1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906131e8565b610831565b60405161023d91906138cb565b60405180910390f35b34801561025257600080fd5b5061025b6108ab565b6040516102689190613901565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061327b565b61093d565b6040516102a5919061383b565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613183565b6109c2565b005b3480156102e357600080fd5b506102ec610ada565b6040516102f99190613c23565b60405180910390f35b34801561030e57600080fd5b50610317610ae7565b60405161032491906138cb565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190613018565b610afa565b005b34801561036257600080fd5b5061037d6004803603810190610378919061307d565b610bfb565b005b34801561038b57600080fd5b50610394610c5b565b6040516103a191906138cb565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190613183565b610c6e565b6040516103de9190613c23565b60405180910390f35b3480156103f357600080fd5b506103fc610d13565b005b34801561040a57600080fd5b506104256004803603810190610420919061307d565b610dbb565b005b34801561043357600080fd5b5061044e6004803603810190610449919061327b565b610ddb565b60405161045b9190613c23565b60405180910390f35b34801561047057600080fd5b5061048b6004803603810190610486919061323a565b610e72565b005b34801561049957600080fd5b506104b460048036038101906104af919061327b565b610f08565b6040516104c1919061383b565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190613018565b610fba565b6040516104fe9190613c23565b60405180910390f35b34801561051357600080fd5b5061051c611072565b005b34801561052a57600080fd5b506105336110fa565b6040516105409190613c23565b60405180910390f35b34801561055557600080fd5b5061055e611100565b60405161056b9190613c23565b60405180910390f35b34801561058057600080fd5b5061058961110d565b604051610596919061383b565b60405180910390f35b3480156105ab57600080fd5b506105b4611133565b6040516105c191906138e6565b60405180910390f35b3480156105d657600080fd5b506105df611159565b6040516105ec919061383b565b60405180910390f35b34801561060157600080fd5b5061060a611182565b6040516106179190613901565b60405180910390f35b34801561062c57600080fd5b50610635611214565b6040516106429190613c23565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190613147565b611225565b005b34801561068057600080fd5b5061069b600480360381019061069691906131bf565b6113a6565b005b3480156106a957600080fd5b506106c460048036038101906106bf91906130cc565b61143f565b005b3480156106d257600080fd5b506106ed60048036038101906106e8919061327b565b6114a1565b6040516106fa9190613901565b60405180910390f35b34801561070f57600080fd5b506107186114d5565b6040516107259190613c23565b60405180910390f35b6107486004803603810190610743919061327b565b6114df565b005b34801561075657600080fd5b5061075f61193d565b60405161076c9190613c23565b60405180910390f35b34801561078157600080fd5b5061078a61195e565b6040516107979190613c23565b60405180910390f35b3480156107ac57600080fd5b506107b5611964565b6040516107c29190613901565b60405180910390f35b3480156107d757600080fd5b506107f260048036038101906107ed9190613041565b6119f6565b6040516107ff91906138cb565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a9190613018565b611a8a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a457506108a382611b82565b5b9050919050565b6060600180546108ba90613f1e565b80601f01602080910402602001604051908101604052809291908181526020018280546108e690613f1e565b80156109335780601f1061090857610100808354040283529160200191610933565b820191906000526020600020905b81548152906001019060200180831161091657829003601f168201915b5050505050905090565b600061094882611c64565b610987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097e90613b23565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109cd82610f08565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3590613ba3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5d611cd0565b73ffffffffffffffffffffffffffffffffffffffff161480610a8c5750610a8b81610a86611cd0565b6119f6565b5b610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290613a83565b60405180910390fd5b610ad58383611cd8565b505050565b6000600980549050905090565b601260009054906101000a900460ff1681565b610b02611cd0565b73ffffffffffffffffffffffffffffffffffffffff16610b20611159565b73ffffffffffffffffffffffffffffffffffffffff1614610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90613b43565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c0c610c06611cd0565b82611d91565b610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4290613bc3565b60405180910390fd5b610c56838383611e6f565b505050565b601560009054906101000a900460ff1681565b6000610c7983610fba565b8210610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613923565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d1b611cd0565b73ffffffffffffffffffffffffffffffffffffffff16610d39611159565b73ffffffffffffffffffffffffffffffffffffffff1614610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8690613b43565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b610dd68383836040518060200160405280600081525061143f565b505050565b6000610de5610ada565b8210610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90613be3565b60405180910390fd5b60098281548110610e60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e7a611cd0565b73ffffffffffffffffffffffffffffffffffffffff16610e98611159565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590613b43565b60405180910390fd5b8060139080519060200190610f04929190612e27565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890613ac3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290613aa3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61107a611cd0565b73ffffffffffffffffffffffffffffffffffffffff16611098611159565b73ffffffffffffffffffffffffffffffffffffffff16146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590613b43565b60405180910390fd5b6110f860006120cb565b565b60165481565b682086ac35105260000081565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461119190613f1e565b80601f01602080910402602001604051908101604052809291908181526020018280546111bd90613f1e565b801561120a5780601f106111df5761010080835404028352916020019161120a565b820191906000526020600020905b8154815290600101906020018083116111ed57829003601f168201915b5050505050905090565b6000611220600b61218f565b905090565b61122d611cd0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290613a03565b60405180910390fd5b80600660006112a8611cd0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611355611cd0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161139a91906138cb565b60405180910390a35050565b6113ae611cd0565b73ffffffffffffffffffffffffffffffffffffffff166113cc611159565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990613b43565b60405180910390fd5b80601560006101000a81548160ff02191690831515021790555050565b61145061144a611cd0565b83611d91565b61148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690613bc3565b60405180910390fd5b61149b8484848461219d565b50505050565b606060136114ae836121f9565b6040516020016114bf929190613817565b6040516020818303038152906040529050919050565b6000600c54905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461154d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154490613c03565b60405180910390fd5b601560009054906101000a900460ff1661159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390613b83565b60405180910390fd5b601260009054906101000a900460ff166115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e290613a63565b60405180910390fd5b6011546115f6610ada565b1115611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e906139a3565b60405180910390fd5b80682086ac35105260000061164c9190613da4565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016116a7919061383b565b60206040518083038186803b1580156116bf57600080fd5b505afa1580156116d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f791906132a4565b1015611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90613b03565b60405180910390fd5b6001600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611795919061383b565b60206040518083038186803b1580156117ad57600080fd5b505afa1580156117c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e591906132a4565b11611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c906139c3565b60405180910390fd5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac33682086ac3510526000006040518363ffffffff1660e01b815260040161188b9291906138a2565b600060405180830381600087803b1580156118a557600080fd5b505af11580156118b9573d6000803e3d6000fd5b5050505060006118c76123a6565b90506118d33382612534565b601660008154809291906118e690613f81565b91905055503373ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885826040516119319190613c23565b60405180910390a25050565b6000611947611214565b61194f6114d5565b6119599190613dfe565b905090565b60115481565b60606014805461197390613f1e565b80601f016020809104026020016040519081016040528092919081815260200182805461199f90613f1e565b80156119ec5780601f106119c1576101008083540402835291602001916119ec565b820191906000526020600020905b8154815290600101906020018083116119cf57829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a92611cd0565b73ffffffffffffffffffffffffffffffffffffffff16611ab0611159565b73ffffffffffffffffffffffffffffffffffffffff1614611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90613b43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90613963565b60405180910390fd5b611b7f816120cb565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c4d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c5d5750611c5c82612702565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d4b83610f08565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d9c82611c64565b611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd290613a43565b60405180910390fd5b6000611de683610f08565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e5557508373ffffffffffffffffffffffffffffffffffffffff16611e3d8461093d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e665750611e6581856119f6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e8f82610f08565b73ffffffffffffffffffffffffffffffffffffffff1614611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc90613b63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4c906139e3565b60405180910390fd5b611f6083838361276c565b611f6b600082611cd8565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fbb9190613dfe565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120129190613d1d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6121a8848484611e6f565b6121b484848484612880565b6121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea90613943565b60405180910390fd5b50505050565b60606000821415612241576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123a1565b600082905060005b6000821461227357808061225c90613f81565b915050600a8261226c9190613d73565b9150612249565b60008167ffffffffffffffff8111156122b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122e75781602001600182028036833780820191505090505b5090505b6000851461239a576001826123009190613dfe565b9150600a8561230f919061400a565b603061231b9190613d1d565b60f81b818381518110612357577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123939190613d73565b94506122eb565b8093505050505b919050565b6000806123b161193d565b116123f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e890613a23565b60405180910390fd5b60006123fb611214565b6124036114d5565b61240d9190613dfe565b9050600081334144454260405160200161242b9594939291906137b8565b6040516020818303038152906040528051906020012060001c61244e919061400a565b9050600080600d60008481526020019081526020016000205414156124755781905061248c565b600d60008381526020019081526020016000205490505b6000600d600060018661249f9190613dfe565b81526020019081526020016000205414156124dd576001836124c19190613dfe565b600d600084815260200190815260200160002081905550612515565b600d60006001856124ee9190613dfe565b815260200190815260200160002054600d6000848152602001908152602001600020819055505b61251d612a17565b50600e548161252c9190613d1d565b935050505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259b90613ae3565b60405180910390fd5b6125ad81611c64565b156125ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e490613983565b60405180910390fd5b6125f96000838361276c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126499190613d1d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612777838383612a81565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127ba576127b581612a86565b6127f9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127f8576127f78382612acf565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561283c5761283781612c3c565b61287b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461287a576128798282612d7f565b5b5b505050565b60006128a18473ffffffffffffffffffffffffffffffffffffffff16612dfe565b15612a0a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128ca611cd0565b8786866040518563ffffffff1660e01b81526004016128ec9493929190613856565b602060405180830381600087803b15801561290657600080fd5b505af192505050801561293757506040513d601f19601f820116820180604052508101906129349190613211565b60015b6129ba573d8060008114612967576040519150601f19603f3d011682016040523d82523d6000602084013e61296c565b606091505b506000815114156129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a990613943565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a0f565b600190505b949350505050565b600080612a2261193d565b11612a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5990613a23565b60405180910390fd5b6000612a6e600b61218f565b9050612a7a600b612e11565b8091505090565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612adc84610fba565b612ae69190613dfe565b9050600060086000848152602001908152602001600020549050818114612bcb576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612c509190613dfe565b90506000600a6000848152602001908152602001600020549050600060098381548110612ca6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612cee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612d63577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d8a83610fba565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b6001816000016000828254019250508190555050565b828054612e3390613f1e565b90600052602060002090601f016020900481019282612e555760008555612e9c565b82601f10612e6e57805160ff1916838001178555612e9c565b82800160010185558215612e9c579182015b82811115612e9b578251825591602001919060010190612e80565b5b509050612ea99190612ead565b5090565b5b80821115612ec6576000816000905550600101612eae565b5090565b6000612edd612ed884613c63565b613c3e565b905082815260208101848484011115612ef557600080fd5b612f00848285613edc565b509392505050565b6000612f1b612f1684613c94565b613c3e565b905082815260208101848484011115612f3357600080fd5b612f3e848285613edc565b509392505050565b600081359050612f558161474d565b92915050565b600081359050612f6a81614764565b92915050565b600081359050612f7f8161477b565b92915050565b600081519050612f948161477b565b92915050565b600082601f830112612fab57600080fd5b8135612fbb848260208601612eca565b91505092915050565b600082601f830112612fd557600080fd5b8135612fe5848260208601612f08565b91505092915050565b600081359050612ffd81614792565b92915050565b60008151905061301281614792565b92915050565b60006020828403121561302a57600080fd5b600061303884828501612f46565b91505092915050565b6000806040838503121561305457600080fd5b600061306285828601612f46565b925050602061307385828601612f46565b9150509250929050565b60008060006060848603121561309257600080fd5b60006130a086828701612f46565b93505060206130b186828701612f46565b92505060406130c286828701612fee565b9150509250925092565b600080600080608085870312156130e257600080fd5b60006130f087828801612f46565b945050602061310187828801612f46565b935050604061311287828801612fee565b925050606085013567ffffffffffffffff81111561312f57600080fd5b61313b87828801612f9a565b91505092959194509250565b6000806040838503121561315a57600080fd5b600061316885828601612f46565b925050602061317985828601612f5b565b9150509250929050565b6000806040838503121561319657600080fd5b60006131a485828601612f46565b92505060206131b585828601612fee565b9150509250929050565b6000602082840312156131d157600080fd5b60006131df84828501612f5b565b91505092915050565b6000602082840312156131fa57600080fd5b600061320884828501612f70565b91505092915050565b60006020828403121561322357600080fd5b600061323184828501612f85565b91505092915050565b60006020828403121561324c57600080fd5b600082013567ffffffffffffffff81111561326657600080fd5b61327284828501612fc4565b91505092915050565b60006020828403121561328d57600080fd5b600061329b84828501612fee565b91505092915050565b6000602082840312156132b657600080fd5b60006132c484828501613003565b91505092915050565b6132de6132d982613e44565b613fdc565b82525050565b6132ed81613e32565b82525050565b6133046132ff82613e32565b613fca565b82525050565b61331381613e56565b82525050565b600061332482613cda565b61332e8185613cf0565b935061333e818560208601613eeb565b613347816140f7565b840191505092915050565b61335b81613eb8565b82525050565b600061336c82613ce5565b6133768185613d01565b9350613386818560208601613eeb565b61338f816140f7565b840191505092915050565b60006133a582613ce5565b6133af8185613d12565b93506133bf818560208601613eeb565b80840191505092915050565b600081546133d881613f1e565b6133e28186613d12565b945060018216600081146133fd576001811461340e57613441565b60ff19831686528186019350613441565b61341785613cc5565b60005b838110156134395781548189015260018201915060208101905061341a565b838801955050505b50505092915050565b6000613457602b83613d01565b915061346282614115565b604082019050919050565b600061347a603283613d01565b915061348582614164565b604082019050919050565b600061349d602683613d01565b91506134a8826141b3565b604082019050919050565b60006134c0601c83613d01565b91506134cb82614202565b602082019050919050565b60006134e3601483613d01565b91506134ee8261422b565b602082019050919050565b6000613506603383613d01565b915061351182614254565b604082019050919050565b6000613529602483613d01565b9150613534826142a3565b604082019050919050565b600061354c601983613d01565b9150613557826142f2565b602082019050919050565b600061356f601883613d01565b915061357a8261431b565b602082019050919050565b6000613592602c83613d01565b915061359d82614344565b604082019050919050565b60006135b5602a83613d01565b91506135c082614393565b604082019050919050565b60006135d8603883613d01565b91506135e3826143e2565b604082019050919050565b60006135fb602a83613d01565b915061360682614431565b604082019050919050565b600061361e602983613d01565b915061362982614480565b604082019050919050565b6000613641602083613d01565b915061364c826144cf565b602082019050919050565b6000613664601c83613d01565b915061366f826144f8565b602082019050919050565b6000613687602c83613d01565b915061369282614521565b604082019050919050565b60006136aa602083613d01565b91506136b582614570565b602082019050919050565b60006136cd602983613d01565b91506136d882614599565b604082019050919050565b60006136f0602783613d01565b91506136fb826145e8565b604082019050919050565b6000613713602183613d01565b915061371e82614637565b604082019050919050565b6000613736603183613d01565b915061374182614686565b604082019050919050565b6000613759602c83613d01565b9150613764826146d5565b604082019050919050565b600061377c601b83613d01565b915061378782614724565b602082019050919050565b61379b81613eae565b82525050565b6137b26137ad82613eae565b614000565b82525050565b60006137c482886132f3565b6014820191506137d482876132cd565b6014820191506137e482866137a1565b6020820191506137f482856137a1565b60208201915061380482846137a1565b6020820191508190509695505050505050565b600061382382856133cb565b915061382f828461339a565b91508190509392505050565b600060208201905061385060008301846132e4565b92915050565b600060808201905061386b60008301876132e4565b61387860208301866132e4565b6138856040830185613792565b81810360608301526138978184613319565b905095945050505050565b60006040820190506138b760008301856132e4565b6138c46020830184613792565b9392505050565b60006020820190506138e0600083018461330a565b92915050565b60006020820190506138fb6000830184613352565b92915050565b6000602082019050818103600083015261391b8184613361565b905092915050565b6000602082019050818103600083015261393c8161344a565b9050919050565b6000602082019050818103600083015261395c8161346d565b9050919050565b6000602082019050818103600083015261397c81613490565b9050919050565b6000602082019050818103600083015261399c816134b3565b9050919050565b600060208201905081810360008301526139bc816134d6565b9050919050565b600060208201905081810360008301526139dc816134f9565b9050919050565b600060208201905081810360008301526139fc8161351c565b9050919050565b60006020820190508181036000830152613a1c8161353f565b9050919050565b60006020820190508181036000830152613a3c81613562565b9050919050565b60006020820190508181036000830152613a5c81613585565b9050919050565b60006020820190508181036000830152613a7c816135a8565b9050919050565b60006020820190508181036000830152613a9c816135cb565b9050919050565b60006020820190508181036000830152613abc816135ee565b9050919050565b60006020820190508181036000830152613adc81613611565b9050919050565b60006020820190508181036000830152613afc81613634565b9050919050565b60006020820190508181036000830152613b1c81613657565b9050919050565b60006020820190508181036000830152613b3c8161367a565b9050919050565b60006020820190508181036000830152613b5c8161369d565b9050919050565b60006020820190508181036000830152613b7c816136c0565b9050919050565b60006020820190508181036000830152613b9c816136e3565b9050919050565b60006020820190508181036000830152613bbc81613706565b9050919050565b60006020820190508181036000830152613bdc81613729565b9050919050565b60006020820190508181036000830152613bfc8161374c565b9050919050565b60006020820190508181036000830152613c1c8161376f565b9050919050565b6000602082019050613c386000830184613792565b92915050565b6000613c48613c59565b9050613c548282613f50565b919050565b6000604051905090565b600067ffffffffffffffff821115613c7e57613c7d6140c8565b5b613c87826140f7565b9050602081019050919050565b600067ffffffffffffffff821115613caf57613cae6140c8565b5b613cb8826140f7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d2882613eae565b9150613d3383613eae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d6857613d6761403b565b5b828201905092915050565b6000613d7e82613eae565b9150613d8983613eae565b925082613d9957613d9861406a565b5b828204905092915050565b6000613daf82613eae565b9150613dba83613eae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613df357613df261403b565b5b828202905092915050565b6000613e0982613eae565b9150613e1483613eae565b925082821015613e2757613e2661403b565b5b828203905092915050565b6000613e3d82613e8e565b9050919050565b6000613e4f82613e8e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613ec382613eca565b9050919050565b6000613ed582613e8e565b9050919050565b82818337600083830152505050565b60005b83811015613f09578082015181840152602081019050613eee565b83811115613f18576000848401525b50505050565b60006002820490506001821680613f3657607f821691505b60208210811415613f4a57613f49614099565b5b50919050565b613f59826140f7565b810181811067ffffffffffffffff82111715613f7857613f776140c8565b5b80604052505050565b6000613f8c82613eae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fbf57613fbe61403b565b5b600182019050919050565b6000613fd582613fee565b9050919050565b6000613fe782613fee565b9050919050565b6000613ff982614108565b9050919050565b6000819050919050565b600061401582613eae565b915061402083613eae565b9250826140305761402f61406a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4578636565647320546f74616c20537570706c79000000000000000000000000600082015250565b7f4e65656420746f2068617665206d6f7265207468616e2031204f63746f48656460008201527f7a20746f207374617274206272656564696e6700000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f2062726565642061204260008201527f616279204b72616b656e00000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f7520646f206e6f74206861766520656e6f75676820494e4b7a2100000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67207769746820494e4b7a206973206e6f7420617661696c616260008201527f6c65207965742100000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f20736d61727420636f6e74726163747320616c6c6f776564210000000000600082015250565b61475681613e32565b811461476157600080fd5b50565b61476d81613e56565b811461477857600080fd5b50565b61478481613e62565b811461478f57600080fd5b50565b61479b81613eae565b81146147a657600080fd5b5056fea2646970667358221220bbbcf9e71735e50712b4f68263dd957b47726567dde5f6efbe9e4ed1d642b29664736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d52684c46346d486866714a763358514537744532724659464a6b326350425943727867556f614169386256362f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5455424638507079336f763736464b677370516454336136715841384d456472316e774c6a613147684e625a2f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseTokenURI (string): https://ipfs.io/ipfs/QmRhLF4mHhfqJv3XQE7tE2rFYFJk2cPBYCrxgUoaAi8bV6/
Arg [1] : baseContractURI (string): https://ipfs.io/ipfs/QmTUBF8Ppy3ov76FKgspQdT3a6qXA8MEdr1nwLja1GhNbZ/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [3] : 68747470733a2f2f697066732e696f2f697066732f516d52684c46346d486866
Arg [4] : 714a763358514537744532724659464a6b326350425943727867556f61416938
Arg [5] : 6256362f00000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [7] : 68747470733a2f2f697066732e696f2f697066732f516d545542463850707933
Arg [8] : 6f763736464b677370516454336136715841384d456472316e774c6a61314768
Arg [9] : 4e625a2f00000000000000000000000000000000000000000000000000000000


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.