ETH Price: $3,272.06 (-4.21%)
Gas: 8 Gwei

Token

 

Overview

Max Total Supply

257

Holders

217

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
4happy.eth
0x4ac40f0a8665d56d5735013843d4c0f959f78f73
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:
BabelTowerDAC

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 9999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-28
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Context.sol


pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC1155/ERC1155.sol


pragma solidity ^0.8.0;







/**
 *
 * @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(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        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");
        _balances[id][from] = fromBalance - amount;
        _balances[id][to] += amount;

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

        _doSafeTransferAcceptanceCheck(operator, 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(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );

        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");
            _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 (uint 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");
        _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 (uint 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");
            _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: @openzeppelin/contracts/access/Ownable.sol


pragma solidity ^0.8.0;

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol


pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

// File: @openzeppelin/contracts/access/AccessControl.sol


pragma solidity ^0.8.0;



/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/access/AccessControlEnumerable.sol


pragma solidity ^0.8.0;



/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}

// File: @openzeppelin/contracts/security/Pausable.sol


pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.sol


pragma solidity ^0.8.0;



/**
 * @dev ERC1155 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Pausable is ERC1155, Pausable {
    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        internal
        virtual
        override
    {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        require(!paused(), "ERC1155Pausable: token transfer while paused");
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol


pragma solidity ^0.8.0;


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

        _burn(account, id, value);
    }

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

        _burnBatch(account, ids, values);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


pragma solidity ^0.8.0;


/**
 * _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: @openzeppelin/contracts/token/ERC1155/presets/ERC1155PresetMinterPauser.sol


pragma solidity ^0.8.0;






/**
 * @dev {ERC1155} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract ERC1155PresetMinterPauser is Context, AccessControlEnumerable, ERC1155Burnable, ERC1155Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE`, and `PAUSER_ROLE` to the account that
     * deploys the contract.
     */
    constructor(string memory uri) ERC1155(uri) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`, of token type `id`.
     *
     * See {ERC1155-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 id, uint256 amount, bytes memory data) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint");

        _mint(to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] variant of {mint}.
     */
    function mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint");

        _mintBatch(to, ids, amounts, data);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC1155Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC1155Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC1155) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

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

// File: contracts/simplified/BabelTowerDAC.sol

pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;




contract BabelTowerDAC is ERC1155PresetMinterPauser, Ownable {
    using SafeMath for uint256;
    
    event Claim(address indexed reciever, uint256 id, uint256 code, uint256 claimed);
    event FinalNFTMinted(address indexed reciever, uint256 id, uint256 claimed);
    event FinalNFTNameChanged(address indexed sender, uint256 id, string name);
    
    enum SYNTHETIC_STATUS { INACTIVE, ACTIVE }
    
    struct BabelTowerPuzzlePiece {
        address originalOwner;
        // NFT id
        uint256 id;
        // Tribe code
        uint256 code;
        // Tribe power
        uint256 power;
    }
    
    address payable private DEV_ADDR;
    // The status of final NFT
    SYNTHETIC_STATUS public FINAL_NFT_STATUS = SYNTHETIC_STATUS.INACTIVE;
    uint256 private FINAL_ID = 0;
    // The required number of pieces
    uint256 public REQUIRED_PIECES = 256;
    // The number of claimed user
    uint256 public claimed = 0;
    string public PUZZLE_NAME_OF_FINAL_NFT = "Rebuilding The Tower Of Babel";
    mapping(uint256 => BabelTowerPuzzlePiece) public originalPieceInfoOfId;
    // Detect if the user address has claimed
    mapping(address => bool) public isClaimedUser;
    
    constructor(address _devAddr) ERC1155PresetMinterPauser("https://nft-static.metisdao.org/jsons/babel_tower/{id}.json") {
        DEV_ADDR = payable(_devAddr);
    }
    
    function claim(
        address to, 
        uint256 code,
        uint256 power
    ) external returns(bool) {
        require(FINAL_NFT_STATUS == SYNTHETIC_STATUS.INACTIVE, "BabelTowerDAC: can't claim after synthetic");
        require(hasRole(MINTER_ROLE, _msgSender()), "BabelTowerDAC: must have minter role to claim");
        require(!isClaimedUser[to], "BabelTowerDAC: can't claim twice");
        require((claimed + 1) <= REQUIRED_PIECES, "BabelTowerDAC: over required pieces");
        BabelTowerPuzzlePiece memory piece = BabelTowerPuzzlePiece(
            to,
            claimed + 1,
            code,
            power
        );
        originalPieceInfoOfId[claimed + 1] = piece;
        claimed += 1;
        isClaimedUser[to] = true;
        emit Claim(to, piece.id, piece.code, claimed);
        mint(to, piece.id, 1, '');
        return true;
    }
    
    // ====== OWNER METHODS ====== //
    
    function generateFinalNFT() external onlyOwner {
        require(claimed == REQUIRED_PIECES, "BabelTowerDAC: Wait to reach required pieces number");
        mint(DEV_ADDR, FINAL_ID, 1, '');
        FINAL_NFT_STATUS = SYNTHETIC_STATUS.ACTIVE;
        emit FinalNFTMinted(DEV_ADDR, FINAL_ID, claimed);
    }
    
    function setRequiredPieces(uint256 number) external onlyOwner {
        require(FINAL_NFT_STATUS == SYNTHETIC_STATUS.INACTIVE, "BabelTowerDAC: can't set after synthetic");
        require(number >= claimed, "BabelTowerDAC: number can't less than claimed number");
        REQUIRED_PIECES = number;
    }
    
    function setPuzzleName(string memory name) external onlyOwner {
        require(FINAL_NFT_STATUS == SYNTHETIC_STATUS.INACTIVE, "BabelTowerDAC: can't set after synthetic");
        PUZZLE_NAME_OF_FINAL_NFT = name;
        emit FinalNFTNameChanged(msg.sender, FINAL_ID, name);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_devAddr","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":"reciever","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"code","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimed","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"reciever","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimed","type":"uint256"}],"name":"FinalNFTMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"string","name":"name","type":"string"}],"name":"FinalNFTNameChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FINAL_NFT_STATUS","outputs":[{"internalType":"enum BabelTowerDAC.SYNTHETIC_STATUS","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUZZLE_NAME_OF_FINAL_NFT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REQUIRED_PIECES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"code","type":"uint256"},{"internalType":"uint256","name":"power","type":"uint256"}],"name":"claim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generateFinalNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"isClaimedUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"originalPieceInfoOfId","outputs":[{"internalType":"address","name":"originalOwner","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"code","type":"uint256"},{"internalType":"uint256","name":"power","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":"string","name":"name","type":"string"}],"name":"setPuzzleName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setRequiredPieces","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

6006805460ff60a01b191690556000600781905561010060085560095560c0604052601d60808190527f52656275696c64696e672054686520546f776572204f6620426162656c00000060a09081526200005d91600a91906200030f565b503480156200006b57600080fd5b506040516200425d3803806200425d8339810160408190526200008e91620003b5565b6040518060600160405280603b815260200162004222603b913980620000b48162000195565b506005805460ff19169055620000cc600033620001ae565b620000f87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620001ae565b620001247f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620001ae565b5060058054610100600160a81b0319163361010081029190911790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600680546001600160a01b0319166001600160a01b039290921691909117905562000422565b8051620001aa9060049060208401906200030f565b5050565b620001c58282620001f160201b62001f621760201c565b6000828152600160209081526040909120620001ec91839062001f70620001fd821b17901c565b505050565b620001aa82826200021d565b600062000214836001600160a01b038416620002bd565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620001aa576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002793390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054620003065750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000217565b50600062000217565b8280546200031d90620003e5565b90600052602060002090601f0160209004810192826200034157600085556200038c565b82601f106200035c57805160ff19168380011785556200038c565b828001600101855582156200038c579182015b828111156200038c5782518255916020019190600101906200036f565b506200039a9291506200039e565b5090565b5b808211156200039a57600081556001016200039f565b600060208284031215620003c7578081fd5b81516001600160a01b0381168114620003de578182fd5b9392505050565b600181811c90821680620003fa57607f821691505b602082108114156200041c57634e487b7160e01b600052602260045260246000fd5b50919050565b613df080620004326000396000f3fe608060405234801561001057600080fd5b50600436106102915760003560e01c80638da5cb5b11610160578063d5391393116100d8578063e985e9c51161008c578063f242432a11610071578063f242432a14610631578063f2fde38b14610644578063f5298aca1461065757600080fd5b8063e985e9c5146105ed578063ec616f2a1461062957600080fd5b8063d9244128116100bd578063d92441281461058b578063e63ab1e9146105bd578063e834a834146105e457600080fd5b8063d539139314610551578063d547741f1461057857600080fd5b8063a217fddf1161012f578063a4ac9aa811610114578063a4ac9aa8146104b2578063a9de80e81461051b578063ca15c8731461053e57600080fd5b8063a217fddf14610497578063a22cb4651461049f57600080fd5b80638da5cb5b146104105780639010d07c1461043a57806391d148541461044d578063a0dcbaf71461048457600080fd5b806332ad8d271161020e5780636b20c454116101c2578063731133e9116101a7578063731133e9146103ed5780638456cb5914610400578063893d6f361461040857600080fd5b80636b20c454146103d2578063715018a6146103e557600080fd5b80633f4ba83a116101f35780633f4ba83a1461039f5780634e1273f4146103a75780635c975abb146103c757600080fd5b806332ad8d271461038357806336568abe1461038c57600080fd5b80631f7fdffa116102655780632bc43fd91161024a5780632bc43fd91461034a5780632eb2c2d61461035d5780632f2ff15d1461037057600080fd5b80631f7fdffa14610314578063248a9ca31461032757600080fd5b8062fdd58e1461029657806301ffc9a7146102bc57806307060010146102df5780630e89341c146102f4575b600080fd5b6102a96102a4366004613794565b61066a565b6040519081526020015b60405180910390f35b6102cf6102ca366004613968565b610718565b60405190151581526020016102b3565b6102f26102ed3660046139a0565b610723565b005b61030761030236600461390d565b610891565b6040516102b39190613b7d565b6102f26103223660046136c5565b610925565b6102a961033536600461390d565b60009081526020819052604090206001015490565b6102cf6103583660046137bd565b6109d3565b6102f261036b36600461354b565b610d6b565b6102f261037e366004613925565b61110f565b6102a960085481565b6102f261039a366004613925565b611136565b6102f2611158565b6103ba6103b5366004613842565b6111fe565b6040516102b39190613b14565b60055460ff166102cf565b6102f26103e0366004613654565b611374565b6102f261140d565b6102f26103fb3660046137ef565b6114d4565b6102f261157c565b610307611620565b60055461010090046001600160a01b03165b6040516001600160a01b0390911681526020016102b3565b610422610448366004613947565b6116ae565b6102cf61045b366004613925565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6102f261049236600461390d565b6116cd565b6102a9600081565b6102f26104ad36600461375a565b61185c565b6104f16104c036600461390d565b600b6020526000908152604090208054600182015460028301546003909301546001600160a01b0390921692909184565b604080516001600160a01b03909516855260208501939093529183015260608201526080016102b3565b6102cf6105293660046134ff565b600c6020526000908152604090205460ff1681565b6102a961054c36600461390d565b611947565b6102a97f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102f2610586366004613925565b61195e565b6006546105b09074010000000000000000000000000000000000000000900460ff1681565b6040516102b39190613b55565b6102a97f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6102a960095481565b6102cf6105fb366004613519565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b6102f2611968565b6102f261063f3660046135f1565b611afc565b6102f26106523660046134ff565b611d6f565b6102f26106653660046137bd565b611ec9565b60006001600160a01b0383166106ed5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060008181526002602090815260408083206001600160a01b03861684529091529020545b92915050565b600061071282611f85565b6005546001600160a01b036101009091041633146107835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106e4565b600060065474010000000000000000000000000000000000000000900460ff1660018111156107c257634e487b7160e01b600052602160045260246000fd5b146108355760405162461bcd60e51b815260206004820152602860248201527f426162656c546f7765724441433a2063616e277420736574206166746572207360448201527f796e74686574696300000000000000000000000000000000000000000000000060648201526084016106e4565b805161084890600a906020840190613359565b50336001600160a01b03167f9017c0bfea7c00126e57c3a00532eecd33b025043464845ed7e13e2b41aac52660075483604051610886929190613b90565b60405180910390a250565b6060600480546108a090613bfc565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc90613bfc565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b50505050509050919050565b61094f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361045b565b6109c15760405162461bcd60e51b815260206004820152603860248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f68617665206d696e74657220726f6c6520746f206d696e74000000000000000060648201526084016106e4565b6109cd84848484612027565b50505050565b60008060065474010000000000000000000000000000000000000000900460ff166001811115610a1357634e487b7160e01b600052602160045260246000fd5b14610a865760405162461bcd60e51b815260206004820152602a60248201527f426162656c546f7765724441433a2063616e277420636c61696d20616674657260448201527f2073796e7468657469630000000000000000000000000000000000000000000060648201526084016106e4565b610ab07f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361045b565b610b225760405162461bcd60e51b815260206004820152602d60248201527f426162656c546f7765724441433a206d7573742068617665206d696e7465722060448201527f726f6c6520746f20636c61696d0000000000000000000000000000000000000060648201526084016106e4565b6001600160a01b0384166000908152600c602052604090205460ff1615610b8b5760405162461bcd60e51b815260206004820181905260248201527f426162656c546f7765724441433a2063616e277420636c61696d20747769636560448201526064016106e4565b600854600954610b9c906001613bcd565b1115610c105760405162461bcd60e51b815260206004820152602360248201527f426162656c546f7765724441433a206f7665722072657175697265642070696560448201527f636573000000000000000000000000000000000000000000000000000000000060648201526084016106e4565b60006040518060800160405280866001600160a01b031681526020016009546001610c3b9190613bcd565b815260200185815260200184815250905080600b60006009546001610c609190613bcd565b815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550602082015181600101556040820151816002015560608201518160030155905050600160096000828254610ccf9190613bcd565b90915550506001600160a01b0385166000818152600c6020908152604091829020805460ff191660011790558381015184830151600954845192835292820152918201527f45c072aa05b9853b5a993de7a28bc332ee01404a628cec1a23ce0f659f842ef19060600160405180910390a2610d608582602001516001604051806020016040528060008152506114d4565b506001949350505050565b8151835114610de25760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016106e4565b6001600160a01b038416610e5e5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106e4565b6001600160a01b038516331480610e7a5750610e7a85336105fb565b610eec5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016106e4565b33610efb818787878787612251565b60005b84518110156110a1576000858281518110610f2957634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110610f5557634e487b7160e01b600052603260045260246000fd5b60209081029190910181015160008481526002835260408082206001600160a01b038e168352909352919091205490915081811015610ffc5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016106e4565b6110068282613be5565b6002600085815260200190815260200160002060008c6001600160a01b03166001600160a01b0316815260200190815260200160002081905550816002600085815260200190815260200160002060008b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546110869190613bcd565b925050819055505050508061109a90613c64565b9050610efe565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516110f1929190613b27565b60405180910390a461110781878787878761225f565b505050505050565b6111198282612473565b60008281526001602052604090206111319082611f70565b505050565b6111408282612502565b6000828152600160205260409020611131908261258a565b6111827f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361045b565b6111f45760405162461bcd60e51b815260206004820152603b60248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f686176652070617573657220726f6c6520746f20756e7061757365000000000060648201526084016106e4565b6111fc61259f565b565b606081518351146112775760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d61746368000000000000000000000000000000000000000000000060648201526084016106e4565b6000835167ffffffffffffffff8111156112a157634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156112ca578160200160208202803683370190505b50905060005b845181101561136c576113318582815181106112fc57634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061132457634e487b7160e01b600052603260045260246000fd5b602002602001015161066a565b82828151811061135157634e487b7160e01b600052603260045260246000fd5b602090810291909101015261136581613c64565b90506112d0565b509392505050565b6001600160a01b038316331480611390575061139083336105fb565b6114025760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016106e4565b61113183838361263b565b6005546001600160a01b0361010090910416331461146d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106e4565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b6114fe7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361045b565b6115705760405162461bcd60e51b815260206004820152603860248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f68617665206d696e74657220726f6c6520746f206d696e74000000000000000060648201526084016106e4565b6109cd848484846128f6565b6115a67f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361045b565b6116185760405162461bcd60e51b815260206004820152603960248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f686176652070617573657220726f6c6520746f2070617573650000000000000060648201526084016106e4565b6111fc612a15565b600a805461162d90613bfc565b80601f016020809104026020016040519081016040528092919081815260200182805461165990613bfc565b80156116a65780601f1061167b576101008083540402835291602001916116a6565b820191906000526020600020905b81548152906001019060200180831161168957829003601f168201915b505050505081565b60008281526001602052604081206116c69083612a9d565b9392505050565b6005546001600160a01b0361010090910416331461172d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106e4565b600060065474010000000000000000000000000000000000000000900460ff16600181111561176c57634e487b7160e01b600052602160045260246000fd5b146117df5760405162461bcd60e51b815260206004820152602860248201527f426162656c546f7765724441433a2063616e277420736574206166746572207360448201527f796e74686574696300000000000000000000000000000000000000000000000060648201526084016106e4565b6009548110156118575760405162461bcd60e51b815260206004820152603460248201527f426162656c546f7765724441433a206e756d6265722063616e2774206c65737360448201527f207468616e20636c61696d6564206e756d62657200000000000000000000000060648201526084016106e4565b600855565b336001600160a01b03831614156118db5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c66000000000000000000000000000000000000000000000060648201526084016106e4565b3360008181526003602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600081815260016020526040812061071290612aa9565b6111408282612ab3565b6005546001600160a01b036101009091041633146119c85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106e4565b60085460095414611a415760405162461bcd60e51b815260206004820152603360248201527f426162656c546f7765724441433a205761697420746f2072656163682072657160448201527f756972656420706965636573206e756d6265720000000000000000000000000060648201526084016106e4565b600654600754604080516020810190915260008152611a6d926001600160a01b031691906001906114d4565b60068054740100000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8216179091556007546009546040805192835260208301919091526001600160a01b03909216917f2dbe1b501bbeaaf48cf09e316013a2878dc63a8258e4be8434a5019dab61f58e910160405180910390a2565b6001600160a01b038416611b785760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106e4565b6001600160a01b038516331480611b945750611b9485336105fb565b611c065760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016106e4565b33611c25818787611c1688612b40565b611c1f88612b40565b87612251565b60008481526002602090815260408083206001600160a01b038a16845290915290205483811015611cbe5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016106e4565b611cc88482613be5565b60008681526002602090815260408083206001600160a01b038c81168552925280832093909355881681529081208054869290611d06908490613bcd565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611d66828888888888612b99565b50505050505050565b6005546001600160a01b03610100909104163314611dcf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106e4565b6001600160a01b038116611e4b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106e4565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6001600160a01b038316331480611ee55750611ee583336105fb565b611f575760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016106e4565b611131838383612d03565b611f6c8282612ebb565b5050565b60006116c6836001600160a01b038416612f59565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000148061201857507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b80610712575061071282612fa8565b6001600160a01b0384166120a35760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106e4565b815183511461211a5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016106e4565b3361212a81600087878787612251565b60005b84518110156121e25783818151811061215657634e487b7160e01b600052603260045260246000fd5b60200260200101516002600087848151811061218257634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546121ca9190613bcd565b909155508190506121da81613c64565b91505061212d565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612233929190613b27565b60405180910390a461224a8160008787878761225f565b5050505050565b611107868686868686612ffe565b6001600160a01b0384163b15611107576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c81906122bc9089908990889088908890600401613a73565b602060405180830381600087803b1580156122d657600080fd5b505af1925050508015612306575060408051601f3d908101601f1916820190925261230391810190613984565b60015b6123bc57612312613cc9565b806308c379a0141561234c5750612327613ce1565b80612332575061234e565b8060405162461bcd60e51b81526004016106e49190613b7d565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016106e4565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c810000000000000000000000000000000000000000000000000000000014611d665760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016106e4565b600082815260208190526040902060010154612490905b3361045b565b611f625760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201527f2061646d696e20746f206772616e74000000000000000000000000000000000060648201526084016106e4565b6001600160a01b03811633146125805760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016106e4565b611f6c8282613077565b60006116c6836001600160a01b0384166130f6565b60055460ff166125f15760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016106e4565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0383166126b75760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106e4565b805182511461272e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016106e4565b600033905061275181856000868660405180602001604052806000815250612251565b60005b835181101561289757600084828151811061277f57634e487b7160e01b600052603260045260246000fd5b6020026020010151905060008483815181106127ab57634e487b7160e01b600052603260045260246000fd5b60209081029190910181015160008481526002835260408082206001600160a01b038c1683529093529190912054909150818110156128515760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016106e4565b61285b8282613be5565b60009384526002602090815260408086206001600160a01b038c168752909152909320929092555081905061288f81613c64565b915050612754565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516128e8929190613b27565b60405180910390a450505050565b6001600160a01b0384166129725760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106e4565b3361298381600087611c1688612b40565b60008481526002602090815260408083206001600160a01b0389168452909152812080548592906129b5908490613bcd565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461224a81600087878787612b99565b60055460ff1615612a685760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016106e4565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861261e3390565b60006116c68383613213565b6000610712825490565b600082815260208190526040902060010154612ace9061248a565b6125805760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201527f2061646d696e20746f207265766f6b650000000000000000000000000000000060648201526084016106e4565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612b8857634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b15611107576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e6190612bf69089908990889088908890600401613ad1565b602060405180830381600087803b158015612c1057600080fd5b505af1925050508015612c40575060408051601f3d908101601f19168201909252612c3d91810190613984565b60015b612c4c57612312613cc9565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e610000000000000000000000000000000000000000000000000000000014611d665760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016106e4565b6001600160a01b038316612d7f5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106e4565b33612dae81856000612d9087612b40565b612d9987612b40565b60405180602001604052806000815250612251565b60008381526002602090815260408083206001600160a01b038816845290915290205482811015612e465760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016106e4565b612e508382613be5565b60008581526002602090815260408083206001600160a01b038a811680865291845282852095909555815189815292830188905292938616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16611f6c576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055612f153390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054612fa057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610712565b506000610712565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f5a05180f0000000000000000000000000000000000000000000000000000000014806107125750610712826132c2565b60055460ff16156111075760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201527f7768696c6520706175736564000000000000000000000000000000000000000060648201526084016106e4565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1615611f6c576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600183016020526040812054801561320957600061311a600183613be5565b855490915060009061312e90600190613be5565b9050600086600001828154811061315557634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061318657634e487b7160e01b600052603260045260246000fd5b60009182526020909120015561319d836001613bcd565b600082815260018901602052604090205586548790806131cd57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610712565b6000915050610712565b8154600090821061328c5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60448201527f647300000000000000000000000000000000000000000000000000000000000060648201526084016106e4565b8260000182815481106132af57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061071257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610712565b82805461336590613bfc565b90600052602060002090601f01602090048101928261338757600085556133cd565b82601f106133a057805160ff19168380011785556133cd565b828001600101855582156133cd579182015b828111156133cd5782518255916020019190600101906133b2565b506133d99291506133dd565b5090565b5b808211156133d957600081556001016133de565b600067ffffffffffffffff83111561340c5761340c613cb3565b6040516134236020601f19601f8701160182613c37565b80915083815284848401111561343857600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461346757600080fd5b919050565b600082601f83011261347c578081fd5b8135602061348982613ba9565b6040516134968282613c37565b8381528281019150858301600585901b870184018810156134b5578586fd5b855b858110156134d3578135845292840192908401906001016134b7565b5090979650505050505050565b600082601f8301126134f0578081fd5b6116c6838335602085016133f2565b600060208284031215613510578081fd5b6116c682613450565b6000806040838503121561352b578081fd5b61353483613450565b915061354260208401613450565b90509250929050565b600080600080600060a08688031215613562578081fd5b61356b86613450565b945061357960208701613450565b9350604086013567ffffffffffffffff80821115613595578283fd5b6135a189838a0161346c565b945060608801359150808211156135b6578283fd5b6135c289838a0161346c565b935060808801359150808211156135d7578283fd5b506135e4888289016134e0565b9150509295509295909350565b600080600080600060a08688031215613608578081fd5b61361186613450565b945061361f60208701613450565b93506040860135925060608601359150608086013567ffffffffffffffff811115613648578182fd5b6135e4888289016134e0565b600080600060608486031215613668578283fd5b61367184613450565b9250602084013567ffffffffffffffff8082111561368d578384fd5b6136998783880161346c565b935060408601359150808211156136ae578283fd5b506136bb8682870161346c565b9150509250925092565b600080600080608085870312156136da578384fd5b6136e385613450565b9350602085013567ffffffffffffffff808211156136ff578485fd5b61370b8883890161346c565b94506040870135915080821115613720578384fd5b61372c8883890161346c565b93506060870135915080821115613741578283fd5b5061374e878288016134e0565b91505092959194509250565b6000806040838503121561376c578081fd5b61377583613450565b915060208301358015158114613789578182fd5b809150509250929050565b600080604083850312156137a6578182fd5b6137af83613450565b946020939093013593505050565b6000806000606084860312156137d1578081fd5b6137da84613450565b95602085013595506040909401359392505050565b60008060008060808587031215613804578182fd5b61380d85613450565b93506020850135925060408501359150606085013567ffffffffffffffff811115613836578182fd5b61374e878288016134e0565b60008060408385031215613854578182fd5b823567ffffffffffffffff8082111561386b578384fd5b818501915085601f83011261387e578384fd5b8135602061388b82613ba9565b6040516138988282613c37565b8381528281019150858301600585901b870184018b10156138b7578889fd5b8896505b848710156138e0576138cc81613450565b8352600196909601959183019183016138bb565b50965050860135925050808211156138f6578283fd5b506139038582860161346c565b9150509250929050565b60006020828403121561391e578081fd5b5035919050565b60008060408385031215613937578182fd5b8235915061354260208401613450565b60008060408385031215613959578182fd5b50508035926020909101359150565b600060208284031215613979578081fd5b81356116c681613d89565b600060208284031215613995578081fd5b81516116c681613d89565b6000602082840312156139b1578081fd5b813567ffffffffffffffff8111156139c7578182fd5b8201601f810184136139d7578182fd5b6139e6848235602084016133f2565b949350505050565b6000815180845260208085019450808401835b83811015613a1d57815187529582019590820190600101613a01565b509495945050505050565b60008151808452815b81811015613a4d57602081850181015186830182015201613a31565b81811115613a5e5782602083870101525b50601f01601f19169290920160200192915050565b60006001600160a01b03808816835280871660208401525060a06040830152613a9f60a08301866139ee565b8281036060840152613ab181866139ee565b90508281036080840152613ac58185613a28565b98975050505050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a06080830152613b0960a0830184613a28565b979650505050505050565b6020815260006116c660208301846139ee565b604081526000613b3a60408301856139ee565b8281036020840152613b4c81856139ee565b95945050505050565b6020810160028310613b7757634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006116c66020830184613a28565b8281526040602082015260006139e66040830184613a28565b600067ffffffffffffffff821115613bc357613bc3613cb3565b5060051b60200190565b60008219821115613be057613be0613c9d565b500190565b600082821015613bf757613bf7613c9d565b500390565b600181811c90821680613c1057607f821691505b60208210811415613c3157634e487b7160e01b600052602260045260246000fd5b50919050565b601f19601f830116810181811067ffffffffffffffff82111715613c5d57613c5d613cb3565b6040525050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c9657613c96613c9d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115613cde57600481823e5160e01c5b90565b600060443d1015613cef5790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715613d3d57505050505090565b8285019150815181811115613d555750505050505090565b843d8701016020828501011115613d6f5750505050505090565b613d7e60208286010187613c37565b509095945050505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114613db757600080fd5b5056fea2646970667358221220f4b02773af84bcb6dcb586fc88937066ba44ad2fb1e60b8f5c2ea449270046c664736f6c6343000804003368747470733a2f2f6e66742d7374617469632e6d6574697364616f2e6f72672f6a736f6e732f626162656c5f746f7765722f7b69647d2e6a736f6e00000000000000000000000080a5518a1256d3796f4c1691579e55afbeb21cf0

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102915760003560e01c80638da5cb5b11610160578063d5391393116100d8578063e985e9c51161008c578063f242432a11610071578063f242432a14610631578063f2fde38b14610644578063f5298aca1461065757600080fd5b8063e985e9c5146105ed578063ec616f2a1461062957600080fd5b8063d9244128116100bd578063d92441281461058b578063e63ab1e9146105bd578063e834a834146105e457600080fd5b8063d539139314610551578063d547741f1461057857600080fd5b8063a217fddf1161012f578063a4ac9aa811610114578063a4ac9aa8146104b2578063a9de80e81461051b578063ca15c8731461053e57600080fd5b8063a217fddf14610497578063a22cb4651461049f57600080fd5b80638da5cb5b146104105780639010d07c1461043a57806391d148541461044d578063a0dcbaf71461048457600080fd5b806332ad8d271161020e5780636b20c454116101c2578063731133e9116101a7578063731133e9146103ed5780638456cb5914610400578063893d6f361461040857600080fd5b80636b20c454146103d2578063715018a6146103e557600080fd5b80633f4ba83a116101f35780633f4ba83a1461039f5780634e1273f4146103a75780635c975abb146103c757600080fd5b806332ad8d271461038357806336568abe1461038c57600080fd5b80631f7fdffa116102655780632bc43fd91161024a5780632bc43fd91461034a5780632eb2c2d61461035d5780632f2ff15d1461037057600080fd5b80631f7fdffa14610314578063248a9ca31461032757600080fd5b8062fdd58e1461029657806301ffc9a7146102bc57806307060010146102df5780630e89341c146102f4575b600080fd5b6102a96102a4366004613794565b61066a565b6040519081526020015b60405180910390f35b6102cf6102ca366004613968565b610718565b60405190151581526020016102b3565b6102f26102ed3660046139a0565b610723565b005b61030761030236600461390d565b610891565b6040516102b39190613b7d565b6102f26103223660046136c5565b610925565b6102a961033536600461390d565b60009081526020819052604090206001015490565b6102cf6103583660046137bd565b6109d3565b6102f261036b36600461354b565b610d6b565b6102f261037e366004613925565b61110f565b6102a960085481565b6102f261039a366004613925565b611136565b6102f2611158565b6103ba6103b5366004613842565b6111fe565b6040516102b39190613b14565b60055460ff166102cf565b6102f26103e0366004613654565b611374565b6102f261140d565b6102f26103fb3660046137ef565b6114d4565b6102f261157c565b610307611620565b60055461010090046001600160a01b03165b6040516001600160a01b0390911681526020016102b3565b610422610448366004613947565b6116ae565b6102cf61045b366004613925565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6102f261049236600461390d565b6116cd565b6102a9600081565b6102f26104ad36600461375a565b61185c565b6104f16104c036600461390d565b600b6020526000908152604090208054600182015460028301546003909301546001600160a01b0390921692909184565b604080516001600160a01b03909516855260208501939093529183015260608201526080016102b3565b6102cf6105293660046134ff565b600c6020526000908152604090205460ff1681565b6102a961054c36600461390d565b611947565b6102a97f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102f2610586366004613925565b61195e565b6006546105b09074010000000000000000000000000000000000000000900460ff1681565b6040516102b39190613b55565b6102a97f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6102a960095481565b6102cf6105fb366004613519565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b6102f2611968565b6102f261063f3660046135f1565b611afc565b6102f26106523660046134ff565b611d6f565b6102f26106653660046137bd565b611ec9565b60006001600160a01b0383166106ed5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060008181526002602090815260408083206001600160a01b03861684529091529020545b92915050565b600061071282611f85565b6005546001600160a01b036101009091041633146107835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106e4565b600060065474010000000000000000000000000000000000000000900460ff1660018111156107c257634e487b7160e01b600052602160045260246000fd5b146108355760405162461bcd60e51b815260206004820152602860248201527f426162656c546f7765724441433a2063616e277420736574206166746572207360448201527f796e74686574696300000000000000000000000000000000000000000000000060648201526084016106e4565b805161084890600a906020840190613359565b50336001600160a01b03167f9017c0bfea7c00126e57c3a00532eecd33b025043464845ed7e13e2b41aac52660075483604051610886929190613b90565b60405180910390a250565b6060600480546108a090613bfc565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc90613bfc565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b50505050509050919050565b61094f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361045b565b6109c15760405162461bcd60e51b815260206004820152603860248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f68617665206d696e74657220726f6c6520746f206d696e74000000000000000060648201526084016106e4565b6109cd84848484612027565b50505050565b60008060065474010000000000000000000000000000000000000000900460ff166001811115610a1357634e487b7160e01b600052602160045260246000fd5b14610a865760405162461bcd60e51b815260206004820152602a60248201527f426162656c546f7765724441433a2063616e277420636c61696d20616674657260448201527f2073796e7468657469630000000000000000000000000000000000000000000060648201526084016106e4565b610ab07f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361045b565b610b225760405162461bcd60e51b815260206004820152602d60248201527f426162656c546f7765724441433a206d7573742068617665206d696e7465722060448201527f726f6c6520746f20636c61696d0000000000000000000000000000000000000060648201526084016106e4565b6001600160a01b0384166000908152600c602052604090205460ff1615610b8b5760405162461bcd60e51b815260206004820181905260248201527f426162656c546f7765724441433a2063616e277420636c61696d20747769636560448201526064016106e4565b600854600954610b9c906001613bcd565b1115610c105760405162461bcd60e51b815260206004820152602360248201527f426162656c546f7765724441433a206f7665722072657175697265642070696560448201527f636573000000000000000000000000000000000000000000000000000000000060648201526084016106e4565b60006040518060800160405280866001600160a01b031681526020016009546001610c3b9190613bcd565b815260200185815260200184815250905080600b60006009546001610c609190613bcd565b815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550602082015181600101556040820151816002015560608201518160030155905050600160096000828254610ccf9190613bcd565b90915550506001600160a01b0385166000818152600c6020908152604091829020805460ff191660011790558381015184830151600954845192835292820152918201527f45c072aa05b9853b5a993de7a28bc332ee01404a628cec1a23ce0f659f842ef19060600160405180910390a2610d608582602001516001604051806020016040528060008152506114d4565b506001949350505050565b8151835114610de25760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016106e4565b6001600160a01b038416610e5e5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106e4565b6001600160a01b038516331480610e7a5750610e7a85336105fb565b610eec5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016106e4565b33610efb818787878787612251565b60005b84518110156110a1576000858281518110610f2957634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110610f5557634e487b7160e01b600052603260045260246000fd5b60209081029190910181015160008481526002835260408082206001600160a01b038e168352909352919091205490915081811015610ffc5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016106e4565b6110068282613be5565b6002600085815260200190815260200160002060008c6001600160a01b03166001600160a01b0316815260200190815260200160002081905550816002600085815260200190815260200160002060008b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546110869190613bcd565b925050819055505050508061109a90613c64565b9050610efe565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516110f1929190613b27565b60405180910390a461110781878787878761225f565b505050505050565b6111198282612473565b60008281526001602052604090206111319082611f70565b505050565b6111408282612502565b6000828152600160205260409020611131908261258a565b6111827f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361045b565b6111f45760405162461bcd60e51b815260206004820152603b60248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f686176652070617573657220726f6c6520746f20756e7061757365000000000060648201526084016106e4565b6111fc61259f565b565b606081518351146112775760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d61746368000000000000000000000000000000000000000000000060648201526084016106e4565b6000835167ffffffffffffffff8111156112a157634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156112ca578160200160208202803683370190505b50905060005b845181101561136c576113318582815181106112fc57634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061132457634e487b7160e01b600052603260045260246000fd5b602002602001015161066a565b82828151811061135157634e487b7160e01b600052603260045260246000fd5b602090810291909101015261136581613c64565b90506112d0565b509392505050565b6001600160a01b038316331480611390575061139083336105fb565b6114025760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016106e4565b61113183838361263b565b6005546001600160a01b0361010090910416331461146d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106e4565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b6114fe7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361045b565b6115705760405162461bcd60e51b815260206004820152603860248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f68617665206d696e74657220726f6c6520746f206d696e74000000000000000060648201526084016106e4565b6109cd848484846128f6565b6115a67f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361045b565b6116185760405162461bcd60e51b815260206004820152603960248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f686176652070617573657220726f6c6520746f2070617573650000000000000060648201526084016106e4565b6111fc612a15565b600a805461162d90613bfc565b80601f016020809104026020016040519081016040528092919081815260200182805461165990613bfc565b80156116a65780601f1061167b576101008083540402835291602001916116a6565b820191906000526020600020905b81548152906001019060200180831161168957829003601f168201915b505050505081565b60008281526001602052604081206116c69083612a9d565b9392505050565b6005546001600160a01b0361010090910416331461172d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106e4565b600060065474010000000000000000000000000000000000000000900460ff16600181111561176c57634e487b7160e01b600052602160045260246000fd5b146117df5760405162461bcd60e51b815260206004820152602860248201527f426162656c546f7765724441433a2063616e277420736574206166746572207360448201527f796e74686574696300000000000000000000000000000000000000000000000060648201526084016106e4565b6009548110156118575760405162461bcd60e51b815260206004820152603460248201527f426162656c546f7765724441433a206e756d6265722063616e2774206c65737360448201527f207468616e20636c61696d6564206e756d62657200000000000000000000000060648201526084016106e4565b600855565b336001600160a01b03831614156118db5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c66000000000000000000000000000000000000000000000060648201526084016106e4565b3360008181526003602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600081815260016020526040812061071290612aa9565b6111408282612ab3565b6005546001600160a01b036101009091041633146119c85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106e4565b60085460095414611a415760405162461bcd60e51b815260206004820152603360248201527f426162656c546f7765724441433a205761697420746f2072656163682072657160448201527f756972656420706965636573206e756d6265720000000000000000000000000060648201526084016106e4565b600654600754604080516020810190915260008152611a6d926001600160a01b031691906001906114d4565b60068054740100000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8216179091556007546009546040805192835260208301919091526001600160a01b03909216917f2dbe1b501bbeaaf48cf09e316013a2878dc63a8258e4be8434a5019dab61f58e910160405180910390a2565b6001600160a01b038416611b785760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106e4565b6001600160a01b038516331480611b945750611b9485336105fb565b611c065760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016106e4565b33611c25818787611c1688612b40565b611c1f88612b40565b87612251565b60008481526002602090815260408083206001600160a01b038a16845290915290205483811015611cbe5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016106e4565b611cc88482613be5565b60008681526002602090815260408083206001600160a01b038c81168552925280832093909355881681529081208054869290611d06908490613bcd565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611d66828888888888612b99565b50505050505050565b6005546001600160a01b03610100909104163314611dcf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106e4565b6001600160a01b038116611e4b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106e4565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6001600160a01b038316331480611ee55750611ee583336105fb565b611f575760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016106e4565b611131838383612d03565b611f6c8282612ebb565b5050565b60006116c6836001600160a01b038416612f59565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000148061201857507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b80610712575061071282612fa8565b6001600160a01b0384166120a35760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106e4565b815183511461211a5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016106e4565b3361212a81600087878787612251565b60005b84518110156121e25783818151811061215657634e487b7160e01b600052603260045260246000fd5b60200260200101516002600087848151811061218257634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546121ca9190613bcd565b909155508190506121da81613c64565b91505061212d565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612233929190613b27565b60405180910390a461224a8160008787878761225f565b5050505050565b611107868686868686612ffe565b6001600160a01b0384163b15611107576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c81906122bc9089908990889088908890600401613a73565b602060405180830381600087803b1580156122d657600080fd5b505af1925050508015612306575060408051601f3d908101601f1916820190925261230391810190613984565b60015b6123bc57612312613cc9565b806308c379a0141561234c5750612327613ce1565b80612332575061234e565b8060405162461bcd60e51b81526004016106e49190613b7d565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016106e4565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c810000000000000000000000000000000000000000000000000000000014611d665760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016106e4565b600082815260208190526040902060010154612490905b3361045b565b611f625760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201527f2061646d696e20746f206772616e74000000000000000000000000000000000060648201526084016106e4565b6001600160a01b03811633146125805760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016106e4565b611f6c8282613077565b60006116c6836001600160a01b0384166130f6565b60055460ff166125f15760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016106e4565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0383166126b75760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106e4565b805182511461272e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016106e4565b600033905061275181856000868660405180602001604052806000815250612251565b60005b835181101561289757600084828151811061277f57634e487b7160e01b600052603260045260246000fd5b6020026020010151905060008483815181106127ab57634e487b7160e01b600052603260045260246000fd5b60209081029190910181015160008481526002835260408082206001600160a01b038c1683529093529190912054909150818110156128515760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016106e4565b61285b8282613be5565b60009384526002602090815260408086206001600160a01b038c168752909152909320929092555081905061288f81613c64565b915050612754565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516128e8929190613b27565b60405180910390a450505050565b6001600160a01b0384166129725760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106e4565b3361298381600087611c1688612b40565b60008481526002602090815260408083206001600160a01b0389168452909152812080548592906129b5908490613bcd565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461224a81600087878787612b99565b60055460ff1615612a685760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016106e4565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861261e3390565b60006116c68383613213565b6000610712825490565b600082815260208190526040902060010154612ace9061248a565b6125805760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201527f2061646d696e20746f207265766f6b650000000000000000000000000000000060648201526084016106e4565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612b8857634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b15611107576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e6190612bf69089908990889088908890600401613ad1565b602060405180830381600087803b158015612c1057600080fd5b505af1925050508015612c40575060408051601f3d908101601f19168201909252612c3d91810190613984565b60015b612c4c57612312613cc9565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e610000000000000000000000000000000000000000000000000000000014611d665760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016106e4565b6001600160a01b038316612d7f5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106e4565b33612dae81856000612d9087612b40565b612d9987612b40565b60405180602001604052806000815250612251565b60008381526002602090815260408083206001600160a01b038816845290915290205482811015612e465760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016106e4565b612e508382613be5565b60008581526002602090815260408083206001600160a01b038a811680865291845282852095909555815189815292830188905292938616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16611f6c576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055612f153390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054612fa057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610712565b506000610712565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f5a05180f0000000000000000000000000000000000000000000000000000000014806107125750610712826132c2565b60055460ff16156111075760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201527f7768696c6520706175736564000000000000000000000000000000000000000060648201526084016106e4565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1615611f6c576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600183016020526040812054801561320957600061311a600183613be5565b855490915060009061312e90600190613be5565b9050600086600001828154811061315557634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061318657634e487b7160e01b600052603260045260246000fd5b60009182526020909120015561319d836001613bcd565b600082815260018901602052604090205586548790806131cd57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610712565b6000915050610712565b8154600090821061328c5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60448201527f647300000000000000000000000000000000000000000000000000000000000060648201526084016106e4565b8260000182815481106132af57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061071257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610712565b82805461336590613bfc565b90600052602060002090601f01602090048101928261338757600085556133cd565b82601f106133a057805160ff19168380011785556133cd565b828001600101855582156133cd579182015b828111156133cd5782518255916020019190600101906133b2565b506133d99291506133dd565b5090565b5b808211156133d957600081556001016133de565b600067ffffffffffffffff83111561340c5761340c613cb3565b6040516134236020601f19601f8701160182613c37565b80915083815284848401111561343857600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461346757600080fd5b919050565b600082601f83011261347c578081fd5b8135602061348982613ba9565b6040516134968282613c37565b8381528281019150858301600585901b870184018810156134b5578586fd5b855b858110156134d3578135845292840192908401906001016134b7565b5090979650505050505050565b600082601f8301126134f0578081fd5b6116c6838335602085016133f2565b600060208284031215613510578081fd5b6116c682613450565b6000806040838503121561352b578081fd5b61353483613450565b915061354260208401613450565b90509250929050565b600080600080600060a08688031215613562578081fd5b61356b86613450565b945061357960208701613450565b9350604086013567ffffffffffffffff80821115613595578283fd5b6135a189838a0161346c565b945060608801359150808211156135b6578283fd5b6135c289838a0161346c565b935060808801359150808211156135d7578283fd5b506135e4888289016134e0565b9150509295509295909350565b600080600080600060a08688031215613608578081fd5b61361186613450565b945061361f60208701613450565b93506040860135925060608601359150608086013567ffffffffffffffff811115613648578182fd5b6135e4888289016134e0565b600080600060608486031215613668578283fd5b61367184613450565b9250602084013567ffffffffffffffff8082111561368d578384fd5b6136998783880161346c565b935060408601359150808211156136ae578283fd5b506136bb8682870161346c565b9150509250925092565b600080600080608085870312156136da578384fd5b6136e385613450565b9350602085013567ffffffffffffffff808211156136ff578485fd5b61370b8883890161346c565b94506040870135915080821115613720578384fd5b61372c8883890161346c565b93506060870135915080821115613741578283fd5b5061374e878288016134e0565b91505092959194509250565b6000806040838503121561376c578081fd5b61377583613450565b915060208301358015158114613789578182fd5b809150509250929050565b600080604083850312156137a6578182fd5b6137af83613450565b946020939093013593505050565b6000806000606084860312156137d1578081fd5b6137da84613450565b95602085013595506040909401359392505050565b60008060008060808587031215613804578182fd5b61380d85613450565b93506020850135925060408501359150606085013567ffffffffffffffff811115613836578182fd5b61374e878288016134e0565b60008060408385031215613854578182fd5b823567ffffffffffffffff8082111561386b578384fd5b818501915085601f83011261387e578384fd5b8135602061388b82613ba9565b6040516138988282613c37565b8381528281019150858301600585901b870184018b10156138b7578889fd5b8896505b848710156138e0576138cc81613450565b8352600196909601959183019183016138bb565b50965050860135925050808211156138f6578283fd5b506139038582860161346c565b9150509250929050565b60006020828403121561391e578081fd5b5035919050565b60008060408385031215613937578182fd5b8235915061354260208401613450565b60008060408385031215613959578182fd5b50508035926020909101359150565b600060208284031215613979578081fd5b81356116c681613d89565b600060208284031215613995578081fd5b81516116c681613d89565b6000602082840312156139b1578081fd5b813567ffffffffffffffff8111156139c7578182fd5b8201601f810184136139d7578182fd5b6139e6848235602084016133f2565b949350505050565b6000815180845260208085019450808401835b83811015613a1d57815187529582019590820190600101613a01565b509495945050505050565b60008151808452815b81811015613a4d57602081850181015186830182015201613a31565b81811115613a5e5782602083870101525b50601f01601f19169290920160200192915050565b60006001600160a01b03808816835280871660208401525060a06040830152613a9f60a08301866139ee565b8281036060840152613ab181866139ee565b90508281036080840152613ac58185613a28565b98975050505050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a06080830152613b0960a0830184613a28565b979650505050505050565b6020815260006116c660208301846139ee565b604081526000613b3a60408301856139ee565b8281036020840152613b4c81856139ee565b95945050505050565b6020810160028310613b7757634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006116c66020830184613a28565b8281526040602082015260006139e66040830184613a28565b600067ffffffffffffffff821115613bc357613bc3613cb3565b5060051b60200190565b60008219821115613be057613be0613c9d565b500190565b600082821015613bf757613bf7613c9d565b500390565b600181811c90821680613c1057607f821691505b60208210811415613c3157634e487b7160e01b600052602260045260246000fd5b50919050565b601f19601f830116810181811067ffffffffffffffff82111715613c5d57613c5d613cb3565b6040525050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c9657613c96613c9d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115613cde57600481823e5160e01c5b90565b600060443d1015613cef5790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715613d3d57505050505090565b8285019150815181811115613d555750505050505090565b843d8701016020828501011115613d6f5750505050505090565b613d7e60208286010187613c37565b509095945050505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114613db757600080fd5b5056fea2646970667358221220f4b02773af84bcb6dcb586fc88937066ba44ad2fb1e60b8f5c2ea449270046c664736f6c63430008040033

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

00000000000000000000000080a5518a1256d3796f4c1691579e55afbeb21cf0

-----Decoded View---------------
Arg [0] : _devAddr (address): 0x80a5518a1256D3796f4C1691579E55aFBEb21cf0

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000080a5518a1256d3796f4c1691579e55afbeb21cf0


Deployed Bytecode Sourcemap

69430:3276:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9359:231;;;;;;:::i;:::-;;:::i;:::-;;;14369:25:1;;;14357:2;14342:18;9359:231:0;;;;;;;;68756:187;;;;;;:::i;:::-;;:::i;:::-;;;14196:14:1;;14189:22;14171:41;;14159:2;14144:18;68756:187:0;14126:92:1;72417:284:0;;;;;;:::i;:::-;;:::i;:::-;;9103:105;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;67612:282::-;;;;;;:::i;:::-;;:::i;44473:123::-;;;;;;:::i;:::-;44539:7;44566:12;;;;;;;;;;:22;;;;44473:123;70831:888;;;;;;:::i;:::-;;:::i;12062:1239::-;;;;;;:::i;:::-;;:::i;49976:165::-;;;;;;:::i;:::-;;:::i;70281:36::-;;;;;;50499:174;;;;;;:::i;:::-;;:::i;68504:180::-;;;:::i;9756:549::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52015:86::-;52086:7;;;;52015:86;;54910:319;;;;;;:::i;:::-;;:::i;22873:148::-;;;:::i;67255:250::-;;;;;;:::i;:::-;;:::i;68110:174::-;;;:::i;70392:72::-;;;:::i;22222:87::-;22295:6;;;;;-1:-1:-1;;;;;22295:6:0;22222:87;;;-1:-1:-1;;;;;11341:55:1;;;11323:74;;11311:2;11296:18;22222:87:0;11278:125:1;49431:145:0;;;;;;:::i;:::-;;:::i;44145:139::-;;;;;;:::i;:::-;44223:4;44247:12;;;;;;;;;;;-1:-1:-1;;;;;44247:29:0;;;;;;;;;;;;;;;44145:139;72098:307;;;;;;:::i;:::-;;:::i;42601:49::-;;42646:4;42601:49;;10378:311;;;;;;:::i;:::-;;:::i;70471:70::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;70471:70:0;;;;;;;;;;;;-1:-1:-1;;;;;13099:55:1;;;13081:74;;13186:2;13171:18;;13164:34;;;;13214:18;;;13207:34;13272:2;13257:18;;13250:34;13068:3;13053:19;70471:70:0;13035:255:1;70595:45:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;49750:134;;;;;;:::i;:::-;;:::i;66545:62::-;;66583:24;66545:62;;50234:170;;;;;;:::i;:::-;;:::i;70133:68::-;;;;;;;;;;;;;;;;;;;:::i;66614:62::-;;66652:24;66614:62;;70359:26;;;;;;10761:168;;;;;;:::i;:::-;-1:-1:-1;;;;;10884:27:0;;;10860:4;10884:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;10761:168;71776:310;;;:::i;11001:984::-;;;;;;:::i;:::-;;:::i;23176:244::-;;;;;;:::i;:::-;;:::i;54615:287::-;;;;;;:::i;:::-;;:::i;9359:231::-;9445:7;-1:-1:-1;;;;;9473:21:0;;9465:77;;;;-1:-1:-1;;;9465:77:0;;17601:2:1;9465:77:0;;;17583:21:1;17640:2;17620:18;;;17613:30;17679:34;17659:18;;;17652:62;17750:13;17730:18;;;17723:41;17781:19;;9465:77:0;;;;;;;;;-1:-1:-1;9560:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;9560:22:0;;;;;;;;;;9359:231;;;;;:::o;68756:187::-;68875:4;68899:36;68923:11;68899:23;:36::i;72417:284::-;22295:6;;-1:-1:-1;;;;;22295:6:0;;;;;737:10;22442:23;22434:68;;;;-1:-1:-1;;;22434:68:0;;24131:2:1;22434:68:0;;;24113:21:1;;;24150:18;;;24143:30;24209:34;24189:18;;;24182:62;24261:18;;22434:68:0;24103:182:1;22434:68:0;72518:25:::1;72498:16;::::0;;;::::1;;;:45;::::0;::::1;;;;-1:-1:-1::0;;;72498:45:0::1;;;;;;;;;;72490:98;;;::::0;-1:-1:-1;;;72490:98:0;;25334:2:1;72490:98:0::1;::::0;::::1;25316:21:1::0;25373:2;25353:18;;;25346:30;25412:34;25392:18;;;25385:62;25483:10;25463:18;;;25456:38;25511:19;;72490:98:0::1;25306:230:1::0;72490:98:0::1;72599:31:::0;;::::1;::::0;:24:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;72666:10;-1:-1:-1::0;;;;;72646:47:0::1;;72678:8;;72688:4;72646:47;;;;;;;:::i;:::-;;;;;;;;72417:284:::0;:::o;9103:105::-;9163:13;9196:4;9189:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9103:105;;;:::o;67612:282::-;67744:34;66583:24;737:10;44145:139;:::i;67744:34::-;67736:103;;;;-1:-1:-1;;;67736:103:0;;23295:2:1;67736:103:0;;;23277:21:1;23334:2;23314:18;;;23307:30;23373:34;23353:18;;;23346:62;23444:26;23424:18;;;23417:54;23488:19;;67736:103:0;23267:246:1;67736:103:0;67852:34;67863:2;67867:3;67872:7;67881:4;67852:10;:34::i;:::-;67612:282;;;;:::o;70831:888::-;70939:4;;70964:16;;;;;;;:45;;;;;;-1:-1:-1;;;70964:45:0;;;;;;;;;;70956:100;;;;-1:-1:-1;;;70956:100:0;;20830:2:1;70956:100:0;;;20812:21:1;20869:2;20849:18;;;20842:30;20908:34;20888:18;;;20881:62;20979:12;20959:18;;;20952:40;21009:19;;70956:100:0;20802:232:1;70956:100:0;71075:34;66583:24;737:10;44145:139;:::i;71075:34::-;71067:92;;;;-1:-1:-1;;;71067:92:0;;24920:2:1;71067:92:0;;;24902:21:1;24959:2;24939:18;;;24932:30;24998:34;24978:18;;;24971:62;25069:15;25049:18;;;25042:43;25102:19;;71067:92:0;24892:235:1;71067:92:0;-1:-1:-1;;;;;71179:17:0;;;;;;:13;:17;;;;;;;;71178:18;71170:63;;;;-1:-1:-1;;;71170:63:0;;16475:2:1;71170:63:0;;;16457:21:1;;;16494:18;;;16487:30;16553:34;16533:18;;;16526:62;16605:18;;71170:63:0;16447:182:1;71170:63:0;71269:15;;71253:7;;:11;;71263:1;71253:11;:::i;:::-;71252:32;;71244:80;;;;-1:-1:-1;;;71244:80:0;;22066:2:1;71244:80:0;;;22048:21:1;22105:2;22085:18;;;22078:30;22144:34;22124:18;;;22117:62;22215:5;22195:18;;;22188:33;22238:19;;71244:80:0;22038:225:1;71244:80:0;71335:34;71372:114;;;;;;;;71408:2;-1:-1:-1;;;;;71372:114:0;;;;;71425:7;;71435:1;71425:11;;;;:::i;:::-;71372:114;;;;71451:4;71372:114;;;;71470:5;71372:114;;;71335:151;;71534:5;71497:21;:34;71519:7;;71529:1;71519:11;;;;:::i;:::-;71497:34;;;;;;;;;;;:42;;;;;;;;;;;;;-1:-1:-1;;;;;71497:42:0;;;;;-1:-1:-1;;;;;71497:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71561:1;71550:7;;:12;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;71573:17:0;;;;;;:13;:17;;;;;;;;;:24;;-1:-1:-1;;71573:24:0;71593:4;71573:24;;;71623:8;;;;71633:10;;;;71645:7;;71613:40;;28946:25:1;;;28987:18;;;28980:34;29030:18;;;29023:34;71613:40:0;;28934:2:1;28919:18;71613:40:0;;;;;;;71664:25;71669:2;71673:5;:8;;;71683:1;71664:25;;;;;;;;;;;;:4;:25::i;:::-;-1:-1:-1;71707:4:0;;70831:888;-1:-1:-1;;;;70831:888:0:o;12062:1239::-;12327:7;:14;12313:3;:10;:28;12305:81;;;;-1:-1:-1;;;12305:81:0;;26989:2:1;12305:81:0;;;26971:21:1;27028:2;27008:18;;;27001:30;27067:34;27047:18;;;27040:62;27138:10;27118:18;;;27111:38;27166:19;;12305:81:0;26961:230:1;12305:81:0;-1:-1:-1;;;;;12405:16:0;;12397:66;;;;-1:-1:-1;;;12397:66:0;;21241:2:1;12397:66:0;;;21223:21:1;21280:2;21260:18;;;21253:30;21319:34;21299:18;;;21292:62;21390:7;21370:18;;;21363:35;21415:19;;12397:66:0;21213:227:1;12397:66:0;-1:-1:-1;;;;;12496:20:0;;737:10;12496:20;;:60;;-1:-1:-1;12520:36:0;12537:4;737:10;10761:168;:::i;12520:36::-;12474:160;;;;-1:-1:-1;;;12474:160:0;;21647:2:1;12474:160:0;;;21629:21:1;21686:2;21666:18;;;21659:30;21725:34;21705:18;;;21698:62;21796:20;21776:18;;;21769:48;21834:19;;12474:160:0;21619:240:1;12474:160:0;737:10;12691:60;737:10;12722:4;12728:2;12732:3;12737:7;12746:4;12691:20;:60::i;:::-;12769:9;12764:377;12788:3;:10;12784:1;:14;12764:377;;;12820:10;12833:3;12837:1;12833:6;;;;;;-1:-1:-1;;;12833:6:0;;;;;;;;;;;;;;;12820:19;;12854:14;12871:7;12879:1;12871:10;;;;;;-1:-1:-1;;;12871:10:0;;;;;;;;;;;;;;;;;;;;12898:19;12920:13;;;:9;:13;;;;;;-1:-1:-1;;;;;12920:19:0;;;;;;;;;;;;12871:10;;-1:-1:-1;12962:21:0;;;;12954:76;;;;-1:-1:-1;;;12954:76:0;;23720:2:1;12954:76:0;;;23702:21:1;23759:2;23739:18;;;23732:30;23798:34;23778:18;;;23771:62;23869:12;23849:18;;;23842:40;23899:19;;12954:76:0;23692:232:1;12954:76:0;13067:20;13081:6;13067:11;:20;:::i;:::-;13045:9;:13;13055:2;13045:13;;;;;;;;;;;:19;13059:4;-1:-1:-1;;;;;13045:19:0;-1:-1:-1;;;;;13045:19:0;;;;;;;;;;;;:42;;;;13123:6;13102:9;:13;13112:2;13102:13;;;;;;;;;;;:17;13116:2;-1:-1:-1;;;;;13102:17:0;-1:-1:-1;;;;;13102:17:0;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;12764:377;;;12800:3;;;;:::i;:::-;;;12764:377;;;;13188:2;-1:-1:-1;;;;;13158:47:0;13182:4;-1:-1:-1;;;;;13158:47:0;13172:8;-1:-1:-1;;;;;13158:47:0;;13192:3;13197:7;13158:47;;;;;;;:::i;:::-;;;;;;;;13218:75;13254:8;13264:4;13270:2;13274:3;13279:7;13288:4;13218:35;:75::i;:::-;12062:1239;;;;;;:::o;49976:165::-;50061:30;50077:4;50083:7;50061:15;:30::i;:::-;50102:18;;;;:12;:18;;;;;:31;;50125:7;50102:22;:31::i;:::-;;49976:165;;:::o;50499:174::-;50587:33;50606:4;50612:7;50587:18;:33::i;:::-;50631:18;;;;:12;:18;;;;;:34;;50657:7;50631:25;:34::i;68504:180::-;68557:34;66652:24;737:10;44145:139;:::i;68557:34::-;68549:106;;;;-1:-1:-1;;;68549:106:0;;24492:2:1;68549:106:0;;;24474:21:1;24531:2;24511:18;;;24504:30;24570:34;24550:18;;;24543:62;24641:29;24621:18;;;24614:57;24688:19;;68549:106:0;24464:249:1;68549:106:0;68666:10;:8;:10::i;:::-;68504:180::o;9756:549::-;9937:16;9998:3;:10;9979:8;:15;:29;9971:83;;;;-1:-1:-1;;;9971:83:0;;26579:2:1;9971:83:0;;;26561:21:1;26618:2;26598:18;;;26591:30;26657:34;26637:18;;;26630:62;26728:11;26708:18;;;26701:39;26757:19;;9971:83:0;26551:231:1;9971:83:0;10067:30;10114:8;:15;10100:30;;;;;;-1:-1:-1;;;10100:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10100:30:0;;10067:63;;10148:9;10143:122;10167:8;:15;10163:1;:19;10143:122;;;10223:30;10233:8;10242:1;10233:11;;;;;;-1:-1:-1;;;10233:11:0;;;;;;;;;;;;;;;10246:3;10250:1;10246:6;;;;;;-1:-1:-1;;;10246:6:0;;;;;;;;;;;;;;;10223:9;:30::i;:::-;10204:13;10218:1;10204:16;;;;;;-1:-1:-1;;;10204:16:0;;;;;;;;;;;;;;;;;;:49;10184:3;;;:::i;:::-;;;10143:122;;;-1:-1:-1;10284:13:0;9756:549;-1:-1:-1;;;9756:549:0:o;54910:319::-;-1:-1:-1;;;;;55041:23:0;;737:10;55041:23;;:66;;-1:-1:-1;55068:39:0;55085:7;737:10;10761:168;:::i;55068:39::-;55019:157;;;;-1:-1:-1;;;55019:157:0;;19658:2:1;55019:157:0;;;19640:21:1;19697:2;19677:18;;;19670:30;19736:34;19716:18;;;19709:62;19807:11;19787:18;;;19780:39;19836:19;;55019:157:0;19630:231:1;55019:157:0;55189:32;55200:7;55209:3;55214:6;55189:10;:32::i;22873:148::-;22295:6;;-1:-1:-1;;;;;22295:6:0;;;;;737:10;22442:23;22434:68;;;;-1:-1:-1;;;22434:68:0;;24131:2:1;22434:68:0;;;24113:21:1;;;24150:18;;;24143:30;24209:34;24189:18;;;24182:62;24261:18;;22434:68:0;24103:182:1;22434:68:0;22964:6:::1;::::0;22943:40:::1;::::0;22980:1:::1;::::0;22964:6:::1;::::0;::::1;-1:-1:-1::0;;;;;22964:6:0::1;::::0;22943:40:::1;::::0;22980:1;;22943:40:::1;22994:6;:19:::0;;;::::1;::::0;;22873:148::o;67255:250::-;67362:34;66583:24;737:10;44145:139;:::i;67362:34::-;67354:103;;;;-1:-1:-1;;;67354:103:0;;23295:2:1;67354:103:0;;;23277:21:1;23334:2;23314:18;;;23307:30;23373:34;23353:18;;;23346:62;23444:26;23424:18;;;23417:54;23488:19;;67354:103:0;23267:246:1;67354:103:0;67470:27;67476:2;67480;67484:6;67492:4;67470:5;:27::i;68110:174::-;68161:34;66652:24;737:10;44145:139;:::i;68161:34::-;68153:104;;;;-1:-1:-1;;;68153:104:0;;25743:2:1;68153:104:0;;;25725:21:1;25782:2;25762:18;;;25755:30;25821:34;25801:18;;;25794:62;25892:27;25872:18;;;25865:55;25937:19;;68153:104:0;25715:247:1;68153:104:0;68268:8;:6;:8::i;70392:72::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49431:145::-;49513:7;49540:18;;;:12;:18;;;;;:28;;49562:5;49540:21;:28::i;:::-;49533:35;49431:145;-1:-1:-1;;;49431:145:0:o;72098:307::-;22295:6;;-1:-1:-1;;;;;22295:6:0;;;;;737:10;22442:23;22434:68;;;;-1:-1:-1;;;22434:68:0;;24131:2:1;22434:68:0;;;24113:21:1;;;24150:18;;;24143:30;24209:34;24189:18;;;24182:62;24261:18;;22434:68:0;24103:182:1;22434:68:0;72199:25:::1;72179:16;::::0;;;::::1;;;:45;::::0;::::1;;;;-1:-1:-1::0;;;72179:45:0::1;;;;;;;;;;72171:98;;;::::0;-1:-1:-1;;;72171:98:0;;25334:2:1;72171:98:0::1;::::0;::::1;25316:21:1::0;25373:2;25353:18;;;25346:30;25412:34;25392:18;;;25385:62;25483:10;25463:18;;;25456:38;25511:19;;72171:98:0::1;25306:230:1::0;72171:98:0::1;72298:7;;72288:6;:17;;72280:82;;;::::0;-1:-1:-1;;;72280:82:0;;22470:2:1;72280:82:0::1;::::0;::::1;22452:21:1::0;22509:2;22489:18;;;22482:30;22548:34;22528:18;;;22521:62;22619:22;22599:18;;;22592:50;22659:19;;72280:82:0::1;22442:242:1::0;72280:82:0::1;72373:15;:24:::0;72098:307::o;10378:311::-;737:10;-1:-1:-1;;;;;10481:24:0;;;;10473:78;;;;-1:-1:-1;;;10473:78:0;;26169:2:1;10473:78:0;;;26151:21:1;26208:2;26188:18;;;26181:30;26247:34;26227:18;;;26220:62;26318:11;26298:18;;;26291:39;26347:19;;10473:78:0;26141:231:1;10473:78:0;737:10;10564:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;10564:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;10564:53:0;;;;;;;;;;10633:48;;14171:41:1;;;10564:42:0;;737:10;10633:48;;14144:18:1;10633:48:0;;;;;;;10378:311;;:::o;49750:134::-;49822:7;49849:18;;;:12;:18;;;;;:27;;:25;:27::i;50234:170::-;50320:31;50337:4;50343:7;50320:16;:31::i;71776:310::-;22295:6;;-1:-1:-1;;;;;22295:6:0;;;;;737:10;22442:23;22434:68;;;;-1:-1:-1;;;22434:68:0;;24131:2:1;22434:68:0;;;24113:21:1;;;24150:18;;;24143:30;24209:34;24189:18;;;24182:62;24261:18;;22434:68:0;24103:182:1;22434:68:0;71853:15:::1;;71842:7;;:26;71834:90;;;::::0;-1:-1:-1;;;71834:90:0;;18420:2:1;71834:90:0::1;::::0;::::1;18402:21:1::0;18459:2;18439:18;;;18432:30;18498:34;18478:18;;;18471:62;18569:21;18549:18;;;18542:49;18608:19;;71834:90:0::1;18392:241:1::0;71834:90:0::1;71940:8;::::0;71950::::1;::::0;71935:31:::1;::::0;;::::1;::::0;::::1;::::0;;;71940:8:::1;71935:31:::0;;::::1;::::0;-1:-1:-1;;;;;71940:8:0::1;::::0;71950;71940;;71935:4:::1;:31::i;:::-;71977:16;:42:::0;;;;;::::1;;::::0;;;72060:8:::1;::::0;72070:7:::1;::::0;72035:43:::1;::::0;;28665:25:1;;;28721:2;28706:18;;28699:34;;;;-1:-1:-1;;;;;72050:8:0;;;;72035:43:::1;::::0;28638:18:1;72035:43:0::1;;;;;;;71776:310::o:0;11001:984::-;-1:-1:-1;;;;;11227:16:0;;11219:66;;;;-1:-1:-1;;;11219:66:0;;21241:2:1;11219:66:0;;;21223:21:1;21280:2;21260:18;;;21253:30;21319:34;21299:18;;;21292:62;21390:7;21370:18;;;21363:35;21415:19;;11219:66:0;21213:227:1;11219:66:0;-1:-1:-1;;;;;11318:20:0;;737:10;11318:20;;:60;;-1:-1:-1;11342:36:0;11359:4;737:10;10761:168;:::i;11342:36::-;11296:151;;;;-1:-1:-1;;;11296:151:0;;19658:2:1;11296:151:0;;;19640:21:1;19697:2;19677:18;;;19670:30;19736:34;19716:18;;;19709:62;19807:11;19787:18;;;19780:39;19836:19;;11296:151:0;19630:231:1;11296:151:0;737:10;11504:96;737:10;11535:4;11541:2;11545:21;11563:2;11545:17;:21::i;:::-;11568:25;11586:6;11568:17;:25::i;:::-;11595:4;11504:20;:96::i;:::-;11613:19;11635:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;11635:19:0;;;;;;;;;;11673:21;;;;11665:76;;;;-1:-1:-1;;;11665:76:0;;23720:2:1;11665:76:0;;;23702:21:1;23759:2;23739:18;;;23732:30;23798:34;23778:18;;;23771:62;23869:12;23849:18;;;23842:40;23899:19;;11665:76:0;23692:232:1;11665:76:0;11774:20;11788:6;11774:11;:20;:::i;:::-;11752:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;11752:19:0;;;;;;;;;;:42;;;;11805:17;;;;;;;:27;;11826:6;;11752:13;11805:27;;11826:6;;11805:27;:::i;:::-;;;;-1:-1:-1;;11850:46:0;;;28665:25:1;;;28721:2;28706:18;;28699:34;;;-1:-1:-1;;;;;11850:46:0;;;;;;;;;;;;;;28638:18:1;11850:46:0;;;;;;;11909:68;11940:8;11950:4;11956:2;11960;11964:6;11972:4;11909:30;:68::i;:::-;11001:984;;;;;;;:::o;23176:244::-;22295:6;;-1:-1:-1;;;;;22295:6:0;;;;;737:10;22442:23;22434:68;;;;-1:-1:-1;;;22434:68:0;;24131:2:1;22434:68:0;;;24113:21:1;;;24150:18;;;24143:30;24209:34;24189:18;;;24182:62;24261:18;;22434:68:0;24103:182:1;22434:68:0;-1:-1:-1;;;;;23265:22:0;::::1;23257:73;;;::::0;-1:-1:-1;;;23257:73:0;;18013:2:1;23257:73:0::1;::::0;::::1;17995:21:1::0;18052:2;18032:18;;;18025:30;18091:34;18071:18;;;18064:62;18162:8;18142:18;;;18135:36;18188:19;;23257:73:0::1;17985:228:1::0;23257:73:0::1;23367:6;::::0;23346:38:::1;::::0;-1:-1:-1;;;;;23346:38:0;;::::1;::::0;23367:6:::1;::::0;::::1;;::::0;23346:38:::1;::::0;;;::::1;23395:6;:17:::0;;-1:-1:-1;;;;;23395:17:0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;23176:244::o;54615:287::-;-1:-1:-1;;;;;54721:23:0;;737:10;54721:23;;:66;;-1:-1:-1;54748:39:0;54765:7;737:10;10761:168;:::i;54748:39::-;54699:157;;;;-1:-1:-1;;;54699:157:0;;19658:2:1;54699:157:0;;;19640:21:1;19697:2;19677:18;;;19670:30;19736:34;19716:18;;;19709:62;19807:11;19787:18;;;19780:39;19836:19;;54699:157:0;19630:231:1;54699:157:0;54869:25;54875:7;54884:2;54888:5;54869;:25::i;46878:112::-;46957:25;46968:4;46974:7;46957:10;:25::i;:::-;46878:112;;:::o;37163:152::-;37233:4;37257:50;37262:3;-1:-1:-1;;;;;37282:23:0;;37257:4;:50::i;8395:297::-;8497:4;8521:41;;;8536:26;8521:41;;:110;;-1:-1:-1;8579:52:0;;;8594:37;8579:52;8521:110;:163;;;;8648:36;8672:11;8648:23;:36::i;15546:689::-;-1:-1:-1;;;;;15681:16:0;;15673:62;;;;-1:-1:-1;;;15673:62:0;;27398:2:1;15673:62:0;;;27380:21:1;27437:2;27417:18;;;27410:30;27476:34;27456:18;;;27449:62;27547:3;27527:18;;;27520:31;27568:19;;15673:62:0;27370:223:1;15673:62:0;15768:7;:14;15754:3;:10;:28;15746:81;;;;-1:-1:-1;;;15746:81:0;;26989:2:1;15746:81:0;;;26971:21:1;27028:2;27008:18;;;27001:30;27067:34;27047:18;;;27040:62;27138:10;27118:18;;;27111:38;27166:19;;15746:81:0;26961:230:1;15746:81:0;737:10;15884:66;737:10;15840:16;15927:2;15931:3;15936:7;15945:4;15884:20;:66::i;:::-;15968:6;15963:100;15984:3;:10;15980:1;:14;15963:100;;;16041:7;16049:1;16041:10;;;;;;-1:-1:-1;;;16041:10:0;;;;;;;;;;;;;;;16016:9;:17;16026:3;16030:1;16026:6;;;;;;-1:-1:-1;;;16026:6:0;;;;;;;;;;;;;;;16016:17;;;;;;;;;;;:21;16034:2;-1:-1:-1;;;;;16016:21:0;-1:-1:-1;;;;;16016:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;15996:3:0;;-1:-1:-1;15996:3:0;;;:::i;:::-;;;;15963:100;;;;16116:2;-1:-1:-1;;;;;16080:53:0;16112:1;-1:-1:-1;;;;;16080:53:0;16094:8;-1:-1:-1;;;;;16080:53:0;;16120:3;16125:7;16080:53;;;;;;;:::i;:::-;;;;;;;;16146:81;16182:8;16200:1;16204:2;16208:3;16213:7;16222:4;16146:35;:81::i;:::-;15546:689;;;;;:::o;68951:353::-;69230:66;69257:8;69267:4;69273:2;69277:3;69282:7;69291:4;69230:26;:66::i;20118:799::-;-1:-1:-1;;;;;20372:13:0;;56367:20;56406:8;20368:542;;20408:79;;;;;-1:-1:-1;;;;;20408:43:0;;;;;:79;;20452:8;;20462:4;;20468:3;;20473:7;;20482:4;;20408:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20408:79:0;;;;;;;;-1:-1:-1;;20408:79:0;;;;;;;;;;;;:::i;:::-;;;20404:495;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;20772:6;20765:14;;-1:-1:-1;;;20765:14:0;;;;;;;;:::i;20404:495::-;;;20821:62;;-1:-1:-1;;;20821:62:0;;15242:2:1;20821:62:0;;;15224:21:1;15281:2;15261:18;;;15254:30;15320:34;15300:18;;;15293:62;15391:22;15371:18;;;15364:50;15431:19;;20821:62:0;15214:242:1;20404:495:0;20537:64;;;20549:52;20537:64;20533:163;;20626:50;;-1:-1:-1;;;20626:50:0;;16066:2:1;20626:50:0;;;16048:21:1;16105:2;16085:18;;;16078:30;16144:34;16124:18;;;16117:62;16215:10;16195:18;;;16188:38;16243:19;;20626:50:0;16038:230:1;44858:232:0;44539:7;44566:12;;;;;;;;;;:22;;;44951:41;;44959:18;737:10;44145:139;:::i;44951:41::-;44943:101;;;;-1:-1:-1;;;44943:101:0;;16836:2:1;44943:101:0;;;16818:21:1;16875:2;16855:18;;;16848:30;16914:34;16894:18;;;16887:62;16985:17;16965:18;;;16958:45;17020:19;;44943:101:0;16808:237:1;46077:218:0;-1:-1:-1;;;;;46173:23:0;;737:10;46173:23;46165:83;;;;-1:-1:-1;;;46165:83:0;;27800:2:1;46165:83:0;;;27782:21:1;27839:2;27819:18;;;27812:30;27878:34;27858:18;;;27851:62;27949:17;27929:18;;;27922:45;27984:19;;46165:83:0;27772:237:1;46165:83:0;46261:26;46273:4;46279:7;46261:11;:26::i;37491:158::-;37564:4;37588:53;37596:3;-1:-1:-1;;;;;37616:23:0;;37588:7;:53::i;53074:120::-;52086:7;;;;52610:41;;;;-1:-1:-1;;;52610:41:0;;17252:2:1;52610:41:0;;;17234:21:1;17291:2;17271:18;;;17264:30;17330:22;17310:18;;;17303:50;17370:18;;52610:41:0;17224:170:1;52610:41:0;53133:7:::1;:15:::0;;-1:-1:-1;;53133:15:0::1;::::0;;53164:22:::1;737:10:::0;53173:12:::1;53164:22;::::0;-1:-1:-1;;;;;11341:55:1;;;11323:74;;11311:2;11296:18;53164:22:0::1;;;;;;;53074:120::o:0;17302:837::-;-1:-1:-1;;;;;17423:21:0;;17415:69;;;;-1:-1:-1;;;17415:69:0;;22891:2:1;17415:69:0;;;22873:21:1;22930:2;22910:18;;;22903:30;22969:34;22949:18;;;22942:62;23040:5;23020:18;;;23013:33;23063:19;;17415:69:0;22863:225:1;17415:69:0;17517:7;:14;17503:3;:10;:28;17495:81;;;;-1:-1:-1;;;17495:81:0;;26989:2:1;17495:81:0;;;26971:21:1;27028:2;27008:18;;;27001:30;27067:34;27047:18;;;27040:62;27138:10;27118:18;;;27111:38;27166:19;;17495:81:0;26961:230:1;17495:81:0;17589:16;737:10;17589:31;;17633:69;17654:8;17664:7;17681:1;17685:3;17690:7;17633:69;;;;;;;;;;;;:20;:69::i;:::-;17720:6;17715:341;17736:3;:10;17732:1;:14;17715:341;;;17768:10;17781:3;17785:1;17781:6;;;;;;-1:-1:-1;;;17781:6:0;;;;;;;;;;;;;;;17768:19;;17802:14;17819:7;17827:1;17819:10;;;;;;-1:-1:-1;;;17819:10:0;;;;;;;;;;;;;;;;;;;;17846:22;17871:13;;;:9;:13;;;;;;-1:-1:-1;;;;;17871:22:0;;;;;;;;;;;;17819:10;;-1:-1:-1;17916:24:0;;;;17908:73;;;;-1:-1:-1;;;17908:73:0;;18840:2:1;17908:73:0;;;18822:21:1;18879:2;18859:18;;;18852:30;18918:34;18898:18;;;18891:62;18989:6;18969:18;;;18962:34;19013:19;;17908:73:0;18812:226:1;17908:73:0;18021:23;18038:6;18021:14;:23;:::i;:::-;17996:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;17996:22:0;;;;;;;;;;:48;;;;-1:-1:-1;17748:3:0;;-1:-1:-1;17748:3:0;;;:::i;:::-;;;;17715:341;;;;18114:1;-1:-1:-1;;;;;18073:58:0;18097:7;-1:-1:-1;;;;;18073:58:0;18087:8;-1:-1:-1;;;;;18073:58:0;;18118:3;18123:7;18073:58;;;;;;;:::i;:::-;;;;;;;;17302:837;;;;:::o;14634:556::-;-1:-1:-1;;;;;14749:21:0;;14741:67;;;;-1:-1:-1;;;14741:67:0;;27398:2:1;14741:67:0;;;27380:21:1;27437:2;27417:18;;;27410:30;27476:34;27456:18;;;27449:62;27547:3;27527:18;;;27520:31;27568:19;;14741:67:0;27370:223:1;14741:67:0;737:10;14865:107;737:10;14821:16;14908:7;14917:21;14935:2;14917:17;:21::i;14865:107::-;14985:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;14985:22:0;;;;;;;;;:32;;15011:6;;14985:13;:32;;15011:6;;14985:32;:::i;:::-;;;;-1:-1:-1;;15033:57:0;;;28665:25:1;;;28721:2;28706:18;;28699:34;;;-1:-1:-1;;;;;15033:57:0;;;;15066:1;;15033:57;;;;;;28638:18:1;15033:57:0;;;;;;;15103:79;15134:8;15152:1;15156:7;15165:2;15169:6;15177:4;15103:30;:79::i;52815:118::-;52086:7;;;;52340:9;52332:38;;;;-1:-1:-1;;;52332:38:0;;20485:2:1;52332:38:0;;;20467:21:1;20524:2;20504:18;;;20497:30;20563:18;20543;;;20536:46;20599:18;;52332:38:0;20457:166:1;52332:38:0;52875:7:::1;:14:::0;;-1:-1:-1;;52875:14:0::1;52885:4;52875:14;::::0;;52905:20:::1;52912:12;737:10:::0;;657:98;38449:158;38523:7;38574:22;38578:3;38590:5;38574:3;:22::i;37988:117::-;38051:7;38078:19;38086:3;34745:18;;34662:109;45335:235;44539:7;44566:12;;;;;;;;;;:22;;;45429:41;;45437:18;44473:123;45429:41;45421:102;;;;-1:-1:-1;;;45421:102:0;;20068:2:1;45421:102:0;;;20050:21:1;20107:2;20087:18;;;20080:30;20146:34;20126:18;;;20119:62;20217:18;20197;;;20190:46;20253:19;;45421:102:0;20040:238:1;20925:198:0;21045:16;;;21059:1;21045:16;;;;;;;;;20991;;21020:22;;21045:16;;;;;;;;;;;;-1:-1:-1;21045:16:0;21020:41;;21083:7;21072:5;21078:1;21072:8;;;;;;-1:-1:-1;;;21072:8:0;;;;;;;;;;;;;;;;;;:18;21110:5;20925:198;-1:-1:-1;;20925:198:0:o;19348:762::-;-1:-1:-1;;;;;19577:13:0;;56367:20;56406:8;19573:530;;19613:72;;;;;-1:-1:-1;;;;;19613:38:0;;;;;:72;;19652:8;;19662:4;;19668:2;;19672:6;;19680:4;;19613:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19613:72:0;;;;;;;;-1:-1:-1;;19613:72:0;;;;;;;;;;;;:::i;:::-;;;19609:483;;;;:::i;:::-;19735:59;;;19747:47;19735:59;19731:158;;19819:50;;-1:-1:-1;;;19819:50:0;;16066:2:1;19819:50:0;;;16048:21:1;16105:2;16085:18;;;16078:30;16144:34;16124:18;;;16117:62;16215:10;16195:18;;;16188:38;16243:19;;19819:50:0;16038:230:1;16494:605:0;-1:-1:-1;;;;;16590:21:0;;16582:69;;;;-1:-1:-1;;;16582:69:0;;22891:2:1;16582:69:0;;;22873:21:1;22930:2;22910:18;;;22903:30;22969:34;22949:18;;;22942:62;23040:5;23020:18;;;23013:33;23063:19;;16582:69:0;22863:225:1;16582:69:0;737:10;16708:105;737:10;16739:7;16664:16;16760:21;16778:2;16760:17;:21::i;:::-;16783:25;16801:6;16783:17;:25::i;:::-;16708:105;;;;;;;;;;;;:20;:105::i;:::-;16826:22;16851:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;16851:22:0;;;;;;;;;;16892:24;;;;16884:73;;;;-1:-1:-1;;;16884:73:0;;18840:2:1;16884:73:0;;;18822:21:1;18879:2;18859:18;;;18852:30;18918:34;18898:18;;;18891:62;18989:6;18969:18;;;18962:34;19013:19;;16884:73:0;18812:226:1;16884:73:0;16993:23;17010:6;16993:14;:23;:::i;:::-;16968:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;16968:22:0;;;;;;;;;;;;:48;;;;17034:57;;28665:25:1;;;28706:18;;;28699:34;;;16968:13:0;;17034:57;;;;;28638:18:1;17034:57:0;;;;;;;16494:605;;;;;:::o;47325:229::-;44223:4;44247:12;;;;;;;;;;;-1:-1:-1;;;;;44247:29:0;;;;;;;;;;;;47395:152;;47439:6;:12;;;;;;;;;;;-1:-1:-1;;;;;47439:29:0;;;;;;;;;:36;;-1:-1:-1;;47439:36:0;47471:4;47439:36;;;47522:12;737:10;;657:98;47522:12;-1:-1:-1;;;;;47495:40:0;47513:7;-1:-1:-1;;;;;47495:40:0;47507:4;47495:40;;;;;;;;;;47325:229;;:::o;32227:414::-;32290:4;34544:19;;;:12;;;:19;;;;;;32307:327;;-1:-1:-1;32350:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;32533:18;;32511:19;;;:12;;;:19;;;;;;:40;;;;32566:11;;32307:327;-1:-1:-1;32617:5:0;32610:12;;48605:227;48690:4;48714:57;;;48729:42;48714:57;;:110;;;48788:36;48812:11;48788:23;:36::i;53836:424::-;52086:7;;;;54194:9;54186:66;;;;-1:-1:-1;;;54186:66:0;;19245:2:1;54186:66:0;;;19227:21:1;19284:2;19264:18;;;19257:30;19323:34;19303:18;;;19296:62;19394:14;19374:18;;;19367:42;19426:19;;54186:66:0;19217:234:1;47562:230:0;44223:4;44247:12;;;;;;;;;;;-1:-1:-1;;;;;44247:29:0;;;;;;;;;;;;47633:152;;;47708:5;47676:12;;;;;;;;;;;-1:-1:-1;;;;;47676:29:0;;;;;;;;;;:37;;-1:-1:-1;;47676:37:0;;;47733:40;737:10;;47676:12;;47733:40;;47708:5;47733:40;47562:230;;:::o;32817:1544::-;32883:4;33022:19;;;:12;;;:19;;;;;;33058:15;;33054:1300;;33420:21;33444:14;33457:1;33444:10;:14;:::i;:::-;33493:18;;33420:38;;-1:-1:-1;33473:17:0;;33493:22;;33514:1;;33493:22;:::i;:::-;33473:42;;33760:17;33780:3;:11;;33792:9;33780:22;;;;;;-1:-1:-1;;;33780:22:0;;;;;;;;;;;;;;;;;33760:42;;33926:9;33897:3;:11;;33909:13;33897:26;;;;;;-1:-1:-1;;;33897:26:0;;;;;;;;;;;;;;;;;;:38;34029:17;:13;34045:1;34029:17;:::i;:::-;34003:23;;;;:12;;;:23;;;;;:43;34155:17;;34003:3;;34155:17;;;-1:-1:-1;;;34155:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;34250:3;:12;;:19;34263:5;34250:19;;;;;;;;;;;34243:26;;;34293:4;34286:11;;;;;;;;33054:1300;34337:5;34330:12;;;;;35115:204;35210:18;;35182:7;;35210:26;-1:-1:-1;35202:73:0;;;;-1:-1:-1;;;35202:73:0;;15663:2:1;35202:73:0;;;15645:21:1;15702:2;15682:18;;;15675:30;15741:34;15721:18;;;15714:62;15812:4;15792:18;;;15785:32;15834:19;;35202:73:0;15635:224:1;35202:73:0;35293:3;:11;;35305:5;35293:18;;;;;;-1:-1:-1;;;35293:18:0;;;;;;;;;;;;;;;;;35286:25;;35115:204;;;;:::o;43836:217::-;43921:4;43945:47;;;43960:32;43945:47;;:100;;-1:-1:-1;2772:25:0;2757:40;;;;44009:36;2648:157;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:527:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;183:2;177:9;195:128;317:4;-1:-1:-1;;243:2:1;235:6;231:15;227:88;223:99;215:6;195:128;:::i;:::-;341:6;332:15;;371:6;363;356:22;411:3;402:6;397:3;393:16;390:25;387:2;;;428:1;425;418:12;387:2;478:6;473:3;466:4;458:6;454:17;441:44;533:1;526:4;517:6;509;505:19;501:30;494:41;;88:453;;;;;:::o;546:196::-;614:20;;-1:-1:-1;;;;;663:54:1;;653:65;;643:2;;732:1;729;722:12;643:2;595:147;;;:::o;747:755::-;801:5;854:3;847:4;839:6;835:17;831:27;821:2;;876:5;869;862:20;821:2;916:6;903:20;942:4;965:43;1005:2;965:43;:::i;:::-;1037:2;1031:9;1049:31;1077:2;1069:6;1049:31;:::i;:::-;1115:18;;;1149:15;;;;-1:-1:-1;1184:15:1;;;1234:1;1230:10;;;1218:23;;1214:32;;1211:41;-1:-1:-1;1208:2:1;;;1269:5;1262;1255:20;1208:2;1295:5;1309:163;1323:2;1320:1;1317:9;1309:163;;;1380:17;;1368:30;;1418:12;;;;1450;;;;1341:1;1334:9;1309:163;;;-1:-1:-1;1490:6:1;;811:691;-1:-1:-1;;;;;;;811:691:1:o;1507:228::-;1549:5;1602:3;1595:4;1587:6;1583:17;1579:27;1569:2;;1624:5;1617;1610:20;1569:2;1650:79;1725:3;1716:6;1703:20;1696:4;1688:6;1684:17;1650:79;:::i;1740:196::-;1799:6;1852:2;1840:9;1831:7;1827:23;1823:32;1820:2;;;1873:6;1865;1858:22;1820:2;1901:29;1920:9;1901:29;:::i;1941:270::-;2009:6;2017;2070:2;2058:9;2049:7;2045:23;2041:32;2038:2;;;2091:6;2083;2076:22;2038:2;2119:29;2138:9;2119:29;:::i;:::-;2109:39;;2167:38;2201:2;2190:9;2186:18;2167:38;:::i;:::-;2157:48;;2028:183;;;;;:::o;2216:983::-;2370:6;2378;2386;2394;2402;2455:3;2443:9;2434:7;2430:23;2426:33;2423:2;;;2477:6;2469;2462:22;2423:2;2505:29;2524:9;2505:29;:::i;:::-;2495:39;;2553:38;2587:2;2576:9;2572:18;2553:38;:::i;:::-;2543:48;;2642:2;2631:9;2627:18;2614:32;2665:18;2706:2;2698:6;2695:14;2692:2;;;2727:6;2719;2712:22;2692:2;2755:61;2808:7;2799:6;2788:9;2784:22;2755:61;:::i;:::-;2745:71;;2869:2;2858:9;2854:18;2841:32;2825:48;;2898:2;2888:8;2885:16;2882:2;;;2919:6;2911;2904:22;2882:2;2947:63;3002:7;2991:8;2980:9;2976:24;2947:63;:::i;:::-;2937:73;;3063:3;3052:9;3048:19;3035:33;3019:49;;3093:2;3083:8;3080:16;3077:2;;;3114:6;3106;3099:22;3077:2;;3142:51;3185:7;3174:8;3163:9;3159:24;3142:51;:::i;:::-;3132:61;;;2413:786;;;;;;;;:::o;3204:626::-;3308:6;3316;3324;3332;3340;3393:3;3381:9;3372:7;3368:23;3364:33;3361:2;;;3415:6;3407;3400:22;3361:2;3443:29;3462:9;3443:29;:::i;:::-;3433:39;;3491:38;3525:2;3514:9;3510:18;3491:38;:::i;:::-;3481:48;;3576:2;3565:9;3561:18;3548:32;3538:42;;3627:2;3616:9;3612:18;3599:32;3589:42;;3682:3;3671:9;3667:19;3654:33;3710:18;3702:6;3699:30;3696:2;;;3747:6;3739;3732:22;3696:2;3775:49;3816:7;3807:6;3796:9;3792:22;3775:49;:::i;3835:699::-;3962:6;3970;3978;4031:2;4019:9;4010:7;4006:23;4002:32;3999:2;;;4052:6;4044;4037:22;3999:2;4080:29;4099:9;4080:29;:::i;:::-;4070:39;;4160:2;4149:9;4145:18;4132:32;4183:18;4224:2;4216:6;4213:14;4210:2;;;4245:6;4237;4230:22;4210:2;4273:61;4326:7;4317:6;4306:9;4302:22;4273:61;:::i;:::-;4263:71;;4387:2;4376:9;4372:18;4359:32;4343:48;;4416:2;4406:8;4403:16;4400:2;;;4437:6;4429;4422:22;4400:2;;4465:63;4520:7;4509:8;4498:9;4494:24;4465:63;:::i;:::-;4455:73;;;3989:545;;;;;:::o;4539:908::-;4684:6;4692;4700;4708;4761:3;4749:9;4740:7;4736:23;4732:33;4729:2;;;4783:6;4775;4768:22;4729:2;4811:29;4830:9;4811:29;:::i;:::-;4801:39;;4891:2;4880:9;4876:18;4863:32;4914:18;4955:2;4947:6;4944:14;4941:2;;;4976:6;4968;4961:22;4941:2;5004:61;5057:7;5048:6;5037:9;5033:22;5004:61;:::i;:::-;4994:71;;5118:2;5107:9;5103:18;5090:32;5074:48;;5147:2;5137:8;5134:16;5131:2;;;5168:6;5160;5153:22;5131:2;5196:63;5251:7;5240:8;5229:9;5225:24;5196:63;:::i;:::-;5186:73;;5312:2;5301:9;5297:18;5284:32;5268:48;;5341:2;5331:8;5328:16;5325:2;;;5362:6;5354;5347:22;5325:2;;5390:51;5433:7;5422:8;5411:9;5407:24;5390:51;:::i;:::-;5380:61;;;4719:728;;;;;;;:::o;5452:367::-;5517:6;5525;5578:2;5566:9;5557:7;5553:23;5549:32;5546:2;;;5599:6;5591;5584:22;5546:2;5627:29;5646:9;5627:29;:::i;:::-;5617:39;;5706:2;5695:9;5691:18;5678:32;5753:5;5746:13;5739:21;5732:5;5729:32;5719:2;;5780:6;5772;5765:22;5719:2;5808:5;5798:15;;;5536:283;;;;;:::o;5824:264::-;5892:6;5900;5953:2;5941:9;5932:7;5928:23;5924:32;5921:2;;;5974:6;5966;5959:22;5921:2;6002:29;6021:9;6002:29;:::i;:::-;5992:39;6078:2;6063:18;;;;6050:32;;-1:-1:-1;;;5911:177:1:o;6093:332::-;6170:6;6178;6186;6239:2;6227:9;6218:7;6214:23;6210:32;6207:2;;;6260:6;6252;6245:22;6207:2;6288:29;6307:9;6288:29;:::i;:::-;6278:39;6364:2;6349:18;;6336:32;;-1:-1:-1;6415:2:1;6400:18;;;6387:32;;6197:228;-1:-1:-1;;;6197:228:1:o;6430:551::-;6525:6;6533;6541;6549;6602:3;6590:9;6581:7;6577:23;6573:33;6570:2;;;6624:6;6616;6609:22;6570:2;6652:29;6671:9;6652:29;:::i;:::-;6642:39;;6728:2;6717:9;6713:18;6700:32;6690:42;;6779:2;6768:9;6764:18;6751:32;6741:42;;6834:2;6823:9;6819:18;6806:32;6861:18;6853:6;6850:30;6847:2;;;6898:6;6890;6883:22;6847:2;6926:49;6967:7;6958:6;6947:9;6943:22;6926:49;:::i;6986:1274::-;7104:6;7112;7165:2;7153:9;7144:7;7140:23;7136:32;7133:2;;;7186:6;7178;7171:22;7133:2;7231:9;7218:23;7260:18;7301:2;7293:6;7290:14;7287:2;;;7322:6;7314;7307:22;7287:2;7365:6;7354:9;7350:22;7340:32;;7410:7;7403:4;7399:2;7395:13;7391:27;7381:2;;7437:6;7429;7422:22;7381:2;7478;7465:16;7500:4;7523:43;7563:2;7523:43;:::i;:::-;7595:2;7589:9;7607:31;7635:2;7627:6;7607:31;:::i;:::-;7673:18;;;7707:15;;;;-1:-1:-1;7742:11:1;;;7784:1;7780:10;;;7772:19;;7768:28;;7765:41;-1:-1:-1;7762:2:1;;;7824:6;7816;7809:22;7762:2;7851:6;7842:15;;7866:169;7880:2;7877:1;7874:9;7866:169;;;7937:23;7956:3;7937:23;:::i;:::-;7925:36;;7898:1;7891:9;;;;;7981:12;;;;8013;;7866:169;;;-1:-1:-1;8054:6:1;-1:-1:-1;;8098:18:1;;8085:32;;-1:-1:-1;;8129:16:1;;;8126:2;;;8163:6;8155;8148:22;8126:2;;8191:63;8246:7;8235:8;8224:9;8220:24;8191:63;:::i;:::-;8181:73;;;7123:1137;;;;;:::o;8265:190::-;8324:6;8377:2;8365:9;8356:7;8352:23;8348:32;8345:2;;;8398:6;8390;8383:22;8345:2;-1:-1:-1;8426:23:1;;8335:120;-1:-1:-1;8335:120:1:o;8460:264::-;8528:6;8536;8589:2;8577:9;8568:7;8564:23;8560:32;8557:2;;;8610:6;8602;8595:22;8557:2;8651:9;8638:23;8628:33;;8680:38;8714:2;8703:9;8699:18;8680:38;:::i;8729:258::-;8797:6;8805;8858:2;8846:9;8837:7;8833:23;8829:32;8826:2;;;8879:6;8871;8864:22;8826:2;-1:-1:-1;;8907:23:1;;;8977:2;8962:18;;;8949:32;;-1:-1:-1;8816:171:1:o;8992:255::-;9050:6;9103:2;9091:9;9082:7;9078:23;9074:32;9071:2;;;9124:6;9116;9109:22;9071:2;9168:9;9155:23;9187:30;9211:5;9187:30;:::i;9252:259::-;9321:6;9374:2;9362:9;9353:7;9349:23;9345:32;9342:2;;;9395:6;9387;9380:22;9342:2;9432:9;9426:16;9451:30;9475:5;9451:30;:::i;9516:480::-;9585:6;9638:2;9626:9;9617:7;9613:23;9609:32;9606:2;;;9659:6;9651;9644:22;9606:2;9704:9;9691:23;9737:18;9729:6;9726:30;9723:2;;;9774:6;9766;9759:22;9723:2;9802:22;;9855:4;9847:13;;9843:27;-1:-1:-1;9833:2:1;;9889:6;9881;9874:22;9833:2;9917:73;9982:7;9977:2;9964:16;9959:2;9955;9951:11;9917:73;:::i;:::-;9907:83;9596:400;-1:-1:-1;;;;9596:400:1:o;10196:437::-;10249:3;10287:5;10281:12;10314:6;10309:3;10302:19;10340:4;10369:2;10364:3;10360:12;10353:19;;10406:2;10399:5;10395:14;10427:3;10439:169;10453:6;10450:1;10447:13;10439:169;;;10514:13;;10502:26;;10548:12;;;;10583:15;;;;10475:1;10468:9;10439:169;;;-1:-1:-1;10624:3:1;;10257:376;-1:-1:-1;;;;;10257:376:1:o;10638:534::-;10679:3;10717:5;10711:12;10744:6;10739:3;10732:19;10769:3;10781:162;10795:6;10792:1;10789:13;10781:162;;;10857:4;10913:13;;;10909:22;;10903:29;10885:11;;;10881:20;;10874:59;10810:12;10781:162;;;10961:6;10958:1;10955:13;10952:2;;;11027:3;11020:4;11011:6;11006:3;11002:16;10998:27;10991:40;10952:2;-1:-1:-1;11086:2:1;11074:15;-1:-1:-1;;11070:88:1;11061:98;;;;11161:4;11057:109;;10687:485;-1:-1:-1;;10687:485:1:o;11408:849::-;11730:4;-1:-1:-1;;;;;11840:2:1;11832:6;11828:15;11817:9;11810:34;11892:2;11884:6;11880:15;11875:2;11864:9;11860:18;11853:43;;11932:3;11927:2;11916:9;11912:18;11905:31;11959:57;12011:3;12000:9;11996:19;11988:6;11959:57;:::i;:::-;12064:9;12056:6;12052:22;12047:2;12036:9;12032:18;12025:50;12098:44;12135:6;12127;12098:44;:::i;:::-;12084:58;;12191:9;12183:6;12179:22;12173:3;12162:9;12158:19;12151:51;12219:32;12244:6;12236;12219:32;:::i;:::-;12211:40;11739:518;-1:-1:-1;;;;;;;;11739:518:1:o;12262:583::-;12484:4;-1:-1:-1;;;;;12594:2:1;12586:6;12582:15;12571:9;12564:34;12646:2;12638:6;12634:15;12629:2;12618:9;12614:18;12607:43;;12686:6;12681:2;12670:9;12666:18;12659:34;12729:6;12724:2;12713:9;12709:18;12702:34;12773:3;12767;12756:9;12752:19;12745:32;12794:45;12834:3;12823:9;12819:19;12811:6;12794:45;:::i;:::-;12786:53;12493:352;-1:-1:-1;;;;;;;12493:352:1:o;13295:261::-;13474:2;13463:9;13456:21;13437:4;13494:56;13546:2;13535:9;13531:18;13523:6;13494:56;:::i;13561:465::-;13818:2;13807:9;13800:21;13781:4;13844:56;13896:2;13885:9;13881:18;13873:6;13844:56;:::i;:::-;13948:9;13940:6;13936:22;13931:2;13920:9;13916:18;13909:50;13976:44;14013:6;14005;13976:44;:::i;:::-;13968:52;13790:236;-1:-1:-1;;;;;13790:236:1:o;14405:406::-;14558:2;14543:18;;14591:1;14580:13;;14570:2;;-1:-1:-1;;;14624:1:1;14617:88;14728:4;14725:1;14718:15;14756:4;14753:1;14746:15;14570:2;14780:25;;;14525:286;:::o;14816:219::-;14965:2;14954:9;14947:21;14928:4;14985:44;15025:2;15014:9;15010:18;15002:6;14985:44;:::i;28196:290::-;28373:6;28362:9;28355:25;28416:2;28411;28400:9;28396:18;28389:30;28336:4;28436:44;28476:2;28465:9;28461:18;28453:6;28436:44;:::i;29068:183::-;29128:4;29161:18;29153:6;29150:30;29147:2;;;29183:18;;:::i;:::-;-1:-1:-1;29228:1:1;29224:14;29240:4;29220:25;;29137:114::o;29256:128::-;29296:3;29327:1;29323:6;29320:1;29317:13;29314:2;;;29333:18;;:::i;:::-;-1:-1:-1;29369:9:1;;29304:80::o;29389:125::-;29429:4;29457:1;29454;29451:8;29448:2;;;29462:18;;:::i;:::-;-1:-1:-1;29499:9:1;;29438:76::o;29519:437::-;29598:1;29594:12;;;;29641;;;29662:2;;29716:4;29708:6;29704:17;29694:27;;29662:2;29769;29761:6;29758:14;29738:18;29735:38;29732:2;;;-1:-1:-1;;;29803:1:1;29796:88;29907:4;29904:1;29897:15;29935:4;29932:1;29925:15;29732:2;;29574:382;;;:::o;29961:308::-;-1:-1:-1;;30062:2:1;30056:4;30052:13;30048:86;30040:6;30036:99;30201:6;30189:10;30186:22;30165:18;30153:10;30150:34;30147:62;30144:2;;;30212:18;;:::i;:::-;30248:2;30241:22;-1:-1:-1;;30008:261:1:o;30274:195::-;30313:3;30344:66;30337:5;30334:77;30331:2;;;30414:18;;:::i;:::-;-1:-1:-1;30461:1:1;30450:13;;30321:148::o;30474:184::-;-1:-1:-1;;;30523:1:1;30516:88;30623:4;30620:1;30613:15;30647:4;30644:1;30637:15;30663:184;-1:-1:-1;;;30712:1:1;30705:88;30812:4;30809:1;30802:15;30836:4;30833:1;30826:15;30852:185;30887:3;30929:1;30911:16;30908:23;30905:2;;;30979:1;30974:3;30969;30954:27;31010:10;31005:3;31001:20;30905:2;30895:142;:::o;31042:731::-;31081:3;31123:4;31105:16;31102:26;31099:2;;;31089:684;:::o;31099:2::-;31165;31159:9;31187:66;31308:2;31290:16;31286:25;31283:1;31277:4;31262:50;31341:4;31335:11;31365:16;31400:18;31471:2;31464:4;31456:6;31452:17;31449:25;31444:2;31436:6;31433:14;31430:45;31427:2;;;31478:5;;;;;31089:684;:::o;31427:2::-;31515:6;31509:4;31505:17;31494:28;;31551:3;31545:10;31578:2;31570:6;31567:14;31564:2;;;31584:5;;;;;;31089:684;:::o;31564:2::-;31668;31649:16;31643:4;31639:27;31635:36;31628:4;31619:6;31614:3;31610:16;31606:27;31603:69;31600:2;;;31675:5;;;;;;31089:684;:::o;31600:2::-;31691:57;31742:4;31733:6;31725;31721:19;31717:30;31711:4;31691:57;:::i;:::-;-1:-1:-1;31764:3:1;;31089:684;-1:-1:-1;;;;;31089:684:1:o;31778:177::-;31863:66;31856:5;31852:78;31845:5;31842:89;31832:2;;31945:1;31942;31935:12;31832:2;31822:133;:::o

Swarm Source

ipfs://f4b02773af84bcb6dcb586fc88937066ba44ad2fb1e60b8f5c2ea449270046c6
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.