ETH Price: $2,893.09 (-10.21%)
Gas: 13 Gwei

Token

OutlandishCreatures (OC)
 

Overview

Max Total Supply

2,222 OC

Holders

2,074

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 OC
0x09dd64318580671f4fc61e97d3887417ed58be6c
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:
OutlandishCreatures

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : OutlandishCreatures.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {ERC721A} from "erc721a/contracts/ERC721A.sol";

contract OutlandishCreatures is ERC721A, Ownable {

    enum MintState {
        Closed,
        Whitelist,
        Public
    }

    uint256 public MAX_SUPPLY = 6666;
    uint256 public WL_TOKEN_PRICE = 0.005 ether;
    uint256 public PUBLIC_TOKEN_PRICE = 0.008 ether;
    uint256 public PUBLIC_MINT_LIMIT = 5;
    uint256 public WHITELIST_MINT_LIMIT = 2;

    MintState public mintState;
    bytes32 public merkleRoot;

    string public baseURI;

    constructor(
        string memory baseURI_,
        address recipient,
        uint256 allocation
    ) ERC721A("OutlandishCreatures", "OC") {
        if (allocation < MAX_SUPPLY && allocation != 0)
            _safeMint(recipient, allocation);

        baseURI = baseURI_;
    }

    // Overrides

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    // Modifiers

    modifier onlyExternallyOwnedAccount() {
        require(tx.origin == msg.sender, "Not externally owned account");
        _;
    }

    modifier onlyValidProof(bytes32[] calldata proof) {
        bool valid = MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(msg.sender)));
        require(valid, "Invalid proof");
        _;
    }

    // Token

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

    function setBaseURI(string memory uri) external onlyOwner {
        baseURI = uri;
    }

    // Sale

    function setMerkleRoot(bytes32 _root) external onlyOwner {
        merkleRoot = _root;
    }

    function setSaleState(uint256 newState) external onlyOwner {
        if (newState == 0) mintState = MintState.Closed;
        else if (newState == 1) mintState = MintState.Whitelist;
        else if (newState == 2) mintState = MintState.Public;
        else revert("Mint state does not exist");
    }

    function tokensRemainingForAddress(address who) public view returns (uint256) {
        if (mintState == MintState.Whitelist)
            return WHITELIST_MINT_LIMIT - _numberMinted(who);
        else if (mintState == MintState.Public)
            return PUBLIC_MINT_LIMIT + _getAux(who) - _numberMinted(who);
        else revert("Mint state mismatch");
    }

    function mintPublic(uint256 quantity) external payable onlyExternallyOwnedAccount {
        require(this.totalSupply() + quantity <= MAX_SUPPLY, "Mint exceeds max supply");
        require(mintState == MintState.Public, "Mint state mismatch");
        require(msg.value >= PUBLIC_TOKEN_PRICE * quantity, "Insufficient value");
        require(tokensRemainingForAddress(msg.sender) >= quantity, "Mint limit for user reached");

        _mint(msg.sender, quantity);
    }

    function mintWhitelist(bytes32[] calldata proof, uint256 quantity)
        external
        payable
        onlyExternallyOwnedAccount
        onlyValidProof(proof)
    {
        require(this.totalSupply() + quantity <= MAX_SUPPLY, "Mint exceeds max supply");
        require(mintState == MintState.Whitelist, "Sale state mismatch");
        require(msg.value >= WL_TOKEN_PRICE * quantity, "Insufficient value");
        require(tokensRemainingForAddress(msg.sender) >= quantity, "Mint limit for user reached");

        _mint(msg.sender, quantity);

        _setAux(msg.sender, _getAux(msg.sender) + uint64(quantity));
    }

    function batchMint(
        address[] calldata recipients,
        uint256[] calldata quantities
    ) external onlyOwner {
        require(recipients.length == quantities.length, "Arguments length mismatch");
        uint256 supply = this.totalSupply();

        for (uint256 i; i < recipients.length; i++) {
            supply += quantities[i];
            require(supply <= MAX_SUPPLY, "Batch mint exceeds max supply");

            _mint(recipients[i], quantities[i]);
        }
    }

    // Edit Mint

    function setWLPrice(uint256 _newPrice) public onlyOwner {
        WL_TOKEN_PRICE = _newPrice;
    }

    function setPublicPrice(uint256 _newPrice) public onlyOwner {
        PUBLIC_TOKEN_PRICE = _newPrice;
    }

    function setSupply(uint256 _newSupply) public onlyOwner {
        MAX_SUPPLY = _newSupply;
    }

    function setPublicLimit(uint256 _newLimit) public onlyOwner {
        PUBLIC_MINT_LIMIT = _newLimit;
    }

    function setWLLimit(uint256 _newLimit) public onlyOwner {
        WHITELIST_MINT_LIMIT = _newLimit;
    }

    // Withdraw
 
    function withdrawToRecipients() external onlyOwner {
        uint256 balancePercentage = address(this).balance / 100;

        address owner           = 0x619298123929ff29870430Fd7bFd63d0c5BB36AF;
        address dev             = 0xbF5e7d8994E9f7C94E00Bc94a9249f511903EB3B;
        address marketingOne    = 0x6e82Ce36948f356Adcc9D110f7a7a0138272E5Ce;
        address marketingTwo    = 0x086B4bE6B51B208Db35d416f414Cc7282E84e5e4;

        address(owner          ).call{value: balancePercentage * 73}("");
        address(dev            ).call{value: balancePercentage * 10}("");
        address(marketingOne   ).call{value: balancePercentage * 10}("");
        address(marketingTwo   ).call{value: balancePercentage *  7}("");
    }
}

File 2 of 6 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

