ETH Price: $2,525.71 (+0.32%)

Token

OmniPass (OP)
 

Overview

Max Total Supply

0 OP

Holders

183

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x19eccb684396e1e4fb5489a3ce3c7ddb233ea202
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:
OmniPass

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : OmniyaMintPass.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import './AbstractERC1155Factory.sol';
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract OmniPass is AbstractERC1155Factory, ReentrancyGuard {

    // ======== ERC1155 Token Id =========
    uint256 constant MINT_PASS_ID = 0;

    // ======== Supply =========
    uint256 public constant MAX_MINTS_PER_TX = 20;
    uint256 public constant  MAX_MINTS_PER_ADDRESS = 100;
    uint256 public maxSupply = 20000;

    // ======== Claim Tracking =========
    mapping(address => uint256) private addressToMintCount;

    // ======== Sale Status =========    
    bool public saleIsActive = false;

    // ======== Redeem Contract =========
    address public redeemContract;
    bool public redeemContractSet;
    bool public redeemEnabled;

    // ======== Cost =========
    uint256 public constant TOKEN_PRICE_ETH = 0.1 ether;

    // ======== Fund Management =========
    // Omniya Wallet
    address public withdrawalAddress = 0x0FE7be1Ce87D153AdFBf1573E3Db77bbD9E0f549; 

    constructor(string memory _name, string memory _symbol, string memory _uri) ERC1155(_uri) {
        name_ = _name;
        symbol_ = _symbol;
    } 

    // ======== Mint =========
    /// @notice Mint tokens
    /// @param amount Quantity of tokens to mint
    function mint(uint256 amount)  public payable nonReentrant {
        require(totalSupply(0) + amount <= maxSupply, "Exceeds max token supply!");
        require(saleIsActive, "Sale is not active!");
        require(amount <= MAX_MINTS_PER_TX, "Exceeds max mint per tx!");
        require(addressToMintCount[msg.sender] + amount <= MAX_MINTS_PER_ADDRESS, "Exceeds max mint per address!");

        transferFunds(amount);
        _mint(msg.sender, MINT_PASS_ID, amount, "");
        addressToMintCount[msg.sender] += amount;
    } 
    
    /// @notice Allows owner to mint team tokens
    /// @param to The address to send the minted tokens to
    /// @param amount The amount of tokens to mint
    function mintTeamTokens(address to, uint256 amount) public onlyOwner {        
        require(totalSupply(0) + amount <= maxSupply, "Exceeds max token supply!");
        
         _mint(to, MINT_PASS_ID, amount, "");
    }      

    // ======== Redeem Management =========
    /// @notice Allows mint pass owner to burn a mint pass. Can only be called from Redeem contract
    /// @param account The address redeeming the mint passes
    /// @param amount The amount of mint passes to burn
    function burnFromRedeem(address account, uint256 amount) external {
        require(redeemContract == msg.sender, "Burnable: Only allowed from redeemable contract");
        require(redeemEnabled, "Burn from redeem disabled!");

        _burn(account, MINT_PASS_ID, amount);
    }  

    /// @notice Allows owner to set the redeem contract
    /// @param _redeemContract The address of the redeem contract
    function setRedeemContract(address _redeemContract) external onlyOwner {
        redeemContract = _redeemContract;  
        redeemContractSet = true;
    } 

    /// @notice Allows toggles the redeem feature
    function toggleRedeem() external onlyOwner {
        redeemEnabled = !redeemEnabled;
    }    

    // ======== Metadata =========
    function setURI(string memory _baseURI) external onlyOwner {
        _setURI(_baseURI);
    }    

    // ======== State Management =========
    function flipSaleStatus() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    // ======== Token Supply Management=========
    function mintCount(address _address) external view returns (uint) {
        return addressToMintCount[_address];
    }

    /// @notice Decrease max token supply
    /// @param newMaxTokenSupply maximum token supply
    function decreaseTokenSupply(uint256 newMaxTokenSupply) external onlyOwner {
        require(maxSupply > newMaxTokenSupply, "Max token supply can only be decreased!");
        require(newMaxTokenSupply >= totalSupply(0), "Max token supply has to be greeather than or equal to total supply!");
        maxSupply = newMaxTokenSupply;
    }
 
    // ======== Withdraw =========
    /// @notice Transfers funds to withdrawal address
    /// @param qty Quantity of tokens to purchase
    function transferFunds(uint256 qty) private {
        if(msg.value == qty * TOKEN_PRICE_ETH) { 
            (bool success, ) = payable(withdrawalAddress).call{value: qty * TOKEN_PRICE_ETH}("");
            require(success, "Transfer failed!");
        } else {
          revert("Invalid payment!");
        }
    }
    
    /// @notice Sets a new withdrawal address
    /// @param newWithdrawalAddress New withdrawal address
    function setWithdrawalAddress(address newWithdrawalAddress) public onlyOwner {
        withdrawalAddress = newWithdrawalAddress;
    }
}

File 2 of 14 : AbstractERC1155Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol';
import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol';

