ETH Price: $3,846.62 (+6.59%)

Token

ERC-20: SpiritSeed (SEED)
 

Overview

Max Total Supply

100 SEED

Holders

61

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tonywild.eth
0xbc2dce626b7e580de71d285f5bce77ee59c3b9d9
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:
SpiritSeed

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : SpiritSeed.sol
// SPDX-License-Identifier: MIT
// Developer: @Brougkr

pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract SpiritSeed is ERC1155, Ownable, Pausable, ERC1155Burnable
{
    using SafeMath for uint256;

    //Initialization
    string public constant name = "SpiritSeed";
    string public constant symbol = "SEED";
    string public _BASE_URI = "https://ipfs.io/ipfs/QmXXAE5fQmPkx7Jkeoj1Kq6ANWSqVov5mCzgmAwf8Fmcxs/";
    
    //Token Amounts
    uint256 public _SEEDS_MINTED = 0;
    uint256 public _MAX_SEEDS = 100;
    uint256 public _MAX_SEEDS_PURCHASE = 5;
    
    //Price
    uint256 public _SEED_PRICE = 0.55 ether;

    //Sale State
    bool public _SALE_IS_ACTIVE = false;
    bool public _ALLOW_MULTIPLE_PURCHASES = false;

    //Mint Mapping
    mapping (address => bool) private minted;

    //Constructor
    constructor() ERC1155("https://ipfs.io/ipfs/QmXXAE5fQmPkx7Jkeoj1Kq6ANWSqVov5mCzgmAwf8Fmcxs/{id}.json") { }

    //URI for decoding storage of tokenIDs
    function uri(uint256 tokenId) override public view returns (string memory) { return(string(abi.encodePacked(_BASE_URI, Strings.toString(tokenId), ".json"))); }

    //Mints SpiritSeed Seeds
    function SpiritSeedMint(uint numberOfTokens) public payable
    {
        require(_SALE_IS_ACTIVE, "Sale must be active to mint Seeds");
        require(numberOfTokens <= _MAX_SEEDS_PURCHASE, "Can only mint 5 Seeds at a time");
        require(_SEEDS_MINTED.add(numberOfTokens) <= _MAX_SEEDS, "Purchase would exceed max supply of Seeds");
        require(_SEED_PRICE.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct. 0.55 ETH Per Seed | 550000000000000000 WEI");
        if(!_ALLOW_MULTIPLE_PURCHASES) { require(!minted[msg.sender], "Address Has Already Minted"); }

        //Mints Seeds
        for(uint i = 0; i < numberOfTokens; i++) 
        {
            if (_SEEDS_MINTED < _MAX_SEEDS) 
            {
                _mint(msg.sender, _SEEDS_MINTED, 1, "");
                _SEEDS_MINTED += 1;
            }
        }
        minted[msg.sender] = true;
    }
    
    //Conforms to ERC-1155 Standard
    function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal whenNotPaused override 
    { 
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data); 
    }

    //Batch Transfers Tokens
    function __batchTransfer(address[] memory recipients, uint256[] memory tokenIDs, uint256[] memory amounts) public onlyOwner 
    { 
        for(uint i=0; i < recipients.length; i++) 
        { 
            _safeTransferFrom(msg.sender, recipients[i], tokenIDs[i], amounts[i], ""); 
        }
    }

    //Reserves Seeds
    function __reserveSeeds(uint256 amt) public onlyOwner
    {
        for(uint i=0; i<amt; i++) 
        { 
            _mint(msg.sender, i, 1, ""); 
            _SEEDS_MINTED += 1;
        }
    }

    //Sets Base URI For .json hosting
    function __setBaseURI(string memory BASE_URI) public onlyOwner { _BASE_URI = BASE_URI; }

    //Sets Max Seeds for future Seed Expansion Packs
    function __setMaxSeeds(uint256 MAX_SEEDS) public onlyOwner { _MAX_SEEDS = MAX_SEEDS; }

    //Sets Max Seeds Purchaseable by Wallet
    function __setMaxSeedsPurchase(uint256 MAX_SEEDS_PURCHASE) public onlyOwner { _MAX_SEEDS_PURCHASE = MAX_SEEDS_PURCHASE; }

    //Sets Future Seed Price
    function __setSeedPrice(uint256 SEED_PRICE) public onlyOwner { _SEED_PRICE = SEED_PRICE; }

    //Flips Allowing Multiple Purchases for future Seed Expansion Packs
    function __flip_allowMultiplePurchases() public onlyOwner { _ALLOW_MULTIPLE_PURCHASES = !_ALLOW_MULTIPLE_PURCHASES; }
    
    //Flips Sale State
    function __flip_saleState() public onlyOwner { _SALE_IS_ACTIVE = !_SALE_IS_ACTIVE; }

    //Withdraws Ether from Contract
    function __withdraw() public onlyOwner { payable(msg.sender).transfer(address(this).balance); }

    //Pauses Contract
    function __pause() public onlyOwner { _pause(); }

    //Unpauses Contract
    function __unpause() public onlyOwner { _unpause(); }
}