File 6 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"allocation","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintState","outputs":[{"internalType":"enum OutlandishCreatures.MintState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintWhitelist","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setPublicLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setWLLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setWLPrice","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"tokensRemainingForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawToRecipients","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611a0a6009556611c37937e08000600a55661c6bf526340000600b556005600c556002600d553480156200003757600080fd5b50604051620051cb380380620051cb83398181016040528101906200005d919062000890565b6040518060400160405280601381526020017f4f75746c616e64697368437265617475726573000000000000000000000000008152506040518060400160405280600281526020017f4f430000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e1929190620006fd565b508060039080519060200190620000fa929190620006fd565b506200010b6200018160201b60201c565b600081905550505062000133620001276200018a60201b60201c565b6200019260201b60201c565b6009548110801562000146575060008114155b156200015f576200015e82826200025860201b60201c565b5b826010908051906020019062000177929190620006fd565b5050505062000bfa565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200027a8282604051806020016040528060008152506200027e60201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620002ec576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000328576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200033d60008583866200056360201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1620003aa600185146200056960201b60201c565b901b60a042901b620003c2866200057360201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14620004d3575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200047f60008784806001019550876200057d60201b60201c565b620004b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821062000408578260005414620004cd57600080fd5b6200053f565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620004d4575b8160008190555050506200055d6000858386620006ef60201b60201c565b50505050565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005ab620006f560201b60201c565b8786866040518563ffffffff1660e01b8152600401620005cf949392919062000962565b602060405180830381600087803b158015620005ea57600080fd5b505af19250505080156200061e57506040513d601f19601f820116820180604052508101906200061b919062000864565b60015b6200069c573d806000811462000651576040519150601f19603f3d011682016040523d82523d6000602084013e62000656565b606091505b5060008151141562000694576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b8280546200070b9062000ad1565b90600052602060002090601f0160209004810192826200072f57600085556200077b565b82601f106200074a57805160ff19168380011785556200077b565b828001600101855582156200077b579182015b828111156200077a5782518255916020019190600101906200075d565b5b5090506200078a91906200078e565b5090565b5b80821115620007a95760008160009055506001016200078f565b5090565b6000620007c4620007be84620009df565b620009b6565b905082815260208101848484011115620007dd57600080fd5b620007ea84828562000a9b565b509392505050565b600081519050620008038162000bac565b92915050565b6000815190506200081a8162000bc6565b92915050565b600082601f8301126200083257600080fd5b815162000844848260208601620007ad565b91505092915050565b6000815190506200085e8162000be0565b92915050565b6000602082840312156200087757600080fd5b6000620008878482850162000809565b91505092915050565b600080600060608486031215620008a657600080fd5b600084015167ffffffffffffffff811115620008c157600080fd5b620008cf8682870162000820565b9350506020620008e286828701620007f2565b9250506040620008f5868287016200084d565b9150509250925092565b6200090a8162000a31565b82525050565b60006200091d8262000a15565b62000929818562000a20565b93506200093b81856020860162000a9b565b620009468162000b9b565b840191505092915050565b6200095c8162000a91565b82525050565b6000608082019050620009796000830187620008ff565b620009886020830186620008ff565b62000997604083018562000951565b8181036060830152620009ab818462000910565b905095945050505050565b6000620009c2620009d5565b9050620009d0828262000b07565b919050565b6000604051905090565b600067ffffffffffffffff821115620009fd57620009fc62000b6c565b5b62000a088262000b9b565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000a3e8262000a71565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000abb57808201518184015260208101905062000a9e565b8381111562000acb576000848401525b50505050565b6000600282049050600182168062000aea57607f821691505b6020821081141562000b015762000b0062000b3d565b5b50919050565b62000b128262000b9b565b810181811067ffffffffffffffff8211171562000b345762000b3362000b6c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000bb78162000a31565b811462000bc357600080fd5b50565b62000bd18162000a45565b811462000bdd57600080fd5b50565b62000beb8162000a91565b811462000bf757600080fd5b50565b6145c18062000c0a6000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063bceae77b116100ab578063efa9fc651161006f578063efa9fc65146107e4578063efd0cbf91461080d578063f2fde38b14610829578063f4ee6f9c14610852578063f6a5b8e61461087d57610225565b8063bceae77b146106eb578063c051e38a14610716578063c627525514610741578063c87b56dd1461076a578063e985e9c5146107a757610225565b80638da5cb5b116100f25780638da5cb5b1461062757806395d89b4114610652578063a22cb4651461067d578063a6d612f9146106a6578063b88d4fde146106c257610225565b8063715018a614610591578063763f8d12146105a8578063790b2f00146105d35780637cb64759146105fe57610225565b80632eb4a7ab116101b157806355f804b31161017557806355f804b31461049a5780636352211e146104c357806368573107146105005780636c0360eb1461052957806370a082311461055457610225565b80632eb4a7ab146103b557806332cb6b0c146103e0578063330e68151461040b5780633b4c4b251461044857806342842e0e1461047157610225565b8063095ea7b3116101f8578063095ea7b3146102f857806316db90551461032157806318160ddd14610338578063236376171461036357806323b872dd1461038c57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063084c4088146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061377b565b6108a6565b60405161025e9190613be7565b60405180910390f35b34801561027357600080fd5b5061027c610938565b6040516102899190613c38565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061380e565b6109ca565b6040516102c69190613b80565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061380e565b610a46565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613649565b610c1f565b005b34801561032d57600080fd5b50610336610dc6565b005b34801561034457600080fd5b5061034d611092565b60405161035a9190613dda565b60405180910390f35b34801561036f57600080fd5b5061038a6004803603810190610385919061380e565b6110a9565b005b34801561039857600080fd5b506103b360048036038101906103ae9190613543565b61112f565b005b3480156103c157600080fd5b506103ca61113f565b6040516103d79190613c02565b60405180910390f35b3480156103ec57600080fd5b506103f5611145565b6040516104029190613dda565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d91906134de565b61114b565b60405161043f9190613dda565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a919061380e565b6112f3565b005b34801561047d57600080fd5b5061049860048036038101906104939190613543565b611379565b005b3480156104a657600080fd5b506104c160048036038101906104bc91906137cd565b611399565b005b3480156104cf57600080fd5b506104ea60048036038101906104e5919061380e565b61142f565b6040516104f79190613b80565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190613685565b611441565b005b34801561053557600080fd5b5061053e6116d8565b60405161054b9190613c38565b60405180910390f35b34801561056057600080fd5b5061057b600480360381019061057691906134de565b611766565b6040516105889190613dda565b60405180910390f35b34801561059d57600080fd5b506105a661181f565b005b3480156105b457600080fd5b506105bd6118a7565b6040516105ca9190613dda565b60405180910390f35b3480156105df57600080fd5b506105e86118ad565b6040516105f59190613dda565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190613752565b6118b3565b005b34801561063357600080fd5b5061063c611939565b6040516106499190613b80565b60405180910390f35b34801561065e57600080fd5b50610667611963565b6040516106749190613c38565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f919061360d565b6119f5565b005b6106c060048036038101906106bb91906136fa565b611b6d565b005b3480156106ce57600080fd5b506106e960048036038101906106e49190613592565b611eee565b005b3480156106f757600080fd5b50610700611f61565b60405161070d9190613dda565b60405180910390f35b34801561072257600080fd5b5061072b611f67565b6040516107389190613c1d565b60405180910390f35b34801561074d57600080fd5b506107686004803603810190610763919061380e565b611f7a565b005b34801561077657600080fd5b50610791600480360381019061078c919061380e565b612000565b60405161079e9190613c38565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c99190613507565b61209f565b6040516107db9190613be7565b60405180910390f35b3480156107f057600080fd5b5061080b6004803603810190610806919061380e565b612133565b005b6108276004803603810190610822919061380e565b6121b9565b005b34801561083557600080fd5b50610850600480360381019061084b91906134de565b61245d565b005b34801561085e57600080fd5b50610867612555565b6040516108749190613dda565b60405180910390f35b34801561088957600080fd5b506108a4600480360381019061089f919061380e565b61255b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109315750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461094790614116565b80601f016020809104026020016040519081016040528092919081815260200182805461097390614116565b80156109c05780601f10610995576101008083540402835291602001916109c0565b820191906000526020600020905b8154815290600101906020018083116109a357829003601f168201915b5050505050905090565b60006109d5826125e1565b610a0b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a4e612640565b73ffffffffffffffffffffffffffffffffffffffff16610a6c611939565b73ffffffffffffffffffffffffffffffffffffffff1614610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab990613d1a565b60405180910390fd5b6000811415610b21576000600e60006101000a81548160ff02191690836002811115610b17577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550610c1c565b6001811415610b80576001600e60006101000a81548160ff02191690836002811115610b76577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550610c1b565b6002811415610bdf576002600e60006101000a81548160ff02191690836002811115610bd5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550610c1a565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190613d3a565b60405180910390fd5b5b5b50565b6000610c2a82612648565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c92576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb1612716565b73ffffffffffffffffffffffffffffffffffffffff1614610d1457610cdd81610cd8612716565b61209f565b610d13576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610dce612640565b73ffffffffffffffffffffffffffffffffffffffff16610dec611939565b73ffffffffffffffffffffffffffffffffffffffff1614610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990613d1a565b60405180910390fd5b6000606447610e519190613f5e565b9050600073619298123929ff29870430fd7bfd63d0c5bb36af9050600073bf5e7d8994e9f7c94e00bc94a9249f511903eb3b90506000736e82ce36948f356adcc9d110f7a7a0138272e5ce9050600073086b4be6b51b208db35d416f414cc7282e84e5e490508373ffffffffffffffffffffffffffffffffffffffff16604986610edb9190613f8f565b604051610ee790613b6b565b60006040518083038185875af1925050503d8060008114610f24576040519150601f19603f3d011682016040523d82523d6000602084013e610f29565b606091505b5050508273ffffffffffffffffffffffffffffffffffffffff16600a86610f509190613f8f565b604051610f5c90613b6b565b60006040518083038185875af1925050503d8060008114610f99576040519150601f19603f3d011682016040523d82523d6000602084013e610f9e565b606091505b5050508173ffffffffffffffffffffffffffffffffffffffff16600a86610fc59190613f8f565b604051610fd190613b6b565b60006040518083038185875af1925050503d806000811461100e576040519150601f19603f3d011682016040523d82523d6000602084013e611013565b606091505b5050508073ffffffffffffffffffffffffffffffffffffffff1660078661103a9190613f8f565b60405161104690613b6b565b60006040518083038185875af1925050503d8060008114611083576040519150601f19603f3d011682016040523d82523d6000602084013e611088565b606091505b5050505050505050565b600061109c61271e565b6001546000540303905090565b6110b1612640565b73ffffffffffffffffffffffffffffffffffffffff166110cf611939565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90613d1a565b60405180910390fd5b80600c8190555050565b61113a838383612727565b505050565b600f5481565b60095481565b600060016002811115611187577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600e60009054906101000a900460ff1660028111156111cf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156111f2576111de82612ad1565b600d546111eb9190613fe9565b90506112ee565b60028081111561122b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600e60009054906101000a900460ff166002811115611273577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156112b35761128282612ad1565b61128b83612b28565b67ffffffffffffffff16600c546112a29190613eca565b6112ac9190613fe9565b90506112ee565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590613cfa565b60405180910390fd5b919050565b6112fb612640565b73ffffffffffffffffffffffffffffffffffffffff16611319611939565b73ffffffffffffffffffffffffffffffffffffffff161461136f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136690613d1a565b60405180910390fd5b8060098190555050565b61139483838360405180602001604052806000815250611eee565b505050565b6113a1612640565b73ffffffffffffffffffffffffffffffffffffffff166113bf611939565b73ffffffffffffffffffffffffffffffffffffffff1614611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90613d1a565b60405180910390fd5b806010908051906020019061142b9291906131fa565b5050565b600061143a82612648565b9050919050565b611449612640565b73ffffffffffffffffffffffffffffffffffffffff16611467611939565b73ffffffffffffffffffffffffffffffffffffffff16146114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490613d1a565b60405180910390fd5b818190508484905014611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90613d9a565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561154d57600080fd5b505afa158015611561573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115859190613837565b905060005b858590508110156116d0578383828181106115ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135826115e09190613eca565b9150600954821115611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90613d7a565b60405180910390fd5b6116bd868683818110611663577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061167891906134de565b8585848181106116b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135612b75565b80806116c890614179565b91505061158a565b505050505050565b601080546116e590614116565b80601f016020809104026020016040519081016040528092919081815260200182805461171190614116565b801561175e5780601f106117335761010080835404028352916020019161175e565b820191906000526020600020905b81548152906001019060200180831161174157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ce576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611827612640565b73ffffffffffffffffffffffffffffffffffffffff16611845611939565b73ffffffffffffffffffffffffffffffffffffffff161461189b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189290613d1a565b60405180910390fd5b6118a56000612d49565b565b600b5481565b600d5481565b6118bb612640565b73ffffffffffffffffffffffffffffffffffffffff166118d9611939565b73ffffffffffffffffffffffffffffffffffffffff161461192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690613d1a565b60405180910390fd5b80600f8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461197290614116565b80601f016020809104026020016040519081016040528092919081815260200182805461199e90614116565b80156119eb5780601f106119c0576101008083540402835291602001916119eb565b820191906000526020600020905b8154815290600101906020018083116119ce57829003601f168201915b5050505050905090565b6119fd612716565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a62576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a6f612716565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b1c612716565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b619190613be7565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd290613cba565b60405180910390fd5b82826000611c53838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5433604051602001611c389190613b2c565b60405160208183030381529060405280519060200120612e0f565b905080611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90613dba565b60405180910390fd5b600954843073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611cdf57600080fd5b505afa158015611cf3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d179190613837565b611d219190613eca565b1115611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5990613c5a565b60405180910390fd5b60016002811115611d9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600e60009054906101000a900460ff166002811115611de4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1b90613c7a565b60405180910390fd5b83600a54611e329190613f8f565b341015611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b90613d5a565b60405180910390fd5b83611e7e3361114b565b1015611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690613cda565b60405180910390fd5b611ec93385612b75565b611ee63385611ed733612b28565b611ee19190613f20565b612e26565b505050505050565b611ef9848484612727565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f5b57611f2484848484612edc565b611f5a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b600e60009054906101000a900460ff1681565b611f82612640565b73ffffffffffffffffffffffffffffffffffffffff16611fa0611939565b73ffffffffffffffffffffffffffffffffffffffff1614611ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fed90613d1a565b60405180910390fd5b80600b8190555050565b606061200b826125e1565b612041576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061204b61303c565b905060008151141561206c5760405180602001604052806000815250612097565b80612076846130ce565b604051602001612087929190613b47565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61213b612640565b73ffffffffffffffffffffffffffffffffffffffff16612159611939565b73ffffffffffffffffffffffffffffffffffffffff16146121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a690613d1a565b60405180910390fd5b80600d8190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221e90613cba565b60405180910390fd5b600954813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561227157600080fd5b505afa158015612285573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a99190613837565b6122b39190613eca565b11156122f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122eb90613c5a565b60405180910390fd5b60028081111561232d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600e60009054906101000a900460ff166002811115612375577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146123b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ac90613cfa565b60405180910390fd5b80600b546123c39190613f8f565b341015612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc90613d5a565b60405180910390fd5b8061240f3361114b565b1015612450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244790613cda565b60405180910390fd5b61245a3382612b75565b50565b612465612640565b73ffffffffffffffffffffffffffffffffffffffff16612483611939565b73ffffffffffffffffffffffffffffffffffffffff16146124d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d090613d1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254090613c9a565b60405180910390fd5b61255281612d49565b50565b600a5481565b612563612640565b73ffffffffffffffffffffffffffffffffffffffff16612581611939565b73ffffffffffffffffffffffffffffffffffffffff16146125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce90613d1a565b60405180910390fd5b80600a8190555050565b6000816125ec61271e565b111580156125fb575060005482105b8015612639575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000808290508061265761271e565b116126df576000548110156126de5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156126dc575b60008114156126d25760046000836001900393508381526020019081526020016000205490506126a7565b8092505050612711565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061273282612648565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612799576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127ba612716565b73ffffffffffffffffffffffffffffffffffffffff1614806127e957506127e8856127e3612716565b61209f565b5b8061282e57506127f7612716565b73ffffffffffffffffffffffffffffffffffffffff16612816846109ca565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612867576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128ce576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128db8585856001613128565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6129d88661312e565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612a62576000600184019050600060046000838152602001908152602001600020541415612a60576000548114612a5f578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612aca8585856001613138565b5050505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612c1d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c2a6000848385613128565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612c8f6001841461313e565b901b60a042901b612c9f8561312e565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612cc557816000819055505050612d446000848385613138565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082612e1c8584613148565b1490509392505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f02612716565b8786866040518563ffffffff1660e01b8152600401612f249493929190613b9b565b602060405180830381600087803b158015612f3e57600080fd5b505af1925050508015612f6f57506040513d601f19601f82011682018060405250810190612f6c91906137a4565b60015b612fe9573d8060008114612f9f576040519150601f19603f3d011682016040523d82523d6000602084013e612fa4565b606091505b50600081511415612fe1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461304b90614116565b80601f016020809104026020016040519081016040528092919081815260200182805461307790614116565b80156130c45780601f10613099576101008083540402835291602001916130c4565b820191906000526020600020905b8154815290600101906020018083116130a757829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561311457600183039250600a81066030018353600a810490506130f4565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b6000819050919050565b60008082905060005b84518110156131d8576000858281518110613195577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116131b7576131b083826131e3565b92506131c4565b6131c181846131e3565b92505b5080806131d090614179565b915050613151565b508091505092915050565b600082600052816020526040600020905092915050565b82805461320690614116565b90600052602060002090601f016020900481019282613228576000855561326f565b82601f1061324157805160ff191683800117855561326f565b8280016001018555821561326f579182015b8281111561326e578251825591602001919060010190613253565b5b50905061327c9190613280565b5090565b5b80821115613299576000816000905550600101613281565b5090565b60006132b06132ab84613e1a565b613df5565b9050828152602081018484840111156132c857600080fd5b6132d38482856140d4565b509392505050565b60006132ee6132e984613e4b565b613df5565b90508281526020810184848401111561330657600080fd5b6133118482856140d4565b509392505050565b60008135905061332881614518565b92915050565b60008083601f84011261334057600080fd5b8235905067ffffffffffffffff81111561335957600080fd5b60208301915083602082028301111561337157600080fd5b9250929050565b60008083601f84011261338a57600080fd5b8235905067ffffffffffffffff8111156133a357600080fd5b6020830191508360208202830111156133bb57600080fd5b9250929050565b60008083601f8401126133d457600080fd5b8235905067ffffffffffffffff8111156133ed57600080fd5b60208301915083602082028301111561340557600080fd5b9250929050565b60008135905061341b8161452f565b92915050565b60008135905061343081614546565b92915050565b6000813590506134458161455d565b92915050565b60008151905061345a8161455d565b92915050565b600082601f83011261347157600080fd5b813561348184826020860161329d565b91505092915050565b600082601f83011261349b57600080fd5b81356134ab8482602086016132db565b91505092915050565b6000813590506134c381614574565b92915050565b6000815190506134d881614574565b92915050565b6000602082840312156134f057600080fd5b60006134fe84828501613319565b91505092915050565b6000806040838503121561351a57600080fd5b600061352885828601613319565b925050602061353985828601613319565b9150509250929050565b60008060006060848603121561355857600080fd5b600061356686828701613319565b935050602061357786828701613319565b9250506040613588868287016134b4565b9150509250925092565b600080600080608085870312156135a857600080fd5b60006135b687828801613319565b94505060206135c787828801613319565b93505060406135d8878288016134b4565b925050606085013567ffffffffffffffff8111156135f557600080fd5b61360187828801613460565b91505092959194509250565b6000806040838503121561362057600080fd5b600061362e85828601613319565b925050602061363f8582860161340c565b9150509250929050565b6000806040838503121561365c57600080fd5b600061366a85828601613319565b925050602061367b858286016134b4565b9150509250929050565b6000806000806040858703121561369b57600080fd5b600085013567ffffffffffffffff8111156136b557600080fd5b6136c18782880161332e565b9450945050602085013567ffffffffffffffff8111156136e057600080fd5b6136ec878288016133c2565b925092505092959194509250565b60008060006040848603121561370f57600080fd5b600084013567ffffffffffffffff81111561372957600080fd5b61373586828701613378565b93509350506020613748868287016134b4565b9150509250925092565b60006020828403121561376457600080fd5b600061377284828501613421565b91505092915050565b60006020828403121561378d57600080fd5b600061379b84828501613436565b91505092915050565b6000602082840312156137b657600080fd5b60006137c48482850161344b565b91505092915050565b6000602082840312156137df57600080fd5b600082013567ffffffffffffffff8111156137f957600080fd5b6138058482850161348a565b91505092915050565b60006020828403121561382057600080fd5b600061382e848285016134b4565b91505092915050565b60006020828403121561384957600080fd5b6000613857848285016134c9565b91505092915050565b6138698161401d565b82525050565b61388061387b8261401d565b6141c2565b82525050565b61388f8161402f565b82525050565b61389e8161403b565b82525050565b60006138af82613e7c565b6138b98185613e92565b93506138c98185602086016140e3565b6138d2816142d1565b840191505092915050565b6138e6816140c2565b82525050565b60006138f782613e87565b6139018185613eae565b93506139118185602086016140e3565b61391a816142d1565b840191505092915050565b600061393082613e87565b61393a8185613ebf565b935061394a8185602086016140e3565b80840191505092915050565b6000613963601783613eae565b915061396e826142ef565b602082019050919050565b6000613986601383613eae565b915061399182614318565b602082019050919050565b60006139a9602683613eae565b91506139b482614341565b604082019050919050565b60006139cc601c83613eae565b91506139d782614390565b602082019050919050565b60006139ef601b83613eae565b91506139fa826143b9565b602082019050919050565b6000613a12601383613eae565b9150613a1d826143e2565b602082019050919050565b6000613a35602083613eae565b9150613a408261440b565b602082019050919050565b6000613a58601983613eae565b9150613a6382614434565b602082019050919050565b6000613a7b601283613eae565b9150613a868261445d565b602082019050919050565b6000613a9e600083613ea3565b9150613aa982614486565b600082019050919050565b6000613ac1601d83613eae565b9150613acc82614489565b602082019050919050565b6000613ae4601983613eae565b9150613aef826144b2565b602082019050919050565b6000613b07600d83613eae565b9150613b12826144db565b602082019050919050565b613b26816140a4565b82525050565b6000613b38828461386f565b60148201915081905092915050565b6000613b538285613925565b9150613b5f8284613925565b91508190509392505050565b6000613b7682613a91565b9150819050919050565b6000602082019050613b956000830184613860565b92915050565b6000608082019050613bb06000830187613860565b613bbd6020830186613860565b613bca6040830185613b1d565b8181036060830152613bdc81846138a4565b905095945050505050565b6000602082019050613bfc6000830184613886565b92915050565b6000602082019050613c176000830184613895565b92915050565b6000602082019050613c3260008301846138dd565b92915050565b60006020820190508181036000830152613c5281846138ec565b905092915050565b60006020820190508181036000830152613c7381613956565b9050919050565b60006020820190508181036000830152613c9381613979565b9050919050565b60006020820190508181036000830152613cb38161399c565b9050919050565b60006020820190508181036000830152613cd3816139bf565b9050919050565b60006020820190508181036000830152613cf3816139e2565b9050919050565b60006020820190508181036000830152613d1381613a05565b9050919050565b60006020820190508181036000830152613d3381613a28565b9050919050565b60006020820190508181036000830152613d5381613a4b565b9050919050565b60006020820190508181036000830152613d7381613a6e565b9050919050565b60006020820190508181036000830152613d9381613ab4565b9050919050565b60006020820190508181036000830152613db381613ad7565b9050919050565b60006020820190508181036000830152613dd381613afa565b9050919050565b6000602082019050613def6000830184613b1d565b92915050565b6000613dff613e10565b9050613e0b8282614148565b919050565b6000604051905090565b600067ffffffffffffffff821115613e3557613e346142a2565b5b613e3e826142d1565b9050602081019050919050565b600067ffffffffffffffff821115613e6657613e656142a2565b5b613e6f826142d1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ed5826140a4565b9150613ee0836140a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f1557613f146141e6565b5b828201905092915050565b6000613f2b826140ae565b9150613f36836140ae565b92508267ffffffffffffffff03821115613f5357613f526141e6565b5b828201905092915050565b6000613f69826140a4565b9150613f74836140a4565b925082613f8457613f83614215565b5b828204905092915050565b6000613f9a826140a4565b9150613fa5836140a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fde57613fdd6141e6565b5b828202905092915050565b6000613ff4826140a4565b9150613fff836140a4565b925082821015614012576140116141e6565b5b828203905092915050565b600061402882614084565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061407f82614504565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b60006140cd82614071565b9050919050565b82818337600083830152505050565b60005b838110156141015780820151818401526020810190506140e6565b83811115614110576000848401525b50505050565b6000600282049050600182168061412e57607f821691505b6020821081141561414257614141614273565b5b50919050565b614151826142d1565b810181811067ffffffffffffffff821117156141705761416f6142a2565b5b80604052505050565b6000614184826140a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141b7576141b66141e6565b5b600182019050919050565b60006141cd826141d4565b9050919050565b60006141df826142e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e742065786365656473206d617820737570706c79000000000000000000600082015250565b7f53616c65207374617465206d69736d6174636800000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742065787465726e616c6c79206f776e6564206163636f756e7400000000600082015250565b7f4d696e74206c696d697420666f72207573657220726561636865640000000000600082015250565b7f4d696e74207374617465206d69736d6174636800000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e7420737461746520646f6573206e6f7420657869737400000000000000600082015250565b7f496e73756666696369656e742076616c75650000000000000000000000000000600082015250565b50565b7f4261746368206d696e742065786365656473206d617820737570706c79000000600082015250565b7f417267756d656e7473206c656e677468206d69736d6174636800000000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6003811061451557614514614244565b5b50565b6145218161401d565b811461452c57600080fd5b50565b6145388161402f565b811461454357600080fd5b50565b61454f8161403b565b811461455a57600080fd5b50565b61456681614045565b811461457157600080fd5b50565b61457d816140a4565b811461458857600080fd5b5056fea2646970667358221220d4b88f7f493eac2ec062a3692bed04012de5f26bc0a685e2c22e66f6e51e951064736f6c634300080400330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000619298123929ff29870430fd7bfd63d0c5bb36af0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f697066732e696f2f697066732f626166796265696573776733356970776e69676363366472757562737633727a67796c796d746d676476796578627473786f70767a6134356769792f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063bceae77b116100ab578063efa9fc651161006f578063efa9fc65146107e4578063efd0cbf91461080d578063f2fde38b14610829578063f4ee6f9c14610852578063f6a5b8e61461087d57610225565b8063bceae77b146106eb578063c051e38a14610716578063c627525514610741578063c87b56dd1461076a578063e985e9c5146107a757610225565b80638da5cb5b116100f25780638da5cb5b1461062757806395d89b4114610652578063a22cb4651461067d578063a6d612f9146106a6578063b88d4fde146106c257610225565b8063715018a614610591578063763f8d12146105a8578063790b2f00146105d35780637cb64759146105fe57610225565b80632eb4a7ab116101b157806355f804b31161017557806355f804b31461049a5780636352211e146104c357806368573107146105005780636c0360eb1461052957806370a082311461055457610225565b80632eb4a7ab146103b557806332cb6b0c146103e0578063330e68151461040b5780633b4c4b251461044857806342842e0e1461047157610225565b8063095ea7b3116101f8578063095ea7b3146102f857806316db90551461032157806318160ddd14610338578063236376171461036357806323b872dd1461038c57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063084c4088146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061377b565b6108a6565b60405161025e9190613be7565b60405180910390f35b34801561027357600080fd5b5061027c610938565b6040516102899190613c38565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061380e565b6109ca565b6040516102c69190613b80565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061380e565b610a46565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613649565b610c1f565b005b34801561032d57600080fd5b50610336610dc6565b005b34801561034457600080fd5b5061034d611092565b60405161035a9190613dda565b60405180910390f35b34801561036f57600080fd5b5061038a6004803603810190610385919061380e565b6110a9565b005b34801561039857600080fd5b506103b360048036038101906103ae9190613543565b61112f565b005b3480156103c157600080fd5b506103ca61113f565b6040516103d79190613c02565b60405180910390f35b3480156103ec57600080fd5b506103f5611145565b6040516104029190613dda565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d91906134de565b61114b565b60405161043f9190613dda565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a919061380e565b6112f3565b005b34801561047d57600080fd5b5061049860048036038101906104939190613543565b611379565b005b3480156104a657600080fd5b506104c160048036038101906104bc91906137cd565b611399565b005b3480156104cf57600080fd5b506104ea60048036038101906104e5919061380e565b61142f565b6040516104f79190613b80565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190613685565b611441565b005b34801561053557600080fd5b5061053e6116d8565b60405161054b9190613c38565b60405180910390f35b34801561056057600080fd5b5061057b600480360381019061057691906134de565b611766565b6040516105889190613dda565b60405180910390f35b34801561059d57600080fd5b506105a661181f565b005b3480156105b457600080fd5b506105bd6118a7565b6040516105ca9190613dda565b60405180910390f35b3480156105df57600080fd5b506105e86118ad565b6040516105f59190613dda565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190613752565b6118b3565b005b34801561063357600080fd5b5061063c611939565b6040516106499190613b80565b60405180910390f35b34801561065e57600080fd5b50610667611963565b6040516106749190613c38565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f919061360d565b6119f5565b005b6106c060048036038101906106bb91906136fa565b611b6d565b005b3480156106ce57600080fd5b506106e960048036038101906106e49190613592565b611eee565b005b3480156106f757600080fd5b50610700611f61565b60405161070d9190613dda565b60405180910390f35b34801561072257600080fd5b5061072b611f67565b6040516107389190613c1d565b60405180910390f35b34801561074d57600080fd5b506107686004803603810190610763919061380e565b611f7a565b005b34801561077657600080fd5b50610791600480360381019061078c919061380e565b612000565b60405161079e9190613c38565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c99190613507565b61209f565b6040516107db9190613be7565b60405180910390f35b3480156107f057600080fd5b5061080b6004803603810190610806919061380e565b612133565b005b6108276004803603810190610822919061380e565b6121b9565b005b34801561083557600080fd5b50610850600480360381019061084b91906134de565b61245d565b005b34801561085e57600080fd5b50610867612555565b6040516108749190613dda565b60405180910390f35b34801561088957600080fd5b506108a4600480360381019061089f919061380e565b61255b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109315750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461094790614116565b80601f016020809104026020016040519081016040528092919081815260200182805461097390614116565b80156109c05780601f10610995576101008083540402835291602001916109c0565b820191906000526020600020905b8154815290600101906020018083116109a357829003601f168201915b5050505050905090565b60006109d5826125e1565b610a0b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a4e612640565b73ffffffffffffffffffffffffffffffffffffffff16610a6c611939565b73ffffffffffffffffffffffffffffffffffffffff1614610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab990613d1a565b60405180910390fd5b6000811415610b21576000600e60006101000a81548160ff02191690836002811115610b17577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550610c1c565b6001811415610b80576001600e60006101000a81548160ff02191690836002811115610b76577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550610c1b565b6002811415610bdf576002600e60006101000a81548160ff02191690836002811115610bd5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550610c1a565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190613d3a565b60405180910390fd5b5b5b50565b6000610c2a82612648565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c92576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb1612716565b73ffffffffffffffffffffffffffffffffffffffff1614610d1457610cdd81610cd8612716565b61209f565b610d13576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610dce612640565b73ffffffffffffffffffffffffffffffffffffffff16610dec611939565b73ffffffffffffffffffffffffffffffffffffffff1614610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990613d1a565b60405180910390fd5b6000606447610e519190613f5e565b9050600073619298123929ff29870430fd7bfd63d0c5bb36af9050600073bf5e7d8994e9f7c94e00bc94a9249f511903eb3b90506000736e82ce36948f356adcc9d110f7a7a0138272e5ce9050600073086b4be6b51b208db35d416f414cc7282e84e5e490508373ffffffffffffffffffffffffffffffffffffffff16604986610edb9190613f8f565b604051610ee790613b6b565b60006040518083038185875af1925050503d8060008114610f24576040519150601f19603f3d011682016040523d82523d6000602084013e610f29565b606091505b5050508273ffffffffffffffffffffffffffffffffffffffff16600a86610f509190613f8f565b604051610f5c90613b6b565b60006040518083038185875af1925050503d8060008114610f99576040519150601f19603f3d011682016040523d82523d6000602084013e610f9e565b606091505b5050508173ffffffffffffffffffffffffffffffffffffffff16600a86610fc59190613f8f565b604051610fd190613b6b565b60006040518083038185875af1925050503d806000811461100e576040519150601f19603f3d011682016040523d82523d6000602084013e611013565b606091505b5050508073ffffffffffffffffffffffffffffffffffffffff1660078661103a9190613f8f565b60405161104690613b6b565b60006040518083038185875af1925050503d8060008114611083576040519150601f19603f3d011682016040523d82523d6000602084013e611088565b606091505b5050505050505050565b600061109c61271e565b6001546000540303905090565b6110b1612640565b73ffffffffffffffffffffffffffffffffffffffff166110cf611939565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90613d1a565b60405180910390fd5b80600c8190555050565b61113a838383612727565b505050565b600f5481565b60095481565b600060016002811115611187577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600e60009054906101000a900460ff1660028111156111cf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156111f2576111de82612ad1565b600d546111eb9190613fe9565b90506112ee565b60028081111561122b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600e60009054906101000a900460ff166002811115611273577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156112b35761128282612ad1565b61128b83612b28565b67ffffffffffffffff16600c546112a29190613eca565b6112ac9190613fe9565b90506112ee565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590613cfa565b60405180910390fd5b919050565b6112fb612640565b73ffffffffffffffffffffffffffffffffffffffff16611319611939565b73ffffffffffffffffffffffffffffffffffffffff161461136f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136690613d1a565b60405180910390fd5b8060098190555050565b61139483838360405180602001604052806000815250611eee565b505050565b6113a1612640565b73ffffffffffffffffffffffffffffffffffffffff166113bf611939565b73ffffffffffffffffffffffffffffffffffffffff1614611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90613d1a565b60405180910390fd5b806010908051906020019061142b9291906131fa565b5050565b600061143a82612648565b9050919050565b611449612640565b73ffffffffffffffffffffffffffffffffffffffff16611467611939565b73ffffffffffffffffffffffffffffffffffffffff16146114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490613d1a565b60405180910390fd5b818190508484905014611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90613d9a565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561154d57600080fd5b505afa158015611561573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115859190613837565b905060005b858590508110156116d0578383828181106115ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135826115e09190613eca565b9150600954821115611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90613d7a565b60405180910390fd5b6116bd868683818110611663577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061167891906134de565b8585848181106116b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135612b75565b80806116c890614179565b91505061158a565b505050505050565b601080546116e590614116565b80601f016020809104026020016040519081016040528092919081815260200182805461171190614116565b801561175e5780601f106117335761010080835404028352916020019161175e565b820191906000526020600020905b81548152906001019060200180831161174157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ce576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611827612640565b73ffffffffffffffffffffffffffffffffffffffff16611845611939565b73ffffffffffffffffffffffffffffffffffffffff161461189b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189290613d1a565b60405180910390fd5b6118a56000612d49565b565b600b5481565b600d5481565b6118bb612640565b73ffffffffffffffffffffffffffffffffffffffff166118d9611939565b73ffffffffffffffffffffffffffffffffffffffff161461192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690613d1a565b60405180910390fd5b80600f8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461197290614116565b80601f016020809104026020016040519081016040528092919081815260200182805461199e90614116565b80156119eb5780601f106119c0576101008083540402835291602001916119eb565b820191906000526020600020905b8154815290600101906020018083116119ce57829003601f168201915b5050505050905090565b6119fd612716565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a62576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a6f612716565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b1c612716565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b619190613be7565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd290613cba565b60405180910390fd5b82826000611c53838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5433604051602001611c389190613b2c565b60405160208183030381529060405280519060200120612e0f565b905080611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90613dba565b60405180910390fd5b600954843073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611cdf57600080fd5b505afa158015611cf3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d179190613837565b611d219190613eca565b1115611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5990613c5a565b60405180910390fd5b60016002811115611d9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600e60009054906101000a900460ff166002811115611de4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1b90613c7a565b60405180910390fd5b83600a54611e329190613f8f565b341015611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b90613d5a565b60405180910390fd5b83611e7e3361114b565b1015611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690613cda565b60405180910390fd5b611ec93385612b75565b611ee63385611ed733612b28565b611ee19190613f20565b612e26565b505050505050565b611ef9848484612727565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f5b57611f2484848484612edc565b611f5a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b600e60009054906101000a900460ff1681565b611f82612640565b73ffffffffffffffffffffffffffffffffffffffff16611fa0611939565b73ffffffffffffffffffffffffffffffffffffffff1614611ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fed90613d1a565b60405180910390fd5b80600b8190555050565b606061200b826125e1565b612041576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061204b61303c565b905060008151141561206c5760405180602001604052806000815250612097565b80612076846130ce565b604051602001612087929190613b47565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61213b612640565b73ffffffffffffffffffffffffffffffffffffffff16612159611939565b73ffffffffffffffffffffffffffffffffffffffff16146121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a690613d1a565b60405180910390fd5b80600d8190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221e90613cba565b60405180910390fd5b600954813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561227157600080fd5b505afa158015612285573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a99190613837565b6122b39190613eca565b11156122f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122eb90613c5a565b60405180910390fd5b60028081111561232d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600e60009054906101000a900460ff166002811115612375577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146123b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ac90613cfa565b60405180910390fd5b80600b546123c39190613f8f565b341015612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc90613d5a565b60405180910390fd5b8061240f3361114b565b1015612450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244790613cda565b60405180910390fd5b61245a3382612b75565b50565b612465612640565b73ffffffffffffffffffffffffffffffffffffffff16612483611939565b73ffffffffffffffffffffffffffffffffffffffff16146124d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d090613d1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254090613c9a565b60405180910390fd5b61255281612d49565b50565b600a5481565b612563612640565b73ffffffffffffffffffffffffffffffffffffffff16612581611939565b73ffffffffffffffffffffffffffffffffffffffff16146125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce90613d1a565b60405180910390fd5b80600a8190555050565b6000816125ec61271e565b111580156125fb575060005482105b8015612639575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000808290508061265761271e565b116126df576000548110156126de5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156126dc575b60008114156126d25760046000836001900393508381526020019081526020016000205490506126a7565b8092505050612711565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061273282612648565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612799576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127ba612716565b73ffffffffffffffffffffffffffffffffffffffff1614806127e957506127e8856127e3612716565b61209f565b5b8061282e57506127f7612716565b73ffffffffffffffffffffffffffffffffffffffff16612816846109ca565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612867576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128ce576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128db8585856001613128565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6129d88661312e565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612a62576000600184019050600060046000838152602001908152602001600020541415612a60576000548114612a5f578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612aca8585856001613138565b5050505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612c1d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c2a6000848385613128565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612c8f6001841461313e565b901b60a042901b612c9f8561312e565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612cc557816000819055505050612d446000848385613138565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082612e1c8584613148565b1490509392505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f02612716565b8786866040518563ffffffff1660e01b8152600401612f249493929190613b9b565b602060405180830381600087803b158015612f3e57600080fd5b505af1925050508015612f6f57506040513d601f19601f82011682018060405250810190612f6c91906137a4565b60015b612fe9573d8060008114612f9f576040519150601f19603f3d011682016040523d82523d6000602084013e612fa4565b606091505b50600081511415612fe1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461304b90614116565b80601f016020809104026020016040519081016040528092919081815260200182805461307790614116565b80156130c45780601f10613099576101008083540402835291602001916130c4565b820191906000526020600020905b8154815290600101906020018083116130a757829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561311457600183039250600a81066030018353600a810490506130f4565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b6000819050919050565b60008082905060005b84518110156131d8576000858281518110613195577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116131b7576131b083826131e3565b92506131c4565b6131c181846131e3565b92505b5080806131d090614179565b915050613151565b508091505092915050565b600082600052816020526040600020905092915050565b82805461320690614116565b90600052602060002090601f016020900481019282613228576000855561326f565b82601f1061324157805160ff191683800117855561326f565b8280016001018555821561326f579182015b8281111561326e578251825591602001919060010190613253565b5b50905061327c9190613280565b5090565b5b80821115613299576000816000905550600101613281565b5090565b60006132b06132ab84613e1a565b613df5565b9050828152602081018484840111156132c857600080fd5b6132d38482856140d4565b509392505050565b60006132ee6132e984613e4b565b613df5565b90508281526020810184848401111561330657600080fd5b6133118482856140d4565b509392505050565b60008135905061332881614518565b92915050565b60008083601f84011261334057600080fd5b8235905067ffffffffffffffff81111561335957600080fd5b60208301915083602082028301111561337157600080fd5b9250929050565b60008083601f84011261338a57600080fd5b8235905067ffffffffffffffff8111156133a357600080fd5b6020830191508360208202830111156133bb57600080fd5b9250929050565b60008083601f8401126133d457600080fd5b8235905067ffffffffffffffff8111156133ed57600080fd5b60208301915083602082028301111561340557600080fd5b9250929050565b60008135905061341b8161452f565b92915050565b60008135905061343081614546565b92915050565b6000813590506134458161455d565b92915050565b60008151905061345a8161455d565b92915050565b600082601f83011261347157600080fd5b813561348184826020860161329d565b91505092915050565b600082601f83011261349b57600080fd5b81356134ab8482602086016132db565b91505092915050565b6000813590506134c381614574565b92915050565b6000815190506134d881614574565b92915050565b6000602082840312156134f057600080fd5b60006134fe84828501613319565b91505092915050565b6000806040838503121561351a57600080fd5b600061352885828601613319565b925050602061353985828601613319565b9150509250929050565b60008060006060848603121561355857600080fd5b600061356686828701613319565b935050602061357786828701613319565b9250506040613588868287016134b4565b9150509250925092565b600080600080608085870312156135a857600080fd5b60006135b687828801613319565b94505060206135c787828801613319565b93505060406135d8878288016134b4565b925050606085013567ffffffffffffffff8111156135f557600080fd5b61360187828801613460565b91505092959194509250565b6000806040838503121561362057600080fd5b600061362e85828601613319565b925050602061363f8582860161340c565b9150509250929050565b6000806040838503121561365c57600080fd5b600061366a85828601613319565b925050602061367b858286016134b4565b9150509250929050565b6000806000806040858703121561369b57600080fd5b600085013567ffffffffffffffff8111156136b557600080fd5b6136c18782880161332e565b9450945050602085013567ffffffffffffffff8111156136e057600080fd5b6136ec878288016133c2565b925092505092959194509250565b60008060006040848603121561370f57600080fd5b600084013567ffffffffffffffff81111561372957600080fd5b61373586828701613378565b93509350506020613748868287016134b4565b9150509250925092565b60006020828403121561376457600080fd5b600061377284828501613421565b91505092915050565b60006020828403121561378d57600080fd5b600061379b84828501613436565b91505092915050565b6000602082840312156137b657600080fd5b60006137c48482850161344b565b91505092915050565b6000602082840312156137df57600080fd5b600082013567ffffffffffffffff8111156137f957600080fd5b6138058482850161348a565b91505092915050565b60006020828403121561382057600080fd5b600061382e848285016134b4565b91505092915050565b60006020828403121561384957600080fd5b6000613857848285016134c9565b91505092915050565b6138698161401d565b82525050565b61388061387b8261401d565b6141c2565b82525050565b61388f8161402f565b82525050565b61389e8161403b565b82525050565b60006138af82613e7c565b6138b98185613e92565b93506138c98185602086016140e3565b6138d2816142d1565b840191505092915050565b6138e6816140c2565b82525050565b60006138f782613e87565b6139018185613eae565b93506139118185602086016140e3565b61391a816142d1565b840191505092915050565b600061393082613e87565b61393a8185613ebf565b935061394a8185602086016140e3565b80840191505092915050565b6000613963601783613eae565b915061396e826142ef565b602082019050919050565b6000613986601383613eae565b915061399182614318565b602082019050919050565b60006139a9602683613eae565b91506139b482614341565b604082019050919050565b60006139cc601c83613eae565b91506139d782614390565b602082019050919050565b60006139ef601b83613eae565b91506139fa826143b9565b602082019050919050565b6000613a12601383613eae565b9150613a1d826143e2565b602082019050919050565b6000613a35602083613eae565b9150613a408261440b565b602082019050919050565b6000613a58601983613eae565b9150613a6382614434565b602082019050919050565b6000613a7b601283613eae565b9150613a868261445d565b602082019050919050565b6000613a9e600083613ea3565b9150613aa982614486565b600082019050919050565b6000613ac1601d83613eae565b9150613acc82614489565b602082019050919050565b6000613ae4601983613eae565b9150613aef826144b2565b602082019050919050565b6000613b07600d83613eae565b9150613b12826144db565b602082019050919050565b613b26816140a4565b82525050565b6000613b38828461386f565b60148201915081905092915050565b6000613b538285613925565b9150613b5f8284613925565b91508190509392505050565b6000613b7682613a91565b9150819050919050565b6000602082019050613b956000830184613860565b92915050565b6000608082019050613bb06000830187613860565b613bbd6020830186613860565b613bca6040830185613b1d565b8181036060830152613bdc81846138a4565b905095945050505050565b6000602082019050613bfc6000830184613886565b92915050565b6000602082019050613c176000830184613895565b92915050565b6000602082019050613c3260008301846138dd565b92915050565b60006020820190508181036000830152613c5281846138ec565b905092915050565b60006020820190508181036000830152613c7381613956565b9050919050565b60006020820190508181036000830152613c9381613979565b9050919050565b60006020820190508181036000830152613cb38161399c565b9050919050565b60006020820190508181036000830152613cd3816139bf565b9050919050565b60006020820190508181036000830152613cf3816139e2565b9050919050565b60006020820190508181036000830152613d1381613a05565b9050919050565b60006020820190508181036000830152613d3381613a28565b9050919050565b60006020820190508181036000830152613d5381613a4b565b9050919050565b60006020820190508181036000830152613d7381613a6e565b9050919050565b60006020820190508181036000830152613d9381613ab4565b9050919050565b60006020820190508181036000830152613db381613ad7565b9050919050565b60006020820190508181036000830152613dd381613afa565b9050919050565b6000602082019050613def6000830184613b1d565b92915050565b6000613dff613e10565b9050613e0b8282614148565b919050565b6000604051905090565b600067ffffffffffffffff821115613e3557613e346142a2565b5b613e3e826142d1565b9050602081019050919050565b600067ffffffffffffffff821115613e6657613e656142a2565b5b613e6f826142d1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ed5826140a4565b9150613ee0836140a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f1557613f146141e6565b5b828201905092915050565b6000613f2b826140ae565b9150613f36836140ae565b92508267ffffffffffffffff03821115613f5357613f526141e6565b5b828201905092915050565b6000613f69826140a4565b9150613f74836140a4565b925082613f8457613f83614215565b5b828204905092915050565b6000613f9a826140a4565b9150613fa5836140a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fde57613fdd6141e6565b5b828202905092915050565b6000613ff4826140a4565b9150613fff836140a4565b925082821015614012576140116141e6565b5b828203905092915050565b600061402882614084565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061407f82614504565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b60006140cd82614071565b9050919050565b82818337600083830152505050565b60005b838110156141015780820151818401526020810190506140e6565b83811115614110576000848401525b50505050565b6000600282049050600182168061412e57607f821691505b6020821081141561414257614141614273565b5b50919050565b614151826142d1565b810181811067ffffffffffffffff821117156141705761416f6142a2565b5b80604052505050565b6000614184826140a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141b7576141b66141e6565b5b600182019050919050565b60006141cd826141d4565b9050919050565b60006141df826142e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e742065786365656473206d617820737570706c79000000000000000000600082015250565b7f53616c65207374617465206d69736d6174636800000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742065787465726e616c6c79206f776e6564206163636f756e7400000000600082015250565b7f4d696e74206c696d697420666f72207573657220726561636865640000000000600082015250565b7f4d696e74207374617465206d69736d6174636800000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e7420737461746520646f6573206e6f7420657869737400000000000000600082015250565b7f496e73756666696369656e742076616c75650000000000000000000000000000600082015250565b50565b7f4261746368206d696e742065786365656473206d617820737570706c79000000600082015250565b7f417267756d656e7473206c656e677468206d69736d6174636800000000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6003811061451557614514614244565b5b50565b6145218161401d565b811461452c57600080fd5b50565b6145388161402f565b811461454357600080fd5b50565b61454f8161403b565b811461455a57600080fd5b50565b61456681614045565b811461457157600080fd5b50565b61457d816140a4565b811461458857600080fd5b5056fea2646970667358221220d4b88f7f493eac2ec062a3692bed04012de5f26bc0a685e2c22e66f6e51e951064736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000619298123929ff29870430fd7bfd63d0c5bb36af0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f697066732e696f2f697066732f626166796265696573776733356970776e69676363366472757562737633727a67796c796d746d676476796578627473786f70767a6134356769792f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): https://ipfs.io/ipfs/bafybeieswg35ipwnigcc6druubsv3rzgylymtmgdvyexbtsxopvza45giy/
Arg [1] : recipient (address): 0x619298123929ff29870430Fd7bFd63d0c5BB36AF
Arg [2] : allocation (uint256): 1

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000619298123929ff29870430fd7bfd63d0c5bb36af
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [4] : 68747470733a2f2f697066732e696f2f697066732f6261667962656965737767
Arg [5] : 33356970776e69676363366472757562737633727a67796c796d746d67647679
Arg [6] : 6578627473786f70767a6134356769792f000000000000000000000000000000


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.