ETH Price: $3,317.91 (-1.25%)

Token

 

Overview

Max Total Supply

10

Holders

10

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x660F6D6c9BCD08b86B50e8e53B537F2B40f243Bd
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:
TotemERC1155

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : TotemERC1155.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.3;

import { ERC1155 } from "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

contract TotemERC1155 is ERC1155, Ownable {
    address private _signer;
    string private _baseURI = "https://nifty-island-totem-public.s3.us-east-2.amazonaws.com/";
    string private _contractMetadataURI = "totem_contract.json";
    mapping(uint256 => string) public tokenMetadata;
    mapping(uint256 => bool) private usedNonces;

    constructor(address signer) ERC1155("https://nifty-island-totem-public.s3.us-east-2.amazonaws.com/") {
        _signer = signer;
        tokenMetadata[0] = "globe_totem.json";
        tokenMetadata[1] = "socrates_totem.json";
    }

    function updateSigner(address newSigner) external onlyOwner {
        _signer = newSigner;
    }

    function mint(address to, uint256 nonce, uint256 tokenId, bytes calldata signature)
        external {
        require(usedNonces[nonce] == false, "can't use the same signature twice");
        usedNonces[nonce] = true;

        bytes32 hash = ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(to, nonce, tokenId)));
        require(ECDSA.recover(hash, signature) == _signer, "Signature failed to recover");

        _mint(to, tokenId, 1, "");
    }

    function updateMetadata(uint256 tokenId, string memory metadata)
        external
        onlyOwner {
        tokenMetadata[tokenId] = metadata;
    }

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

    function updateBaseURI(string memory newURI) external onlyOwner {
        _baseURI = newURI;
    }

    function uri(uint256 id) public view override returns (string memory) {
        string memory base = baseURI();
        return bytes(base).length > 0 ? string(abi.encodePacked(base, tokenMetadata[id])) : ""; 
    }

    function contractURI() public view returns (string memory) {
        string memory base = baseURI();
        return bytes(base).length > 0 ? string(abi.encodePacked(base, _contractMetadataURI)) : ""; 
    }

    function updateContractURI(string memory newURI) external onlyOwner {
        _contractMetadataURI = newURI;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        return array;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 11 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return recover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return recover(hash, r, vs);
        } else {
            revert("ECDSA: invalid signature length");
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(
            uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,
            "ECDSA: invalid signature 's' value"
        );
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 11 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 6 of 11 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

File 7 of 11 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 11 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 10 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"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":[{"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"updateContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"metadata","type":"string"}],"name":"updateMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"updateSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526040518060600160405280603d815260200162004345603d91396005908051906020019062000035929190620002f4565b506040518060400160405280601381526020017f746f74656d5f636f6e74726163742e6a736f6e000000000000000000000000008152506006908051906020019062000083929190620002f4565b503480156200009157600080fd5b5060405162004382380380620043828339818101604052810190620000b79190620003bb565b6040518060600160405280603d815260200162004345603d9139620000e2816200020a60201b60201c565b5062000103620000f76200022660201b60201c565b6200022e60201b60201c565b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280601081526020017f676c6f62655f746f74656d2e6a736f6e00000000000000000000000000000000815250600760008081526020019081526020016000209080519060200190620001a2929190620002f4565b506040518060400160405280601381526020017f736f6372617465735f746f74656d2e6a736f6e000000000000000000000000008152506007600060018152602001908152602001600020908051906020019062000202929190620002f4565b50506200049a565b806002908051906020019062000222929190620002f4565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000302906200041b565b90600052602060002090601f01602090048101928262000326576000855562000372565b82601f106200034157805160ff191683800117855562000372565b8280016001018555821562000372579182015b828111156200037157825182559160200191906001019062000354565b5b50905062000381919062000385565b5090565b5b80821115620003a057600081600090555060010162000386565b5090565b600081519050620003b58162000480565b92915050565b600060208284031215620003ce57600080fd5b6000620003de84828501620003a4565b91505092915050565b6000620003f482620003fb565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200043457607f821691505b602082108114156200044b576200044a62000451565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200048b81620003e7565b81146200049757600080fd5b50565b613e9b80620004aa6000396000f3fe608060405234801561001057600080fd5b50600436106101205760003560e01c8063731133e9116100ad578063a7ecd37e11610071578063a7ecd37e14610303578063e8a3d4851461031f578063e985e9c51461033d578063f242432a1461036d578063f2fde38b1461038957610120565b8063731133e9146102755780637e5b1e24146102915780638da5cb5b146102ad578063931688cb146102cb578063a22cb465146102e757610120565b80634e1273f4116100f45780634e1273f4146101d157806353c8388e146102015780636914db601461021d5780636c0360eb1461024d578063715018a61461026b57610120565b8062fdd58e1461012557806301ffc9a7146101555780630e89341c146101855780632eb2c2d6146101b5575b600080fd5b61013f600480360381019061013a91906127a6565b6103a5565b60405161014c9190613370565b60405180910390f35b61016f600480360381019061016a91906128ce565b61046e565b60405161017c919061308e565b60405180910390f35b61019f600480360381019061019a9190612961565b610550565b6040516101ac91906130ee565b60405180910390f35b6101cf60048036038101906101ca919061261c565b6105b9565b005b6101eb60048036038101906101e69190612862565b61065a565b6040516101f89190613035565b60405180910390f35b61021b6004803603810190610216919061298a565b61080b565b005b61023760048036038101906102329190612961565b6108b3565b60405161024491906130ee565b60405180910390f35b610255610953565b60405161026291906130ee565b60405180910390f35b6102736109e5565b005b61028f600480360381019061028a91906127e2565b610a6d565b005b6102ab60048036038101906102a69190612920565b610c38565b005b6102b5610cce565b6040516102c29190612f58565b60405180910390f35b6102e560048036038101906102e09190612920565b610cf8565b005b61030160048036038101906102fc919061276a565b610d8e565b005b61031d600480360381019061031891906125b7565b610f0f565b005b610327610fcf565b60405161033491906130ee565b60405180910390f35b610357600480360381019061035291906125e0565b611025565b604051610364919061308e565b60405180910390f35b610387600480360381019061038291906126db565b6110b9565b005b6103a3600480360381019061039e91906125b7565b61115a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161040d90613190565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061053957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610549575061054882611252565b5b9050919050565b6060600061055c610953565b9050600081511161057c57604051806020016040528060008152506105b1565b80600760008581526020019081526020016000206040516020016105a1929190612f0e565b6040516020818303038152906040525b915050919050565b6105c16112bc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106075750610606856106016112bc565b611025565b5b610646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063d90613250565b60405180910390fd5b61065385858585856112c4565b5050505050565b606081518351146106a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069790613310565b60405180910390fd5b6000835167ffffffffffffffff8111156106e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156107115781602001602082028036833780820191505090505b50905060005b8451811015610800576107aa85828151811061075c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015185838151811061079d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516103a5565b8282815181106107e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050806107f9906136aa565b9050610717565b508091505092915050565b6108136112bc565b73ffffffffffffffffffffffffffffffffffffffff16610831610cce565b73ffffffffffffffffffffffffffffffffffffffff1614610887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087e906132d0565b60405180910390fd5b806007600084815260200190815260200160002090805190602001906108ae929190612265565b505050565b600760205280600052604060002060009150905080546108d290613647565b80601f01602080910402602001604051908101604052809291908181526020018280546108fe90613647565b801561094b5780601f106109205761010080835404028352916020019161094b565b820191906000526020600020905b81548152906001019060200180831161092e57829003601f168201915b505050505081565b60606005805461096290613647565b80601f016020809104026020016040519081016040528092919081815260200182805461098e90613647565b80156109db5780601f106109b0576101008083540402835291602001916109db565b820191906000526020600020905b8154815290600101906020018083116109be57829003601f168201915b5050505050905090565b6109ed6112bc565b73ffffffffffffffffffffffffffffffffffffffff16610a0b610cce565b73ffffffffffffffffffffffffffffffffffffffff1614610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a58906132d0565b60405180910390fd5b610a6b6000611624565b565b600015156008600086815260200190815260200160002060009054906101000a900460ff16151514610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb906131d0565b60405180910390fd5b60016008600086815260200190815260200160002060006101000a81548160ff0219169083151502179055506000610b35868686604051602001610b1a93929190612ed1565b604051602081830303815290604052805190602001206116ea565b9050600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610bbe8285858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061171a565b73ffffffffffffffffffffffffffffffffffffffff1614610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613270565b60405180910390fd5b610c3086856001604051806020016040528060008152506117c9565b505050505050565b610c406112bc565b73ffffffffffffffffffffffffffffffffffffffff16610c5e610cce565b73ffffffffffffffffffffffffffffffffffffffff1614610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab906132d0565b60405180910390fd5b8060069080519060200190610cca929190612265565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d006112bc565b73ffffffffffffffffffffffffffffffffffffffff16610d1e610cce565b73ffffffffffffffffffffffffffffffffffffffff1614610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b906132d0565b60405180910390fd5b8060059080519060200190610d8a929190612265565b5050565b8173ffffffffffffffffffffffffffffffffffffffff16610dad6112bc565b73ffffffffffffffffffffffffffffffffffffffff161415610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb906132f0565b60405180910390fd5b8060016000610e116112bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ebe6112bc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f03919061308e565b60405180910390a35050565b610f176112bc565b73ffffffffffffffffffffffffffffffffffffffff16610f35610cce565b73ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f82906132d0565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000610fdb610953565b90506000815111610ffb576040518060200160405280600081525061101f565b80600660405160200161100f929190612f0e565b6040516020818303038152906040525b91505090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110c16112bc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111075750611106856111016112bc565b611025565b5b611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d906131f0565b60405180910390fd5b611153858585858561195f565b5050505050565b6111626112bc565b73ffffffffffffffffffffffffffffffffffffffff16611180610cce565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd906132d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d906131b0565b60405180910390fd5b61124f81611624565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90613330565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90613230565b60405180910390fd5b60006113826112bc565b9050611392818787878787611be1565b60005b845181101561158f5760008582815181106113d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061141e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b6906132b0565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115749190613524565b9250508190555050505080611588906136aa565b9050611395565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611606929190613057565b60405180910390a461161c818787878787611be9565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000816040516020016116fd9190612f32565b604051602081830303815290604052805190602001209050919050565b60006041825114156117595760008060006020850151925060408501519150606085015160001a905061174f86828585611dd0565b93505050506117c3565b60408251141561178857600080602084015191506040840151905061177f858383611f5b565b925050506117c3565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90613170565b60405180910390fd5b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090613350565b60405180910390fd5b60006118436112bc565b90506118648160008761185588611fa5565b61185e88611fa5565b87611be1565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118c39190613524565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161194192919061338b565b60405180910390a46119588160008787878761206b565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690613230565b60405180910390fd5b60006119d96112bc565b90506119f98187876119ea88611fa5565b6119f388611fa5565b87611be1565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a87906132b0565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b459190613524565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611bc292919061338b565b60405180910390a4611bd882888888888861206b565b50505050505050565b505050505050565b611c088473ffffffffffffffffffffffffffffffffffffffff16612252565b15611dc8578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611c4e959493929190612f73565b602060405180830381600087803b158015611c6857600080fd5b505af1925050508015611c9957506040513d601f19601f82011682018060405250810190611c9691906128f7565b60015b611d3f57611ca56137b8565b806308c379a01415611d025750611cba613d73565b80611cc55750611d04565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf991906130ee565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690613130565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd90613150565b60405180910390fd5b505b505050505050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f90613210565b60405180910390fd5b601b8460ff161480611e4d5750601c8460ff16145b611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390613290565b60405180910390fd5b600060018686868660405160008152602001604052604051611eb194939291906130a9565b6020604051602081039080840390855afa158015611ed3573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4690613110565b60405180910390fd5b80915050949350505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84169150601b8460ff1c019050611f9a86828785611dd0565b925050509392505050565b60606000600167ffffffffffffffff811115611fea577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156120185781602001602082028036833780820191505090505b5090508281600081518110612056577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b61208a8473ffffffffffffffffffffffffffffffffffffffff16612252565b1561224a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016120d0959493929190612fdb565b602060405180830381600087803b1580156120ea57600080fd5b505af192505050801561211b57506040513d601f19601f8201168201806040525081019061211891906128f7565b60015b6121c1576121276137b8565b806308c379a01415612184575061213c613d73565b806121475750612186565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217b91906130ee565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b890613130565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223f90613150565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b82805461227190613647565b90600052602060002090601f01602090048101928261229357600085556122da565b82601f106122ac57805160ff19168380011785556122da565b828001600101855582156122da579182015b828111156122d95782518255916020019190600101906122be565b5b5090506122e791906122eb565b5090565b5b808211156123045760008160009055506001016122ec565b5090565b600061231b612316846133d9565b6133b4565b9050808382526020820190508285602086028201111561233a57600080fd5b60005b8581101561236a5781612350888261245c565b84526020840193506020830192505060018101905061233d565b5050509392505050565b600061238761238284613405565b6133b4565b905080838252602082019050828560208602820111156123a657600080fd5b60005b858110156123d657816123bc88826125a2565b8452602084019350602083019250506001810190506123a9565b5050509392505050565b60006123f36123ee84613431565b6133b4565b90508281526020810184848401111561240b57600080fd5b612416848285613605565b509392505050565b600061243161242c84613462565b6133b4565b90508281526020810184848401111561244957600080fd5b612454848285613605565b509392505050565b60008135905061246b81613e09565b92915050565b600082601f83011261248257600080fd5b8135612492848260208601612308565b91505092915050565b600082601f8301126124ac57600080fd5b81356124bc848260208601612374565b91505092915050565b6000813590506124d481613e20565b92915050565b6000813590506124e981613e37565b92915050565b6000815190506124fe81613e37565b92915050565b60008083601f84011261251657600080fd5b8235905067ffffffffffffffff81111561252f57600080fd5b60208301915083600182028301111561254757600080fd5b9250929050565b600082601f83011261255f57600080fd5b813561256f8482602086016123e0565b91505092915050565b600082601f83011261258957600080fd5b813561259984826020860161241e565b91505092915050565b6000813590506125b181613e4e565b92915050565b6000602082840312156125c957600080fd5b60006125d78482850161245c565b91505092915050565b600080604083850312156125f357600080fd5b60006126018582860161245c565b92505060206126128582860161245c565b9150509250929050565b600080600080600060a0868803121561263457600080fd5b60006126428882890161245c565b95505060206126538882890161245c565b945050604086013567ffffffffffffffff81111561267057600080fd5b61267c8882890161249b565b935050606086013567ffffffffffffffff81111561269957600080fd5b6126a58882890161249b565b925050608086013567ffffffffffffffff8111156126c257600080fd5b6126ce8882890161254e565b9150509295509295909350565b600080600080600060a086880312156126f357600080fd5b60006127018882890161245c565b95505060206127128882890161245c565b9450506040612723888289016125a2565b9350506060612734888289016125a2565b925050608086013567ffffffffffffffff81111561275157600080fd5b61275d8882890161254e565b9150509295509295909350565b6000806040838503121561277d57600080fd5b600061278b8582860161245c565b925050602061279c858286016124c5565b9150509250929050565b600080604083850312156127b957600080fd5b60006127c78582860161245c565b92505060206127d8858286016125a2565b9150509250929050565b6000806000806000608086880312156127fa57600080fd5b60006128088882890161245c565b9550506020612819888289016125a2565b945050604061282a888289016125a2565b935050606086013567ffffffffffffffff81111561284757600080fd5b61285388828901612504565b92509250509295509295909350565b6000806040838503121561287557600080fd5b600083013567ffffffffffffffff81111561288f57600080fd5b61289b85828601612471565b925050602083013567ffffffffffffffff8111156128b857600080fd5b6128c48582860161249b565b9150509250929050565b6000602082840312156128e057600080fd5b60006128ee848285016124da565b91505092915050565b60006020828403121561290957600080fd5b6000612917848285016124ef565b91505092915050565b60006020828403121561293257600080fd5b600082013567ffffffffffffffff81111561294c57600080fd5b61295884828501612578565b91505092915050565b60006020828403121561297357600080fd5b6000612981848285016125a2565b91505092915050565b6000806040838503121561299d57600080fd5b60006129ab858286016125a2565b925050602083013567ffffffffffffffff8111156129c857600080fd5b6129d485828601612578565b9150509250929050565b60006129ea8383612e8d565b60208301905092915050565b6129ff8161357a565b82525050565b612a16612a118261357a565b6136f3565b82525050565b6000612a27826134b8565b612a3181856134e6565b9350612a3c83613493565b8060005b83811015612a6d578151612a5488826129de565b9750612a5f836134d9565b925050600181019050612a40565b5085935050505092915050565b612a838161358c565b82525050565b612a9281613598565b82525050565b612aa9612aa482613598565b613705565b82525050565b6000612aba826134c3565b612ac481856134f7565b9350612ad4818560208601613614565b612add816137da565b840191505092915050565b6000612af3826134ce565b612afd8185613508565b9350612b0d818560208601613614565b612b16816137da565b840191505092915050565b6000612b2c826134ce565b612b368185613519565b9350612b46818560208601613614565b80840191505092915050565b60008154612b5f81613647565b612b698186613519565b94506001821660008114612b845760018114612b9557612bc8565b60ff19831686528186019350612bc8565b612b9e856134a3565b60005b83811015612bc057815481890152600182019150602081019050612ba1565b838801955050505b50505092915050565b6000612bde601883613508565b9150612be982613805565b602082019050919050565b6000612c01603483613508565b9150612c0c8261382e565b604082019050919050565b6000612c24602883613508565b9150612c2f8261387d565b604082019050919050565b6000612c47601f83613508565b9150612c52826138cc565b602082019050919050565b6000612c6a601c83613519565b9150612c75826138f5565b601c82019050919050565b6000612c8d602b83613508565b9150612c988261391e565b604082019050919050565b6000612cb0602683613508565b9150612cbb8261396d565b604082019050919050565b6000612cd3602283613508565b9150612cde826139bc565b604082019050919050565b6000612cf6602983613508565b9150612d0182613a0b565b604082019050919050565b6000612d19602283613508565b9150612d2482613a5a565b604082019050919050565b6000612d3c602583613508565b9150612d4782613aa9565b604082019050919050565b6000612d5f603283613508565b9150612d6a82613af8565b604082019050919050565b6000612d82601b83613508565b9150612d8d82613b47565b602082019050919050565b6000612da5602283613508565b9150612db082613b70565b604082019050919050565b6000612dc8602a83613508565b9150612dd382613bbf565b604082019050919050565b6000612deb602083613508565b9150612df682613c0e565b602082019050919050565b6000612e0e602983613508565b9150612e1982613c37565b604082019050919050565b6000612e31602983613508565b9150612e3c82613c86565b604082019050919050565b6000612e54602883613508565b9150612e5f82613cd5565b604082019050919050565b6000612e77602183613508565b9150612e8282613d24565b604082019050919050565b612e96816135ee565b82525050565b612ea5816135ee565b82525050565b612ebc612eb7826135ee565b613721565b82525050565b612ecb816135f8565b82525050565b6000612edd8286612a05565b601482019150612eed8285612eab565b602082019150612efd8284612eab565b602082019150819050949350505050565b6000612f1a8285612b21565b9150612f268284612b52565b91508190509392505050565b6000612f3d82612c5d565b9150612f498284612a98565b60208201915081905092915050565b6000602082019050612f6d60008301846129f6565b92915050565b600060a082019050612f8860008301886129f6565b612f9560208301876129f6565b8181036040830152612fa78186612a1c565b90508181036060830152612fbb8185612a1c565b90508181036080830152612fcf8184612aaf565b90509695505050505050565b600060a082019050612ff060008301886129f6565b612ffd60208301876129f6565b61300a6040830186612e9c565b6130176060830185612e9c565b81810360808301526130298184612aaf565b90509695505050505050565b6000602082019050818103600083015261304f8184612a1c565b905092915050565b600060408201905081810360008301526130718185612a1c565b905081810360208301526130858184612a1c565b90509392505050565b60006020820190506130a36000830184612a7a565b92915050565b60006080820190506130be6000830187612a89565b6130cb6020830186612ec2565b6130d86040830185612a89565b6130e56060830184612a89565b95945050505050565b600060208201905081810360008301526131088184612ae8565b905092915050565b6000602082019050818103600083015261312981612bd1565b9050919050565b6000602082019050818103600083015261314981612bf4565b9050919050565b6000602082019050818103600083015261316981612c17565b9050919050565b6000602082019050818103600083015261318981612c3a565b9050919050565b600060208201905081810360008301526131a981612c80565b9050919050565b600060208201905081810360008301526131c981612ca3565b9050919050565b600060208201905081810360008301526131e981612cc6565b9050919050565b6000602082019050818103600083015261320981612ce9565b9050919050565b6000602082019050818103600083015261322981612d0c565b9050919050565b6000602082019050818103600083015261324981612d2f565b9050919050565b6000602082019050818103600083015261326981612d52565b9050919050565b6000602082019050818103600083015261328981612d75565b9050919050565b600060208201905081810360008301526132a981612d98565b9050919050565b600060208201905081810360008301526132c981612dbb565b9050919050565b600060208201905081810360008301526132e981612dde565b9050919050565b6000602082019050818103600083015261330981612e01565b9050919050565b6000602082019050818103600083015261332981612e24565b9050919050565b6000602082019050818103600083015261334981612e47565b9050919050565b6000602082019050818103600083015261336981612e6a565b9050919050565b60006020820190506133856000830184612e9c565b92915050565b60006040820190506133a06000830185612e9c565b6133ad6020830184612e9c565b9392505050565b60006133be6133cf565b90506133ca8282613679565b919050565b6000604051905090565b600067ffffffffffffffff8211156133f4576133f3613789565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134205761341f613789565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561344c5761344b613789565b5b613455826137da565b9050602081019050919050565b600067ffffffffffffffff82111561347d5761347c613789565b5b613486826137da565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061352f826135ee565b915061353a836135ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561356f5761356e61372b565b5b828201905092915050565b6000613585826135ce565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613632578082015181840152602081019050613617565b83811115613641576000848401525b50505050565b6000600282049050600182168061365f57607f821691505b602082108114156136735761367261375a565b5b50919050565b613682826137da565b810181811067ffffffffffffffff821117156136a1576136a0613789565b5b80604052505050565b60006136b5826135ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136e8576136e761372b565b5b600182019050919050565b60006136fe8261370f565b9050919050565b6000819050919050565b600061371a826137eb565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156137d75760046000803e6137d46000516137f8565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f63616e277420757365207468652073616d65207369676e61747572652074776960008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5369676e6174757265206661696c656420746f207265636f7665720000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613d8357613e06565b613d8b6133cf565b60043d036004823e80513d602482011167ffffffffffffffff82111715613db3575050613e06565b808201805167ffffffffffffffff811115613dd15750505050613e06565b80602083010160043d038501811115613dee575050505050613e06565b613dfd82602001850186613679565b82955050505050505b90565b613e128161357a565b8114613e1d57600080fd5b50565b613e298161358c565b8114613e3457600080fd5b50565b613e40816135a2565b8114613e4b57600080fd5b50565b613e57816135ee565b8114613e6257600080fd5b5056fea2646970667358221220581703fb7b328aceef4843577c65301070781ff1115f66ed5957c638a553475564736f6c6343000803003368747470733a2f2f6e696674792d69736c616e642d746f74656d2d7075626c69632e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f0000000000000000000000002866afb60a4983e1f94ac20f5143b47b91f3d254

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101205760003560e01c8063731133e9116100ad578063a7ecd37e11610071578063a7ecd37e14610303578063e8a3d4851461031f578063e985e9c51461033d578063f242432a1461036d578063f2fde38b1461038957610120565b8063731133e9146102755780637e5b1e24146102915780638da5cb5b146102ad578063931688cb146102cb578063a22cb465146102e757610120565b80634e1273f4116100f45780634e1273f4146101d157806353c8388e146102015780636914db601461021d5780636c0360eb1461024d578063715018a61461026b57610120565b8062fdd58e1461012557806301ffc9a7146101555780630e89341c146101855780632eb2c2d6146101b5575b600080fd5b61013f600480360381019061013a91906127a6565b6103a5565b60405161014c9190613370565b60405180910390f35b61016f600480360381019061016a91906128ce565b61046e565b60405161017c919061308e565b60405180910390f35b61019f600480360381019061019a9190612961565b610550565b6040516101ac91906130ee565b60405180910390f35b6101cf60048036038101906101ca919061261c565b6105b9565b005b6101eb60048036038101906101e69190612862565b61065a565b6040516101f89190613035565b60405180910390f35b61021b6004803603810190610216919061298a565b61080b565b005b61023760048036038101906102329190612961565b6108b3565b60405161024491906130ee565b60405180910390f35b610255610953565b60405161026291906130ee565b60405180910390f35b6102736109e5565b005b61028f600480360381019061028a91906127e2565b610a6d565b005b6102ab60048036038101906102a69190612920565b610c38565b005b6102b5610cce565b6040516102c29190612f58565b60405180910390f35b6102e560048036038101906102e09190612920565b610cf8565b005b61030160048036038101906102fc919061276a565b610d8e565b005b61031d600480360381019061031891906125b7565b610f0f565b005b610327610fcf565b60405161033491906130ee565b60405180910390f35b610357600480360381019061035291906125e0565b611025565b604051610364919061308e565b60405180910390f35b610387600480360381019061038291906126db565b6110b9565b005b6103a3600480360381019061039e91906125b7565b61115a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161040d90613190565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061053957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610549575061054882611252565b5b9050919050565b6060600061055c610953565b9050600081511161057c57604051806020016040528060008152506105b1565b80600760008581526020019081526020016000206040516020016105a1929190612f0e565b6040516020818303038152906040525b915050919050565b6105c16112bc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106075750610606856106016112bc565b611025565b5b610646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063d90613250565b60405180910390fd5b61065385858585856112c4565b5050505050565b606081518351146106a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069790613310565b60405180910390fd5b6000835167ffffffffffffffff8111156106e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156107115781602001602082028036833780820191505090505b50905060005b8451811015610800576107aa85828151811061075c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015185838151811061079d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516103a5565b8282815181106107e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050806107f9906136aa565b9050610717565b508091505092915050565b6108136112bc565b73ffffffffffffffffffffffffffffffffffffffff16610831610cce565b73ffffffffffffffffffffffffffffffffffffffff1614610887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087e906132d0565b60405180910390fd5b806007600084815260200190815260200160002090805190602001906108ae929190612265565b505050565b600760205280600052604060002060009150905080546108d290613647565b80601f01602080910402602001604051908101604052809291908181526020018280546108fe90613647565b801561094b5780601f106109205761010080835404028352916020019161094b565b820191906000526020600020905b81548152906001019060200180831161092e57829003601f168201915b505050505081565b60606005805461096290613647565b80601f016020809104026020016040519081016040528092919081815260200182805461098e90613647565b80156109db5780601f106109b0576101008083540402835291602001916109db565b820191906000526020600020905b8154815290600101906020018083116109be57829003601f168201915b5050505050905090565b6109ed6112bc565b73ffffffffffffffffffffffffffffffffffffffff16610a0b610cce565b73ffffffffffffffffffffffffffffffffffffffff1614610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a58906132d0565b60405180910390fd5b610a6b6000611624565b565b600015156008600086815260200190815260200160002060009054906101000a900460ff16151514610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb906131d0565b60405180910390fd5b60016008600086815260200190815260200160002060006101000a81548160ff0219169083151502179055506000610b35868686604051602001610b1a93929190612ed1565b604051602081830303815290604052805190602001206116ea565b9050600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610bbe8285858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061171a565b73ffffffffffffffffffffffffffffffffffffffff1614610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613270565b60405180910390fd5b610c3086856001604051806020016040528060008152506117c9565b505050505050565b610c406112bc565b73ffffffffffffffffffffffffffffffffffffffff16610c5e610cce565b73ffffffffffffffffffffffffffffffffffffffff1614610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab906132d0565b60405180910390fd5b8060069080519060200190610cca929190612265565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d006112bc565b73ffffffffffffffffffffffffffffffffffffffff16610d1e610cce565b73ffffffffffffffffffffffffffffffffffffffff1614610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b906132d0565b60405180910390fd5b8060059080519060200190610d8a929190612265565b5050565b8173ffffffffffffffffffffffffffffffffffffffff16610dad6112bc565b73ffffffffffffffffffffffffffffffffffffffff161415610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb906132f0565b60405180910390fd5b8060016000610e116112bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ebe6112bc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f03919061308e565b60405180910390a35050565b610f176112bc565b73ffffffffffffffffffffffffffffffffffffffff16610f35610cce565b73ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f82906132d0565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000610fdb610953565b90506000815111610ffb576040518060200160405280600081525061101f565b80600660405160200161100f929190612f0e565b6040516020818303038152906040525b91505090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110c16112bc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111075750611106856111016112bc565b611025565b5b611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d906131f0565b60405180910390fd5b611153858585858561195f565b5050505050565b6111626112bc565b73ffffffffffffffffffffffffffffffffffffffff16611180610cce565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd906132d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d906131b0565b60405180910390fd5b61124f81611624565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90613330565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90613230565b60405180910390fd5b60006113826112bc565b9050611392818787878787611be1565b60005b845181101561158f5760008582815181106113d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061141e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b6906132b0565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115749190613524565b9250508190555050505080611588906136aa565b9050611395565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611606929190613057565b60405180910390a461161c818787878787611be9565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000816040516020016116fd9190612f32565b604051602081830303815290604052805190602001209050919050565b60006041825114156117595760008060006020850151925060408501519150606085015160001a905061174f86828585611dd0565b93505050506117c3565b60408251141561178857600080602084015191506040840151905061177f858383611f5b565b925050506117c3565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90613170565b60405180910390fd5b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090613350565b60405180910390fd5b60006118436112bc565b90506118648160008761185588611fa5565b61185e88611fa5565b87611be1565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118c39190613524565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161194192919061338b565b60405180910390a46119588160008787878761206b565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690613230565b60405180910390fd5b60006119d96112bc565b90506119f98187876119ea88611fa5565b6119f388611fa5565b87611be1565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a87906132b0565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b459190613524565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611bc292919061338b565b60405180910390a4611bd882888888888861206b565b50505050505050565b505050505050565b611c088473ffffffffffffffffffffffffffffffffffffffff16612252565b15611dc8578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611c4e959493929190612f73565b602060405180830381600087803b158015611c6857600080fd5b505af1925050508015611c9957506040513d601f19601f82011682018060405250810190611c9691906128f7565b60015b611d3f57611ca56137b8565b806308c379a01415611d025750611cba613d73565b80611cc55750611d04565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf991906130ee565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690613130565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd90613150565b60405180910390fd5b505b505050505050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f90613210565b60405180910390fd5b601b8460ff161480611e4d5750601c8460ff16145b611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390613290565b60405180910390fd5b600060018686868660405160008152602001604052604051611eb194939291906130a9565b6020604051602081039080840390855afa158015611ed3573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4690613110565b60405180910390fd5b80915050949350505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84169150601b8460ff1c019050611f9a86828785611dd0565b925050509392505050565b60606000600167ffffffffffffffff811115611fea577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156120185781602001602082028036833780820191505090505b5090508281600081518110612056577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b61208a8473ffffffffffffffffffffffffffffffffffffffff16612252565b1561224a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016120d0959493929190612fdb565b602060405180830381600087803b1580156120ea57600080fd5b505af192505050801561211b57506040513d601f19601f8201168201806040525081019061211891906128f7565b60015b6121c1576121276137b8565b806308c379a01415612184575061213c613d73565b806121475750612186565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217b91906130ee565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b890613130565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223f90613150565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b82805461227190613647565b90600052602060002090601f01602090048101928261229357600085556122da565b82601f106122ac57805160ff19168380011785556122da565b828001600101855582156122da579182015b828111156122d95782518255916020019190600101906122be565b5b5090506122e791906122eb565b5090565b5b808211156123045760008160009055506001016122ec565b5090565b600061231b612316846133d9565b6133b4565b9050808382526020820190508285602086028201111561233a57600080fd5b60005b8581101561236a5781612350888261245c565b84526020840193506020830192505060018101905061233d565b5050509392505050565b600061238761238284613405565b6133b4565b905080838252602082019050828560208602820111156123a657600080fd5b60005b858110156123d657816123bc88826125a2565b8452602084019350602083019250506001810190506123a9565b5050509392505050565b60006123f36123ee84613431565b6133b4565b90508281526020810184848401111561240b57600080fd5b612416848285613605565b509392505050565b600061243161242c84613462565b6133b4565b90508281526020810184848401111561244957600080fd5b612454848285613605565b509392505050565b60008135905061246b81613e09565b92915050565b600082601f83011261248257600080fd5b8135612492848260208601612308565b91505092915050565b600082601f8301126124ac57600080fd5b81356124bc848260208601612374565b91505092915050565b6000813590506124d481613e20565b92915050565b6000813590506124e981613e37565b92915050565b6000815190506124fe81613e37565b92915050565b60008083601f84011261251657600080fd5b8235905067ffffffffffffffff81111561252f57600080fd5b60208301915083600182028301111561254757600080fd5b9250929050565b600082601f83011261255f57600080fd5b813561256f8482602086016123e0565b91505092915050565b600082601f83011261258957600080fd5b813561259984826020860161241e565b91505092915050565b6000813590506125b181613e4e565b92915050565b6000602082840312156125c957600080fd5b60006125d78482850161245c565b91505092915050565b600080604083850312156125f357600080fd5b60006126018582860161245c565b92505060206126128582860161245c565b9150509250929050565b600080600080600060a0868803121561263457600080fd5b60006126428882890161245c565b95505060206126538882890161245c565b945050604086013567ffffffffffffffff81111561267057600080fd5b61267c8882890161249b565b935050606086013567ffffffffffffffff81111561269957600080fd5b6126a58882890161249b565b925050608086013567ffffffffffffffff8111156126c257600080fd5b6126ce8882890161254e565b9150509295509295909350565b600080600080600060a086880312156126f357600080fd5b60006127018882890161245c565b95505060206127128882890161245c565b9450506040612723888289016125a2565b9350506060612734888289016125a2565b925050608086013567ffffffffffffffff81111561275157600080fd5b61275d8882890161254e565b9150509295509295909350565b6000806040838503121561277d57600080fd5b600061278b8582860161245c565b925050602061279c858286016124c5565b9150509250929050565b600080604083850312156127b957600080fd5b60006127c78582860161245c565b92505060206127d8858286016125a2565b9150509250929050565b6000806000806000608086880312156127fa57600080fd5b60006128088882890161245c565b9550506020612819888289016125a2565b945050604061282a888289016125a2565b935050606086013567ffffffffffffffff81111561284757600080fd5b61285388828901612504565b92509250509295509295909350565b6000806040838503121561287557600080fd5b600083013567ffffffffffffffff81111561288f57600080fd5b61289b85828601612471565b925050602083013567ffffffffffffffff8111156128b857600080fd5b6128c48582860161249b565b9150509250929050565b6000602082840312156128e057600080fd5b60006128ee848285016124da565b91505092915050565b60006020828403121561290957600080fd5b6000612917848285016124ef565b91505092915050565b60006020828403121561293257600080fd5b600082013567ffffffffffffffff81111561294c57600080fd5b61295884828501612578565b91505092915050565b60006020828403121561297357600080fd5b6000612981848285016125a2565b91505092915050565b6000806040838503121561299d57600080fd5b60006129ab858286016125a2565b925050602083013567ffffffffffffffff8111156129c857600080fd5b6129d485828601612578565b9150509250929050565b60006129ea8383612e8d565b60208301905092915050565b6129ff8161357a565b82525050565b612a16612a118261357a565b6136f3565b82525050565b6000612a27826134b8565b612a3181856134e6565b9350612a3c83613493565b8060005b83811015612a6d578151612a5488826129de565b9750612a5f836134d9565b925050600181019050612a40565b5085935050505092915050565b612a838161358c565b82525050565b612a9281613598565b82525050565b612aa9612aa482613598565b613705565b82525050565b6000612aba826134c3565b612ac481856134f7565b9350612ad4818560208601613614565b612add816137da565b840191505092915050565b6000612af3826134ce565b612afd8185613508565b9350612b0d818560208601613614565b612b16816137da565b840191505092915050565b6000612b2c826134ce565b612b368185613519565b9350612b46818560208601613614565b80840191505092915050565b60008154612b5f81613647565b612b698186613519565b94506001821660008114612b845760018114612b9557612bc8565b60ff19831686528186019350612bc8565b612b9e856134a3565b60005b83811015612bc057815481890152600182019150602081019050612ba1565b838801955050505b50505092915050565b6000612bde601883613508565b9150612be982613805565b602082019050919050565b6000612c01603483613508565b9150612c0c8261382e565b604082019050919050565b6000612c24602883613508565b9150612c2f8261387d565b604082019050919050565b6000612c47601f83613508565b9150612c52826138cc565b602082019050919050565b6000612c6a601c83613519565b9150612c75826138f5565b601c82019050919050565b6000612c8d602b83613508565b9150612c988261391e565b604082019050919050565b6000612cb0602683613508565b9150612cbb8261396d565b604082019050919050565b6000612cd3602283613508565b9150612cde826139bc565b604082019050919050565b6000612cf6602983613508565b9150612d0182613a0b565b604082019050919050565b6000612d19602283613508565b9150612d2482613a5a565b604082019050919050565b6000612d3c602583613508565b9150612d4782613aa9565b604082019050919050565b6000612d5f603283613508565b9150612d6a82613af8565b604082019050919050565b6000612d82601b83613508565b9150612d8d82613b47565b602082019050919050565b6000612da5602283613508565b9150612db082613b70565b604082019050919050565b6000612dc8602a83613508565b9150612dd382613bbf565b604082019050919050565b6000612deb602083613508565b9150612df682613c0e565b602082019050919050565b6000612e0e602983613508565b9150612e1982613c37565b604082019050919050565b6000612e31602983613508565b9150612e3c82613c86565b604082019050919050565b6000612e54602883613508565b9150612e5f82613cd5565b604082019050919050565b6000612e77602183613508565b9150612e8282613d24565b604082019050919050565b612e96816135ee565b82525050565b612ea5816135ee565b82525050565b612ebc612eb7826135ee565b613721565b82525050565b612ecb816135f8565b82525050565b6000612edd8286612a05565b601482019150612eed8285612eab565b602082019150612efd8284612eab565b602082019150819050949350505050565b6000612f1a8285612b21565b9150612f268284612b52565b91508190509392505050565b6000612f3d82612c5d565b9150612f498284612a98565b60208201915081905092915050565b6000602082019050612f6d60008301846129f6565b92915050565b600060a082019050612f8860008301886129f6565b612f9560208301876129f6565b8181036040830152612fa78186612a1c565b90508181036060830152612fbb8185612a1c565b90508181036080830152612fcf8184612aaf565b90509695505050505050565b600060a082019050612ff060008301886129f6565b612ffd60208301876129f6565b61300a6040830186612e9c565b6130176060830185612e9c565b81810360808301526130298184612aaf565b90509695505050505050565b6000602082019050818103600083015261304f8184612a1c565b905092915050565b600060408201905081810360008301526130718185612a1c565b905081810360208301526130858184612a1c565b90509392505050565b60006020820190506130a36000830184612a7a565b92915050565b60006080820190506130be6000830187612a89565b6130cb6020830186612ec2565b6130d86040830185612a89565b6130e56060830184612a89565b95945050505050565b600060208201905081810360008301526131088184612ae8565b905092915050565b6000602082019050818103600083015261312981612bd1565b9050919050565b6000602082019050818103600083015261314981612bf4565b9050919050565b6000602082019050818103600083015261316981612c17565b9050919050565b6000602082019050818103600083015261318981612c3a565b9050919050565b600060208201905081810360008301526131a981612c80565b9050919050565b600060208201905081810360008301526131c981612ca3565b9050919050565b600060208201905081810360008301526131e981612cc6565b9050919050565b6000602082019050818103600083015261320981612ce9565b9050919050565b6000602082019050818103600083015261322981612d0c565b9050919050565b6000602082019050818103600083015261324981612d2f565b9050919050565b6000602082019050818103600083015261326981612d52565b9050919050565b6000602082019050818103600083015261328981612d75565b9050919050565b600060208201905081810360008301526132a981612d98565b9050919050565b600060208201905081810360008301526132c981612dbb565b9050919050565b600060208201905081810360008301526132e981612dde565b9050919050565b6000602082019050818103600083015261330981612e01565b9050919050565b6000602082019050818103600083015261332981612e24565b9050919050565b6000602082019050818103600083015261334981612e47565b9050919050565b6000602082019050818103600083015261336981612e6a565b9050919050565b60006020820190506133856000830184612e9c565b92915050565b60006040820190506133a06000830185612e9c565b6133ad6020830184612e9c565b9392505050565b60006133be6133cf565b90506133ca8282613679565b919050565b6000604051905090565b600067ffffffffffffffff8211156133f4576133f3613789565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134205761341f613789565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561344c5761344b613789565b5b613455826137da565b9050602081019050919050565b600067ffffffffffffffff82111561347d5761347c613789565b5b613486826137da565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061352f826135ee565b915061353a836135ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561356f5761356e61372b565b5b828201905092915050565b6000613585826135ce565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613632578082015181840152602081019050613617565b83811115613641576000848401525b50505050565b6000600282049050600182168061365f57607f821691505b602082108114156136735761367261375a565b5b50919050565b613682826137da565b810181811067ffffffffffffffff821117156136a1576136a0613789565b5b80604052505050565b60006136b5826135ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136e8576136e761372b565b5b600182019050919050565b60006136fe8261370f565b9050919050565b6000819050919050565b600061371a826137eb565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156137d75760046000803e6137d46000516137f8565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f63616e277420757365207468652073616d65207369676e61747572652074776960008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5369676e6174757265206661696c656420746f207265636f7665720000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613d8357613e06565b613d8b6133cf565b60043d036004823e80513d602482011167ffffffffffffffff82111715613db3575050613e06565b808201805167ffffffffffffffff811115613dd15750505050613e06565b80602083010160043d038501811115613dee575050505050613e06565b613dfd82602001850186613679565b82955050505050505b90565b613e128161357a565b8114613e1d57600080fd5b50565b613e298161358c565b8114613e3457600080fd5b50565b613e40816135a2565b8114613e4b57600080fd5b50565b613e57816135ee565b8114613e6257600080fd5b5056fea2646970667358221220581703fb7b328aceef4843577c65301070781ff1115f66ed5957c638a553475564736f6c63430008030033

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

0000000000000000000000002866afb60a4983e1f94ac20f5143b47b91f3d254

-----Decoded View---------------
Arg [0] : signer (address): 0x2866aFB60a4983e1f94ac20F5143B47B91f3d254

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002866afb60a4983e1f94ac20f5143b47b91f3d254


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.