File 2 of 14 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 14 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 6 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 8 of 14 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 9 of 14 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 14 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 11 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"SpiritSeedMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_ALLOW_MULTIPLE_PURCHASES","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_MAX_SEEDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_MAX_SEEDS_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_SALE_IS_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_SEEDS_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_SEED_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"tokenIDs","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"__batchTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"__flip_allowMultiplePurchases","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"__flip_saleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"__pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"__reserveSeeds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"BASE_URI","type":"string"}],"name":"__setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MAX_SEEDS","type":"uint256"}],"name":"__setMaxSeeds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MAX_SEEDS_PURCHASE","type":"uint256"}],"name":"__setMaxSeedsPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"SEED_PRICE","type":"uint256"}],"name":"__setSeedPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"__unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"__withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526040518060800160405280604481526020016200544c604491396004908051906020019062000035929190620001ec565b506000600555606460065560056007556707a1fe16027700006008556000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055503480156200009457600080fd5b506040518060800160405280604d8152602001620053ff604d9139620000c0816200010260201b60201c565b50620000e1620000d56200011e60201b60201c565b6200012660201b60201c565b6000600360146101000a81548160ff02191690831515021790555062000301565b80600290805190602001906200011a929190620001ec565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001fa906200029c565b90600052602060002090601f0160209004810192826200021e57600085556200026a565b82601f106200023957805160ff19168380011785556200026a565b828001600101855582156200026a579182015b82811115620002695782518255916020019190600101906200024c565b5b5090506200027991906200027d565b5090565b5b80821115620002985760008160009055506001016200027e565b5090565b60006002820490506001821680620002b557607f821691505b60208210811415620002cc57620002cb620002d2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6150ee80620003116000396000f3fe6080604052600436106102035760003560e01c80635c975abb1161011857806395d89b41116100a0578063e55af1551161006f578063e55af155146106d0578063e985e9c5146106ec578063f242432a14610729578063f2fde38b14610752578063f5298aca1461077b57610203565b806395d89b411461063c5780639c51b6f214610667578063a22cb4651461067e578063d8cb759b146106a757610203565b806373ff60b4116100e757806373ff60b4146105a3578063824c6c4a146105ba5780638c6d6d7e146105d15780638d93172f146105e85780638da5cb5b1461061157610203565b80635c975abb1461050f5780636b20c4541461053a5780637097f95314610563578063715018a61461058c57610203565b80631393094f1161019b5780632843ead91161016a5780632843ead91461042c5780632eb2c2d6146104555780633620500b1461047e5780634a3b889a146104a95780634e1273f4146104d257610203565b80631393094f14610394578063198ff00a146103bf5780631f40ce1c146103ea57806322b101d01461040157610203565b80630a27f8a0116101d75780630a27f8a0146102d85780630e89341c146103035780630fddfcbb14610340578063128f4d081461036b57610203565b8062fdd58e1461020857806301ffc9a71461024557806305d1941a1461028257806306fdde03146102ad575b600080fd5b34801561021457600080fd5b5061022f600480360381019061022a919061386e565b6107a4565b60405161023c9190614413565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906139fc565b61086d565b6040516102799190614116565b60405180910390f35b34801561028e57600080fd5b5061029761094f565b6040516102a49190614131565b60405180910390f35b3480156102b957600080fd5b506102c26109dd565b6040516102cf9190614131565b60405180910390f35b3480156102e457600080fd5b506102ed610a16565b6040516102fa9190614413565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613a8f565b610a1c565b6040516103379190614131565b60405180910390f35b34801561034c57600080fd5b50610355610a50565b6040516103629190614413565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190613a8f565b610a56565b005b3480156103a057600080fd5b506103a9610adc565b6040516103b69190614116565b60405180910390f35b3480156103cb57600080fd5b506103d4610aef565b6040516103e19190614413565b60405180910390f35b3480156103f657600080fd5b506103ff610af5565b005b34801561040d57600080fd5b50610416610bba565b6040516104239190614413565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190613a8f565b610bc0565b005b34801561046157600080fd5b5061047c60048036038101906104779190613665565b610c46565b005b34801561048a57600080fd5b50610493610ce7565b6040516104a09190614116565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613a4e565b610cfa565b005b3480156104de57600080fd5b506104f960048036038101906104f491906138f9565b610d90565b60405161050691906140bd565b60405180910390f35b34801561051b57600080fd5b50610524610f41565b6040516105319190614116565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c91906137b3565b610f58565b005b34801561056f57600080fd5b5061058a60048036038101906105859190613965565b610ff5565b005b34801561059857600080fd5b506105a1611172565b005b3480156105af57600080fd5b506105b86111fa565b005b3480156105c657600080fd5b506105cf6112a2565b005b3480156105dd57600080fd5b506105e6611328565b005b3480156105f457600080fd5b5061060f600480360381019061060a9190613a8f565b6113ae565b005b34801561061d57600080fd5b50610626611482565b6040516106339190613fe0565b60405180910390f35b34801561064857600080fd5b506106516114ac565b60405161065e9190614131565b60405180910390f35b34801561067357600080fd5b5061067c6114e5565b005b34801561068a57600080fd5b506106a560048036038101906106a09190613832565b61158d565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190613a8f565b61170e565b005b6106ea60048036038101906106e59190613a8f565b611794565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613629565b611a39565b6040516107209190614116565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190613724565b611acd565b005b34801561075e57600080fd5b5061077960048036038101906107749190613600565b611b6e565b005b34801561078757600080fd5b506107a2600480360381019061079d91906138aa565b611c66565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c906141d3565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610948575061094782611d03565b5b9050919050565b6004805461095c90614792565b80601f016020809104026020016040519081016040528092919081815260200182805461098890614792565b80156109d55780601f106109aa576101008083540402835291602001916109d5565b820191906000526020600020905b8154815290600101906020018083116109b857829003601f168201915b505050505081565b6040518060400160405280600a81526020017f537069726974536565640000000000000000000000000000000000000000000081525081565b60085481565b60606004610a2983611d6d565b604051602001610a3a929190613fb1565b6040516020818303038152906040529050919050565b60065481565b610a5e611f1a565b73ffffffffffffffffffffffffffffffffffffffff16610a7c611482565b73ffffffffffffffffffffffffffffffffffffffff1614610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990614333565b60405180910390fd5b8060068190555050565b600960019054906101000a900460ff1681565b60075481565b610afd611f1a565b73ffffffffffffffffffffffffffffffffffffffff16610b1b611482565b73ffffffffffffffffffffffffffffffffffffffff1614610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890614333565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bb7573d6000803e3d6000fd5b50565b60055481565b610bc8611f1a565b73ffffffffffffffffffffffffffffffffffffffff16610be6611482565b73ffffffffffffffffffffffffffffffffffffffff1614610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3390614333565b60405180910390fd5b8060088190555050565b610c4e611f1a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c945750610c9385610c8e611f1a565b611a39565b5b610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca906142b3565b60405180910390fd5b610ce08585858585611f22565b5050505050565b600960009054906101000a900460ff1681565b610d02611f1a565b73ffffffffffffffffffffffffffffffffffffffff16610d20611482565b73ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614333565b60405180910390fd5b8060049080519060200190610d8c9291906132f8565b5050565b60608151835114610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd90614393565b60405180910390fd5b6000835167ffffffffffffffff811115610e19577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e475781602001602082028036833780820191505090505b50905060005b8451811015610f3657610ee0858281518110610e92577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610ed3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516107a4565b828281518110610f19577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610f2f906147f5565b9050610e4d565b508091505092915050565b6000600360149054906101000a900460ff16905090565b610f60611f1a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610fa65750610fa583610fa0611f1a565b611a39565b5b610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90614233565b60405180910390fd5b610ff0838383612282565b505050565b610ffd611f1a565b73ffffffffffffffffffffffffffffffffffffffff1661101b611482565b73ffffffffffffffffffffffffffffffffffffffff1614611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890614333565b60405180910390fd5b60005b835181101561116c57611159338583815181106110ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518584815181106110fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015185858151811061113c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518060200160405280600081525061257f565b8080611164906147f5565b915050611074565b50505050565b61117a611f1a565b73ffffffffffffffffffffffffffffffffffffffff16611198611482565b73ffffffffffffffffffffffffffffffffffffffff16146111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590614333565b60405180910390fd5b6111f86000612801565b565b611202611f1a565b73ffffffffffffffffffffffffffffffffffffffff16611220611482565b73ffffffffffffffffffffffffffffffffffffffff1614611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d90614333565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6112aa611f1a565b73ffffffffffffffffffffffffffffffffffffffff166112c8611482565b73ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590614333565b60405180910390fd5b6113266128c7565b565b611330611f1a565b73ffffffffffffffffffffffffffffffffffffffff1661134e611482565b73ffffffffffffffffffffffffffffffffffffffff16146113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90614333565b60405180910390fd5b6113ac612969565b565b6113b6611f1a565b73ffffffffffffffffffffffffffffffffffffffff166113d4611482565b73ffffffffffffffffffffffffffffffffffffffff161461142a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142190614333565b60405180910390fd5b60005b8181101561147e576114513382600160405180602001604052806000815250612a0c565b60016005600082825461146491906145c7565b925050819055508080611476906147f5565b91505061142d565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6040518060400160405280600481526020017f534545440000000000000000000000000000000000000000000000000000000081525081565b6114ed611f1a565b73ffffffffffffffffffffffffffffffffffffffff1661150b611482565b73ffffffffffffffffffffffffffffffffffffffff1614611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890614333565b60405180910390fd5b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b8173ffffffffffffffffffffffffffffffffffffffff166115ac611f1a565b73ffffffffffffffffffffffffffffffffffffffff161415611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa90614373565b60405180910390fd5b8060016000611610611f1a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116bd611f1a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117029190614116565b60405180910390a35050565b611716611f1a565b73ffffffffffffffffffffffffffffffffffffffff16611734611482565b73ffffffffffffffffffffffffffffffffffffffff161461178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190614333565b60405180910390fd5b8060078190555050565b600960009054906101000a900460ff166117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90614173565b60405180910390fd5b600754811115611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90614313565b60405180910390fd5b60065461184082600554612ba290919063ffffffff16565b1115611881576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611878906143b3565b60405180910390fd5b3461189782600854612bb890919063ffffffff16565b11156118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90614353565b60405180910390fd5b600960019054906101000a900460ff1661197a57600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090614253565b60405180910390fd5b5b60005b818110156119dd5760065460055410156119ca576119af33600554600160405180602001604052806000815250612a0c565b6001600560008282546119c291906145c7565b925050819055505b80806119d5906147f5565b91505061197d565b506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ad5611f1a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611b1b5750611b1a85611b15611f1a565b611a39565b5b611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190614233565b60405180910390fd5b611b67858585858561257f565b5050505050565b611b76611f1a565b73ffffffffffffffffffffffffffffffffffffffff16611b94611482565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190614333565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c51906141f3565b60405180910390fd5b611c6381612801565b50565b611c6e611f1a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611cb45750611cb383611cae611f1a565b611a39565b5b611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90614233565b60405180910390fd5b611cfe838383612bce565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606000821415611db5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f15565b600082905060005b60008214611de7578080611dd0906147f5565b915050600a82611de0919061461d565b9150611dbd565b60008167ffffffffffffffff811115611e29577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e5b5781602001600182028036833780820191505090505b5090505b60008514611f0e57600182611e7491906146a8565b9150600a85611e83919061483e565b6030611e8f91906145c7565b60f81b818381518110611ecb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f07919061461d565b9450611e5f565b8093505050505b919050565b600033905090565b8151835114611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d906143d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcd90614293565b60405180910390fd5b6000611fe0611f1a565b9050611ff0818787878787612deb565b60005b84518110156121ed576000858281518110612037577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061207c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561211d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612114906142f3565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d291906145c7565b92505081905550505050806121e6906147f5565b9050611ff3565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516122649291906140df565b60405180910390a461227a818787878787612e49565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e9906142d3565b60405180910390fd5b8051825114612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d906143d3565b60405180910390fd5b6000612340611f1a565b905061236081856000868660405180602001604052806000815250612deb565b60005b83518110156124f95760008482815181106123a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106123ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561248d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248490614213565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806124f1906147f5565b915050612363565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516125719291906140df565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e690614293565b60405180910390fd5b60006125f9611f1a565b905061261981878761260a88613030565b61261388613030565b87612deb565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a7906142f3565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461276591906145c7565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516127e292919061442e565b60405180910390a46127f88288888888886130f6565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128cf610f41565b61290e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612905906141b3565b60405180910390fd5b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612952611f1a565b60405161295f9190613fe0565b60405180910390a1565b612971610f41565b156129b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a890614273565b60405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586129f5611f1a565b604051612a029190613fe0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a73906143f3565b60405180910390fd5b6000612a86611f1a565b9050612aa781600087612a9888613030565b612aa188613030565b87612deb565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b0691906145c7565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612b8492919061442e565b60405180910390a4612b9b816000878787876130f6565b5050505050565b60008183612bb091906145c7565b905092915050565b60008183612bc6919061464e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c35906142d3565b60405180910390fd5b6000612c48611f1a565b9050612c7881856000612c5a87613030565b612c6387613030565b60405180602001604052806000815250612deb565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0690614213565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612ddc92919061442e565b60405180910390a45050505050565b612df3610f41565b15612e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2a90614273565b60405180910390fd5b612e418686868686866132dd565b505050505050565b612e688473ffffffffffffffffffffffffffffffffffffffff166132e5565b15613028578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612eae959493929190613ffb565b602060405180830381600087803b158015612ec857600080fd5b505af1925050508015612ef957506040513d601f19601f82011682018060405250810190612ef69190613a25565b60015b612f9f57612f0561492b565b806308c379a01415612f625750612f1a614fc6565b80612f255750612f64565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f599190614131565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9690614153565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301d90614193565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115613075577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156130a35781602001602082028036833780820191505090505b50905082816000815181106130e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6131158473ffffffffffffffffffffffffffffffffffffffff166132e5565b156132d5578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161315b959493929190614063565b602060405180830381600087803b15801561317557600080fd5b505af19250505080156131a657506040513d601f19601f820116820180604052508101906131a39190613a25565b60015b61324c576131b261492b565b806308c379a0141561320f57506131c7614fc6565b806131d25750613211565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132069190614131565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324390614153565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146132d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ca90614193565b60405180910390fd5b505b505050505050565b505050505050565b600080823b905060008111915050919050565b82805461330490614792565b90600052602060002090601f016020900481019282613326576000855561336d565b82601f1061333f57805160ff191683800117855561336d565b8280016001018555821561336d579182015b8281111561336c578251825591602001919060010190613351565b5b50905061337a919061337e565b5090565b5b8082111561339757600081600090555060010161337f565b5090565b60006133ae6133a98461447c565b614457565b905080838252602082019050828560208602820111156133cd57600080fd5b60005b858110156133fd57816133e388826134ef565b8452602084019350602083019250506001810190506133d0565b5050509392505050565b600061341a613415846144a8565b614457565b9050808382526020820190508285602086028201111561343957600080fd5b60005b85811015613469578161344f88826135eb565b84526020840193506020830192505060018101905061343c565b5050509392505050565b6000613486613481846144d4565b614457565b90508281526020810184848401111561349e57600080fd5b6134a9848285614750565b509392505050565b60006134c46134bf84614505565b614457565b9050828152602081018484840111156134dc57600080fd5b6134e7848285614750565b509392505050565b6000813590506134fe8161505c565b92915050565b600082601f83011261351557600080fd5b813561352584826020860161339b565b91505092915050565b600082601f83011261353f57600080fd5b813561354f848260208601613407565b91505092915050565b60008135905061356781615073565b92915050565b60008135905061357c8161508a565b92915050565b6000815190506135918161508a565b92915050565b600082601f8301126135a857600080fd5b81356135b8848260208601613473565b91505092915050565b600082601f8301126135d257600080fd5b81356135e28482602086016134b1565b91505092915050565b6000813590506135fa816150a1565b92915050565b60006020828403121561361257600080fd5b6000613620848285016134ef565b91505092915050565b6000806040838503121561363c57600080fd5b600061364a858286016134ef565b925050602061365b858286016134ef565b9150509250929050565b600080600080600060a0868803121561367d57600080fd5b600061368b888289016134ef565b955050602061369c888289016134ef565b945050604086013567ffffffffffffffff8111156136b957600080fd5b6136c58882890161352e565b935050606086013567ffffffffffffffff8111156136e257600080fd5b6136ee8882890161352e565b925050608086013567ffffffffffffffff81111561370b57600080fd5b61371788828901613597565b9150509295509295909350565b600080600080600060a0868803121561373c57600080fd5b600061374a888289016134ef565b955050602061375b888289016134ef565b945050604061376c888289016135eb565b935050606061377d888289016135eb565b925050608086013567ffffffffffffffff81111561379a57600080fd5b6137a688828901613597565b9150509295509295909350565b6000806000606084860312156137c857600080fd5b60006137d6868287016134ef565b935050602084013567ffffffffffffffff8111156137f357600080fd5b6137ff8682870161352e565b925050604084013567ffffffffffffffff81111561381c57600080fd5b6138288682870161352e565b9150509250925092565b6000806040838503121561384557600080fd5b6000613853858286016134ef565b925050602061386485828601613558565b9150509250929050565b6000806040838503121561388157600080fd5b600061388f858286016134ef565b92505060206138a0858286016135eb565b9150509250929050565b6000806000606084860312156138bf57600080fd5b60006138cd868287016134ef565b93505060206138de868287016135eb565b92505060406138ef868287016135eb565b9150509250925092565b6000806040838503121561390c57600080fd5b600083013567ffffffffffffffff81111561392657600080fd5b61393285828601613504565b925050602083013567ffffffffffffffff81111561394f57600080fd5b61395b8582860161352e565b9150509250929050565b60008060006060848603121561397a57600080fd5b600084013567ffffffffffffffff81111561399457600080fd5b6139a086828701613504565b935050602084013567ffffffffffffffff8111156139bd57600080fd5b6139c98682870161352e565b925050604084013567ffffffffffffffff8111156139e657600080fd5b6139f28682870161352e565b9150509250925092565b600060208284031215613a0e57600080fd5b6000613a1c8482850161356d565b91505092915050565b600060208284031215613a3757600080fd5b6000613a4584828501613582565b91505092915050565b600060208284031215613a6057600080fd5b600082013567ffffffffffffffff811115613a7a57600080fd5b613a86848285016135c1565b91505092915050565b600060208284031215613aa157600080fd5b6000613aaf848285016135eb565b91505092915050565b6000613ac48383613f93565b60208301905092915050565b613ad9816146dc565b82525050565b6000613aea8261455b565b613af48185614589565b9350613aff83614536565b8060005b83811015613b30578151613b178882613ab8565b9750613b228361457c565b925050600181019050613b03565b5085935050505092915050565b613b46816146ee565b82525050565b6000613b5782614566565b613b61818561459a565b9350613b7181856020860161475f565b613b7a8161494d565b840191505092915050565b6000613b9082614571565b613b9a81856145ab565b9350613baa81856020860161475f565b613bb38161494d565b840191505092915050565b6000613bc982614571565b613bd381856145bc565b9350613be381856020860161475f565b80840191505092915050565b60008154613bfc81614792565b613c0681866145bc565b94506001821660008114613c215760018114613c3257613c65565b60ff19831686528186019350613c65565b613c3b85614546565b60005b83811015613c5d57815481890152600182019150602081019050613c3e565b838801955050505b50505092915050565b6000613c7b6034836145ab565b9150613c868261496b565b604082019050919050565b6000613c9e6021836145ab565b9150613ca9826149ba565b604082019050919050565b6000613cc16028836145ab565b9150613ccc82614a09565b604082019050919050565b6000613ce46014836145ab565b9150613cef82614a58565b602082019050919050565b6000613d07602b836145ab565b9150613d1282614a81565b604082019050919050565b6000613d2a6026836145ab565b9150613d3582614ad0565b604082019050919050565b6000613d4d6024836145ab565b9150613d5882614b1f565b604082019050919050565b6000613d706029836145ab565b9150613d7b82614b6e565b604082019050919050565b6000613d93601a836145ab565b9150613d9e82614bbd565b602082019050919050565b6000613db66010836145ab565b9150613dc182614be6565b602082019050919050565b6000613dd96025836145ab565b9150613de482614c0f565b604082019050919050565b6000613dfc6032836145ab565b9150613e0782614c5e565b604082019050919050565b6000613e1f6023836145ab565b9150613e2a82614cad565b604082019050919050565b6000613e42602a836145ab565b9150613e4d82614cfc565b604082019050919050565b6000613e65601f836145ab565b9150613e7082614d4b565b602082019050919050565b6000613e886005836145bc565b9150613e9382614d74565b600582019050919050565b6000613eab6020836145ab565b9150613eb682614d9d565b602082019050919050565b6000613ece604b836145ab565b9150613ed982614dc6565b606082019050919050565b6000613ef16029836145ab565b9150613efc82614e3b565b604082019050919050565b6000613f146029836145ab565b9150613f1f82614e8a565b604082019050919050565b6000613f376029836145ab565b9150613f4282614ed9565b604082019050919050565b6000613f5a6028836145ab565b9150613f6582614f28565b604082019050919050565b6000613f7d6021836145ab565b9150613f8882614f77565b604082019050919050565b613f9c81614746565b82525050565b613fab81614746565b82525050565b6000613fbd8285613bef565b9150613fc98284613bbe565b9150613fd482613e7b565b91508190509392505050565b6000602082019050613ff56000830184613ad0565b92915050565b600060a0820190506140106000830188613ad0565b61401d6020830187613ad0565b818103604083015261402f8186613adf565b905081810360608301526140438185613adf565b905081810360808301526140578184613b4c565b90509695505050505050565b600060a0820190506140786000830188613ad0565b6140856020830187613ad0565b6140926040830186613fa2565b61409f6060830185613fa2565b81810360808301526140b18184613b4c565b90509695505050505050565b600060208201905081810360008301526140d78184613adf565b905092915050565b600060408201905081810360008301526140f98185613adf565b9050818103602083015261410d8184613adf565b90509392505050565b600060208201905061412b6000830184613b3d565b92915050565b6000602082019050818103600083015261414b8184613b85565b905092915050565b6000602082019050818103600083015261416c81613c6e565b9050919050565b6000602082019050818103600083015261418c81613c91565b9050919050565b600060208201905081810360008301526141ac81613cb4565b9050919050565b600060208201905081810360008301526141cc81613cd7565b9050919050565b600060208201905081810360008301526141ec81613cfa565b9050919050565b6000602082019050818103600083015261420c81613d1d565b9050919050565b6000602082019050818103600083015261422c81613d40565b9050919050565b6000602082019050818103600083015261424c81613d63565b9050919050565b6000602082019050818103600083015261426c81613d86565b9050919050565b6000602082019050818103600083015261428c81613da9565b9050919050565b600060208201905081810360008301526142ac81613dcc565b9050919050565b600060208201905081810360008301526142cc81613def565b9050919050565b600060208201905081810360008301526142ec81613e12565b9050919050565b6000602082019050818103600083015261430c81613e35565b9050919050565b6000602082019050818103600083015261432c81613e58565b9050919050565b6000602082019050818103600083015261434c81613e9e565b9050919050565b6000602082019050818103600083015261436c81613ec1565b9050919050565b6000602082019050818103600083015261438c81613ee4565b9050919050565b600060208201905081810360008301526143ac81613f07565b9050919050565b600060208201905081810360008301526143cc81613f2a565b9050919050565b600060208201905081810360008301526143ec81613f4d565b9050919050565b6000602082019050818103600083015261440c81613f70565b9050919050565b60006020820190506144286000830184613fa2565b92915050565b60006040820190506144436000830185613fa2565b6144506020830184613fa2565b9392505050565b6000614461614472565b905061446d82826147c4565b919050565b6000604051905090565b600067ffffffffffffffff821115614497576144966148fc565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156144c3576144c26148fc565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156144ef576144ee6148fc565b5b6144f88261494d565b9050602081019050919050565b600067ffffffffffffffff8211156145205761451f6148fc565b5b6145298261494d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145d282614746565b91506145dd83614746565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146125761461161486f565b5b828201905092915050565b600061462882614746565b915061463383614746565b9250826146435761464261489e565b5b828204905092915050565b600061465982614746565b915061466483614746565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561469d5761469c61486f565b5b828202905092915050565b60006146b382614746565b91506146be83614746565b9250828210156146d1576146d061486f565b5b828203905092915050565b60006146e782614726565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561477d578082015181840152602081019050614762565b8381111561478c576000848401525b50505050565b600060028204905060018216806147aa57607f821691505b602082108114156147be576147bd6148cd565b5b50919050565b6147cd8261494d565b810181811067ffffffffffffffff821117156147ec576147eb6148fc565b5b80604052505050565b600061480082614746565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148335761483261486f565b5b600182019050919050565b600061484982614746565b915061485483614746565b9250826148645761486361489e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561494a5760046000803e61494760005161495e565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74205365656460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f416464726573732048617320416c7265616479204d696e746564000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74203520536565647320617420612074696d6500600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f72726563742e60008201527f20302e353520455448205065722053656564207c20353530303030303030303060208201527f3030303030303020574549000000000000000000000000000000000000000000604082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662053656564730000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614fd657615059565b614fde614472565b60043d036004823e80513d602482011167ffffffffffffffff82111715615006575050615059565b808201805167ffffffffffffffff8111156150245750505050615059565b80602083010160043d038501811115615041575050505050615059565b615050826020018501866147c4565b82955050505050505b90565b615065816146dc565b811461507057600080fd5b50565b61507c816146ee565b811461508757600080fd5b50565b615093816146fa565b811461509e57600080fd5b50565b6150aa81614746565b81146150b557600080fd5b5056fea2646970667358221220eb5e2facd20ed30eb7bdf206b4553d9b43471b30b20e98d6f8a480c48319432c64736f6c6343000804003368747470733a2f2f697066732e696f2f697066732f516d585841453566516d506b78374a6b656f6a314b7136414e575371566f76356d437a676d41776638466d6378732f7b69647d2e6a736f6e68747470733a2f2f697066732e696f2f697066732f516d585841453566516d506b78374a6b656f6a314b7136414e575371566f76356d437a676d41776638466d6378732f