abstract contract AbstractERC1155Factory is ERC1155Supply, ERC1155Burnable, Ownable {
    
    string public name_;
    string public symbol_;   

    function name() public view returns (string memory) {
        return name_;
    }

    function symbol() public view returns (string memory) {
        return symbol_;
    }          

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155, ERC1155Supply) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    } 
}

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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 {
        _setApprovalForAll(_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 `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

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

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

        _doSafeTransferAcceptanceCheck(operator, address(0), to, 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 `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

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

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

        emit TransferSingle(operator, from, 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 from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

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

        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: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

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

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

    /**
     * @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 9 of 14 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

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 10 of 14 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

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.
     *
     * NOTE: 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.
     *
     * NOTE: 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 11 of 14 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

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 12 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 13 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"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":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"},{"inputs":[],"name":"MAX_MINTS_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE_ETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"amount","type":"uint256"}],"name":"burnFromRedeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTokenSupply","type":"uint256"}],"name":"decreaseTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleStatus","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTeamTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"redeemContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeemContractSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeemEnabled","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_redeemContract","type":"address"}],"name":"setRedeemContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWithdrawalAddress","type":"address"}],"name":"setWithdrawalAddress","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":[],"name":"symbol_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleRedeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawalAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052614e206008556000600a60006101000a81548160ff021916908315150217905550730fe7be1ce87d153adfbf1573e3db77bbd9e0f549600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008757600080fd5b50604051620056a5380380620056a58339818101604052810190620000ad91906200045a565b80620000bf816200012360201b60201c565b50620000e0620000d46200013f60201b60201c565b6200014760201b60201c565b60016007819055508260059080519060200190620001009291906200020d565b508160069080519060200190620001199291906200020d565b5050505062000578565b80600290805190602001906200013b9291906200020d565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021b9062000542565b90600052602060002090601f0160209004810192826200023f57600085556200028b565b82601f106200025a57805160ff19168380011785556200028b565b828001600101855582156200028b579182015b828111156200028a5782518255916020019190600101906200026d565b5b5090506200029a91906200029e565b5090565b5b80821115620002b95760008160009055506001016200029f565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200032682620002db565b810181811067ffffffffffffffff82111715620003485762000347620002ec565b5b80604052505050565b60006200035d620002bd565b90506200036b82826200031b565b919050565b600067ffffffffffffffff8211156200038e576200038d620002ec565b5b6200039982620002db565b9050602081019050919050565b60005b83811015620003c6578082015181840152602081019050620003a9565b83811115620003d6576000848401525b50505050565b6000620003f3620003ed8462000370565b62000351565b905082815260208101848484011115620004125762000411620002d6565b5b6200041f848285620003a6565b509392505050565b600082601f8301126200043f576200043e620002d1565b5b815162000451848260208601620003dc565b91505092915050565b600080600060608486031215620004765762000475620002c7565b5b600084015167ffffffffffffffff811115620004975762000496620002cc565b5b620004a58682870162000427565b935050602084015167ffffffffffffffff811115620004c957620004c8620002cc565b5b620004d78682870162000427565b925050604084015167ffffffffffffffff811115620004fb57620004fa620002cc565b5b620005098682870162000427565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200055b57607f821691505b6020821081141562000572576200057162000513565b5b50919050565b61511d80620005886000396000f3fe6080604052600436106102245760003560e01c80638da5cb5b11610123578063d2f82536116100ab578063ed9ec8881161006f578063ed9ec888146107d5578063f242432a14610812578063f2bcd0221461083b578063f2fde38b14610866578063f5298aca1461088f57610224565b8063d2f82536146106ec578063d5abeb0114610717578063e2b9e18614610742578063e985e9c51461076d578063eb8d2444146107aa57610224565b8063af17dea6116100f2578063af17dea614610617578063b874ff4314610642578063bd85b0391461066d578063c6a91b42146106aa578063ce03ec93146106d557610224565b80638da5cb5b1461057c57806395d89b41146105a7578063a0712d68146105d2578063a22cb465146105ee57610224565b80634e1273f4116101b15780636b20c454116101755780636b20c454146104bf5780636bb022c8146104e8578063715018a6146105115780637a4473e11461052857806388cf581c1461055357610224565b80634e1273f4146103c85780634f558e79146104055780635057afb41461044257806359eaa0951461046b57806368b691db1461049457610224565b80630e89341c116101f85780630e89341c146102f757806318db4c361461033457806321b8092e1461035f5780632eb2c2d61461038857806342d05b9b146103b157610224565b8062fdd58e1461022957806301ffc9a71461026657806302fe5305146102a357806306fdde03146102cc575b600080fd5b34801561023557600080fd5b50610250600480360381019061024b919061343d565b6108b8565b60405161025d919061348c565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906134ff565b610981565b60405161029a9190613547565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906136a8565b610a63565b005b3480156102d857600080fd5b506102e1610aeb565b6040516102ee9190613779565b60405180910390f35b34801561030357600080fd5b5061031e6004803603810190610319919061379b565b610b7d565b60405161032b9190613779565b60405180910390f35b34801561034057600080fd5b50610349610c11565b6040516103569190613547565b60405180910390f35b34801561036b57600080fd5b50610386600480360381019061038191906137c8565b610c24565b005b34801561039457600080fd5b506103af60048036038101906103aa919061395e565b610ce4565b005b3480156103bd57600080fd5b506103c6610d85565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190613af0565b610e2d565b6040516103fc9190613c26565b60405180910390f35b34801561041157600080fd5b5061042c6004803603810190610427919061379b565b610f46565b6040516104399190613547565b60405180910390f35b34801561044e57600080fd5b506104696004803603810190610464919061343d565b610f5a565b005b34801561047757600080fd5b50610492600480360381019061048d919061379b565b61104f565b005b3480156104a057600080fd5b506104a9611165565b6040516104b6919061348c565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190613c48565b611171565b005b3480156104f457600080fd5b5061050f600480360381019061050a91906137c8565b61120e565b005b34801561051d57600080fd5b506105266112e9565b005b34801561053457600080fd5b5061053d611371565b60405161054a9190613ce2565b60405180910390f35b34801561055f57600080fd5b5061057a6004803603810190610575919061343d565b611397565b005b34801561058857600080fd5b50610591611486565b60405161059e9190613ce2565b60405180910390f35b3480156105b357600080fd5b506105bc6114b0565b6040516105c99190613779565b60405180910390f35b6105ec60048036038101906105e7919061379b565b611542565b005b3480156105fa57600080fd5b5061061560048036038101906106109190613d29565b611790565b005b34801561062357600080fd5b5061062c6117a6565b6040516106399190613779565b60405180910390f35b34801561064e57600080fd5b50610657611834565b604051610664919061348c565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f919061379b565b611839565b6040516106a1919061348c565b60405180910390f35b3480156106b657600080fd5b506106bf611856565b6040516106cc919061348c565b60405180910390f35b3480156106e157600080fd5b506106ea61185b565b005b3480156106f857600080fd5b50610701611903565b60405161070e9190613547565b60405180910390f35b34801561072357600080fd5b5061072c611916565b604051610739919061348c565b60405180910390f35b34801561074e57600080fd5b5061075761191c565b6040516107649190613779565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190613d69565b6119aa565b6040516107a19190613547565b60405180910390f35b3480156107b657600080fd5b506107bf611a3e565b6040516107cc9190613547565b60405180910390f35b3480156107e157600080fd5b506107fc60048036038101906107f791906137c8565b611a51565b604051610809919061348c565b60405180910390f35b34801561081e57600080fd5b5061083960048036038101906108349190613da9565b611a9a565b005b34801561084757600080fd5b50610850611b3b565b60405161085d9190613ce2565b60405180910390f35b34801561087257600080fd5b5061088d600480360381019061088891906137c8565b611b61565b005b34801561089b57600080fd5b506108b660048036038101906108b19190613e40565b611c59565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092090613f05565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a5c5750610a5b82611cf6565b5b9050919050565b610a6b611d60565b73ffffffffffffffffffffffffffffffffffffffff16610a89611486565b73ffffffffffffffffffffffffffffffffffffffff1614610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690613f71565b60405180910390fd5b610ae881611d68565b50565b606060058054610afa90613fc0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2690613fc0565b8015610b735780601f10610b4857610100808354040283529160200191610b73565b820191906000526020600020905b815481529060010190602001808311610b5657829003601f168201915b5050505050905090565b606060028054610b8c90613fc0565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb890613fc0565b8015610c055780601f10610bda57610100808354040283529160200191610c05565b820191906000526020600020905b815481529060010190602001808311610be857829003601f168201915b50505050509050919050565b600a60159054906101000a900460ff1681565b610c2c611d60565b73ffffffffffffffffffffffffffffffffffffffff16610c4a611486565b73ffffffffffffffffffffffffffffffffffffffff1614610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790613f71565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cec611d60565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610d325750610d3185610d2c611d60565b6119aa565b5b610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890614064565b60405180910390fd5b610d7e8585858585611d82565b5050505050565b610d8d611d60565b73ffffffffffffffffffffffffffffffffffffffff16610dab611486565b73ffffffffffffffffffffffffffffffffffffffff1614610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df890613f71565b60405180910390fd5b600a60169054906101000a900460ff1615600a60166101000a81548160ff021916908315150217905550565b60608151835114610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a906140f6565b60405180910390fd5b6000835167ffffffffffffffff811115610e9057610e8f61357d565b5b604051908082528060200260200182016040528015610ebe5781602001602082028036833780820191505090505b50905060005b8451811015610f3b57610f0b858281518110610ee357610ee2614116565b5b6020026020010151858381518110610efe57610efd614116565b5b60200260200101516108b8565b828281518110610f1e57610f1d614116565b5b60200260200101818152505080610f3490614174565b9050610ec4565b508091505092915050565b600080610f5283611839565b119050919050565b610f62611d60565b73ffffffffffffffffffffffffffffffffffffffff16610f80611486565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90613f71565b60405180910390fd5b60085481610fe46000611839565b610fee91906141bd565b111561102f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110269061425f565b60405180910390fd5b61104b8260008360405180602001604052806000815250612096565b5050565b611057611d60565b73ffffffffffffffffffffffffffffffffffffffff16611075611486565b73ffffffffffffffffffffffffffffffffffffffff16146110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290613f71565b60405180910390fd5b806008541161110f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611106906142f1565b60405180910390fd5b6111196000611839565b81101561115b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611152906143a9565b60405180910390fd5b8060088190555050565b67016345785d8a000081565b611179611d60565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806111bf57506111be836111b9611d60565b6119aa565b5b6111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f59061443b565b60405180910390fd5b61120983838361222c565b505050565b611216611d60565b73ffffffffffffffffffffffffffffffffffffffff16611234611486565b73ffffffffffffffffffffffffffffffffffffffff161461128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190613f71565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60156101000a81548160ff02191690831515021790555050565b6112f1611d60565b73ffffffffffffffffffffffffffffffffffffffff1661130f611486565b73ffffffffffffffffffffffffffffffffffffffff1614611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90613f71565b60405180910390fd5b61136f60006124dd565b565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e906144cd565b60405180910390fd5b600a60169054906101000a900460ff16611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90614539565b60405180910390fd5b611482826000836125a3565b5050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546114bf90613fc0565b80601f01602080910402602001604051908101604052809291908181526020018280546114eb90613fc0565b80156115385780601f1061150d57610100808354040283529160200191611538565b820191906000526020600020905b81548152906001019060200180831161151b57829003601f168201915b5050505050905090565b60026007541415611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906145a5565b60405180910390fd5b60026007819055506008548161159e6000611839565b6115a891906141bd565b11156115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e09061425f565b60405180910390fd5b600a60009054906101000a900460ff16611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90614611565b60405180910390fd5b601481111561167c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116739061467d565b60405180910390fd5b606481600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c991906141bd565b111561170a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611701906146e9565b60405180910390fd5b611713816127c0565b61172f3360008360405180602001604052806000815250612096565b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461177e91906141bd565b92505081905550600160078190555050565b6117a261179b611d60565b8383612900565b5050565b600680546117b390613fc0565b80601f01602080910402602001604051908101604052809291908181526020018280546117df90613fc0565b801561182c5780601f106118015761010080835404028352916020019161182c565b820191906000526020600020905b81548152906001019060200180831161180f57829003601f168201915b505050505081565b606481565b600060036000838152602001908152602001600020549050919050565b601481565b611863611d60565b73ffffffffffffffffffffffffffffffffffffffff16611881611486565b73ffffffffffffffffffffffffffffffffffffffff16146118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90613f71565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600a60169054906101000a900460ff1681565b60085481565b6005805461192990613fc0565b80601f016020809104026020016040519081016040528092919081815260200182805461195590613fc0565b80156119a25780601f10611977576101008083540402835291602001916119a2565b820191906000526020600020905b81548152906001019060200180831161198557829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611aa2611d60565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611ae85750611ae785611ae2611d60565b6119aa565b5b611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e9061443b565b60405180910390fd5b611b348585858585612a6d565b5050505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b69611d60565b73ffffffffffffffffffffffffffffffffffffffff16611b87611486565b73ffffffffffffffffffffffffffffffffffffffff1614611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490613f71565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c449061477b565b60405180910390fd5b611c56816124dd565b50565b611c61611d60565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611ca75750611ca683611ca1611d60565b6119aa565b5b611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd9061443b565b60405180910390fd5b611cf18383836125a3565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190611d7e9291906132f2565b5050565b8151835114611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd9061480d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d9061489f565b60405180910390fd5b6000611e40611d60565b9050611e50818787878787612cef565b60005b8451811015612001576000858281518110611e7157611e70614116565b5b602002602001015190506000858381518110611e9057611e8f614116565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890614931565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe691906141bd565b9250508190555050505080611ffa90614174565b9050611e53565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612078929190614951565b60405180910390a461208e818787878787612d05565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd906149fa565b60405180910390fd5b6000612110611d60565b90506121318160008761212288612eec565b61212b88612eec565b87612cef565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461219091906141bd565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161220e929190614a1a565b60405180910390a461222581600087878787612f66565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561229c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229390614ab5565b60405180910390fd5b80518251146122e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d79061480d565b60405180910390fd5b60006122ea611d60565b905061230a81856000868660405180602001604052806000815250612cef565b60005b835181101561245757600084828151811061232b5761232a614116565b5b60200260200101519050600084838151811061234a57612349614116565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156123eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e290614b47565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061244f90614174565b91505061230d565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516124cf929190614951565b60405180910390a450505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260a90614ab5565b60405180910390fd5b600061261d611d60565b905061264d8185600061262f87612eec565b61263887612eec565b60405180602001604052806000815250612cef565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156126e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126db90614b47565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516127b1929190614a1a565b60405180910390a45050505050565b67016345785d8a0000816127d49190614b67565b3414156128c2576000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1667016345785d8a00008361282a9190614b67565b60405161283690614bf2565b60006040518083038185875af1925050503d8060008114612873576040519150601f19603f3d011682016040523d82523d6000602084013e612878565b606091505b50509050806128bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b390614c53565b60405180910390fd5b506128fd565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f490614cbf565b60405180910390fd5b50565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561296f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296690614d51565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a609190613547565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad49061489f565b60405180910390fd5b6000612ae7611d60565b9050612b07818787612af888612eec565b612b0188612eec565b87612cef565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9590614931565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c5391906141bd565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612cd0929190614a1a565b60405180910390a4612ce6828888888888612f66565b50505050505050565b612cfd86868686868661314d565b505050505050565b612d248473ffffffffffffffffffffffffffffffffffffffff166132c7565b15612ee4578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612d6a959493929190614dc6565b602060405180830381600087803b158015612d8457600080fd5b505af1925050508015612db557506040513d601f19601f82011682018060405250810190612db29190614e43565b60015b612e5b57612dc1614e7d565b806308c379a01415612e1e5750612dd6614e9f565b80612de15750612e20565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e159190613779565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5290614fa7565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed990615039565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612f0b57612f0a61357d565b5b604051908082528060200260200182016040528015612f395781602001602082028036833780820191505090505b5090508281600081518110612f5157612f50614116565b5b60200260200101818152505080915050919050565b612f858473ffffffffffffffffffffffffffffffffffffffff166132c7565b15613145578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612fcb959493929190615059565b602060405180830381600087803b158015612fe557600080fd5b505af192505050801561301657506040513d601f19601f820116820180604052508101906130139190614e43565b60015b6130bc57613022614e7d565b806308c379a0141561307f5750613037614e9f565b806130425750613081565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130769190613779565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b390614fa7565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313a90615039565b60405180910390fd5b505b505050505050565b61315b8686868686866132ea565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561320d5760005b835181101561320b578281815181106131af576131ae614116565b5b6020026020010151600360008684815181106131ce576131cd614116565b5b6020026020010151815260200190815260200160002060008282546131f391906141bd565b925050819055508061320490614174565b9050613193565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132bf5760005b83518110156132bd5782818151811061326157613260614116565b5b6020026020010151600360008684815181106132805761327f614116565b5b6020026020010151815260200190815260200160002060008282546132a591906150b3565b92505081905550806132b690614174565b9050613245565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b8280546132fe90613fc0565b90600052602060002090601f0160209004810192826133205760008555613367565b82601f1061333957805160ff1916838001178555613367565b82800160010185558215613367579182015b8281111561336657825182559160200191906001019061334b565b5b5090506133749190613378565b5090565b5b80821115613391576000816000905550600101613379565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133d4826133a9565b9050919050565b6133e4816133c9565b81146133ef57600080fd5b50565b600081359050613401816133db565b92915050565b6000819050919050565b61341a81613407565b811461342557600080fd5b50565b60008135905061343781613411565b92915050565b600080604083850312156134545761345361339f565b5b6000613462858286016133f2565b925050602061347385828601613428565b9150509250929050565b61348681613407565b82525050565b60006020820190506134a1600083018461347d565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134dc816134a7565b81146134e757600080fd5b50565b6000813590506134f9816134d3565b92915050565b6000602082840312156135155761351461339f565b5b6000613523848285016134ea565b91505092915050565b60008115159050919050565b6135418161352c565b82525050565b600060208201905061355c6000830184613538565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135b58261356c565b810181811067ffffffffffffffff821117156135d4576135d361357d565b5b80604052505050565b60006135e7613395565b90506135f382826135ac565b919050565b600067ffffffffffffffff8211156136135761361261357d565b5b61361c8261356c565b9050602081019050919050565b82818337600083830152505050565b600061364b613646846135f8565b6135dd565b90508281526020810184848401111561366757613666613567565b5b613672848285613629565b509392505050565b600082601f83011261368f5761368e613562565b5b813561369f848260208601613638565b91505092915050565b6000602082840312156136be576136bd61339f565b5b600082013567ffffffffffffffff8111156136dc576136db6133a4565b5b6136e88482850161367a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561372b578082015181840152602081019050613710565b8381111561373a576000848401525b50505050565b600061374b826136f1565b61375581856136fc565b935061376581856020860161370d565b61376e8161356c565b840191505092915050565b600060208201905081810360008301526137938184613740565b905092915050565b6000602082840312156137b1576137b061339f565b5b60006137bf84828501613428565b91505092915050565b6000602082840312156137de576137dd61339f565b5b60006137ec848285016133f2565b91505092915050565b600067ffffffffffffffff8211156138105761380f61357d565b5b602082029050602081019050919050565b600080fd5b6000613839613834846137f5565b6135dd565b9050808382526020820190506020840283018581111561385c5761385b613821565b5b835b8181101561388557806138718882613428565b84526020840193505060208101905061385e565b5050509392505050565b600082601f8301126138a4576138a3613562565b5b81356138b4848260208601613826565b91505092915050565b600067ffffffffffffffff8211156138d8576138d761357d565b5b6138e18261356c565b9050602081019050919050565b60006139016138fc846138bd565b6135dd565b90508281526020810184848401111561391d5761391c613567565b5b613928848285613629565b509392505050565b600082601f83011261394557613944613562565b5b81356139558482602086016138ee565b91505092915050565b600080600080600060a0868803121561397a5761397961339f565b5b6000613988888289016133f2565b9550506020613999888289016133f2565b945050604086013567ffffffffffffffff8111156139ba576139b96133a4565b5b6139c68882890161388f565b935050606086013567ffffffffffffffff8111156139e7576139e66133a4565b5b6139f38882890161388f565b925050608086013567ffffffffffffffff811115613a1457613a136133a4565b5b613a2088828901613930565b9150509295509295909350565b600067ffffffffffffffff821115613a4857613a4761357d565b5b602082029050602081019050919050565b6000613a6c613a6784613a2d565b6135dd565b90508083825260208201905060208402830185811115613a8f57613a8e613821565b5b835b81811015613ab85780613aa488826133f2565b845260208401935050602081019050613a91565b5050509392505050565b600082601f830112613ad757613ad6613562565b5b8135613ae7848260208601613a59565b91505092915050565b60008060408385031215613b0757613b0661339f565b5b600083013567ffffffffffffffff811115613b2557613b246133a4565b5b613b3185828601613ac2565b925050602083013567ffffffffffffffff811115613b5257613b516133a4565b5b613b5e8582860161388f565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b9d81613407565b82525050565b6000613baf8383613b94565b60208301905092915050565b6000602082019050919050565b6000613bd382613b68565b613bdd8185613b73565b9350613be883613b84565b8060005b83811015613c19578151613c008882613ba3565b9750613c0b83613bbb565b925050600181019050613bec565b5085935050505092915050565b60006020820190508181036000830152613c408184613bc8565b905092915050565b600080600060608486031215613c6157613c6061339f565b5b6000613c6f868287016133f2565b935050602084013567ffffffffffffffff811115613c9057613c8f6133a4565b5b613c9c8682870161388f565b925050604084013567ffffffffffffffff811115613cbd57613cbc6133a4565b5b613cc98682870161388f565b9150509250925092565b613cdc816133c9565b82525050565b6000602082019050613cf76000830184613cd3565b92915050565b613d068161352c565b8114613d1157600080fd5b50565b600081359050613d2381613cfd565b92915050565b60008060408385031215613d4057613d3f61339f565b5b6000613d4e858286016133f2565b9250506020613d5f85828601613d14565b9150509250929050565b60008060408385031215613d8057613d7f61339f565b5b6000613d8e858286016133f2565b9250506020613d9f858286016133f2565b9150509250929050565b600080600080600060a08688031215613dc557613dc461339f565b5b6000613dd3888289016133f2565b9550506020613de4888289016133f2565b9450506040613df588828901613428565b9350506060613e0688828901613428565b925050608086013567ffffffffffffffff811115613e2757613e266133a4565b5b613e3388828901613930565b9150509295509295909350565b600080600060608486031215613e5957613e5861339f565b5b6000613e67868287016133f2565b9350506020613e7886828701613428565b9250506040613e8986828701613428565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613eef602b836136fc565b9150613efa82613e93565b604082019050919050565b60006020820190508181036000830152613f1e81613ee2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f5b6020836136fc565b9150613f6682613f25565b602082019050919050565b60006020820190508181036000830152613f8a81613f4e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fd857607f821691505b60208210811415613fec57613feb613f91565b5b50919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061404e6032836136fc565b915061405982613ff2565b604082019050919050565b6000602082019050818103600083015261407d81614041565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006140e06029836136fc565b91506140eb82614084565b604082019050919050565b6000602082019050818103600083015261410f816140d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061417f82613407565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141b2576141b1614145565b5b600182019050919050565b60006141c882613407565b91506141d383613407565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561420857614207614145565b5b828201905092915050565b7f45786365656473206d617820746f6b656e20737570706c792100000000000000600082015250565b60006142496019836136fc565b915061425482614213565b602082019050919050565b600060208201905081810360008301526142788161423c565b9050919050565b7f4d617820746f6b656e20737570706c792063616e206f6e6c792062652064656360008201527f7265617365642100000000000000000000000000000000000000000000000000602082015250565b60006142db6027836136fc565b91506142e68261427f565b604082019050919050565b6000602082019050818103600083015261430a816142ce565b9050919050565b7f4d617820746f6b656e20737570706c792068617320746f20626520677265656160008201527f74686572207468616e206f7220657175616c20746f20746f74616c207375707060208201527f6c79210000000000000000000000000000000000000000000000000000000000604082015250565b60006143936043836136fc565b915061439e82614311565b606082019050919050565b600060208201905081810360008301526143c281614386565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006144256029836136fc565b9150614430826143c9565b604082019050919050565b6000602082019050818103600083015261445481614418565b9050919050565b7f4275726e61626c653a204f6e6c7920616c6c6f7765642066726f6d207265646560008201527f656d61626c6520636f6e74726163740000000000000000000000000000000000602082015250565b60006144b7602f836136fc565b91506144c28261445b565b604082019050919050565b600060208201905081810360008301526144e6816144aa565b9050919050565b7f4275726e2066726f6d2072656465656d2064697361626c656421000000000000600082015250565b6000614523601a836136fc565b915061452e826144ed565b602082019050919050565b6000602082019050818103600083015261455281614516565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061458f601f836136fc565b915061459a82614559565b602082019050919050565b600060208201905081810360008301526145be81614582565b9050919050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b60006145fb6013836136fc565b9150614606826145c5565b602082019050919050565b6000602082019050818103600083015261462a816145ee565b9050919050565b7f45786365656473206d6178206d696e7420706572207478210000000000000000600082015250565b60006146676018836136fc565b915061467282614631565b602082019050919050565b600060208201905081810360008301526146968161465a565b9050919050565b7f45786365656473206d6178206d696e7420706572206164647265737321000000600082015250565b60006146d3601d836136fc565b91506146de8261469d565b602082019050919050565b60006020820190508181036000830152614702816146c6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147656026836136fc565b915061477082614709565b604082019050919050565b6000602082019050818103600083015261479481614758565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006147f76028836136fc565b91506148028261479b565b604082019050919050565b60006020820190508181036000830152614826816147ea565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006148896025836136fc565b91506148948261482d565b604082019050919050565b600060208201905081810360008301526148b88161487c565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061491b602a836136fc565b9150614926826148bf565b604082019050919050565b6000602082019050818103600083015261494a8161490e565b9050919050565b6000604082019050818103600083015261496b8185613bc8565b9050818103602083015261497f8184613bc8565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006149e46021836136fc565b91506149ef82614988565b604082019050919050565b60006020820190508181036000830152614a13816149d7565b9050919050565b6000604082019050614a2f600083018561347d565b614a3c602083018461347d565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614a9f6023836136fc565b9150614aaa82614a43565b604082019050919050565b60006020820190508181036000830152614ace81614a92565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614b316024836136fc565b9150614b3c82614ad5565b604082019050919050565b60006020820190508181036000830152614b6081614b24565b9050919050565b6000614b7282613407565b9150614b7d83613407565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614bb657614bb5614145565b5b828202905092915050565b600081905092915050565b50565b6000614bdc600083614bc1565b9150614be782614bcc565b600082019050919050565b6000614bfd82614bcf565b9150819050919050565b7f5472616e73666572206661696c65642100000000000000000000000000000000600082015250565b6000614c3d6010836136fc565b9150614c4882614c07565b602082019050919050565b60006020820190508181036000830152614c6c81614c30565b9050919050565b7f496e76616c6964207061796d656e742100000000000000000000000000000000600082015250565b6000614ca96010836136fc565b9150614cb482614c73565b602082019050919050565b60006020820190508181036000830152614cd881614c9c565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614d3b6029836136fc565b9150614d4682614cdf565b604082019050919050565b60006020820190508181036000830152614d6a81614d2e565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d9882614d71565b614da28185614d7c565b9350614db281856020860161370d565b614dbb8161356c565b840191505092915050565b600060a082019050614ddb6000830188613cd3565b614de86020830187613cd3565b8181036040830152614dfa8186613bc8565b90508181036060830152614e0e8185613bc8565b90508181036080830152614e228184614d8d565b90509695505050505050565b600081519050614e3d816134d3565b92915050565b600060208284031215614e5957614e5861339f565b5b6000614e6784828501614e2e565b91505092915050565b60008160e01c9050919050565b600060033d1115614e9c5760046000803e614e99600051614e70565b90505b90565b600060443d1015614eaf57614f32565b614eb7613395565b60043d036004823e80513d602482011167ffffffffffffffff82111715614edf575050614f32565b808201805167ffffffffffffffff811115614efd5750505050614f32565b80602083010160043d038501811115614f1a575050505050614f32565b614f29826020018501866135ac565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614f916034836136fc565b9150614f9c82614f35565b604082019050919050565b60006020820190508181036000830152614fc081614f84565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006150236028836136fc565b915061502e82614fc7565b604082019050919050565b6000602082019050818103600083015261505281615016565b9050919050565b600060a08201905061506e6000830188613cd3565b61507b6020830187613cd3565b615088604083018661347d565b615095606083018561347d565b81810360808301526150a78184614d8d565b90509695505050505050565b60006150be82613407565b91506150c983613407565b9250828210156150dc576150db614145565b5b82820390509291505056fea26469706673582212205eb93a4ff1e40ec98cbe3fe215c8c562e898d9c786d869f530969f7f4fd14a6e64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000084f6d6e695061737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024f500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5768424d33354e32736979694e39666f7737437437754855675867786152474167346e535673476b5a4c64482f00000000000000000000

Deployed Bytecode

0x6080604052600436106102245760003560e01c80638da5cb5b11610123578063d2f82536116100ab578063ed9ec8881161006f578063ed9ec888146107d5578063f242432a14610812578063f2bcd0221461083b578063f2fde38b14610866578063f5298aca1461088f57610224565b8063d2f82536146106ec578063d5abeb0114610717578063e2b9e18614610742578063e985e9c51461076d578063eb8d2444146107aa57610224565b8063af17dea6116100f2578063af17dea614610617578063b874ff4314610642578063bd85b0391461066d578063c6a91b42146106aa578063ce03ec93146106d557610224565b80638da5cb5b1461057c57806395d89b41146105a7578063a0712d68146105d2578063a22cb465146105ee57610224565b80634e1273f4116101b15780636b20c454116101755780636b20c454146104bf5780636bb022c8146104e8578063715018a6146105115780637a4473e11461052857806388cf581c1461055357610224565b80634e1273f4146103c85780634f558e79146104055780635057afb41461044257806359eaa0951461046b57806368b691db1461049457610224565b80630e89341c116101f85780630e89341c146102f757806318db4c361461033457806321b8092e1461035f5780632eb2c2d61461038857806342d05b9b146103b157610224565b8062fdd58e1461022957806301ffc9a71461026657806302fe5305146102a357806306fdde03146102cc575b600080fd5b34801561023557600080fd5b50610250600480360381019061024b919061343d565b6108b8565b60405161025d919061348c565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906134ff565b610981565b60405161029a9190613547565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906136a8565b610a63565b005b3480156102d857600080fd5b506102e1610aeb565b6040516102ee9190613779565b60405180910390f35b34801561030357600080fd5b5061031e6004803603810190610319919061379b565b610b7d565b60405161032b9190613779565b60405180910390f35b34801561034057600080fd5b50610349610c11565b6040516103569190613547565b60405180910390f35b34801561036b57600080fd5b50610386600480360381019061038191906137c8565b610c24565b005b34801561039457600080fd5b506103af60048036038101906103aa919061395e565b610ce4565b005b3480156103bd57600080fd5b506103c6610d85565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190613af0565b610e2d565b6040516103fc9190613c26565b60405180910390f35b34801561041157600080fd5b5061042c6004803603810190610427919061379b565b610f46565b6040516104399190613547565b60405180910390f35b34801561044e57600080fd5b506104696004803603810190610464919061343d565b610f5a565b005b34801561047757600080fd5b50610492600480360381019061048d919061379b565b61104f565b005b3480156104a057600080fd5b506104a9611165565b6040516104b6919061348c565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190613c48565b611171565b005b3480156104f457600080fd5b5061050f600480360381019061050a91906137c8565b61120e565b005b34801561051d57600080fd5b506105266112e9565b005b34801561053457600080fd5b5061053d611371565b60405161054a9190613ce2565b60405180910390f35b34801561055f57600080fd5b5061057a6004803603810190610575919061343d565b611397565b005b34801561058857600080fd5b50610591611486565b60405161059e9190613ce2565b60405180910390f35b3480156105b357600080fd5b506105bc6114b0565b6040516105c99190613779565b60405180910390f35b6105ec60048036038101906105e7919061379b565b611542565b005b3480156105fa57600080fd5b5061061560048036038101906106109190613d29565b611790565b005b34801561062357600080fd5b5061062c6117a6565b6040516106399190613779565b60405180910390f35b34801561064e57600080fd5b50610657611834565b604051610664919061348c565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f919061379b565b611839565b6040516106a1919061348c565b60405180910390f35b3480156106b657600080fd5b506106bf611856565b6040516106cc919061348c565b60405180910390f35b3480156106e157600080fd5b506106ea61185b565b005b3480156106f857600080fd5b50610701611903565b60405161070e9190613547565b60405180910390f35b34801561072357600080fd5b5061072c611916565b604051610739919061348c565b60405180910390f35b34801561074e57600080fd5b5061075761191c565b6040516107649190613779565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190613d69565b6119aa565b6040516107a19190613547565b60405180910390f35b3480156107b657600080fd5b506107bf611a3e565b6040516107cc9190613547565b60405180910390f35b3480156107e157600080fd5b506107fc60048036038101906107f791906137c8565b611a51565b604051610809919061348c565b60405180910390f35b34801561081e57600080fd5b5061083960048036038101906108349190613da9565b611a9a565b005b34801561084757600080fd5b50610850611b3b565b60405161085d9190613ce2565b60405180910390f35b34801561087257600080fd5b5061088d600480360381019061088891906137c8565b611b61565b005b34801561089b57600080fd5b506108b660048036038101906108b19190613e40565b611c59565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092090613f05565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a5c5750610a5b82611cf6565b5b9050919050565b610a6b611d60565b73ffffffffffffffffffffffffffffffffffffffff16610a89611486565b73ffffffffffffffffffffffffffffffffffffffff1614610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690613f71565b60405180910390fd5b610ae881611d68565b50565b606060058054610afa90613fc0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2690613fc0565b8015610b735780601f10610b4857610100808354040283529160200191610b73565b820191906000526020600020905b815481529060010190602001808311610b5657829003601f168201915b5050505050905090565b606060028054610b8c90613fc0565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb890613fc0565b8015610c055780601f10610bda57610100808354040283529160200191610c05565b820191906000526020600020905b815481529060010190602001808311610be857829003601f168201915b50505050509050919050565b600a60159054906101000a900460ff1681565b610c2c611d60565b73ffffffffffffffffffffffffffffffffffffffff16610c4a611486565b73ffffffffffffffffffffffffffffffffffffffff1614610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790613f71565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cec611d60565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610d325750610d3185610d2c611d60565b6119aa565b5b610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890614064565b60405180910390fd5b610d7e8585858585611d82565b5050505050565b610d8d611d60565b73ffffffffffffffffffffffffffffffffffffffff16610dab611486565b73ffffffffffffffffffffffffffffffffffffffff1614610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df890613f71565b60405180910390fd5b600a60169054906101000a900460ff1615600a60166101000a81548160ff021916908315150217905550565b60608151835114610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a906140f6565b60405180910390fd5b6000835167ffffffffffffffff811115610e9057610e8f61357d565b5b604051908082528060200260200182016040528015610ebe5781602001602082028036833780820191505090505b50905060005b8451811015610f3b57610f0b858281518110610ee357610ee2614116565b5b6020026020010151858381518110610efe57610efd614116565b5b60200260200101516108b8565b828281518110610f1e57610f1d614116565b5b60200260200101818152505080610f3490614174565b9050610ec4565b508091505092915050565b600080610f5283611839565b119050919050565b610f62611d60565b73ffffffffffffffffffffffffffffffffffffffff16610f80611486565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90613f71565b60405180910390fd5b60085481610fe46000611839565b610fee91906141bd565b111561102f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110269061425f565b60405180910390fd5b61104b8260008360405180602001604052806000815250612096565b5050565b611057611d60565b73ffffffffffffffffffffffffffffffffffffffff16611075611486565b73ffffffffffffffffffffffffffffffffffffffff16146110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290613f71565b60405180910390fd5b806008541161110f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611106906142f1565b60405180910390fd5b6111196000611839565b81101561115b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611152906143a9565b60405180910390fd5b8060088190555050565b67016345785d8a000081565b611179611d60565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806111bf57506111be836111b9611d60565b6119aa565b5b6111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f59061443b565b60405180910390fd5b61120983838361222c565b505050565b611216611d60565b73ffffffffffffffffffffffffffffffffffffffff16611234611486565b73ffffffffffffffffffffffffffffffffffffffff161461128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190613f71565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60156101000a81548160ff02191690831515021790555050565b6112f1611d60565b73ffffffffffffffffffffffffffffffffffffffff1661130f611486565b73ffffffffffffffffffffffffffffffffffffffff1614611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90613f71565b60405180910390fd5b61136f60006124dd565b565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e906144cd565b60405180910390fd5b600a60169054906101000a900460ff16611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90614539565b60405180910390fd5b611482826000836125a3565b5050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546114bf90613fc0565b80601f01602080910402602001604051908101604052809291908181526020018280546114eb90613fc0565b80156115385780601f1061150d57610100808354040283529160200191611538565b820191906000526020600020905b81548152906001019060200180831161151b57829003601f168201915b5050505050905090565b60026007541415611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906145a5565b60405180910390fd5b60026007819055506008548161159e6000611839565b6115a891906141bd565b11156115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e09061425f565b60405180910390fd5b600a60009054906101000a900460ff16611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90614611565b60405180910390fd5b601481111561167c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116739061467d565b60405180910390fd5b606481600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c991906141bd565b111561170a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611701906146e9565b60405180910390fd5b611713816127c0565b61172f3360008360405180602001604052806000815250612096565b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461177e91906141bd565b92505081905550600160078190555050565b6117a261179b611d60565b8383612900565b5050565b600680546117b390613fc0565b80601f01602080910402602001604051908101604052809291908181526020018280546117df90613fc0565b801561182c5780601f106118015761010080835404028352916020019161182c565b820191906000526020600020905b81548152906001019060200180831161180f57829003601f168201915b505050505081565b606481565b600060036000838152602001908152602001600020549050919050565b601481565b611863611d60565b73ffffffffffffffffffffffffffffffffffffffff16611881611486565b73ffffffffffffffffffffffffffffffffffffffff16146118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90613f71565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600a60169054906101000a900460ff1681565b60085481565b6005805461192990613fc0565b80601f016020809104026020016040519081016040528092919081815260200182805461195590613fc0565b80156119a25780601f10611977576101008083540402835291602001916119a2565b820191906000526020600020905b81548152906001019060200180831161198557829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611aa2611d60565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611ae85750611ae785611ae2611d60565b6119aa565b5b611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e9061443b565b60405180910390fd5b611b348585858585612a6d565b5050505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b69611d60565b73ffffffffffffffffffffffffffffffffffffffff16611b87611486565b73ffffffffffffffffffffffffffffffffffffffff1614611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490613f71565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c449061477b565b60405180910390fd5b611c56816124dd565b50565b611c61611d60565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611ca75750611ca683611ca1611d60565b6119aa565b5b611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd9061443b565b60405180910390fd5b611cf18383836125a3565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190611d7e9291906132f2565b5050565b8151835114611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd9061480d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d9061489f565b60405180910390fd5b6000611e40611d60565b9050611e50818787878787612cef565b60005b8451811015612001576000858281518110611e7157611e70614116565b5b602002602001015190506000858381518110611e9057611e8f614116565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890614931565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe691906141bd565b9250508190555050505080611ffa90614174565b9050611e53565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612078929190614951565b60405180910390a461208e818787878787612d05565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd906149fa565b60405180910390fd5b6000612110611d60565b90506121318160008761212288612eec565b61212b88612eec565b87612cef565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461219091906141bd565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161220e929190614a1a565b60405180910390a461222581600087878787612f66565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561229c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229390614ab5565b60405180910390fd5b80518251146122e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d79061480d565b60405180910390fd5b60006122ea611d60565b905061230a81856000868660405180602001604052806000815250612cef565b60005b835181101561245757600084828151811061232b5761232a614116565b5b60200260200101519050600084838151811061234a57612349614116565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156123eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e290614b47565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061244f90614174565b91505061230d565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516124cf929190614951565b60405180910390a450505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260a90614ab5565b60405180910390fd5b600061261d611d60565b905061264d8185600061262f87612eec565b61263887612eec565b60405180602001604052806000815250612cef565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156126e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126db90614b47565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516127b1929190614a1a565b60405180910390a45050505050565b67016345785d8a0000816127d49190614b67565b3414156128c2576000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1667016345785d8a00008361282a9190614b67565b60405161283690614bf2565b60006040518083038185875af1925050503d8060008114612873576040519150601f19603f3d011682016040523d82523d6000602084013e612878565b606091505b50509050806128bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b390614c53565b60405180910390fd5b506128fd565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f490614cbf565b60405180910390fd5b50565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561296f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296690614d51565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a609190613547565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad49061489f565b60405180910390fd5b6000612ae7611d60565b9050612b07818787612af888612eec565b612b0188612eec565b87612cef565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9590614931565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c5391906141bd565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612cd0929190614a1a565b60405180910390a4612ce6828888888888612f66565b50505050505050565b612cfd86868686868661314d565b505050505050565b612d248473ffffffffffffffffffffffffffffffffffffffff166132c7565b15612ee4578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612d6a959493929190614dc6565b602060405180830381600087803b158015612d8457600080fd5b505af1925050508015612db557506040513d601f19601f82011682018060405250810190612db29190614e43565b60015b612e5b57612dc1614e7d565b806308c379a01415612e1e5750612dd6614e9f565b80612de15750612e20565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e159190613779565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5290614fa7565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed990615039565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612f0b57612f0a61357d565b5b604051908082528060200260200182016040528015612f395781602001602082028036833780820191505090505b5090508281600081518110612f5157612f50614116565b5b60200260200101818152505080915050919050565b612f858473ffffffffffffffffffffffffffffffffffffffff166132c7565b15613145578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612fcb959493929190615059565b602060405180830381600087803b158015612fe557600080fd5b505af192505050801561301657506040513d601f19601f820116820180604052508101906130139190614e43565b60015b6130bc57613022614e7d565b806308c379a0141561307f5750613037614e9f565b806130425750613081565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130769190613779565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b390614fa7565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313a90615039565b60405180910390fd5b505b505050505050565b61315b8686868686866132ea565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561320d5760005b835181101561320b578281815181106131af576131ae614116565b5b6020026020010151600360008684815181106131ce576131cd614116565b5b6020026020010151815260200190815260200160002060008282546131f391906141bd565b925050819055508061320490614174565b9050613193565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132bf5760005b83518110156132bd5782818151811061326157613260614116565b5b6020026020010151600360008684815181106132805761327f614116565b5b6020026020010151815260200190815260200160002060008282546132a591906150b3565b92505081905550806132b690614174565b9050613245565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b8280546132fe90613fc0565b90600052602060002090601f0160209004810192826133205760008555613367565b82601f1061333957805160ff1916838001178555613367565b82800160010185558215613367579182015b8281111561336657825182559160200191906001019061334b565b5b5090506133749190613378565b5090565b5b80821115613391576000816000905550600101613379565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133d4826133a9565b9050919050565b6133e4816133c9565b81146133ef57600080fd5b50565b600081359050613401816133db565b92915050565b6000819050919050565b61341a81613407565b811461342557600080fd5b50565b60008135905061343781613411565b92915050565b600080604083850312156134545761345361339f565b5b6000613462858286016133f2565b925050602061347385828601613428565b9150509250929050565b61348681613407565b82525050565b60006020820190506134a1600083018461347d565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134dc816134a7565b81146134e757600080fd5b50565b6000813590506134f9816134d3565b92915050565b6000602082840312156135155761351461339f565b5b6000613523848285016134ea565b91505092915050565b60008115159050919050565b6135418161352c565b82525050565b600060208201905061355c6000830184613538565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135b58261356c565b810181811067ffffffffffffffff821117156135d4576135d361357d565b5b80604052505050565b60006135e7613395565b90506135f382826135ac565b919050565b600067ffffffffffffffff8211156136135761361261357d565b5b61361c8261356c565b9050602081019050919050565b82818337600083830152505050565b600061364b613646846135f8565b6135dd565b90508281526020810184848401111561366757613666613567565b5b613672848285613629565b509392505050565b600082601f83011261368f5761368e613562565b5b813561369f848260208601613638565b91505092915050565b6000602082840312156136be576136bd61339f565b5b600082013567ffffffffffffffff8111156136dc576136db6133a4565b5b6136e88482850161367a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561372b578082015181840152602081019050613710565b8381111561373a576000848401525b50505050565b600061374b826136f1565b61375581856136fc565b935061376581856020860161370d565b61376e8161356c565b840191505092915050565b600060208201905081810360008301526137938184613740565b905092915050565b6000602082840312156137b1576137b061339f565b5b60006137bf84828501613428565b91505092915050565b6000602082840312156137de576137dd61339f565b5b60006137ec848285016133f2565b91505092915050565b600067ffffffffffffffff8211156138105761380f61357d565b5b602082029050602081019050919050565b600080fd5b6000613839613834846137f5565b6135dd565b9050808382526020820190506020840283018581111561385c5761385b613821565b5b835b8181101561388557806138718882613428565b84526020840193505060208101905061385e565b5050509392505050565b600082601f8301126138a4576138a3613562565b5b81356138b4848260208601613826565b91505092915050565b600067ffffffffffffffff8211156138d8576138d761357d565b5b6138e18261356c565b9050602081019050919050565b60006139016138fc846138bd565b6135dd565b90508281526020810184848401111561391d5761391c613567565b5b613928848285613629565b509392505050565b600082601f83011261394557613944613562565b5b81356139558482602086016138ee565b91505092915050565b600080600080600060a0868803121561397a5761397961339f565b5b6000613988888289016133f2565b9550506020613999888289016133f2565b945050604086013567ffffffffffffffff8111156139ba576139b96133a4565b5b6139c68882890161388f565b935050606086013567ffffffffffffffff8111156139e7576139e66133a4565b5b6139f38882890161388f565b925050608086013567ffffffffffffffff811115613a1457613a136133a4565b5b613a2088828901613930565b9150509295509295909350565b600067ffffffffffffffff821115613a4857613a4761357d565b5b602082029050602081019050919050565b6000613a6c613a6784613a2d565b6135dd565b90508083825260208201905060208402830185811115613a8f57613a8e613821565b5b835b81811015613ab85780613aa488826133f2565b845260208401935050602081019050613a91565b5050509392505050565b600082601f830112613ad757613ad6613562565b5b8135613ae7848260208601613a59565b91505092915050565b60008060408385031215613b0757613b0661339f565b5b600083013567ffffffffffffffff811115613b2557613b246133a4565b5b613b3185828601613ac2565b925050602083013567ffffffffffffffff811115613b5257613b516133a4565b5b613b5e8582860161388f565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b9d81613407565b82525050565b6000613baf8383613b94565b60208301905092915050565b6000602082019050919050565b6000613bd382613b68565b613bdd8185613b73565b9350613be883613b84565b8060005b83811015613c19578151613c008882613ba3565b9750613c0b83613bbb565b925050600181019050613bec565b5085935050505092915050565b60006020820190508181036000830152613c408184613bc8565b905092915050565b600080600060608486031215613c6157613c6061339f565b5b6000613c6f868287016133f2565b935050602084013567ffffffffffffffff811115613c9057613c8f6133a4565b5b613c9c8682870161388f565b925050604084013567ffffffffffffffff811115613cbd57613cbc6133a4565b5b613cc98682870161388f565b9150509250925092565b613cdc816133c9565b82525050565b6000602082019050613cf76000830184613cd3565b92915050565b613d068161352c565b8114613d1157600080fd5b50565b600081359050613d2381613cfd565b92915050565b60008060408385031215613d4057613d3f61339f565b5b6000613d4e858286016133f2565b9250506020613d5f85828601613d14565b9150509250929050565b60008060408385031215613d8057613d7f61339f565b5b6000613d8e858286016133f2565b9250506020613d9f858286016133f2565b9150509250929050565b600080600080600060a08688031215613dc557613dc461339f565b5b6000613dd3888289016133f2565b9550506020613de4888289016133f2565b9450506040613df588828901613428565b9350506060613e0688828901613428565b925050608086013567ffffffffffffffff811115613e2757613e266133a4565b5b613e3388828901613930565b9150509295509295909350565b600080600060608486031215613e5957613e5861339f565b5b6000613e67868287016133f2565b9350506020613e7886828701613428565b9250506040613e8986828701613428565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613eef602b836136fc565b9150613efa82613e93565b604082019050919050565b60006020820190508181036000830152613f1e81613ee2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f5b6020836136fc565b9150613f6682613f25565b602082019050919050565b60006020820190508181036000830152613f8a81613f4e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fd857607f821691505b60208210811415613fec57613feb613f91565b5b50919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061404e6032836136fc565b915061405982613ff2565b604082019050919050565b6000602082019050818103600083015261407d81614041565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006140e06029836136fc565b91506140eb82614084565b604082019050919050565b6000602082019050818103600083015261410f816140d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061417f82613407565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141b2576141b1614145565b5b600182019050919050565b60006141c882613407565b91506141d383613407565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561420857614207614145565b5b828201905092915050565b7f45786365656473206d617820746f6b656e20737570706c792100000000000000600082015250565b60006142496019836136fc565b915061425482614213565b602082019050919050565b600060208201905081810360008301526142788161423c565b9050919050565b7f4d617820746f6b656e20737570706c792063616e206f6e6c792062652064656360008201527f7265617365642100000000000000000000000000000000000000000000000000602082015250565b60006142db6027836136fc565b91506142e68261427f565b604082019050919050565b6000602082019050818103600083015261430a816142ce565b9050919050565b7f4d617820746f6b656e20737570706c792068617320746f20626520677265656160008201527f74686572207468616e206f7220657175616c20746f20746f74616c207375707060208201527f6c79210000000000000000000000000000000000000000000000000000000000604082015250565b60006143936043836136fc565b915061439e82614311565b606082019050919050565b600060208201905081810360008301526143c281614386565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006144256029836136fc565b9150614430826143c9565b604082019050919050565b6000602082019050818103600083015261445481614418565b9050919050565b7f4275726e61626c653a204f6e6c7920616c6c6f7765642066726f6d207265646560008201527f656d61626c6520636f6e74726163740000000000000000000000000000000000602082015250565b60006144b7602f836136fc565b91506144c28261445b565b604082019050919050565b600060208201905081810360008301526144e6816144aa565b9050919050565b7f4275726e2066726f6d2072656465656d2064697361626c656421000000000000600082015250565b6000614523601a836136fc565b915061452e826144ed565b602082019050919050565b6000602082019050818103600083015261455281614516565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061458f601f836136fc565b915061459a82614559565b602082019050919050565b600060208201905081810360008301526145be81614582565b9050919050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b60006145fb6013836136fc565b9150614606826145c5565b602082019050919050565b6000602082019050818103600083015261462a816145ee565b9050919050565b7f45786365656473206d6178206d696e7420706572207478210000000000000000600082015250565b60006146676018836136fc565b915061467282614631565b602082019050919050565b600060208201905081810360008301526146968161465a565b9050919050565b7f45786365656473206d6178206d696e7420706572206164647265737321000000600082015250565b60006146d3601d836136fc565b91506146de8261469d565b602082019050919050565b60006020820190508181036000830152614702816146c6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147656026836136fc565b915061477082614709565b604082019050919050565b6000602082019050818103600083015261479481614758565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006147f76028836136fc565b91506148028261479b565b604082019050919050565b60006020820190508181036000830152614826816147ea565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006148896025836136fc565b91506148948261482d565b604082019050919050565b600060208201905081810360008301526148b88161487c565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061491b602a836136fc565b9150614926826148bf565b604082019050919050565b6000602082019050818103600083015261494a8161490e565b9050919050565b6000604082019050818103600083015261496b8185613bc8565b9050818103602083015261497f8184613bc8565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006149e46021836136fc565b91506149ef82614988565b604082019050919050565b60006020820190508181036000830152614a13816149d7565b9050919050565b6000604082019050614a2f600083018561347d565b614a3c602083018461347d565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614a9f6023836136fc565b9150614aaa82614a43565b604082019050919050565b60006020820190508181036000830152614ace81614a92565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614b316024836136fc565b9150614b3c82614ad5565b604082019050919050565b60006020820190508181036000830152614b6081614b24565b9050919050565b6000614b7282613407565b9150614b7d83613407565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614bb657614bb5614145565b5b828202905092915050565b600081905092915050565b50565b6000614bdc600083614bc1565b9150614be782614bcc565b600082019050919050565b6000614bfd82614bcf565b9150819050919050565b7f5472616e73666572206661696c65642100000000000000000000000000000000600082015250565b6000614c3d6010836136fc565b9150614c4882614c07565b602082019050919050565b60006020820190508181036000830152614c6c81614c30565b9050919050565b7f496e76616c6964207061796d656e742100000000000000000000000000000000600082015250565b6000614ca96010836136fc565b9150614cb482614c73565b602082019050919050565b60006020820190508181036000830152614cd881614c9c565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614d3b6029836136fc565b9150614d4682614cdf565b604082019050919050565b60006020820190508181036000830152614d6a81614d2e565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d9882614d71565b614da28185614d7c565b9350614db281856020860161370d565b614dbb8161356c565b840191505092915050565b600060a082019050614ddb6000830188613cd3565b614de86020830187613cd3565b8181036040830152614dfa8186613bc8565b90508181036060830152614e0e8185613bc8565b90508181036080830152614e228184614d8d565b90509695505050505050565b600081519050614e3d816134d3565b92915050565b600060208284031215614e5957614e5861339f565b5b6000614e6784828501614e2e565b91505092915050565b60008160e01c9050919050565b600060033d1115614e9c5760046000803e614e99600051614e70565b90505b90565b600060443d1015614eaf57614f32565b614eb7613395565b60043d036004823e80513d602482011167ffffffffffffffff82111715614edf575050614f32565b808201805167ffffffffffffffff811115614efd5750505050614f32565b80602083010160043d038501811115614f1a575050505050614f32565b614f29826020018501866135ac565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614f916034836136fc565b9150614f9c82614f35565b604082019050919050565b60006020820190508181036000830152614fc081614f84565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006150236028836136fc565b915061502e82614fc7565b604082019050919050565b6000602082019050818103600083015261505281615016565b9050919050565b600060a08201905061506e6000830188613cd3565b61507b6020830187613cd3565b615088604083018661347d565b615095606083018561347d565b81810360808301526150a78184614d8d565b90509695505050505050565b60006150be82613407565b91506150c983613407565b9250828210156150dc576150db614145565b5b82820390509291505056fea26469706673582212205eb93a4ff1e40ec98cbe3fe215c8c562e898d9c786d869f530969f7f4fd14a6e64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000084f6d6e695061737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024f500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5768424d33354e32736979694e39666f7737437437754855675867786152474167346e535673476b5a4c64482f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): OmniPass
Arg [1] : _symbol (string): OP
Arg [2] : _uri (string): ipfs://QmWhBM35N2siyiN9fow7Ct7uHUgXgxaRGAg4nSVsGkZLdH/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 4f6d6e6950617373000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4f50000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5768424d33354e32736979694e39666f77374374377548
Arg [9] : 55675867786152474167346e535673476b5a4c64482f00000000000000000000


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.