Deployed Bytecode

0x6080604052600436106102035760003560e01c80635c975abb1161011857806395d89b41116100a0578063e55af1551161006f578063e55af155146106d0578063e985e9c5146106ec578063f242432a14610729578063f2fde38b14610752578063f5298aca1461077b57610203565b806395d89b411461063c5780639c51b6f214610667578063a22cb4651461067e578063d8cb759b146106a757610203565b806373ff60b4116100e757806373ff60b4146105a3578063824c6c4a146105ba5780638c6d6d7e146105d15780638d93172f146105e85780638da5cb5b1461061157610203565b80635c975abb1461050f5780636b20c4541461053a5780637097f95314610563578063715018a61461058c57610203565b80631393094f1161019b5780632843ead91161016a5780632843ead91461042c5780632eb2c2d6146104555780633620500b1461047e5780634a3b889a146104a95780634e1273f4146104d257610203565b80631393094f14610394578063198ff00a146103bf5780631f40ce1c146103ea57806322b101d01461040157610203565b80630a27f8a0116101d75780630a27f8a0146102d85780630e89341c146103035780630fddfcbb14610340578063128f4d081461036b57610203565b8062fdd58e1461020857806301ffc9a71461024557806305d1941a1461028257806306fdde03146102ad575b600080fd5b34801561021457600080fd5b5061022f600480360381019061022a919061386e565b6107a4565b60405161023c9190614413565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906139fc565b61086d565b6040516102799190614116565b60405180910390f35b34801561028e57600080fd5b5061029761094f565b6040516102a49190614131565b60405180910390f35b3480156102b957600080fd5b506102c26109dd565b6040516102cf9190614131565b60405180910390f35b3480156102e457600080fd5b506102ed610a16565b6040516102fa9190614413565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613a8f565b610a1c565b6040516103379190614131565b60405180910390f35b34801561034c57600080fd5b50610355610a50565b6040516103629190614413565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190613a8f565b610a56565b005b3480156103a057600080fd5b506103a9610adc565b6040516103b69190614116565b60405180910390f35b3480156103cb57600080fd5b506103d4610aef565b6040516103e19190614413565b60405180910390f35b3480156103f657600080fd5b506103ff610af5565b005b34801561040d57600080fd5b50610416610bba565b6040516104239190614413565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190613a8f565b610bc0565b005b34801561046157600080fd5b5061047c60048036038101906104779190613665565b610c46565b005b34801561048a57600080fd5b50610493610ce7565b6040516104a09190614116565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613a4e565b610cfa565b005b3480156104de57600080fd5b506104f960048036038101906104f491906138f9565b610d90565b60405161050691906140bd565b60405180910390f35b34801561051b57600080fd5b50610524610f41565b6040516105319190614116565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c91906137b3565b610f58565b005b34801561056f57600080fd5b5061058a60048036038101906105859190613965565b610ff5565b005b34801561059857600080fd5b506105a1611172565b005b3480156105af57600080fd5b506105b86111fa565b005b3480156105c657600080fd5b506105cf6112a2565b005b3480156105dd57600080fd5b506105e6611328565b005b3480156105f457600080fd5b5061060f600480360381019061060a9190613a8f565b6113ae565b005b34801561061d57600080fd5b50610626611482565b6040516106339190613fe0565b60405180910390f35b34801561064857600080fd5b506106516114ac565b60405161065e9190614131565b60405180910390f35b34801561067357600080fd5b5061067c6114e5565b005b34801561068a57600080fd5b506106a560048036038101906106a09190613832565b61158d565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190613a8f565b61170e565b005b6106ea60048036038101906106e59190613a8f565b611794565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613629565b611a39565b6040516107209190614116565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190613724565b611acd565b005b34801561075e57600080fd5b5061077960048036038101906107749190613600565b611b6e565b005b34801561078757600080fd5b506107a2600480360381019061079d91906138aa565b611c66565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c906141d3565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610948575061094782611d03565b5b9050919050565b6004805461095c90614792565b80601f016020809104026020016040519081016040528092919081815260200182805461098890614792565b80156109d55780601f106109aa576101008083540402835291602001916109d5565b820191906000526020600020905b8154815290600101906020018083116109b857829003601f168201915b505050505081565b6040518060400160405280600a81526020017f537069726974536565640000000000000000000000000000000000000000000081525081565b60085481565b60606004610a2983611d6d565b604051602001610a3a929190613fb1565b6040516020818303038152906040529050919050565b60065481565b610a5e611f1a565b73ffffffffffffffffffffffffffffffffffffffff16610a7c611482565b73ffffffffffffffffffffffffffffffffffffffff1614610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990614333565b60405180910390fd5b8060068190555050565b600960019054906101000a900460ff1681565b60075481565b610afd611f1a565b73ffffffffffffffffffffffffffffffffffffffff16610b1b611482565b73ffffffffffffffffffffffffffffffffffffffff1614610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890614333565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bb7573d6000803e3d6000fd5b50565b60055481565b610bc8611f1a565b73ffffffffffffffffffffffffffffffffffffffff16610be6611482565b73ffffffffffffffffffffffffffffffffffffffff1614610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3390614333565b60405180910390fd5b8060088190555050565b610c4e611f1a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c945750610c9385610c8e611f1a565b611a39565b5b610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca906142b3565b60405180910390fd5b610ce08585858585611f22565b5050505050565b600960009054906101000a900460ff1681565b610d02611f1a565b73ffffffffffffffffffffffffffffffffffffffff16610d20611482565b73ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614333565b60405180910390fd5b8060049080519060200190610d8c9291906132f8565b5050565b60608151835114610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd90614393565b60405180910390fd5b6000835167ffffffffffffffff811115610e19577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e475781602001602082028036833780820191505090505b50905060005b8451811015610f3657610ee0858281518110610e92577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610ed3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516107a4565b828281518110610f19577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610f2f906147f5565b9050610e4d565b508091505092915050565b6000600360149054906101000a900460ff16905090565b610f60611f1a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610fa65750610fa583610fa0611f1a565b611a39565b5b610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90614233565b60405180910390fd5b610ff0838383612282565b505050565b610ffd611f1a565b73ffffffffffffffffffffffffffffffffffffffff1661101b611482565b73ffffffffffffffffffffffffffffffffffffffff1614611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890614333565b60405180910390fd5b60005b835181101561116c57611159338583815181106110ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518584815181106110fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015185858151811061113c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518060200160405280600081525061257f565b8080611164906147f5565b915050611074565b50505050565b61117a611f1a565b73ffffffffffffffffffffffffffffffffffffffff16611198611482565b73ffffffffffffffffffffffffffffffffffffffff16146111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590614333565b60405180910390fd5b6111f86000612801565b565b611202611f1a565b73ffffffffffffffffffffffffffffffffffffffff16611220611482565b73ffffffffffffffffffffffffffffffffffffffff1614611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d90614333565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6112aa611f1a565b73ffffffffffffffffffffffffffffffffffffffff166112c8611482565b73ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590614333565b60405180910390fd5b6113266128c7565b565b611330611f1a565b73ffffffffffffffffffffffffffffffffffffffff1661134e611482565b73ffffffffffffffffffffffffffffffffffffffff16146113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90614333565b60405180910390fd5b6113ac612969565b565b6113b6611f1a565b73ffffffffffffffffffffffffffffffffffffffff166113d4611482565b73ffffffffffffffffffffffffffffffffffffffff161461142a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142190614333565b60405180910390fd5b60005b8181101561147e576114513382600160405180602001604052806000815250612a0c565b60016005600082825461146491906145c7565b925050819055508080611476906147f5565b91505061142d565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6040518060400160405280600481526020017f534545440000000000000000000000000000000000000000000000000000000081525081565b6114ed611f1a565b73ffffffffffffffffffffffffffffffffffffffff1661150b611482565b73ffffffffffffffffffffffffffffffffffffffff1614611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890614333565b60405180910390fd5b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b8173ffffffffffffffffffffffffffffffffffffffff166115ac611f1a565b73ffffffffffffffffffffffffffffffffffffffff161415611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa90614373565b60405180910390fd5b8060016000611610611f1a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116bd611f1a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117029190614116565b60405180910390a35050565b611716611f1a565b73ffffffffffffffffffffffffffffffffffffffff16611734611482565b73ffffffffffffffffffffffffffffffffffffffff161461178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190614333565b60405180910390fd5b8060078190555050565b600960009054906101000a900460ff166117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90614173565b60405180910390fd5b600754811115611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90614313565b60405180910390fd5b60065461184082600554612ba290919063ffffffff16565b1115611881576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611878906143b3565b60405180910390fd5b3461189782600854612bb890919063ffffffff16565b11156118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90614353565b60405180910390fd5b600960019054906101000a900460ff1661197a57600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090614253565b60405180910390fd5b5b60005b818110156119dd5760065460055410156119ca576119af33600554600160405180602001604052806000815250612a0c565b6001600560008282546119c291906145c7565b925050819055505b80806119d5906147f5565b91505061197d565b506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ad5611f1a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611b1b5750611b1a85611b15611f1a565b611a39565b5b611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190614233565b60405180910390fd5b611b67858585858561257f565b5050505050565b611b76611f1a565b73ffffffffffffffffffffffffffffffffffffffff16611b94611482565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190614333565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c51906141f3565b60405180910390fd5b611c6381612801565b50565b611c6e611f1a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611cb45750611cb383611cae611f1a565b611a39565b5b611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90614233565b60405180910390fd5b611cfe838383612bce565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606000821415611db5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f15565b600082905060005b60008214611de7578080611dd0906147f5565b915050600a82611de0919061461d565b9150611dbd565b60008167ffffffffffffffff811115611e29577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e5b5781602001600182028036833780820191505090505b5090505b60008514611f0e57600182611e7491906146a8565b9150600a85611e83919061483e565b6030611e8f91906145c7565b60f81b818381518110611ecb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f07919061461d565b9450611e5f565b8093505050505b919050565b600033905090565b8151835114611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d906143d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcd90614293565b60405180910390fd5b6000611fe0611f1a565b9050611ff0818787878787612deb565b60005b84518110156121ed576000858281518110612037577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061207c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561211d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612114906142f3565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d291906145c7565b92505081905550505050806121e6906147f5565b9050611ff3565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516122649291906140df565b60405180910390a461227a818787878787612e49565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e9906142d3565b60405180910390fd5b8051825114612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d906143d3565b60405180910390fd5b6000612340611f1a565b905061236081856000868660405180602001604052806000815250612deb565b60005b83518110156124f95760008482815181106123a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106123ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561248d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248490614213565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806124f1906147f5565b915050612363565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516125719291906140df565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e690614293565b60405180910390fd5b60006125f9611f1a565b905061261981878761260a88613030565b61261388613030565b87612deb565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a7906142f3565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461276591906145c7565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516127e292919061442e565b60405180910390a46127f88288888888886130f6565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128cf610f41565b61290e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612905906141b3565b60405180910390fd5b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612952611f1a565b60405161295f9190613fe0565b60405180910390a1565b612971610f41565b156129b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a890614273565b60405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586129f5611f1a565b604051612a029190613fe0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a73906143f3565b60405180910390fd5b6000612a86611f1a565b9050612aa781600087612a9888613030565b612aa188613030565b87612deb565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b0691906145c7565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612b8492919061442e565b60405180910390a4612b9b816000878787876130f6565b5050505050565b60008183612bb091906145c7565b905092915050565b60008183612bc6919061464e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c35906142d3565b60405180910390fd5b6000612c48611f1a565b9050612c7881856000612c5a87613030565b612c6387613030565b60405180602001604052806000815250612deb565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0690614213565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612ddc92919061442e565b60405180910390a45050505050565b612df3610f41565b15612e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2a90614273565b60405180910390fd5b612e418686868686866132dd565b505050505050565b612e688473ffffffffffffffffffffffffffffffffffffffff166132e5565b15613028578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612eae959493929190613ffb565b602060405180830381600087803b158015612ec857600080fd5b505af1925050508015612ef957506040513d601f19601f82011682018060405250810190612ef69190613a25565b60015b612f9f57612f0561492b565b806308c379a01415612f625750612f1a614fc6565b80612f255750612f64565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f599190614131565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9690614153565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301d90614193565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115613075577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156130a35781602001602082028036833780820191505090505b50905082816000815181106130e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6131158473ffffffffffffffffffffffffffffffffffffffff166132e5565b156132d5578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161315b959493929190614063565b602060405180830381600087803b15801561317557600080fd5b505af19250505080156131a657506040513d601f19601f820116820180604052508101906131a39190613a25565b60015b61324c576131b261492b565b806308c379a0141561320f57506131c7614fc6565b806131d25750613211565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132069190614131565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324390614153565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146132d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ca90614193565b60405180910390fd5b505b505050505050565b505050505050565b600080823b905060008111915050919050565b82805461330490614792565b90600052602060002090601f016020900481019282613326576000855561336d565b82601f1061333f57805160ff191683800117855561336d565b8280016001018555821561336d579182015b8281111561336c578251825591602001919060010190613351565b5b50905061337a919061337e565b5090565b5b8082111561339757600081600090555060010161337f565b5090565b60006133ae6133a98461447c565b614457565b905080838252602082019050828560208602820111156133cd57600080fd5b60005b858110156133fd57816133e388826134ef565b8452602084019350602083019250506001810190506133d0565b5050509392505050565b600061341a613415846144a8565b614457565b9050808382526020820190508285602086028201111561343957600080fd5b60005b85811015613469578161344f88826135eb565b84526020840193506020830192505060018101905061343c565b5050509392505050565b6000613486613481846144d4565b614457565b90508281526020810184848401111561349e57600080fd5b6134a9848285614750565b509392505050565b60006134c46134bf84614505565b614457565b9050828152602081018484840111156134dc57600080fd5b6134e7848285614750565b509392505050565b6000813590506134fe8161505c565b92915050565b600082601f83011261351557600080fd5b813561352584826020860161339b565b91505092915050565b600082601f83011261353f57600080fd5b813561354f848260208601613407565b91505092915050565b60008135905061356781615073565b92915050565b60008135905061357c8161508a565b92915050565b6000815190506135918161508a565b92915050565b600082601f8301126135a857600080fd5b81356135b8848260208601613473565b91505092915050565b600082601f8301126135d257600080fd5b81356135e28482602086016134b1565b91505092915050565b6000813590506135fa816150a1565b92915050565b60006020828403121561361257600080fd5b6000613620848285016134ef565b91505092915050565b6000806040838503121561363c57600080fd5b600061364a858286016134ef565b925050602061365b858286016134ef565b9150509250929050565b600080600080600060a0868803121561367d57600080fd5b600061368b888289016134ef565b955050602061369c888289016134ef565b945050604086013567ffffffffffffffff8111156136b957600080fd5b6136c58882890161352e565b935050606086013567ffffffffffffffff8111156136e257600080fd5b6136ee8882890161352e565b925050608086013567ffffffffffffffff81111561370b57600080fd5b61371788828901613597565b9150509295509295909350565b600080600080600060a0868803121561373c57600080fd5b600061374a888289016134ef565b955050602061375b888289016134ef565b945050604061376c888289016135eb565b935050606061377d888289016135eb565b925050608086013567ffffffffffffffff81111561379a57600080fd5b6137a688828901613597565b9150509295509295909350565b6000806000606084860312156137c857600080fd5b60006137d6868287016134ef565b935050602084013567ffffffffffffffff8111156137f357600080fd5b6137ff8682870161352e565b925050604084013567ffffffffffffffff81111561381c57600080fd5b6138288682870161352e565b9150509250925092565b6000806040838503121561384557600080fd5b6000613853858286016134ef565b925050602061386485828601613558565b9150509250929050565b6000806040838503121561388157600080fd5b600061388f858286016134ef565b92505060206138a0858286016135eb565b9150509250929050565b6000806000606084860312156138bf57600080fd5b60006138cd868287016134ef565b93505060206138de868287016135eb565b92505060406138ef868287016135eb565b9150509250925092565b6000806040838503121561390c57600080fd5b600083013567ffffffffffffffff81111561392657600080fd5b61393285828601613504565b925050602083013567ffffffffffffffff81111561394f57600080fd5b61395b8582860161352e565b9150509250929050565b60008060006060848603121561397a57600080fd5b600084013567ffffffffffffffff81111561399457600080fd5b6139a086828701613504565b935050602084013567ffffffffffffffff8111156139bd57600080fd5b6139c98682870161352e565b925050604084013567ffffffffffffffff8111156139e657600080fd5b6139f28682870161352e565b9150509250925092565b600060208284031215613a0e57600080fd5b6000613a1c8482850161356d565b91505092915050565b600060208284031215613a3757600080fd5b6000613a4584828501613582565b91505092915050565b600060208284031215613a6057600080fd5b600082013567ffffffffffffffff811115613a7a57600080fd5b613a86848285016135c1565b91505092915050565b600060208284031215613aa157600080fd5b6000613aaf848285016135eb565b91505092915050565b6000613ac48383613f93565b60208301905092915050565b613ad9816146dc565b82525050565b6000613aea8261455b565b613af48185614589565b9350613aff83614536565b8060005b83811015613b30578151613b178882613ab8565b9750613b228361457c565b925050600181019050613b03565b5085935050505092915050565b613b46816146ee565b82525050565b6000613b5782614566565b613b61818561459a565b9350613b7181856020860161475f565b613b7a8161494d565b840191505092915050565b6000613b9082614571565b613b9a81856145ab565b9350613baa81856020860161475f565b613bb38161494d565b840191505092915050565b6000613bc982614571565b613bd381856145bc565b9350613be381856020860161475f565b80840191505092915050565b60008154613bfc81614792565b613c0681866145bc565b94506001821660008114613c215760018114613c3257613c65565b60ff19831686528186019350613c65565b613c3b85614546565b60005b83811015613c5d57815481890152600182019150602081019050613c3e565b838801955050505b50505092915050565b6000613c7b6034836145ab565b9150613c868261496b565b604082019050919050565b6000613c9e6021836145ab565b9150613ca9826149ba565b604082019050919050565b6000613cc16028836145ab565b9150613ccc82614a09565b604082019050919050565b6000613ce46014836145ab565b9150613cef82614a58565b602082019050919050565b6000613d07602b836145ab565b9150613d1282614a81565b604082019050919050565b6000613d2a6026836145ab565b9150613d3582614ad0565b604082019050919050565b6000613d4d6024836145ab565b9150613d5882614b1f565b604082019050919050565b6000613d706029836145ab565b9150613d7b82614b6e565b604082019050919050565b6000613d93601a836145ab565b9150613d9e82614bbd565b602082019050919050565b6000613db66010836145ab565b9150613dc182614be6565b602082019050919050565b6000613dd96025836145ab565b9150613de482614c0f565b604082019050919050565b6000613dfc6032836145ab565b9150613e0782614c5e565b604082019050919050565b6000613e1f6023836145ab565b9150613e2a82614cad565b604082019050919050565b6000613e42602a836145ab565b9150613e4d82614cfc565b604082019050919050565b6000613e65601f836145ab565b9150613e7082614d4b565b602082019050919050565b6000613e886005836145bc565b9150613e9382614d74565b600582019050919050565b6000613eab6020836145ab565b9150613eb682614d9d565b602082019050919050565b6000613ece604b836145ab565b9150613ed982614dc6565b606082019050919050565b6000613ef16029836145ab565b9150613efc82614e3b565b604082019050919050565b6000613f146029836145ab565b9150613f1f82614e8a565b604082019050919050565b6000613f376029836145ab565b9150613f4282614ed9565b604082019050919050565b6000613f5a6028836145ab565b9150613f6582614f28565b604082019050919050565b6000613f7d6021836145ab565b9150613f8882614f77565b604082019050919050565b613f9c81614746565b82525050565b613fab81614746565b82525050565b6000613fbd8285613bef565b9150613fc98284613bbe565b9150613fd482613e7b565b91508190509392505050565b6000602082019050613ff56000830184613ad0565b92915050565b600060a0820190506140106000830188613ad0565b61401d6020830187613ad0565b818103604083015261402f8186613adf565b905081810360608301526140438185613adf565b905081810360808301526140578184613b4c565b90509695505050505050565b600060a0820190506140786000830188613ad0565b6140856020830187613ad0565b6140926040830186613fa2565b61409f6060830185613fa2565b81810360808301526140b18184613b4c565b90509695505050505050565b600060208201905081810360008301526140d78184613adf565b905092915050565b600060408201905081810360008301526140f98185613adf565b9050818103602083015261410d8184613adf565b90509392505050565b600060208201905061412b6000830184613b3d565b92915050565b6000602082019050818103600083015261414b8184613b85565b905092915050565b6000602082019050818103600083015261416c81613c6e565b9050919050565b6000602082019050818103600083015261418c81613c91565b9050919050565b600060208201905081810360008301526141ac81613cb4565b9050919050565b600060208201905081810360008301526141cc81613cd7565b9050919050565b600060208201905081810360008301526141ec81613cfa565b9050919050565b6000602082019050818103600083015261420c81613d1d565b9050919050565b6000602082019050818103600083015261422c81613d40565b9050919050565b6000602082019050818103600083015261424c81613d63565b9050919050565b6000602082019050818103600083015261426c81613d86565b9050919050565b6000602082019050818103600083015261428c81613da9565b9050919050565b600060208201905081810360008301526142ac81613dcc565b9050919050565b600060208201905081810360008301526142cc81613def565b9050919050565b600060208201905081810360008301526142ec81613e12565b9050919050565b6000602082019050818103600083015261430c81613e35565b9050919050565b6000602082019050818103600083015261432c81613e58565b9050919050565b6000602082019050818103600083015261434c81613e9e565b9050919050565b6000602082019050818103600083015261436c81613ec1565b9050919050565b6000602082019050818103600083015261438c81613ee4565b9050919050565b600060208201905081810360008301526143ac81613f07565b9050919050565b600060208201905081810360008301526143cc81613f2a565b9050919050565b600060208201905081810360008301526143ec81613f4d565b9050919050565b6000602082019050818103600083015261440c81613f70565b9050919050565b60006020820190506144286000830184613fa2565b92915050565b60006040820190506144436000830185613fa2565b6144506020830184613fa2565b9392505050565b6000614461614472565b905061446d82826147c4565b919050565b6000604051905090565b600067ffffffffffffffff821115614497576144966148fc565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156144c3576144c26148fc565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156144ef576144ee6148fc565b5b6144f88261494d565b9050602081019050919050565b600067ffffffffffffffff8211156145205761451f6148fc565b5b6145298261494d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145d282614746565b91506145dd83614746565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146125761461161486f565b5b828201905092915050565b600061462882614746565b915061463383614746565b9250826146435761464261489e565b5b828204905092915050565b600061465982614746565b915061466483614746565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561469d5761469c61486f565b5b828202905092915050565b60006146b382614746565b91506146be83614746565b9250828210156146d1576146d061486f565b5b828203905092915050565b60006146e782614726565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561477d578082015181840152602081019050614762565b8381111561478c576000848401525b50505050565b600060028204905060018216806147aa57607f821691505b602082108114156147be576147bd6148cd565b5b50919050565b6147cd8261494d565b810181811067ffffffffffffffff821117156147ec576147eb6148fc565b5b80604052505050565b600061480082614746565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148335761483261486f565b5b600182019050919050565b600061484982614746565b915061485483614746565b9250826148645761486361489e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561494a5760046000803e61494760005161495e565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74205365656460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f416464726573732048617320416c7265616479204d696e746564000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74203520536565647320617420612074696d6500600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f72726563742e60008201527f20302e353520455448205065722053656564207c20353530303030303030303060208201527f3030303030303020574549000000000000000000000000000000000000000000604082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662053656564730000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614fd657615059565b614fde614472565b60043d036004823e80513d602482011167ffffffffffffffff82111715615006575050615059565b808201805167ffffffffffffffff8111156150245750505050615059565b80602083010160043d038501811115615041575050505050615059565b615050826020018501866147c4565b82955050505050505b90565b615065816146dc565b811461507057600080fd5b50565b61507c816146ee565b811461508757600080fd5b50565b615093816146fa565b811461509e57600080fd5b50565b6150aa81614746565b81146150b557600080fd5b5056fea2646970667358221220eb5e2facd20ed30eb7bdf206b4553d9b43471b30b20e98d6f8a480c48319432c64736f6c63430008040033

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.